::-moz-selection {
    color: #FFF;
    background:#151515;
}

::selection {
    color: #FFF;
    background:#151515;
}

:root {
    --primary:#15628f;
    --secondary: #1e90d3;
    --uc: #525252;
    --dort: #71b1dd;
}

a {
    color:#15628f;
}

a:hover {
    color:#4daae2;
}

a:focus {
    color:#4daae2;
}

a:active {
    color:#4daae2;
}
.border-primary{
    border-color: #676767!important
}
.border-dark {
    border-color: #676767!important;
}

html .text-color-primary,
html .text-primary {
    color:#15628f !important;
}

html .text-color-hover-primary:hover,
html .text-hover-primary:hover {
    color:#15628f !important;
}

html .text-color-secondary,
html .text-secondary {
    color: #1e90d3 !important;
}
html .text-color-secondary2,
html .text-secondary2 {
    color: #2aa17a !important;
}

html .text-color-hover-secondary:hover,
html .text-hover-secondary:hover {
    color: #1e90d3 !important;
}

html .text-color-uc,
html .text-uc {
    color: #525252 !important;
}

html .text-color-hover-uc:hover,
html .text-hover-uc:hover {
    color: #525252 !important;
}

html .text-color-dort,
html .text-dort {
    color: #71b1dd !important;
}

html .text-color-hover-dort:hover,
html .text-hover-dort:hover {
    color: #71b1dd !important;
}

html .text-color-dark,
html .text-dark {
    color: #212529 !important;
}

html .text-color-hover-dark:hover,
html .text-hover-dark:hover {
    color: #212529 !important;
}

html .text-color-light,
html .text-light {
    color: #FFF !important;
}

html .text-color-hover-light:hover,
html .text-hover-light:hover {
    color: #FFF !important;
}

html .svg-fill-color-primary {
    fill:#15628f !important;
}

html .svg-fill-color-primary svg path,
html .svg-fill-color-primary svg rect,
html .svg-fill-color-primary svg line,
html .svg-fill-color-primary svg polyline,
html .svg-fill-color-primary svg polygon {
    fill:#15628f !important;
}

html .svg-fill-color-hover-primary:hover {
    fill:#15628f !important;
}

html .svg-fill-color-hover-primary svg:hover path,
html .svg-fill-color-hover-primary svg:hover rect,
html .svg-fill-color-hover-primary svg:hover line,
html .svg-fill-color-hover-primary svg:hover polyline,
html .svg-fill-color-hover-primary svg:hover polygon {
    fill:#15628f !important;
}

html .svg-stroke-color-primary {
    stroke:#15628f !important;
}

html .svg-stroke-color-primary svg path,
html .svg-stroke-color-primary svg rect,
html .svg-stroke-color-primary svg line,
html .svg-stroke-color-primary svg polyline,
html .svg-stroke-color-primary svg polygon {
    stroke:#15628f !important;
}

html .svg-stroke-color-hover-primary:hover {
    stroke:#15628f !important;
}

html .svg-stroke-color-hover-primary svg:hover path,
html .svg-stroke-color-hover-primary svg:hover rect,
html .svg-stroke-color-hover-primary svg:hover line,
html .svg-stroke-color-hover-primary svg:hover polyline,
html .svg-stroke-color-hover-primary svg:hover polygon {
    stroke:#15628f !important;
}

html .svg-fill-color-secondary {
    fill: #1e90d3 !important;
}

/*
* Buttons
*/
.custom-btn-style-1 {
    position: relative;
    transition: ease transform 300ms;
}

.custom-btn-style-1 > span {
    position: relative;
    z-index: 1;
}

.custom-btn-style-1:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    opacity: 0.7;
    border-radius: inherit;
    transform: translate3d(5px, 5px, 0);
    transition: ease transform 300ms;
    z-index: 0;
}

.custom-btn-style-1:hover {
    transform: translate3d(2.5px, 2.5px, 0);
}

.custom-btn-style-1:hover:before {
    transform: translate3d(0, 0, 0);
}

/*
* Crooked Line
*/
.custom-crooked-line {
    display: inline-block;
    width: 77px;
    overflow: hidden;
}

/*
* Custom Link Effects
*/
@-webkit-keyframes crookedLineAnim {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-48%, 0, 0);
    }
}
@keyframes crookedLineAnim {
    from {
        transform: translate3d(0, 0, 0);
    }
    to {
        transform: translate3d(-48%, 0, 0);
    }
}

.custom-link-hover-effects .custom-view-more svg {
    transition: ease transform 300ms;
}

.custom-link-hover-effects:hover .custom-crooked-line svg {
    -webkit-animation-name: crookedLineAnim;
    animation-name: crookedLineAnim;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
}

.custom-link-hover-effects:hover .custom-view-more svg {
    transform: translate3d(7px, 0, 0);
}

.custom-link-hover-effects:hover .custom-date-style-1 {
    transform: translate3d(2.5px, 2.5px, 0);
}

.custom-link-hover-effects:hover .custom-date-style-1:before {
    transform: translate3d(0, 0, 0);
}


html .svg-fill-color-secondary svg path,
html .svg-fill-color-secondary svg rect,
html .svg-fill-color-secondary svg line,
html .svg-fill-color-secondary svg polyline,
html .svg-fill-color-secondary svg polygon {
    fill:#15628f !important;
}

html .svg-fill-color-hover-secondary:hover {
    fill:#15628f !important;
}

html .svg-fill-color-hover-secondary svg:hover path,
html .svg-fill-color-hover-secondary svg:hover rect,
html .svg-fill-color-hover-secondary svg:hover line,
html .svg-fill-color-hover-secondary svg:hover polyline,
html .svg-fill-color-hover-secondary svg:hover polygon {
    fill:#15628f !important;
}

html .svg-stroke-color-secondary {
    stroke:#15628f !important;
}

html .svg-stroke-color-secondary svg path,
html .svg-stroke-color-secondary svg rect,
html .svg-stroke-color-secondary svg line,
html .svg-stroke-color-secondary svg polyline,
html .svg-stroke-color-secondary svg polygon {
    stroke: #1e90d3 !important;
}

html .svg-stroke-color-hover-secondary:hover {
    stroke: #1e90d3 !important;
}

html .svg-stroke-color-hover-secondary svg:hover path,
html .svg-stroke-color-hover-secondary svg:hover rect,
html .svg-stroke-color-hover-secondary svg:hover line,
html .svg-stroke-color-hover-secondary svg:hover polyline,
html .svg-stroke-color-hover-secondary svg:hover polygon {
    stroke: #1e90d3 !important;
}

html .svg-fill-color-uc {
    fill: #525252 !important;
}

html .svg-fill-color-uc svg path,
html .svg-fill-color-uc svg rect,
html .svg-fill-color-uc svg line,
html .svg-fill-color-uc svg polyline,
html .svg-fill-color-uc svg polygon {
    fill: #525252 !important;
}

html .svg-fill-color-hover-uc:hover {
    fill: #525252 !important;
}

html .svg-fill-color-hover-uc svg:hover path,
html .svg-fill-color-hover-uc svg:hover rect,
html .svg-fill-color-hover-uc svg:hover line,
html .svg-fill-color-hover-uc svg:hover polyline,
html .svg-fill-color-hover-uc svg:hover polygon {
    fill: #525252 !important;
}

html .svg-stroke-color-uc {
    stroke: #525252 !important;
}

html .svg-stroke-color-uc svg path,
html .svg-stroke-color-uc svg rect,
html .svg-stroke-color-uc svg line,
html .svg-stroke-color-uc svg polyline,
html .svg-stroke-color-uc svg polygon {
    stroke: #525252 !important;
}

html .svg-stroke-color-hover-uc:hover {
    stroke: #525252 !important;
}

html .svg-stroke-color-hover-uc svg:hover path,
html .svg-stroke-color-hover-uc svg:hover rect,
html .svg-stroke-color-hover-uc svg:hover line,
html .svg-stroke-color-hover-uc svg:hover polyline,
html .svg-stroke-color-hover-uc svg:hover polygon {
    stroke: #525252 !important;
}

html .svg-fill-color-dort {
    fill: #71b1dd !important;
}

html .svg-fill-color-dort svg path,
html .svg-fill-color-dort svg rect,
html .svg-fill-color-dort svg line,
html .svg-fill-color-dort svg polyline,
html .svg-fill-color-dort svg polygon {
    fill: #71b1dd !important;
}

html .svg-fill-color-hover-dort:hover {
    fill: #71b1dd !important;
}

html .svg-fill-color-hover-dort svg:hover path,
html .svg-fill-color-hover-dort svg:hover rect,
html .svg-fill-color-hover-dort svg:hover line,
html .svg-fill-color-hover-dort svg:hover polyline,
html .svg-fill-color-hover-dort svg:hover polygon {
    fill: #71b1dd !important;
}

html .svg-stroke-color-dort {
    stroke: #71b1dd !important;
}

html .svg-stroke-color-dort svg path,
html .svg-stroke-color-dort svg rect,
html .svg-stroke-color-dort svg line,
html .svg-stroke-color-dort svg polyline,
html .svg-stroke-color-dort svg polygon {
    stroke: #71b1dd !important;
}

html .svg-stroke-color-hover-dort:hover {
    stroke: #71b1dd !important;
}

html .svg-stroke-color-hover-dort svg:hover path,
html .svg-stroke-color-hover-dort svg:hover rect,
html .svg-stroke-color-hover-dort svg:hover line,
html .svg-stroke-color-hover-dort svg:hover polyline,
html .svg-stroke-color-hover-dort svg:hover polygon {
    stroke: #71b1dd !important;
}

html .svg-fill-color-dark {
    fill: #212529 !important;
}

html .svg-fill-color-dark svg path,
html .svg-fill-color-dark svg rect,
html .svg-fill-color-dark svg line,
html .svg-fill-color-dark svg polyline,
html .svg-fill-color-dark svg polygon {
    fill: #212529 !important;
}

html .svg-fill-color-hover-dark:hover {
    fill: #212529 !important;
}

html .svg-fill-color-hover-dark svg:hover path,
html .svg-fill-color-hover-dark svg:hover rect,
html .svg-fill-color-hover-dark svg:hover line,
html .svg-fill-color-hover-dark svg:hover polyline,
html .svg-fill-color-hover-dark svg:hover polygon {
    fill: #212529 !important;
}

html .svg-stroke-color-dark {
    stroke: #212529 !important;
}

html .svg-stroke-color-dark svg path,
html .svg-stroke-color-dark svg rect,
html .svg-stroke-color-dark svg line,
html .svg-stroke-color-dark svg polyline,
html .svg-stroke-color-dark svg polygon {
    stroke: #212529 !important;
}

html .svg-stroke-color-hover-dark:hover {
    stroke: #212529 !important;
}

html .svg-stroke-color-hover-dark svg:hover path,
html .svg-stroke-color-hover-dark svg:hover rect,
html .svg-stroke-color-hover-dark svg:hover line,
html .svg-stroke-color-hover-dark svg:hover polyline,
html .svg-stroke-color-hover-dark svg:hover polygon {
    stroke: #212529 !important;
}

html .svg-fill-color-light {
    fill: #FFF !important;
}

html .svg-fill-color-light svg path,
html .svg-fill-color-light svg rect,
html .svg-fill-color-light svg line,
html .svg-fill-color-light svg polyline,
html .svg-fill-color-light svg polygon {
    fill: #FFF !important;
}

html .svg-fill-color-hover-light:hover {
    fill: #FFF !important;
}

html .svg-fill-color-hover-light svg:hover path,
html .svg-fill-color-hover-light svg:hover rect,
html .svg-fill-color-hover-light svg:hover line,
html .svg-fill-color-hover-light svg:hover polyline,
html .svg-fill-color-hover-light svg:hover polygon {
    fill: #FFF !important;
}

html .svg-stroke-color-light {
    stroke: #FFF !important;
}

html .svg-stroke-color-light svg path,
html .svg-stroke-color-light svg rect,
html .svg-stroke-color-light svg line,
html .svg-stroke-color-light svg polyline,
html .svg-stroke-color-light svg polygon {
    stroke: #FFF !important;
}

html .svg-stroke-color-hover-light:hover {
    stroke: #FFF !important;
}

html .svg-stroke-color-hover-light svg:hover path,
html .svg-stroke-color-hover-light svg:hover rect,
html .svg-stroke-color-hover-light svg:hover line,
html .svg-stroke-color-hover-light svg:hover polyline,
html .svg-stroke-color-hover-light svg:hover polygon {
    stroke: #FFF !important;
}

.svg-animation-effect-1-hover:hover svg path,
.svg-animation-effect-1-hover:hover svg polygon,
.svg-animation-effect-1-hover:hover svg polyline,
.svg-animation-effect-1-hover:hover svg rect {
    stroke:#15628f;
}

.svg-animation-effect-1-hover.svg-animation-effect-1-hover-primary:hover svg path,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-primary:hover svg polygon,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-primary:hover svg polyline,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-primary:hover svg rect {
    stroke:#15628f;
}

.svg-animation-effect-1-hover.svg-animation-effect-1-hover-secondary:hover svg path,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-secondary:hover svg polygon,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-secondary:hover svg polyline,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-secondary:hover svg rect {
    stroke: #1e90d3;
}

.svg-animation-effect-1-hover.svg-animation-effect-1-hover-uc:hover svg path,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-uc:hover svg polygon,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-uc:hover svg polyline,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-uc:hover svg rect {
    stroke: #525252;
}

.svg-animation-effect-1-hover.svg-animation-effect-1-hover-dort:hover svg path,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-dort:hover svg polygon,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-dort:hover svg polyline,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-dort:hover svg rect {
    stroke: #71b1dd;
}

.svg-animation-effect-1-hover.svg-animation-effect-1-hover-dark:hover svg path,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-dark:hover svg polygon,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-dark:hover svg polyline,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-dark:hover svg rect {
    stroke: #212529;
}

.svg-animation-effect-1-hover.svg-animation-effect-1-hover-light:hover svg path,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-light:hover svg polygon,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-light:hover svg polyline,
.svg-animation-effect-1-hover.svg-animation-effect-1-hover-light:hover svg rect {
    stroke: #FFF;
}

.gradient-text-color {
    color:#15628f;
    background: linear-gradient(to bottom right,#15628f, #1e90d3);
    background-image: linear-gradient(to right,#15628f, #1e90d3);
}

html .bg-color-primary,
html .bg-primary {
    background-color:#15628f !important;
}
html .bg-color-primary3,
html .bg-primary3 {
    background: linear-gradient(to right,#15628f, #70a0a2, #8fbabb);

}
html .bg-color-primary4,
html .bg-primary4 {
    background: linear-gradient(to right, #71b1dd, rgba(229, 173, 56, 0.68), rgba(229, 173, 56, 0.23));

}

html .bg-color-primary7,
html .bg-primary7 {
    background: linear-gradient(to right, #e6af3c, rgb(230, 175, 60, 0.45), #e6af3c);

}
html .bg-color-primary8,
html .bg-primary8 {
    background: linear-gradient(to right, #ffffff, #fde5ef, #ffffff);

}
html .bg-color-primary9,
html .bg-primary9 {
    background: #1e90d3;

}

html .bg-color-hover-primary:hover,
html .bg-hover-primary:hover {
    background-color:#15628f !important;
}


html .bg-color-after-primary:after {
    background-color:#15628f !important;
}

html .bg-color-hover-after-primary:after:hover {
    background-color:#15628f !important;
}

html .bg-color-before-primary:before {
    background-color:#15628f !important;
}

html .bg-color-hover-before-primary:before:hover {
    background-color:#15628f !important;
}

html .bg-color-soryap,
html .bg-soryap {
    background-image: linear-gradient(to right, rgba(240, 87, 67, 0), rgba(240, 87, 67, 0.47), #1e90d3);
}

html .bg-color-hover-soryap:hover,
html .bg-hover-soryap:hover {
    background-image: linear-gradient(to right, rgba(240, 87, 67, 0), rgba(240, 87, 67, 0.47), #1e90d3);
}

html .bg-color-after-soryap:after {
    background-image: linear-gradient(to right, rgba(240, 87, 67, 0), rgba(240, 87, 67, 0.47), #1e90d3);
}

html .bg-color-hover-after-soryap:after:hover {
    background-image: linear-gradient(to right, rgba(240, 87, 67, 0), rgba(240, 87, 67, 0.47), #1e90d3);
}

html .bg-color-before-soryap:before {
    background-image: linear-gradient(to right, rgba(240, 87, 67, 0), rgba(240, 87, 67, 0.47), #1e90d3);
}

html .bg-color-hover-before-soryap:before:hover {
    background-image: linear-gradient(to right, rgba(240, 87, 67, 0), rgba(240, 87, 67, 0.47), #1e90d3);
}


html .bg-color-secondary,
html .bg-secondary {
    background-color: #1e90d3 !important;
}

html .bg-color-hover-secondary:hover,
html .bg-hover-secondary:hover {
    background-color: #1e90d3 !important;
}

html .bg-color-after-secondary:after {
    background-color: #1e90d3 !important;
}

html .bg-color-hover-after-secondary:after:hover {
    background-color: #1e90d3 !important;
}

html .bg-color-before-secondary:before {
    background-color: #1e90d3 !important;
}

html .bg-color-hover-before-secondary:before:hover {
    background-color: #1e90d3 !important;
}

html .bg-color-uc,
html .bg-uc {
    background-color: #525252 !important;
}

html .bg-color-hover-uc:hover,
html .bg-hover-uc:hover {
    background-color: #525252 !important;
}

html .bg-color-after-uc:after {
    background-color: #525252 !important;
}

html .bg-color-hover-after-uc:after:hover {
    background-color: #525252 !important;
}

html .bg-color-before-uc:before {
    background-color: #525252 !important;
}

html .bg-color-hover-before-uc:before:hover {
    background-color: #525252 !important;
}

html .bg-color-dort,
html .bg-dort {
    background-color: #71b1dd !important;
}
html .bg-color-dort-bucuk,
html .bg-dort-bucuk {
    background-color: #efd5a0 !important;
}

html .bg-color-hover-dort:hover,
html .bg-hover-dort:hover {
    background-color: #71b1dd !important;
}

html .bg-color-after-dort:after {
    background-color: #71b1dd !important;
}

html .bg-color-hover-after-dort:after:hover {
    background-color: #71b1dd !important;
}

html .bg-color-before-dort:before {
    background-color: #71b1dd !important;
}

html .bg-color-hover-before-dort:before:hover {
    background-color: #71b1dd !important;
}

html .bg-color-dark,
html .bg-dark {
    background-color: rgb(79, 79, 79);
}

html .bg-color-primary2,
html .bg-primary2 {
    background-color: rgba(64 114 116 / 74%) !important;
}
html .bg-color-primary5,
html .bg-primary5 {
    background-color: rgba(59, 59, 59, 0.74) !important;
}
html .bg-color-hover-primary3:hover,
html .bg-hover-primary3:hover {
    background-color: rgba(82, 166, 178, 0.67) !important;
}
html .bg-color-darks,
html .bg-darks {
    background-color:#292929 !important;
}

html .bg-color-hover-dark:hover,
html .bg-hover-dark:hover {
    background-color: #212529 !important;
}
html .bg-color-hover-primary2:hover,
html .bg-hover-primary2:hover {
    background-color:#15628f !important;
}


html .bg-color-after-dark:after {
    background-color: #212529 !important;
}

html .bg-color-hover-after-dark:after:hover {
    background-color: #212529 !important;
}

html .bg-color-before-dark:before {
    background-color: #212529 !important;
}

html .bg-color-hover-before-dark:before:hover {
    background-color: #212529 !important;
}

html .bg-color-light,
html .bg-light {
    background-color: #FFF !important;
}

html .bg-color-hover-light:hover,
html .bg-hover-light:hover {
    background-color: #FFF !important;
}

html .bg-color-after-light:after {
    background-color: #FFF !important;
}

html .bg-color-hover-after-light:after:hover {
    background-color: #FFF !important;
}

html .bg-color-before-light:before {
    background-color: #FFF !important;
}

html .bg-color-hover-before-light:before:hover {
    background-color: #FFF !important;
}

.bg-gradient {
    background-color:#15628f !important;
    background-image: linear-gradient(to right,#15628f 0%, #1e90d3 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#353535', endColorstr='#1e90d3', GradientType=1);
}

.bg-gradient-to-top {
    background-color:#15628f !important;
    background-image: linear-gradient(to top,#15628f 0%, #1e90d3 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#353535', endColorstr='#1e90d3', GradientType=1);
}

.bg-gradient-to-bottom {
    background-color:#15628f !important;
    background-image: linear-gradient(to bottom,#15628f 0%, #1e90d3 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#353535', endColorstr='#1e90d3', GradientType=1);
}
/* Color Transition */
@-webkit-keyframes colorTransition {
    0% {
        background-color:#15628f;
    }

    33% {
        background-color: #1e90d3;
    }

    66% {
        background-color: #525252;
    }

    100% {
        background-color: #71b1dd;
    }
}

@keyframes colorTransition {
    0% {
        background-color:#15628f;
    }

    33% {
        background-color: #1e90d3;
    }

    66% {
        background-color: #525252;
    }

    100% {
        background-color: #71b1dd;
    }
}

html .border-color-primary {
    border-color:#15628f !important;
}

html .border-color-hover-primary:hover {
    border-color:#15628f !important;
}

html .border-color-secondary {
    border-color: #1e90d3 !important;
}

html .border-color-hover-secondary:hover {
    border-color: #1e90d3 !important;
}

html .border-color-uc {
    border-color: #525252 !important;
}

html .border-color-hover-uc:hover {
    border-color: #525252 !important;
}

html .border-color-dort {
    border-color: #1e90d3 !important;
}

html .border-color-hover-dort:hover {
    border-color: #1e90d3 !important;
}
html .border-color-grey1 {
    border-color: #e3e3e3 !important;
}

html .border-color-hover-grey1:hover {
    border-color: #e3e3e3 !important;
}
html .border-color-grey2 {
    border-color: #c9c9c9 !important;
}

html .border-color-hover-grey2:hover {
    border-color: #c9c9c9 !important;
}

html .border-color-dark {
    border-color: #212529 !important;
}

html .border-color-hover-dark:hover {
    border-color: #212529 !important;
}

html .border-color-light {
    border-color: #FFF !important;
}

html .border-color-hover-light:hover {
    border-color: #FFF !important;
}

.alternative-font {
    color:#15628f;
}

html .box-shadow-1-primary:before {
    box-shadow: 0 30px 90px#15628f !important;
}

html .box-shadow-1-secondary:before {
    box-shadow: 0 30px 90px #1e90d3 !important;
}

html .box-shadow-1-uc:before {
    box-shadow: 0 30px 90px #525252 !important;
}

html .box-shadow-1-dort:before {
    box-shadow: 0 30px 90px #71b1dd !important;
}

html .box-shadow-1-dark:before {
    box-shadow: 0 30px 90px #212529 !important;
}

html .box-shadow-1-light:before {
    box-shadow: 0 30px 90px #FFF !important;
}

html .blockquote-primary {
    border-color:#15628f !important;
}

html .blockquote-secondary {
    border-color: #1e90d3 !important;
}

html .blockquote-uc {
    border-color: #525252 !important;
}

html .blockquote-dort {
    border-color: #71b1dd !important;
}

html .blockquote-dark {
    border-color: #212529 !important;
}

html .blockquote-light {
    border-color: #FFF !important;
}

p.drop-caps:first-letter {
    color:#15628f;
}

p.drop-caps.drop-caps-style-2:first-letter {
    background-color:#15628f;
}

html .nav-color-primary nav > ul > li > a {
    color:#15628f !important;
}

html .nav-color-primary:not(.header-nav-main-dropdown-arrow) nav > ul > li > a:before {
    background-color:#15628f !important;
}

html .nav-color-primary:not(.header-nav-main-dropdown-arrow) nav > ul > li ul {
    border-top-color:#15628f !important;
}

html .nav-color-secondary nav > ul > li > a {
    color: #1e90d3 !important;
}

html .nav-color-secondary:not(.header-nav-main-dropdown-arrow) nav > ul > li > a:before {
    background-color: #1e90d3 !important;
}

html .nav-color-secondary:not(.header-nav-main-dropdown-arrow) nav > ul > li ul {
    border-top-color: #1e90d3 !important;
}

html .nav-color-uc nav > ul > li > a {
    color: #525252 !important;
}

html .nav-color-uc:not(.header-nav-main-dropdown-arrow) nav > ul > li > a:before {
    background-color: #525252 !important;
}

html .nav-color-uc:not(.header-nav-main-dropdown-arrow) nav > ul > li ul {
    border-top-color: #525252 !important;
}

html .nav-color-dort nav > ul > li > a {
    color: #71b1dd !important;
}

html .nav-color-dort:not(.header-nav-main-dropdown-arrow) nav > ul > li > a:before {
    background-color: #71b1dd !important;
}

html .nav-color-dort:not(.header-nav-main-dropdown-arrow) nav > ul > li ul {
    border-top-color: #71b1dd !important;
}

html .nav-color-dark nav > ul > li > a {
    color: #212529 !important;
}

html .nav-color-dark:not(.header-nav-main-dropdown-arrow) nav > ul > li > a:before {
    background-color: #212529 !important;
}

html .nav-color-dark:not(.header-nav-main-dropdown-arrow) nav > ul > li ul {
    border-top-color: #212529 !important;
}

html .nav-color-light nav > ul > li > a {
    color: #FFF !important;
}

html .nav-color-light:not(.header-nav-main-dropdown-arrow) nav > ul > li > a:before {
    background-color: #FFF !important;
}

html .nav-color-light:not(.header-nav-main-dropdown-arrow) nav > ul > li ul {
    border-top-color: #FFF !important;
}

.nav-pills > li.active > a,
.nav-pills .nav-link.active {
    background-color: rgba(255, 255, 255, 0);
}

.nav-pills > li.active > a:hover,
.nav-pills .nav-link.active:hover,
.nav-pills > li.active > a:focus,
.nav-pills .nav-link.active:focus {
    background-color:#15628f;
}

.nav-active-style-1 > li > a:hover,
.nav-active-style-1 > li > a:focus,
.nav-active-style-1 > li > a.active {
    border-bottom-color:#15628f;
}

html .nav-pills-primary a {
    color:#15628f;
}

html .nav-pills-primary a:hover {
    color:#4daae2;
}

html .nav-pills-primary a:focus {
    color:#4daae2;
}

html .nav-pills-primary a:active {
    color:#4daae2;
}

html .nav-pills-primary .nav-link.active,
html .nav-pills-primary > li.active > a {
    background-color:#15628f;
}

html .nav-pills-primary .nav-link.active:hover,
html .nav-pills-primary > li.active > a:hover,
html .nav-pills-primary .nav-link.active:focus,
html .nav-pills-primary > li.active > a:focus {
    background-color:#15628f;
}

html .nav-pills-secondary a {
    color: #1e90d3;
}

html .nav-pills-secondary a:hover {
    color: #fdfefe;
}

html .nav-pills-secondary a:focus {
    color: #fdfefe;
}

html .nav-pills-secondary a:active {
    color: #dfeae6;
}

html .nav-pills-secondary .nav-link.active,
html .nav-pills-secondary > li.active > a {
    background-color: #1e90d3;
}

html .nav-pills-secondary .nav-link.active:hover,
html .nav-pills-secondary > li.active > a:hover,
html .nav-pills-secondary .nav-link.active:focus,
html .nav-pills-secondary > li.active > a:focus {
    background-color: #1e90d3;
}

html .nav-pills-uc a {
    color: #525252;
}

html .nav-pills-uc a:hover {
    color: #fafffb;
}

html .nav-pills-uc a:focus {
    color: #fafffb;
}

html .nav-pills-uc a:active {
    color: #fbcaca;
}

html .nav-pills-uc .nav-link.active,
html .nav-pills-uc > li.active > a {
    background-color: #525252;
}

html .nav-pills-uc .nav-link.active:hover,
html .nav-pills-uc > li.active > a:hover,
html .nav-pills-uc .nav-link.active:focus,
html .nav-pills-uc > li.active > a:focus {
    background-color: #525252;
}

html .nav-pills-dort a {
    color: #71b1dd;
}

html .nav-pills-dort a:hover {
    color: #1a1a29;
}

html .nav-pills-dort a:focus {
    color: #1a1a29;
}

html .nav-pills-dort a:active {
    color: #060609;
}

html .nav-pills-dort .nav-link.active,
html .nav-pills-dort > li.active > a {
    background-color: #71b1dd;
}

html .nav-pills-dort .nav-link.active:hover,
html .nav-pills-dort > li.active > a:hover,
html .nav-pills-dort .nav-link.active:focus,
html .nav-pills-dort > li.active > a:focus {
    background-color: #71b1dd;
}

html .nav-pills-dark a {
    color: #212529;
}

html .nav-pills-dark a:hover {
    color: #2c3237;
}

html .nav-pills-dark a:focus {
    color: #2c3237;
}

html .nav-pills-dark a:active {
    color: #16181b;
}

html .nav-pills-dark .nav-link.active,
html .nav-pills-dark > li.active > a {
    background-color: #212529;
}

html .nav-pills-dark .nav-link.active:hover,
html .nav-pills-dark > li.active > a:hover,
html .nav-pills-dark .nav-link.active:focus,
html .nav-pills-dark > li.active > a:focus {
    background-color: #212529;
}

html .nav-pills-light a {
    color: #FFF;
}

html .nav-pills-light a:hover {
    color: #ffffff;
}

html .nav-pills-light a:focus {
    color: #ffffff;
}

html .nav-pills-light a:active {
    color: #f2f2f2;
}

html .nav-pills-light .nav-link.active,
html .nav-pills-light > li.active > a {
    background-color: #FFF;
}

html .nav-pills-light .nav-link.active:hover,
html .nav-pills-light > li.active > a:hover,
html .nav-pills-light .nav-link.active:focus,
html .nav-pills-light > li.active > a:focus {
    background-color: #FFF;
}

.nav-link {
    color:#15628f;
}

.nav-link:hover {
    color:#4daae2;
}

.nav-link:focus {
    color:#4daae2;
}

.nav-link:active {
    color:#4daae2;
}

.section-scroll-dots-navigation-colored > ul > li.active > a:before {
    background:#15628f;
}

.sort-source-wrapper .nav > li.active > a {
    color:#15628f;
}

.sort-source-wrapper .nav > li.active > a:hover,
.sort-source-wrapper .nav > li.active > a:focus {
    color:#15628f;
}

.sort-source.sort-source-style-2 > li.active > a:after {
    border-top-color:#15628f;
}

.sort-source.sort-source-style-3 > li.active > a {
    border-bottom-color: #931255 !important;
    color: #931255 !important;
}


html .badge-primary {
    background-color:#15628f;
}

html .badge-secondary {
    background-color: #1e90d3;
}

html .badge-uc {
    background-color: #525252;
}

html .badge-dort {
    background-color: #71b1dd;
}

html .badge-dark {
    background-color: #212529;
}

html .badge-light {
    background-color: #FFF;
}

html .overlay-color-primary:not(.no-skin):before {
    background-color:  #1e90d3aa !important;
}

html .overlay-color-secondary:not(.no-skin):before {
    background-color: #1e90d3 !important;
}

html .overlay-color-uc:not(.no-skin):before {
    background-color: #525252 !important;
}

html .overlay-color-dort:not(.no-skin):before {
    background-color: #71b1dd !important;
}
html .overlay-color-bes:not(.no-skin):before {
    background-color: #3d6467 !important;
}
html .overlay-color-alti:not(.no-skin):before {
    background-color: rgb(82, 80, 60) !important;
}
html .overlay-color-yedi:not(.no-skin):before {
    background-color: rgba(58, 39, 1, 0.88) !important;
}
html .overlay-color-sekiz:not(.no-skin):before {
    background-color: rgba(229, 0, 125, 0.44) !important;
}
html .overlay-color-dokuz:not(.no-skin):before {
    background-color: rgb(121, 24, 66) !important;
}
html .overlay-color-dark:not(.no-skin):before {
    background-color: #212529 !important;
}
html .overlay-color-dark2:not(.no-skin):before {
    background-color: rgb(8, 65, 87) !important;
}
html .overlay-color-light:not(.no-skin):before {
    background-color: #FFF !important;
}

.overlay-gradient:before {
    background-color: #525252 !important;
    background-image: linear-gradient(to right, #525252 0%, #71b1dd 100%) !important;
}

.btn-link {
    color:#15628f;
}

.btn-link:hover {
    color:#4daae2;
}

.btn-link:active {
    color:#4daae2;
}

html .btn-primary {
    background-color:#15628f;
    border-color:#15628f#15628f#15628f;
    color: #FFF;
    --color:#15628f;
    --hover: #6998c6;
    --disabled:#15628f;
    --active: #6998c6;
}

html .btn-primary:hover,
html .btn-primary.hover {
    border-color: #1e90d3 #1e90d3 #1e90d3;
    color: #ffffff;
}

html .btn-primary:hover:not(.bg-transparent),
html .btn-primary.hover:not(.bg-transparent) {
    background-color: #1e90d3;
}

html .btn-primary:focus,
html .btn-primary.focus {
    border-color: #1e90d3 #1e90d3 #1e90d3;
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(187, 77, 77, 0.5);
}

html .btn-primary:focus:not(.bg-transparent),
html .btn-primary.focus:not(.bg-transparent) {
    background-color:#15628f;
}

html .btn-primary.disabled,
html .btn-primary:disabled {
    border-color:#15628f#15628f#15628f;
}

html .btn-primary.disabled:not(.bg-transparent),
html .btn-primary:disabled:not(.bg-transparent) {
    background-color:#15628f;
}

html .btn-primary:active,
html .btn-primary.active {
    border-color:#15628f#15628f#15628f !important;
}

html .btn-primary:active:not(.bg-transparent),
html .btn-primary.active:not(.bg-transparent) {
    background-color:#15628f !important;
    background-image: none !important;
}

html .btn-primary-scale-2 {
    background-color:#15628f;
    border-color:#15628f#15628f#15628f;
    color: #FFF;
}

html .btn-primary-scale-2:hover,
html .btn-primary-scale-2.hover {
    border-color:#15628f#15628f#15628f;
    color: #FFF;
}

html .btn-primary-scale-2:hover:not(.bg-transparent),
html .btn-primary-scale-2.hover:not(.bg-transparent) {
    background-color:#15628f;
}

html .btn-primary-scale-2:focus,
html .btn-primary-scale-2.focus {
    border-color:#15628f#15628f#15628f;
    color: #FFF;
    box-shadow: 0 0 0 3px rgba(154, 59, 59, 0.5);
}

html .btn-primary-scale-2:focus:not(.bg-transparent),
html .btn-primary-scale-2.focus:not(.bg-transparent) {
    background-color:#15628f;
}

html .btn-primary-scale-2.disabled,
html .btn-primary-scale-2:disabled {
    border-color:#15628f#15628f#15628f;
}

html .btn-primary-scale-2.disabled:not(.bg-transparent),
html .btn-primary-scale-2:disabled:not(.bg-transparent) {
    background-color:#15628f;
}

html .btn-primary-scale-2:active,
html .btn-primary-scale-2.active {
    border-color:#15628f#15628f#15628f !important;
}

html .btn-primary-scale-2:active:not(.bg-transparent),
html .btn-primary-scale-2.active:not(.bg-transparent) {
    background-color:#15628f !important;
    background-image: none !important;
}

html .show > .btn-primary.dropdown-toggle,
html .show > .btn-primary-scale-2.dropdown-toggle {
    background-color:#15628f !important;
    background-image: none !important;
    border-color:#15628f#15628f#15628f !important;
}

html .btn-check:active + .btn-primary,
html .btn-check:checked + .btn-primary,
html .btn-check:focus + .btn-primary {
    background-color:#15628f;
    border-color:#15628f#15628f#15628f;
    color: #FFF;
}

html .btn-secondary {
    background-color: #1e90d3;
    border-color: #1e90d3 #1e90d3 #1e90d3;
    color: #fff;
    --color: #1e90d3;
    --hover: #ffffff;
    --disabled: #1e90d3;
    --active: #d7e5e0;
}

html .btn-secondary:hover,
html .btn-secondary.hover {
    border-color: #151515 #151515 #151515;
    color: #fff;
}

html .btn-secondary:hover:not(.bg-transparent),
html .btn-secondary.hover:not(.bg-transparent) {
    background-color:#151515;
}

html .btn-secondary:focus,
html .btn-secondary.focus {
    border-color: #20435d #20435d #20435d;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(238, 244, 242, 0.5);
}

html .btn-secondary:focus:not(.bg-transparent),
html .btn-secondary.focus:not(.bg-transparent) {
    background-color:#15628f;
}

html .btn-secondary.disabled,
html .btn-secondary:disabled {
    border-color: #1e90d3 #1e90d3 #cfe0da;
}

html .btn-secondary.disabled:not(.bg-transparent),
html .btn-secondary:disabled:not(.bg-transparent) {
    background-color: #1e90d3;
}

html .btn-secondary:active,
html .btn-secondary.active {
    border-color: #cfe0da #cfe0da #cfe0da !important;
}

html .btn-secondary:active:not(.bg-transparent),
html .btn-secondary.active:not(.bg-transparent) {
    background-color:#15628f !important;
    background-image: none !important;
}

html .btn-secondary-scale-2 {
    background-color: #cfe0da;
    border-color: #cfe0da #cfe0da #cfe0da;
    color: #777;
}

html .btn-secondary-scale-2:hover,
html .btn-secondary-scale-2.hover {
    border-color: #1e90d3 #1e90d3 #cfe0da;
    color: #777;
}

html .btn-secondary-scale-2:hover:not(.bg-transparent),
html .btn-secondary-scale-2.hover:not(.bg-transparent) {
    background-color: #e6efec;
}

html .btn-secondary-scale-2:focus,
html .btn-secondary-scale-2.focus {
    border-color: #b0ccc3 #b0ccc3 #b0ccc3;
    color: #777;
    box-shadow: 0 0 0 3px rgba(207, 224, 218, 0.5);
}

html .btn-secondary-scale-2:focus:not(.bg-transparent),
html .btn-secondary-scale-2.focus:not(.bg-transparent) {
    background-color: #b8d1c9;
}

html .btn-secondary-scale-2.disabled,
html .btn-secondary-scale-2:disabled {
    border-color: #cfe0da #cfe0da #cfe0da;
}

html .btn-secondary-scale-2.disabled:not(.bg-transparent),
html .btn-secondary-scale-2:disabled:not(.bg-transparent) {
    background-color: #cfe0da;
}

html .btn-secondary-scale-2:active,
html .btn-secondary-scale-2.active {
    border-color: #b0ccc3 #b0ccc3 #b0ccc3 !important;
}

html .btn-secondary-scale-2:active:not(.bg-transparent),
html .btn-secondary-scale-2.active:not(.bg-transparent) {
    background-color: #b8d1c9 !important;
    background-image: none !important;
}

html .show > .btn-secondary.dropdown-toggle,
html .show > .btn-secondary-scale-2.dropdown-toggle {
    background-color: #d7e5e0 !important;
    background-image: none !important;
    border-color: #cfe0da #cfe0da #cfe0da !important;
}

html .btn-check:active + .btn-secondary,
html .btn-check:checked + .btn-secondary,
html .btn-check:focus + .btn-secondary {
    background-color: #dfeae6;
    border-color: #1e90d3 #1e90d3 #dfeae6;
    color: #777;
}

html .btn-uc {
    background-color: #525252;
    border-color: #525252 #525252 #525252;
    color: #777;
    --color: #525252;
    --hover: #ffffff;
    --disabled: #525252;
    --active: #525252;
}

html .btn-uc:hover,
html .btn-uc.hover {
    border-color: #ffffff #ffffff #525252;
    color: #777;
}

html .btn-uc:hover:not(.bg-transparent),
html .btn-uc.hover:not(.bg-transparent) {
    background-color: #ffffff;
}

html .btn-uc:focus,
html .btn-uc.focus {
    border-color: #525252 #525252 #525252;
    color: #777;
    box-shadow: 0 0 0 3px rgba(226, 253, 234, 0.5);
}

html .btn-uc:focus:not(.bg-transparent),
html .btn-uc.focus:not(.bg-transparent) {
    background-color: #525252;
}

html .btn-uc.disabled,
html .btn-uc:disabled {
    border-color: #525252 #525252 #525252;
}

html .btn-uc.disabled:not(.bg-transparent),
html .btn-uc:disabled:not(.bg-transparent) {
    background-color: #525252;
}

html .btn-uc:active,
html .btn-uc.active {
    border-color: #1e435e #1e435e #1e435e !important;
}

html .btn-uc:active:not(.bg-transparent),
html .btn-uc.active:not(.bg-transparent) {
    background-color: #1e435e !important;
    background-image: none !important;
}

html .btn-uc-scale-2 {
    background-color: #1e435e;
    border-color: #1e435e #1e435e #1e435e;
    color: #777;
}

html .btn-uc-scale-2:hover,
html .btn-uc-scale-2.hover {
    border-color: #525252 #525252 #fab2b2;
    color: #777;
}

html .btn-uc-scale-2:hover:not(.bg-transparent),
html .btn-uc-scale-2.hover:not(.bg-transparent) {
    background-color: #d6fce1;
}

html .btn-uc-scale-2:focus,
html .btn-uc-scale-2.focus {
    border-color: #1e435e #1e435e #1e435e;
    color: #777;
    box-shadow: 0 0 0 3px rgba(250, 178, 178, 0.5);
}

html .btn-uc-scale-2:focus:not(.bg-transparent),
html .btn-uc-scale-2.focus:not(.bg-transparent) {
    background-color: #1e435e;
}

html .btn-uc-scale-2.disabled,
html .btn-uc-scale-2:disabled {
    border-color: #1e435e #1e435e #1e435e;
}

html .btn-uc-scale-2.disabled:not(.bg-transparent),
html .btn-uc-scale-2:disabled:not(.bg-transparent) {
    background-color: #1e435e;
}

html .btn-uc-scale-2:active,
html .btn-uc-scale-2.active {
    border-color: #1e435e #1e435e #1e435e !important;
}

html .btn-uc-scale-2:active:not(.bg-transparent),
html .btn-uc-scale-2.active:not(.bg-transparent) {
    background-color: #1e435e !important;
    background-image: none !important;
}

html .show > .btn-uc.dropdown-toggle,
html .show > .btn-uc-scale-2.dropdown-toggle {
    background-color: #1e435e !important;
    background-image: none !important;
    border-color: #1e435e #1e435e #1e435e !important;
}

html .btn-check:active + .btn-uc,
html .btn-check:checked + .btn-uc,
html .btn-check:focus + .btn-uc {
    background-color: #525252;
    border-color: #525252 #525252 #525252;
    color: #777;
}

html .btn-dort {
    background-color: #71b1dd;
    border-color: #71b1dd #71b1dd #71b1dd;
    color: #FFF;
    --color: #71b1dd;
    --hover: #1e435e;
    --disabled: #1e435e;
    --active: #cafdff;
}

html .btn-dort:hover,
html .btn-dort.hover {
    border-color: #1e435e #1e435e #1e435e;
    color: #FFF;
}

html .btn-dort:hover:not(.bg-transparent),
html .btn-dort.hover:not(.bg-transparent) {
    background-color: #1e435e;
}

html .btn-dort:focus,
html .btn-dort.focus {
    border-color: #000000 #000000 #000000;
    color: #FFF;
    box-shadow: 0 0 0 3px rgba(16, 16, 25, 0.5);
}

html .btn-dort:focus:not(.bg-transparent),
html .btn-dort.focus:not(.bg-transparent) {
    background-color: #fffef2;
}

html .btn-dort.disabled,
html .btn-dort:disabled {
    border-color: #71b1dd #71b1dd #71b1dd;
}

html .btn-dort.disabled:not(.bg-transparent),
html .btn-dort:disabled:not(.bg-transparent) {
    background-color: #71b1dd;
}

html .btn-dort:active,
html .btn-dort.active {
    border-color: #000000 #000000 #000000 !important;
}

html .btn-dort:active:not(.bg-transparent),
html .btn-dort.active:not(.bg-transparent) {
    background-color: #010102 !important;
    background-image: none !important;
}

html .btn-dort-scale-2 {
    background-color: #000000;
    border-color: #000000 #000000 #000000;
    color: #FFF;
}

html .btn-dort-scale-2:hover,
html .btn-dort-scale-2.hover {
    border-color: #1a1a1a #1a1a1a #000000;
    color: #FFF;
}

html .btn-dort-scale-2:hover:not(.bg-transparent),
html .btn-dort-scale-2.hover:not(.bg-transparent) {
    background-color: #131313;
}

html .btn-dort-scale-2:focus,
html .btn-dort-scale-2.focus {
    border-color: #000000 #000000 #000000;
    color: #FFF;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.5);
}

html .btn-dort-scale-2:focus:not(.bg-transparent),
html .btn-dort-scale-2.focus:not(.bg-transparent) {
    background-color: #000000;
}

html .btn-dort-scale-2.disabled,
html .btn-dort-scale-2:disabled {
    border-color: #000000 #000000 #000000;
}

html .btn-dort-scale-2.disabled:not(.bg-transparent),
html .btn-dort-scale-2:disabled:not(.bg-transparent) {
    background-color: #000000;
}

html .btn-dort-scale-2:active,
html .btn-dort-scale-2.active {
    border-color: #000000 #000000 #000000 !important;
}

html .btn-dort-scale-2:active:not(.bg-transparent),
html .btn-dort-scale-2.active:not(.bg-transparent) {
    background-color: #000000 !important;
    background-image: none !important;
}

html .show > .btn-dort.dropdown-toggle,
html .show > .btn-dort-scale-2.dropdown-toggle {
    background-color: #010102 !important;
    background-image: none !important;
    border-color: #000000 #000000 #000000 !important;
}

html .btn-check:active + .btn-dort,
html .btn-check:checked + .btn-dort,
html .btn-check:focus + .btn-dort {
    background-color: #060609;
    border-color: #71b1dd #71b1dd #060609;
    color: #FFF;
}

html .btn-bes {
    background-color: #1e90d3;
    border-color: #1e90d3 #1e90d3 #1e90d3;
    color: #FFF;
    --color: #1e90d3;
    --hover: #521234;
    --disabled: #521234;
    --active: #cafdff;
}

html .btn-bes:hover,
html .btn-bes.hover {
    border-color: #1e90d3 #1e90d3 #1e90d3;
    color: #1e90d3;
}

html .btn-bes:hover:not(.bg-transparent),
html .btn-bes.hover:not(.bg-transparent) {
    background-color: #fff;
}

html .btn-bes:focus,
html .btn-bes.focus {
    border-color: #000000 #000000 #000000;
    color: #FFF;
    box-shadow: 0 0 0 3px rgba(16, 16, 25, 0.5);
}

html .btn-bes:focus:not(.bg-transparent),
html .btn-bes.focus:not(.bg-transparent) {
    background-color: #fffef2;
}

html .btn-bes.disabled,
html .btn-bes:disabled {
    border-color: #1e90d3 #1e90d3 #1e90d3;
}

html .btn-bes.disabled:not(.bg-transparent),
html .btn-bes:disabled:not(.bg-transparent) {
    background-color: #1e90d3;
}

html .btn-bes:active,
html .btn-bes.active {
    border-color: #000000 #000000 #000000 !important;
}

html .btn-bes:active:not(.bg-transparent),
html .btn-bes.active:not(.bg-transparent) {
    background-color: #010102 !important;
    background-image: none !important;
}

html .btn-bes-scale-2 {
    background-color: #000000;
    border-color: #000000 #000000 #000000;
    color: #FFF;
}

html .btn-bes-scale-2:hover,
html .btn-bes-scale-2.hover {
    border-color: #1a1a1a #1a1a1a #000000;
    color: #FFF;
}

html .btn-bes-scale-2:hover:not(.bg-transparent),
html .btn-bes-scale-2.hover:not(.bg-transparent) {
    background-color: #131313;
}

html .btn-bes-scale-2:focus,
html .btn-bes-scale-2.focus {
    border-color: #000000 #000000 #000000;
    color: #FFF;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.5);
}

html .btn-bes-scale-2:focus:not(.bg-transparent),
html .btn-bes-scale-2.focus:not(.bg-transparent) {
    background-color: #000000;
}

html .btn-bes-scale-2.disabled,
html .btn-bes-scale-2:disabled {
    border-color: #000000 #000000 #000000;
}

html .btn-bes-scale-2.disabled:not(.bg-transparent),
html .btn-bes-scale-2:disabled:not(.bg-transparent) {
    background-color: #000000;
}

html .btn-bes-scale-2:active,
html .btn-bes-scale-2.active {
    border-color: #000000 #000000 #000000 !important;
}

html .btn-bes-scale-2:active:not(.bg-transparent),
html .btn-bes-scale-2.active:not(.bg-transparent) {
    background-color: #000000 !important;
    background-image: none !important;
}

html .show > .btn-bes.dropdown-toggle,
html .show > .btn-bes-scale-2.dropdown-toggle {
    background-color: #010102 !important;
    background-image: none !important;
    border-color: #000000 #000000 #000000 !important;
}

html .btn-check:active + .btn-bes,
html .btn-check:checked + .btn-bes,
html .btn-check:focus + .btn-bes {
    background-color: #060609;
    border-color: #1e90d3 #1e90d3 #060609;
    color: #FFF;
}

html .btn-dark {
    background-color: #212529;
    border-color: #212529 #212529 #0a0c0d;
    color: #FFF;
    --color: #212529;
    --hover: #32383e;
    --disabled: #212529;
    --active: #101214;
}

html .btn-dark:hover,
html .btn-dark.hover {
    border-color: #383f45 #383f45 #212529;
    color: #FFF;
}

html .btn-dark:hover:not(.bg-transparent),
html .btn-dark.hover:not(.bg-transparent) {
    background-color: #32383e;
}

html .btn-dark:focus,
html .btn-dark.focus {
    border-color: #0a0c0d #0a0c0d #000000;
    color: #FFF;
    box-shadow: 0 0 0 3px rgba(33, 37, 41, 0.5);
}

html .btn-dark:focus:not(.bg-transparent),
html .btn-dark.focus:not(.bg-transparent) {
    background-color: #101214;
}

html .btn-dark.disabled,
html .btn-dark:disabled {
    border-color: #212529 #212529 #0a0c0d;
}

html .btn-dark.disabled:not(.bg-transparent),
html .btn-dark:disabled:not(.bg-transparent) {
    background-color: #212529;
}

html .btn-dark:active,
html .btn-dark.active {
    border-color: #0a0c0d #0a0c0d #000000 !important;
}

html .btn-dark:active:not(.bg-transparent),
html .btn-dark.active:not(.bg-transparent) {
    background-color: #101214 !important;
    background-image: none !important;
}

html .btn-dark-scale-2 {
    background-color: #0a0c0d;
    border-color: #0a0c0d #0a0c0d #000000;
    color: #FFF;
}

html .btn-dark-scale-2:hover,
html .btn-dark-scale-2.hover {
    border-color: #212529 #212529 #0a0c0d;
    color: #FFF;
}

html .btn-dark-scale-2:hover:not(.bg-transparent),
html .btn-dark-scale-2.hover:not(.bg-transparent) {
    background-color: #1b1f22;
}

html .btn-dark-scale-2:focus,
html .btn-dark-scale-2.focus {
    border-color: #000000 #000000 #000000;
    color: #FFF;
    box-shadow: 0 0 0 3px rgba(10, 11, 13, 0.5);
}

html .btn-dark-scale-2:focus:not(.bg-transparent),
html .btn-dark-scale-2.focus:not(.bg-transparent) {
    background-color: #000000;
}

html .btn-dark-scale-2.disabled,
html .btn-dark-scale-2:disabled {
    border-color: #0a0c0d #0a0c0d #000000;
}

html .btn-dark-scale-2.disabled:not(.bg-transparent),
html .btn-dark-scale-2:disabled:not(.bg-transparent) {
    background-color: #0a0c0d;
}

html .btn-dark-scale-2:active,
html .btn-dark-scale-2.active {
    border-color: #000000 #000000 #000000 !important;
}

html .btn-dark-scale-2:active:not(.bg-transparent),
html .btn-dark-scale-2.active:not(.bg-transparent) {
    background-color: #000000 !important;
    background-image: none !important;
}

html .show > .btn-dark.dropdown-toggle,
html .show > .btn-dark-scale-2.dropdown-toggle {
    background-color: #101214 !important;
    background-image: none !important;
    border-color: #0a0c0d #0a0c0d #000000 !important;
}

html .btn-check:active + .btn-dark,
html .btn-check:checked + .btn-dark,
html .btn-check:focus + .btn-dark {
    background-color: #16181b;
    border-color: #212529 #212529 #16181b;
    color: #FFF;
}

html .btn-light {
    background-color: #FFF;
    border-color: #FFF #FFF #e6e6e6;
    color: #777;
    --color: #FFF;
    --hover: #ffffff;
    --disabled: #FFF;
    --active: #ececec;
}

html .btn-light:hover,
html .btn-light.hover {
    border-color: #ffffff #ffffff #FFF;
    color: #777;
}

html .btn-light:hover:not(.bg-transparent),
html .btn-light.hover:not(.bg-transparent) {
    background-color: #ffffff;
}

html .btn-light:focus,
html .btn-light.focus {
    border-color: #e6e6e6 #e6e6e6 #cccccc;
    color: #777;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

html .btn-light:focus:not(.bg-transparent),
html .btn-light.focus:not(.bg-transparent) {
    background-color: #ececec;
}

html .btn-light.disabled,
html .btn-light:disabled {
    border-color: #FFF #FFF #e6e6e6;
}

html .btn-light.disabled:not(.bg-transparent),
html .btn-light:disabled:not(.bg-transparent) {
    background-color: #FFF;
}

html .btn-light:active,
html .btn-light.active {
    border-color: #e6e6e6 #e6e6e6 #cccccc !important;
}

html .btn-light:active:not(.bg-transparent),
html .btn-light.active:not(.bg-transparent) {
    background-color: #ececec !important;
    background-image: none !important;
}

html .btn-light-scale-2 {
    background-color: #e6e6e6;
    border-color: #e6e6e6 #e6e6e6 #cccccc;
    color: #777;
}

html .btn-light-scale-2:hover,
html .btn-light-scale-2.hover {
    border-color: #ffffff #ffffff #e6e6e6;
    color: #777;
}

html .btn-light-scale-2:hover:not(.bg-transparent),
html .btn-light-scale-2.hover:not(.bg-transparent) {
    background-color: #f9f9f9;
}

html .btn-light-scale-2:focus,
html .btn-light-scale-2.focus {
    border-color: #cccccc #cccccc #b3b3b3;
    color: #777;
    box-shadow: 0 0 0 3px rgba(230, 230, 230, 0.5);
}

html .btn-light-scale-2:focus:not(.bg-transparent),
html .btn-light-scale-2.focus:not(.bg-transparent) {
    background-color: #d2d2d2;
}

html .btn-light-scale-2.disabled,
html .btn-light-scale-2:disabled {
    border-color: #e6e6e6 #e6e6e6 #cccccc;
}

html .btn-light-scale-2.disabled:not(.bg-transparent),
html .btn-light-scale-2:disabled:not(.bg-transparent) {
    background-color: #e6e6e6;
}

html .btn-light-scale-2:active,
html .btn-light-scale-2.active {
    border-color: #cccccc #cccccc #b3b3b3 !important;
}

html .btn-light-scale-2:active:not(.bg-transparent),
html .btn-light-scale-2.active:not(.bg-transparent) {
    background-color: #d2d2d2 !important;
    background-image: none !important;
}

html .show > .btn-light.dropdown-toggle,
html .show > .btn-light-scale-2.dropdown-toggle {
    background-color: #ececec !important;
    background-image: none !important;
    border-color: #e6e6e6 #e6e6e6 #cccccc !important;
}

html .btn-check:active + .btn-light,
html .btn-check:checked + .btn-light,
html .btn-check:focus + .btn-light {
    background-color: #f2f2f2;
    border-color: #FFF #FFF #f2f2f2;
    color: #777;
}

html .btn-outline.btn-primary {
    color:#15628f;
    background-color: transparent;
    background-image: none;
    border-color:#15628f;
}

html .btn-outline.btn-primary:hover,
html .btn-outline.btn-primary.hover {
    color: #FFF;
    background-color:#15628f;
    border-color:#15628f;
}

html .btn-outline.btn-primary:focus,
html .btn-outline.btn-primary.focus {
    box-shadow: 0 0 0 3px rgba(240, 68, 67, 0.6);
}

html .btn-outline.btn-primary.disabled,
html .btn-outline.btn-primary:disabled {
    color:#15628f;
    background-color: transparent;
}

html .btn-outline.btn-primary:active,
html .btn-outline.btn-primary.active {
    color: #FFF !important;
    background-color:#15628f !important;
    border-color:#15628f !important;
}

html .show > .btn-outline.btn-primary.dropdown-toggle {
    color: #FFF !important;
    background-color:#15628f !important;
    border-color:#15628f !important;
}

html .btn-outline.btn-secondary {
    color: #1e90d3;
    background-color: transparent;
    background-image: none;
    border-color: #1e90d3;
}

html .btn-outline.btn-secondary:hover,
html .btn-outline.btn-secondary.hover {
    color: #777;
    background-color: #1e90d3;
    border-color: #1e90d3;
}

html .btn-outline.btn-secondary:focus,
html .btn-outline.btn-secondary.focus {
    box-shadow: 0 0 0 3px rgba(238, 244, 242, 0.5);
}

html .btn-outline.btn-secondary.disabled,
html .btn-outline.btn-secondary:disabled {
    color: #1e90d3;
    background-color: transparent;
}

html .btn-outline.btn-secondary:active,
html .btn-outline.btn-secondary.active {
    color: #777 !important;
    background-color: #1e90d3 !important;
    border-color: #1e90d3 !important;
}

html .show > .btn-outline.btn-secondary.dropdown-toggle {
    color: #777 !important;
    background-color: #1e90d3 !important;
    border-color: #1e90d3 !important;
}

html .btn-outline.btn-uc {
    color: #525252;
    background-color: transparent;
    background-image: none;
    border-color: #525252;
}

html .btn-outline.btn-uc:hover,
html .btn-outline.btn-uc.hover {
    color: #777;
    background-color: #525252;
    border-color: #525252;
}

html .btn-outline.btn-uc:focus,
html .btn-outline.btn-uc.focus {
    box-shadow: 0 0 0 3px rgba(226, 253, 234, 0.5);
}

html .btn-outline.btn-uc.disabled,
html .btn-outline.btn-uc:disabled {
    color: #525252;
    background-color: transparent;
}

html .btn-outline.btn-uc:active,
html .btn-outline.btn-uc.active {
    color: #777 !important;
    background-color: #525252 !important;
    border-color: #525252 !important;
}

html .show > .btn-outline.btn-uc.dropdown-toggle {
    color: #777 !important;
    background-color: #525252 !important;
    border-color: #525252 !important;
}

html .btn-outline.btn-dort {
    color: #71b1dd;
    background-color: transparent;
    background-image: none;
    border-color: #71b1dd;
}

html .btn-outline.btn-dort:hover,
html .btn-outline.btn-dort.hover {
    color: #FFF;
    background-color: #71b1dd;
    border-color: #71b1dd;
}

html .btn-outline.btn-dort:focus,
html .btn-outline.btn-dort.focus {
    box-shadow: 0 0 0 3px rgba(16, 16, 25, 0.5);
}

html .btn-outline.btn-dort.disabled,
html .btn-outline.btn-dort:disabled {
    color: #71b1dd;
    background-color: transparent;
}

html .btn-outline.btn-dort:active,
html .btn-outline.btn-dort.active {
    color: #FFF !important;
    background-color: #71b1dd !important;
    border-color: #71b1dd !important;
}

html .show > .btn-outline.btn-dort.dropdown-toggle {
    color: #FFF !important;
    background-color: #71b1dd !important;
    border-color: #71b1dd !important;
}

html .btn-outline.btn-dark {
    color: #212529;
    background-color: transparent;
    background-image: none;
    border-color: #212529;
}

html .btn-outline.btn-dark:hover,
html .btn-outline.btn-dark.hover {
    color: #FFF;
    background-color: #212529;
    border-color: #212529;
}

html .btn-outline.btn-dark:focus,
html .btn-outline.btn-dark.focus {
    box-shadow: 0 0 0 3px rgba(33, 37, 41, 0.5);
}

html .btn-outline.btn-dark.disabled,
html .btn-outline.btn-dark:disabled {
    color: #212529;
    background-color: transparent;
}

html .btn-outline.btn-dark:active,
html .btn-outline.btn-dark.active {
    color: #FFF !important;
    background-color: #212529 !important;
    border-color: #212529 !important;
}

html .show > .btn-outline.btn-dark.dropdown-toggle {
    color: #FFF !important;
    background-color: #212529 !important;
    border-color: #212529 !important;
}

html .btn-outline.btn-light {
    color: #FFF;
    background-color: transparent;
    background-image: none;
    border-color: #FFF;
}

html .btn-outline.btn-light:hover,
html .btn-outline.btn-light.hover {
    color: #777;
    background-color: #FFF;
    border-color: #FFF;
}

html .btn-outline.btn-light:focus,
html .btn-outline.btn-light.focus {
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.5);
}

html .btn-outline.btn-light.disabled,
html .btn-outline.btn-light:disabled {
    color: #FFF;
    background-color: transparent;
}

html .btn-outline.btn-light:active,
html .btn-outline.btn-light.active {
    color: #777 !important;
    background-color: #FFF !important;
    border-color: #FFF !important;
}

html .show > .btn-outline.btn-light.dropdown-toggle {
    color: #777 !important;
    background-color: #FFF !important;
    border-color: #FFF !important;
}

html .btn-with-arrow.btn-primary {
    background-color: transparent;
    border-color: transparent;
    color:#15628f;
}

html .btn-with-arrow.btn-primary:active {
    background-color: transparent !important;
    border-color: transparent !important;
    color:#15628f !important;
}

html .btn-with-arrow.btn-primary span {
    background-color:#15628f;
    box-shadow: 2px 3px 18px -3px#15628f;
}

html .btn-with-arrow.btn-primary.btn-outline {
    border-color:#15628f !important;
}

html .btn-with-arrow.btn-primary.btn-outline:hover span {
    background-color: #f04443 !important;
    box-shadow: none;
}

html .btn-with-arrow-solid.btn-primary span {
    background-color:#15628f;
}

html .btn-with-arrow.btn-secondary {
    background-color: transparent;
    border-color: transparent;
    color: #1e90d3;
}

html .btn-with-arrow.btn-secondary:active {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #1e90d3 !important;
}

html .btn-with-arrow.btn-secondary span {
    background-color: #1e90d3;
    box-shadow: 2px 3px 18px -3px #1e90d3;
}

html .btn-with-arrow.btn-secondary.btn-outline {
    border-color: #1e90d3 !important;
}

html .btn-with-arrow.btn-secondary.btn-outline:hover span {
    background-color: #fdfefe !important;
    box-shadow: none;
}

html .btn-with-arrow-solid.btn-secondary span {
    background-color: #dfeae6;
}

html .btn-with-arrow.btn-uc {
    background-color: transparent;
    border-color: transparent;
    color: #525252;
}

html .btn-with-arrow.btn-uc:active {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #525252 !important;
}

html .btn-with-arrow.btn-uc span {
    background-color: #525252;
    box-shadow: 2px 3px 18px -3px #525252;
}

html .btn-with-arrow.btn-uc.btn-outline {
    border-color: #525252 !important;
}

html .btn-with-arrow.btn-uc.btn-outline:hover span {
    background-color: #fafffb !important;
    box-shadow: none;
}

html .btn-with-arrow-solid.btn-uc span {
    background-color: #ee9c9c;
}

html .btn-with-arrow.btn-dort {
    background-color: transparent;
    border-color: transparent;
    color: #71b1dd;
}

html .btn-with-arrow.btn-dort:active {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #71b1dd !important;
}

html .btn-with-arrow.btn-dort span {
    background-color: #71b1dd;
    box-shadow: 2px 3px 18px -3px #71b1dd;
}

html .btn-with-arrow.btn-dort.btn-outline {
    border-color: #71b1dd !important;
}

html .btn-with-arrow.btn-dort.btn-outline:hover span {
    background-color: #1a1a29 !important;
    box-shadow: none;
}

html .btn-with-arrow-solid.btn-dort span {
    background-color: #060609;
}

html .btn-with-arrow.btn-dark {
    background-color: transparent;
    border-color: transparent;
    color: #212529;
}

html .btn-with-arrow.btn-dark:active {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #212529 !important;
}

html .btn-with-arrow.btn-dark span {
    background-color: #212529;
    box-shadow: 2px 3px 18px -3px #212529;
}

html .btn-with-arrow.btn-dark.btn-outline {
    border-color: #212529 !important;
}

html .btn-with-arrow.btn-dark.btn-outline:hover span {
    background-color: #2c3237 !important;
    box-shadow: none;
}

html .btn-with-arrow-solid.btn-dark span {
    background-color: #16181b;
}

html .btn-with-arrow.btn-light {
    background-color: transparent;
    border-color: transparent;
    color: #FFF;
}

html .btn-with-arrow.btn-light:active {
    background-color: transparent !important;
    border-color: transparent !important;
    color: #FFF !important;
}

html .btn-with-arrow.btn-light span {
    background-color: #FFF;
    box-shadow: 2px 3px 18px -3px #FFF;
}

html .btn-with-arrow.btn-light.btn-outline {
    border-color: #FFF !important;
}

html .btn-with-arrow.btn-light.btn-outline:hover span {
    background-color: #ffffff !important;
    box-shadow: none;
}

html .btn-with-arrow-solid.btn-light span {
    background-color: #f2f2f2;
}

.btn-gradient:not(.btn-outline) {
    background: linear-gradient(135deg,#15628f 0%, #1e90d3 80%) !important;
    color: #FFF;
}

.btn-gradient:not(.btn-outline):hover,
.btn-gradient:not(.btn-outline).hover {
    background: linear-gradient(135deg, #aa5959 0%, #ffffff 80%) !important;
    color: #FFF;
}

.btn-gradient:not(.btn-outline):focus,
.btn-gradient:not(.btn-outline).focus {
    box-shadow: 0 0 0 3px rgba(240, 68, 67, 0.6);
}

.btn-gradient:not(.btn-outline).disabled,
.btn-gradient:not(.btn-outline):disabled {
    background: linear-gradient(135deg,#15628f 0%, #1e90d3 80%) !important;
}

.btn-gradient:not(.btn-outline):active,
.btn-gradient:not(.btn-outline).active {
    background: linear-gradient(135deg, #a33e3e 0%, #d7e5e0 80%) !important;
    color: #FFF !important;
}

.btn-gradient.btn-outline {
    -o-border-image: linear-gradient(135deg,#15628f 0%, #1e90d3 80%);
    border-image: linear-gradient(135deg,#15628f 0%, #1e90d3 80%);
    color:#15628f;
}

.btn-gradient.btn-outline:hover,
.btn-gradient.btn-outline.hover {
    -o-border-image: linear-gradient(135deg, #aa5959 0%, #ffffff 80%);
    border-image: linear-gradient(135deg, #aa5959 0%, #ffffff 80%);
    color: #aa5959;
}

.btn-gradient.btn-outline:focus,
.btn-gradient.btn-outline.focus {
    box-shadow: 0 0 0 3px rgba(240, 68, 67, 0.6));
}

.btn-gradient.btn-outline.disabled,
.btn-gradient.btn-outline:disabled {
    -o-border-image: linear-gradient(135deg,#15628f 0%, #1e90d3 80%);
    border-image: linear-gradient(135deg,#15628f 0%, #1e90d3 80%);
}

.btn-gradient.btn-outline:active,
.btn-gradient.btn-outline.active {
    -o-border-image: linear-gradient(135deg, #aa5959 0%, #d7e5e0 80%);
    border-image: linear-gradient(135deg, #aa5959 0%, #d7e5e0 80%);
    color: #aa5959;
}

.btn-gradient-primary:not(.btn-outline) {
    background: linear-gradient(135deg, #aa5959 0%, #aa5959 80%) !important;
    color: #FFF;
}

.btn-gradient-primary:not(.btn-outline):hover,
.btn-gradient-primary:not(.btn-outline).hover {
    background: linear-gradient(135deg, #aa5959 0%, #aa5959 80%) !important;
    color: #FFF;
}

.btn-gradient-primary:not(.btn-outline):focus,
.btn-gradient-primary:not(.btn-outline).focus {
    box-shadow: 0 0 0 3px rgba(240, 68, 67, 0.6);
}

.btn-gradient-primary:not(.btn-outline).disabled,
.btn-gradient-primary:not(.btn-outline):disabled {
    background: linear-gradient(135deg,#15628f 80%,#15628f 0%) !important;
}

.btn-gradient-primary:not(.btn-outline):active,
.btn-gradient-primary:not(.btn-outline).active {
    background: linear-gradient(135deg,#15628f 0%,#15628f 80%) !important;
    color: #FFF !important;
}

.btn-gradient-primary.btn-outline {
    -o-border-image: linear-gradient(135deg,#15628f 0%,#15628f 80%);
    border-image: linear-gradient(135deg,#15628f 0%,#15628f 80%);
    color:#15628f;
}

.btn-gradient-primary.btn-outline:hover,
.btn-gradient-primary.btn-outline.hover {
    -o-border-image: linear-gradient(135deg, #6eacc4 0%, #6eacc4 80%);
    border-image: linear-gradient(135deg, #6eacc4 0%, #6eacc4 80%);
    color: #6eacc4;
}

.btn-gradient-primary.btn-outline:focus,
.btn-gradient-primary.btn-outline.focus {
    box-shadow: 0 0 0 3px rgba(187, 77, 77, 0.5);
}

.btn-gradient-primary.btn-outline.disabled,
.btn-gradient-primary.btn-outline:disabled {
    -o-border-image: linear-gradient(135deg,#15628f 0%,#15628f 80%);
    border-image: linear-gradient(135deg,#15628f 0%,#15628f 80%);
}

.btn-gradient-primary.btn-outline:active,
.btn-gradient-primary.btn-outline.active {
    -o-border-image: linear-gradient(135deg, #6eacc4 0%, #6eacc4 80%);
    border-image: linear-gradient(135deg, #6eacc4 0%, #6eacc4 80%);
    color: #6eacc4;
}

.pagination > a,
.pagination > a:hover,
.pagination > a:focus,
.pagination > li > a,
.pagination > li > span,
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus {
    color:#15628f;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus,
.pagination .page-item.active .page-link {
    background-color:#15628f !important;
    border-color:#15628f;
}

body.dark .pagination > li > a,
body.dark .pagination > li > span,
body.dark .pagination > li > a:hover,
body.dark .pagination > li > span:hover,
body.dark .pagination > li > a:focus,
body.dark .pagination > li > span:focus {
    color:#15628f;
}

body.dark .pagination > .active > a,
body.dark .pagination > .active > span,
body.dark .pagination > .active > a:hover,
body.dark .pagination > .active > span:hover,
body.dark .pagination > .active > a:focus,
body.dark .pagination > .active > span:focus {
    background-color:#15628f;
    border-color:#15628f;
}

.pagination > .active > a,
body.dark .pagination > .active > a {
    background-color:#15628f;
    border-color: #f04443 #f04443 #f04443;
    color: #fff;
}

.pagination > .active > a:hover,
body.dark .pagination > .active > a:hover,
.pagination > .active > a.hover,
body.dark .pagination > .active > a.hover {
    border-color: #f04443 #f04443 #f04443;
    color: #fff;
}

.pagination > .active > a:hover:not(.bg-transparent),
body.dark .pagination > .active > a:hover:not(.bg-transparent),
.pagination > .active > a.hover:not(.bg-transparent),
body.dark .pagination > .active > a.hover:not(.bg-transparent) {
    background-color: #bf7676;
}

.pagination > .active > a:focus,
body.dark .pagination > .active > a:focus,
.pagination > .active > a.focus,
body.dark .pagination > .active > a.focus {
    border-color: #f04443 #f04443 #f04443;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(240, 68, 67, 0.6);
}

.pagination > .active > a:focus:not(.bg-transparent),
body.dark .pagination > .active > a:focus:not(.bg-transparent),
.pagination > .active > a.focus:not(.bg-transparent),
body.dark .pagination > .active > a.focus:not(.bg-transparent) {
    background-color:#15628f;
}

.pagination > .active > a.disabled,
body.dark .pagination > .active > a.disabled,
.pagination > .active > a:disabled,
body.dark .pagination > .active > a:disabled {
    border-color: #f04443 #f04443 #f04443;
}

.pagination > .active > a.disabled:not(.bg-transparent),
body.dark .pagination > .active > a.disabled:not(.bg-transparent),
.pagination > .active > a:disabled:not(.bg-transparent),
body.dark .pagination > .active > a:disabled:not(.bg-transparent) {
    background-color:#15628f;
}

.pagination > .active > a:active,
body.dark .pagination > .active > a:active,
.pagination > .active > a.active,
body.dark .pagination > .active > a.active {
    border-color: #f04443 #f04443 #f04443 !important;
}

.pagination > .active > a:active:not(.bg-transparent),
body.dark .pagination > .active > a:active:not(.bg-transparent),
.pagination > .active > a.active:not(.bg-transparent),
body.dark .pagination > .active > a.active:not(.bg-transparent) {
    background-color:#15628f !important;
    background-image: none !important;
}

.custom-control-input:checked ~ .custom-control-label::before,
.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color:#15628f;
}

.custom-checkbox-switch:checked {
    background-color:#15628f;
    border-color:#15628f;
}

html .alert-primary {
    background-color:#15628f;
    border-color:#15628f;
    color: #FFF;
}

html .alert-primary .alert-link {
    color: #FFF;
}

html .alert-secondary {
    background-color: #1e90d3;
    border-color: #e5eeeb;
    color: #777;
}

html .alert-secondary .alert-link {
    color: #777;
}

html .alert-uc {
    background-color: #525252;
    border-color: #fcd4d4;
    color: #777;
}

html .alert-uc .alert-link {
    color: #777;
}

html .alert-dort {
    background-color: #71b1dd;
    border-color: #0a0a10;
    color: #FFF;
}

html .alert-dort .alert-link {
    color: #FFF;
}

html .alert-dark {
    background-color: #212529;
    border-color: #1a1d21;
    color: #FFF;
}

html .alert-dark .alert-link {
    color: #FFF;
}

html .alert-light {
    background-color: #FFF;
    border-color: #f7f7f7;
    color: #777;
}

html .alert-light .alert-link {
    color: #777;
}

html .progress-bar-primary {
    background-color:#15628f;
}

html .progress-bar-secondary {
    background-color: #1e90d3;
}

html .progress-bar-uc {
    background-color: #525252;
}

html .progress-bar-dort {
    background-color: #71b1dd;
}

html .progress-bar-dark {
    background-color: #212529;
}

html .progress-bar-light {
    background-color: #FFF;
}

html .word-rotator.loading-bar-primary .word-rotator-words::after {
    background-color:#15628f;
}

html .word-rotator.loading-bar-secondary .word-rotator-words::after {
    background-color: #1e90d3;
}

html .word-rotator.loading-bar-uc .word-rotator-words::after {
    background-color: #525252;
}

html .word-rotator.loading-bar-dort .word-rotator-words::after {
    background-color: #71b1dd;
}

html .word-rotator.loading-bar-dark .word-rotator-words::after {
    background-color: #212529;
}

html .word-rotator.loading-bar-light .word-rotator-words::after {
    background-color: #FFF;
}
/* Mark */
html .mark.mark-gradient.mark-gradient-primary:before {
    background:#15628f;
    background: linear-gradient(90deg,#15628f 0%, rgba(77, 187, 109, 0) 100%);
}

html .mark.mark-gradient.mark-gradient-secondary:before {
    background: #1e90d3;
    background: linear-gradient(90deg, #1e90d3 0%, rgba(238, 244, 242, 0) 100%);
}

html .mark.mark-gradient.mark-gradient-uc:before {
    background: #525252;
    background: linear-gradient(90deg, #525252 0%, rgba(226, 253, 234, 0) 100%);
}

html .mark.mark-gradient.mark-gradient-dort:before {
    background: #71b1dd;
    background: linear-gradient(90deg, #71b1dd 0%, rgba(16, 16, 25, 0) 100%);
}

html .mark.mark-gradient.mark-gradient-dark:before {
    background: #212529;
    background: linear-gradient(90deg, #212529 0%, rgba(33, 37, 41, 0) 100%);
}

html .mark.mark-gradient.mark-gradient-light:before {
    background: #ffffff;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.process .process-step-circle {
    border-color:#15628f;
}

.process .process-step:hover .process-step-circle {
    background-color:#15628f;
}

.process .process-step:hover .process-step-circle .process-step-circle-content {
    color: #FFF !important;
}

.process.process-shapes .process-step-circle .process-step-circle-content,
.process.process-shapes .process-step-circle:before,
.process.process-shapes .process-step-circle:after {
    background-color:#15628f;
}

.process-connecting-line .connecting-line {
    background:#15628f;
}

html .rating-primary .filled-stars {
    color:#15628f;
}

html .rating-secondary .filled-stars {
    color: #1e90d3;
}

html .rating-uc .filled-stars {
    color: #525252;
}

html .rating-dort .filled-stars {
    color: #71b1dd;
}

html .rating-dark .filled-stars {
    color: #212529;
}

html .rating-light .filled-stars {
    color: #FFF;
}

html section.section-primary {
    background-color:#15628f !important;
    border-color:#15628f !important;
}

html section.section-primary h1,
html section.section-primary h2,
html section.section-primary h3,
html section.section-primary h4,
html section.section-primary h5,
html section.section-primary h6 {
    color: #FFF;
}

html section.section-primary p {
    color: #e6e6e6;
}

html section.section-primary-scale-2 {
    background-color:#15628f !important;
    border-color:#15628f !important;
}

html section.section-primary-scale-2 .sort-source.sort-source-style-2 > li.active > a:after {
    border-top-color:#15628f;
}

html section.section-secondary {
    background-color: #f0f4ee !important;
    border-color: #f0f4ee !important;
}

html section.section-secondary h1,
html section.section-secondary h2,
html section.section-secondary h3,
html section.section-secondary h4,
html section.section-secondary h5,
html section.section-secondary h6 {
    color: #777;
}

html section.section-secondary p {
    color: #5e5e5e;
}

html section.section-secondary-scale-2 {
    background-color: #e0cfcf !important;
    border-color: #d6c0c0 !important;
}

html section.section-secondary-scale-2 .sort-source.sort-source-style-2 > li.active > a:after {
    border-top-color: #e0cfcf;
}

html section.section-uc {
    background-color: #525252 !important;
    border-color: #fac9c9 !important;
}

html section.section-uc h1,
html section.section-uc h2,
html section.section-uc h3,
html section.section-uc h4,
html section.section-uc h5,
html section.section-uc h6 {
    color: #777;
}

html section.section-uc p {
    color: #5e5e5e;
}

html section.section-uc-scale-2 {
    background-color: #f68e8e !important;
    border-color: #f68e8e !important;
}

html section.section-uc-scale-2 .sort-source.sort-source-style-2 > li.active > a:after {
    border-top-color: #f68e8e;
}

html section.section-dort {
    background-color: #71b1dd !important;
    border-color: #060609 !important;
}

html section.section-dort h1,
html section.section-dort h2,
html section.section-dort h3,
html section.section-dort h4,
html section.section-dort h5,
html section.section-dort h6 {
    color: #FFF;
}

html section.section-dort p {
    color: #e6e6e6;
}

html section.section-dort-scale-2 {
    background-color: #000000 !important;
    border-color: #000000 !important;
}

html section.section-dort-scale-2 .sort-source.sort-source-style-2 > li.active > a:after {
    border-top-color: #000000;
}

html section.section-dark {
    background-color: #212529;
    border-color: #16181b !important;
}

html section.section-dark h1,
html section.section-dark h2,
html section.section-dark h3,
html section.section-dark h4,
html section.section-dark h5,
html section.section-dark h6 {
    color: #FFF;
}

html section.section-dark p {
    color: #e6e6e6;
}

html section.section-dark-scale-2 {
    background-color: #0a0c0d !important;
    border-color: #000000 !important;
}

html section.section-dark-scale-2 .sort-source.sort-source-style-2 > li.active > a:after {
    border-top-color: #0a0c0d;
}

html section.section-light {
    background-color: #FFF !important;
    border-color: #f2f2f2 !important;
}

html section.section-light h1,
html section.section-light h2,
html section.section-light h3,
html section.section-light h4,
html section.section-light h5,
html section.section-light h6 {
    color: #777;
}

html section.section-light p {
    color: #5e5e5e;
}

html section.section-light-scale-2 {
    background-color: #e6e6e6 !important;
    border-color: #d9d9d9 !important;
}

html section.section-light-scale-2 .sort-source.sort-source-style-2 > li.active > a:after {
    border-top-color: #e6e6e6;
}

section.section.section-background-half-primary-half-secondary {
    background: linear-gradient(to right,#15628f 50%, #1e90d3 50%);
}

section.section.section-overlay-opacity-gradient:before {
    background: linear-gradient(135deg,#15628f 0%, #1e90d3 80%);
}

html .bg-color-light-scale-1 {
    background-color: #f7f7f7 !important;
}

html .section.bg-color-light-scale-1,
html .bg-color-light-scale-border-top-1 {
    border-top-color: #efefef !important;
}

html .bg-color-light-scale-2 {
    background-color: #e8e8e8 !important;
}

html .section.bg-color-light-scale-2,
html .bg-color-light-scale-border-top-2 {
    border-top-color: #e0e0e0 !important;
}

html .bg-color-light-scale-3 {
    background-color: #e0e0e0 !important;
}

html .section.bg-color-light-scale-3,
html .bg-color-light-scale-border-top-3 {
    border-top-color: #d8d8d8 !important;
}

html .bg-color-light-scale-4 {
    background-color: #d8d8d8 !important;
}

html .section.bg-color-light-scale-4,
html .bg-color-light-scale-border-top-4 {
    border-top-color: #d1d1d1 !important;
}

html .bg-color-light-scale-5 {
    background-color: #d1d1d1 !important;
}

html .section.bg-color-light-scale-5,
html .bg-color-light-scale-border-top-5 {
    border-top-color: #c9c9c9 !important;
}

html .bg-color-light-scale-6 {
    background-color: #c9c9c9 !important;
}

html .section.bg-color-light-scale-6,
html .bg-color-light-scale-border-top-6 {
    border-top-color: #c1c1c1 !important;
}

html .bg-color-light-scale-7 {
    background-color: #c1c1c1 !important;
}

html .section.bg-color-light-scale-7,
html .bg-color-light-scale-border-top-7 {
    border-top-color: #bababa !important;
}

html .bg-color-light-scale-8 {
    background-color: #bababa !important;
}

html .section.bg-color-light-scale-8,
html .bg-color-light-scale-border-top-8 {
    border-top-color: #b2b2b2 !important;
}

html .bg-color-light-scale-9 {
    background-color: #b2b2b2 !important;
}

html .section.bg-color-light-scale-9,
html .bg-color-light-scale-border-top-9 {
    border-top-color: #ababab !important;
}

html .bg-color-dark-scale-1 {
    background-color: #212529 !important;
}

html .section.bg-color-dark-scale-1,
html .bg-color-dark-scale-border-top-1 {
    border-top-color: #1a1d21 !important;
}

html .bg-color-dark-scale-2 {
    background-color: #1c2023 !important;
}

html .section.bg-color-dark-scale-2,
html .bg-color-dark-scale-border-top-2 {
    border-top-color: #16181b !important;
}

html .bg-color-dark-scale-3 {
    background-color: #181b1e !important;
}

html .section.bg-color-dark-scale-3,
html .bg-color-dark-scale-border-top-3 {
    border-top-color: #111315 !important;
}

html .bg-color-dark-scale-4 {
    background-color: #131618 !important;
}

html .section.bg-color-dark-scale-4,
html .bg-color-dark-scale-border-top-4 {
    border-top-color: #0d0e10 !important;
}

html .bg-color-dark-scale-5 {
    background-color: #0f1112 !important;
}

html .section.bg-color-dark-scale-5,
html .bg-color-dark-scale-border-top-5 {
    border-top-color: #08090a !important;
}

html .bg-color-dark-scale-6 {
    background-color: #0a0c0d !important;
}

html .section.bg-color-dark-scale-6,
html .bg-color-dark-scale-border-top-6 {
    border-top-color: #030404 !important;
}

html .bg-color-dark-scale-7 {
    background-color: #060607 !important;
}

html .section.bg-color-dark-scale-7,
html .bg-color-dark-scale-border-top-7 {
    border-top-color: #000000 !important;
}

html .bg-color-dark-scale-8 {
    background-color: #010101 !important;
}

html .section.bg-color-dark-scale-8,
html .bg-color-dark-scale-border-top-8 {
    border-top-color: #000000 !important;
}

html .bg-color-dark-scale-9 {
    background-color: #000000 !important;
}

html .section.bg-color-dark-scale-9,
html .bg-color-dark-scale-border-top-9 {
    border-top-color: #000000 !important;
}

section.page-header .page-header-title-border {
    background-color:#15628f !important;
}

section.page-header.custom-product {
    background-color: #1e90d3;
    border-top-color: #1e90d3;
}

html .page-header-color.page-header-primary {
    background-color:#15628f;
    border-bottom-color:#15628f;
    color: #FFF;
}

html .page-header-color.page-header-primary h1 {
    color: #FFF;
}

html .page-header-color.page-header-primary h1 span {
    color: #FFF;
}

html .page-header-color.page-header-primary a {
    color: #FFF;
}

html .page-header-color.page-header-primary .breadcrumb > .active {
    color: #FFF;
}

html .page-header-color.page-header-secondary {
    background-color: #1e90d3;
    border-bottom-color: #1e90d3;
    color: #777;
}

html .page-header-color.page-header-secondary h1 {
    color: #777;
}

html .page-header-color.page-header-secondary h1 span {
    color: #777;
}

html .page-header-color.page-header-secondary a {
    color: #777;
}

html .page-header-color.page-header-secondary .breadcrumb > .active {
    color: #777;
}

html .page-header-color.page-header-uc {
    background-color: #525252;
    border-bottom-color: #525252;
    color: #777;
}

html .page-header-color.page-header-uc h1 {
    color: #777;
}

html .page-header-color.page-header-uc h1 span {
    color: #777;
}

html .page-header-color.page-header-uc a {
    color: #777;
}

html .page-header-color.page-header-uc .breadcrumb > .active {
    color: #777;
}

html .page-header-color.page-header-dort {
    background-color: #71b1dd;
    border-bottom-color: #71b1dd;
    color: #FFF;
}

html .page-header-color.page-header-dort h1 {
    color: #FFF;
}

html .page-header-color.page-header-dort h1 span {
    color: #FFF;
}

html .page-header-color.page-header-dort a {
    color: #FFF;
}

html .page-header-color.page-header-dort .breadcrumb > .active {
    color: #FFF;
}

html .page-header-color.page-header-dark {
    background-color: #212529;
    border-bottom-color: #212529;
    color: #FFF;
}

html .page-header-color.page-header-dark h1 {
    color: #FFF;
}

html .page-header-color.page-header-dark h1 span {
    color: #FFF;
}

html .page-header-color.page-header-dark a {
    color: #FFF;
}

html .page-header-color.page-header-dark .breadcrumb > .active {
    color: #FFF;
}

html .page-header-color.page-header-light {
    background-color: #FFF;
    border-bottom-color: #FFF;
    color: #777;
}

html .page-header-color.page-header-light h1 {
    color: #777;
}

html .page-header-color.page-header-light h1 span {
    color: #777;
}

html .page-header-color.page-header-light a {
    color: #777;
}

html .page-header-color.page-header-light .breadcrumb > .active {
    color: #777;
}

html .toggle-primary .toggle label,
html .toggle-primary .toggle .toggle-title {
    color:#15628f;
    border-left-color:#15628f;
    border-right-color:#15628f;
}

html .toggle-primary .toggle.active > label,
html .toggle-primary .toggle.active > .toggle-title {
    background-color:#15628f;
    border-color:#15628f;
    color: #FFF;
}

html .toggle-primary.toggle-simple .toggle > label:after,
html .toggle-primary.toggle-simple .toggle > .toggle-title:after {
    background-color:#15628f;
}

html .toggle-primary.toggle-minimal .toggle.active > label,
html .toggle-primary.toggle-minimal .toggle.active > .toggle-title {
    color:#15628f;
}

html .toggle-secondary .toggle label,
html .toggle-secondary .toggle .toggle-title {
    color: #1e90d3;
    border-left-color: #1e90d3;
    border-right-color: #1e90d3;
}

html .toggle-secondary .toggle.active > label,
html .toggle-secondary .toggle.active > .toggle-title {
    background-color: #1e90d3;
    border-color: #1e90d3;
    color: #777;
}

html .toggle-secondary.toggle-simple .toggle > label:after,
html .toggle-secondary.toggle-simple .toggle > .toggle-title:after {
    background-color: #1e90d3;
}

html .toggle-secondary.toggle-minimal .toggle.active > label,
html .toggle-secondary.toggle-minimal .toggle.active > .toggle-title {
    color: #1e90d3;
}

html .toggle-uc .toggle label,
html .toggle-uc .toggle .toggle-title {
    color: #525252;
    border-left-color: #525252;
    border-right-color: #525252;
}

html .toggle-uc .toggle.active > label,
html .toggle-uc .toggle.active > .toggle-title {
    background-color: #525252;
    border-color: #525252;
    color: #777;
}

html .toggle-uc.toggle-simple .toggle > label:after,
html .toggle-uc.toggle-simple .toggle > .toggle-title:after {
    background-color: #525252;
}

html .toggle-uc.toggle-minimal .toggle.active > label,
html .toggle-uc.toggle-minimal .toggle.active > .toggle-title {
    color: #525252;
}

html .toggle-dort .toggle label,
html .toggle-dort .toggle .toggle-title {
    color: #71b1dd;
    border-left-color: #71b1dd;
    border-right-color: #71b1dd;
}

html .toggle-dort .toggle.active > label,
html .toggle-dort .toggle.active > .toggle-title {
    background-color: #71b1dd;
    border-color: #71b1dd;
    color: #FFF;
}

html .toggle-dort.toggle-simple .toggle > label:after,
html .toggle-dort.toggle-simple .toggle > .toggle-title:after {
    background-color: #71b1dd;
}

html .toggle-dort.toggle-minimal .toggle.active > label,
html .toggle-dort.toggle-minimal .toggle.active > .toggle-title {
    color: #71b1dd;
}

html .toggle-dark .toggle label,
html .toggle-dark .toggle .toggle-title {
    color: #212529;
    border-left-color: #212529;
    border-right-color: #212529;
}

html .toggle-dark .toggle.active > label,
html .toggle-dark .toggle.active > .toggle-title {
    background-color: #212529;
    border-color: #212529;
    color: #FFF;
}

html .toggle-dark.toggle-simple .toggle > label:after,
html .toggle-dark.toggle-simple .toggle > .toggle-title:after {
    background-color: #212529;
}

html .toggle-dark.toggle-minimal .toggle.active > label,
html .toggle-dark.toggle-minimal .toggle.active > .toggle-title {
    color: #212529;
}

html .toggle-light .toggle label,
html .toggle-light .toggle .toggle-title {
    color: #FFF;
    border-left-color: #FFF;
    border-right-color: #FFF;
}

html .toggle-light .toggle.active > label,
html .toggle-light .toggle.active > .toggle-title {
    background-color: #FFF;
    border-color: #FFF;
    color: #777;
}

html .toggle-light.toggle-simple .toggle > label:after,
html .toggle-light.toggle-simple .toggle > .toggle-title:after {
    background-color: #FFF;
}

html .toggle-light.toggle-minimal .toggle.active > label,
html .toggle-light.toggle-minimal .toggle.active > .toggle-title {
    color: #FFF;
}

.thumb-info .thumb-info-type,
.thumb-info .thumb-info-action-icon,
.thumb-info-social-icons a,
.thumbnail .zoom,
.img-thumbnail .zoom,
.thumb-info-ribbon {
    background-color: #1e90d3;
}

html .thumb-info .thumb-info-action-icon-primary {
    background-color:#15628f;
}

html .thumb-info .thumb-info-action-icon-primary i {
    color: #FFF;
}

html .thumb-info .thumb-info-action-icon-secondary {
    background-color: #1e90d3;
}

html .thumb-info .thumb-info-action-icon-secondary i {
    color: #777;
}

html .thumb-info .thumb-info-action-icon-uc {
    background-color: #525252;
}

html .thumb-info .thumb-info-action-icon-uc i {
    color: #777;
}

html .thumb-info .thumb-info-action-icon-dort {
    background-color: #71b1dd;
}

html .thumb-info .thumb-info-action-icon-dort i {
    color: #FFF;
}

html .thumb-info .thumb-info-action-icon-dark {
    background-color: #212529;
}

html .thumb-info .thumb-info-action-icon-dark i {
    color: #FFF;
}

html .thumb-info .thumb-info-action-icon-light {
    background-color: #FFF;
}

html .thumb-info .thumb-info-action-icon-light i {
    color: #777;
}

.thumb-info-ribbon:before {
    border-right-color:#15628f;
    border-left-color:#15628f;
}

.thumb-info.thumb-info-block-primary .thumb-info-wrapper:before {
    background: #3679a1;
}

.thumb-info-floating-caption-title .thumb-info-floating-caption-type {
    background-color:#15628f;
}

.inverted {
    background-color:#15628f;
}

html .inverted-primary {
    background-color:#15628f;
}

html .inverted-secondary {
    background-color: #1e90d3;
}

html .inverted-uc {
    background-color: #525252;
}

html .inverted-dort {
    background-color: #71b1dd;
}

html .inverted-dark {
    background-color: #212529;
}

html .inverted-light {
    background-color: #FFF;
}

.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
    background-color: #1e90d3;
}

.owl-carousel.show-nav-title .owl-nav button[class*="owl-"],
.owl-carousel.show-nav-title .owl-nav button[class*="owl-"]:hover,
.owl-carousel.show-nav-title .owl-nav button[class*="owl-"].hover {
    color:#15628f;
}

.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"] {
    background-color: #15628f;
    border-color:#15628f#15628f#15628f;
    color: #FFF;
}

.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"]:hover,
.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"].hover {
    background-color:#15628f;
    border-color:#15628f#15628f#15628f;
}

.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"]:active,
.owl-carousel:not(.nav-arrows-1):not(.show-nav-title) .owl-nav button[class*="owl-"].active {
    background-color: #212121;
    background-image: none;
    border-color: #212121 #212121 #212121;
}

.owl-carousel.nav-with-transparency:not(.nav-style-1):not(.show-nav-title):not(.nav-arrows-1) .owl-nav button[class*="owl-"] {
    background-color: rgba(25, 61, 117, 0.63);
}

.owl-carousel.nav-style-1 .owl-nav .owl-next,
.owl-carousel.nav-style-1 .owl-nav .owl-prev {
    color: #1e90d3 !important;
}

.owl-carousel.nav-style-2 .owl-nav .owl-next:before,
.owl-carousel.nav-style-2 .owl-nav .owl-prev:before,
.owl-carousel.nav-style-2 .owl-nav .owl-next:after,
.owl-carousel.nav-style-2 .owl-nav .owl-prev:after {
    border-color:#15628f;
}

.owl-carousel.nav-svg-arrows-1 .owl-nav .owl-prev svg polygon,
.owl-carousel.nav-svg-arrows-1 .owl-nav .owl-next svg polygon {
    fill:#15628f;
    stroke:#15628f;
}

.owl-carousel.nav-arrows-1 .owl-nav .owl-prev,
.owl-carousel.nav-arrows-1 .owl-nav .owl-next {
    color:#15628f;
}

.owl-carousel.carousel-center-active-item-2 .owl-item.active > div {
    background:#15628f;
}

.owl-carousel.carousel-bottom-inside-shadow .owl-stage-outer:after {
    background-image: linear-gradient(360deg,#15628f 0%, transparent 100%);
}

html body .tabs .nav-tabs .nav-link,
html.dark body .tabs .nav-tabs .nav-link,
html body .tabs .nav-tabs .nav-link:hover,
html.dark body .tabs .nav-tabs .nav-link:hover,
html body .tabs .nav-tabs .nav-link.active,
html.dark body .tabs .nav-tabs .nav-link.active {
    color:#15628f;
}

html body .tabs .nav-tabs .nav-link:hover,
html.dark body .tabs .nav-tabs .nav-link:hover,
html body .tabs .nav-tabs .nav-link:focus,
html.dark body .tabs .nav-tabs .nav-link:focus,
html body .tabs .nav-tabs .nav-link.active,
html.dark body .tabs .nav-tabs .nav-link.active,
html body .tabs .nav-tabs.nav-justified .nav-link.active,
html.dark body .tabs .nav-tabs.nav-justified .nav-link.active,
html body .tabs .nav-tabs.nav-justified .nav-link:hover,
html.dark body .tabs .nav-tabs.nav-justified .nav-link:hover,
html body .tabs .nav-tabs.nav-justified .nav-link:focus,
html.dark body .tabs .nav-tabs.nav-justified .nav-link:focus {
    border-top-color:#15628f;
}

html body .tabs.tabs-bottom .nav-tabs li .nav-link:hover,
html.dark body .tabs.tabs-bottom .nav-tabs li .nav-link:hover,
html body .tabs.tabs-bottom .nav-tabs .nav-link.active,
html.dark body .tabs.tabs-bottom .nav-tabs .nav-link.active,
html body .tabs.tabs-bottom .nav-tabs .nav-link.active:hover,
html.dark body .tabs.tabs-bottom .nav-tabs .nav-link.active:hover,
html body .tabs.tabs-bottom .nav-tabs .nav-link.active:focus,
html.dark body .tabs.tabs-bottom .nav-tabs .nav-link.active:focus {
    border-bottom-color:#15628f;
}

html body .tabs.tabs-vertical.tabs-left .nav-tabs li .nav-link:hover,
html.dark body .tabs.tabs-vertical.tabs-left .nav-tabs li .nav-link:hover,
html body .tabs.tabs-vertical.tabs-left .nav-tabs .nav-link.active,
html.dark body .tabs.tabs-vertical.tabs-left .nav-tabs .nav-link.active,
html body .tabs.tabs-vertical.tabs-left .nav-tabs .nav-link.active:hover,
html.dark body .tabs.tabs-vertical.tabs-left .nav-tabs .nav-link.active:hover,
html body .tabs.tabs-vertical.tabs-left .nav-tabs .nav-link.active:focus,
html.dark body .tabs.tabs-vertical.tabs-left .nav-tabs .nav-link.active:focus {
    border-left-color:#15628f;
}

html body .tabs.tabs-vertical.tabs-right .nav-tabs li .nav-link:hover,
html.dark body .tabs.tabs-vertical.tabs-right .nav-tabs li .nav-link:hover,
html body .tabs.tabs-vertical.tabs-right .nav-tabs .nav-link.active,
html.dark body .tabs.tabs-vertical.tabs-right .nav-tabs .nav-link.active,
html body .tabs.tabs-vertical.tabs-right .nav-tabs .nav-link.active:hover,
html.dark body .tabs.tabs-vertical.tabs-right .nav-tabs .nav-link.active:hover,
html body .tabs.tabs-vertical.tabs-right .nav-tabs .nav-link.active:focus,
html.dark body .tabs.tabs-vertical.tabs-right .nav-tabs .nav-link.active:focus {
    border-right-color:#15628f;
}

html body .tabs.tabs-simple .nav-tabs > li .nav-link.active,
html.dark body .tabs.tabs-simple .nav-tabs > li .nav-link.active,
html body .tabs.tabs-simple .nav-tabs > li .nav-link.active:focus,
html.dark body .tabs.tabs-simple .nav-tabs > li .nav-link.active:focus,
html body .tabs.tabs-simple .nav-tabs > li .nav-link:hover,
html.dark body .tabs.tabs-simple .nav-tabs > li .nav-link:hover,
html body .tabs.tabs-simple .nav-tabs > li .nav-link.active:hover,
html.dark body .tabs.tabs-simple .nav-tabs > li .nav-link.active:hover {
    border-top-color:#15628f;
    color:#15628f;
}

html body .tabs-primary .nav-tabs li .nav-link,
html.dark body .tabs-primary .nav-tabs li .nav-link,
html body .tabs-primary .nav-tabs.nav-justified li .nav-link,
html.dark body .tabs-primary .nav-tabs.nav-justified li .nav-link,
html body .tabs-primary .nav-tabs li .nav-link:hover,
html.dark body .tabs-primary .nav-tabs li .nav-link:hover,
html body .tabs-primary .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-primary .nav-tabs.nav-justified li .nav-link:hover {
    color:#15628f;
}

html body .tabs-primary .nav-tabs li .nav-link:hover,
html.dark body .tabs-primary .nav-tabs li .nav-link:hover,
html body .tabs-primary .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-primary .nav-tabs.nav-justified li .nav-link:hover {
    border-top-color:#15628f;
}

html body .tabs-primary .nav-tabs li .nav-link.active,
html.dark body .tabs-primary .nav-tabs li .nav-link.active,
html body .tabs-primary .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-primary .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-primary .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-primary .nav-tabs li .nav-link.active:hover,
html body .tabs-primary .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-primary .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-primary .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-primary .nav-tabs li .nav-link.active:focus,
html body .tabs-primary .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-primary .nav-tabs.nav-justified li .nav-link.active:focus {
    border-top-color:#15628f;
    color:#15628f;
}

html body .tabs-primary.tabs-bottom .nav-tabs li .nav-link:hover,
html.dark body .tabs-primary.tabs-bottom .nav-tabs li .nav-link:hover,
html body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li .nav-link:hover,
html body .tabs-primary.tabs-bottom .nav-tabs li .nav-link.active,
html.dark body .tabs-primary.tabs-bottom .nav-tabs li .nav-link.active,
html body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-primary.tabs-bottom .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-primary.tabs-bottom .nav-tabs li .nav-link.active:hover,
html body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-primary.tabs-bottom .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-primary.tabs-bottom .nav-tabs li .nav-link.active:focus,
html body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-primary.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:focus {
    border-bottom-color:#15628f;
}

html body .tabs-primary.tabs-simple .nav-tabs li .nav-link:hover,
html.dark body .tabs-primary.tabs-simple .nav-tabs li .nav-link:hover,
html body .tabs-primary.tabs-simple .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-primary.tabs-simple .nav-tabs.nav-justified li .nav-link:hover,
html body .tabs-primary.tabs-simple .nav-tabs li .nav-link.active,
html.dark body .tabs-primary.tabs-simple .nav-tabs li .nav-link.active,
html body .tabs-primary.tabs-simple .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-primary.tabs-simple .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-primary.tabs-simple .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-primary.tabs-simple .nav-tabs li .nav-link.active:hover,
html body .tabs-primary.tabs-simple .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-primary.tabs-simple .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-primary.tabs-simple .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-primary.tabs-simple .nav-tabs li .nav-link.active:focus,
html body .tabs-primary.tabs-simple .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-primary.tabs-simple .nav-tabs.nav-justified li .nav-link.active:focus {
    color:#15628f !important;
    border-bottom-color:#15628f;
}

html body .tabs-primary.tabs-vertical.tabs-left li .nav-link:hover,
html.dark body .tabs-primary.tabs-vertical.tabs-left li .nav-link:hover,
html body .tabs-primary.tabs-vertical.tabs-left li .nav-link.active,
html.dark body .tabs-primary.tabs-vertical.tabs-left li .nav-link.active,
html body .tabs-primary.tabs-vertical.tabs-left li .nav-link.active:hover,
html.dark body .tabs-primary.tabs-vertical.tabs-left li .nav-link.active:hover,
html body .tabs-primary.tabs-vertical.tabs-left li .nav-link.active:focus,
html.dark body .tabs-primary.tabs-vertical.tabs-left li .nav-link.active:focus {
    border-left-color:#15628f;
}

html body .tabs-primary.tabs-vertical.tabs-right li .nav-link:hover,
html.dark body .tabs-primary.tabs-vertical.tabs-right li .nav-link:hover,
html body .tabs-primary.tabs-vertical.tabs-right li .nav-link.active,
html.dark body .tabs-primary.tabs-vertical.tabs-right li .nav-link.active,
html body .tabs-primary.tabs-vertical.tabs-right li .nav-link.active:hover,
html.dark body .tabs-primary.tabs-vertical.tabs-right li .nav-link.active:hover,
html body .tabs-primary.tabs-vertical.tabs-right li .nav-link.active:focus,
html.dark body .tabs-primary.tabs-vertical.tabs-right li .nav-link.active:focus {
    border-right-color:#15628f;
}

html body .tabs-secondary .nav-tabs li .nav-link,
html.dark body .tabs-secondary .nav-tabs li .nav-link,
html body .tabs-secondary .nav-tabs.nav-justified li .nav-link,
html.dark body .tabs-secondary .nav-tabs.nav-justified li .nav-link,
html body .tabs-secondary .nav-tabs li .nav-link:hover,
html.dark body .tabs-secondary .nav-tabs li .nav-link:hover,
html body .tabs-secondary .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-secondary .nav-tabs.nav-justified li .nav-link:hover {
    color: #1e90d3;
}

html body .tabs-secondary .nav-tabs li .nav-link:hover,
html.dark body .tabs-secondary .nav-tabs li .nav-link:hover,
html body .tabs-secondary .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-secondary .nav-tabs.nav-justified li .nav-link:hover {
    border-top-color: #1e90d3;
}

html body .tabs-secondary .nav-tabs li .nav-link.active,
html.dark body .tabs-secondary .nav-tabs li .nav-link.active,
html body .tabs-secondary .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-secondary .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-secondary .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-secondary .nav-tabs li .nav-link.active:hover,
html body .tabs-secondary .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-secondary .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-secondary .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-secondary .nav-tabs li .nav-link.active:focus,
html body .tabs-secondary .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-secondary .nav-tabs.nav-justified li .nav-link.active:focus {
    border-top-color: #1e90d3;
    color: #1e90d3;
}

html body .tabs-secondary.tabs-bottom .nav-tabs li .nav-link:hover,
html.dark body .tabs-secondary.tabs-bottom .nav-tabs li .nav-link:hover,
html body .tabs-secondary.tabs-bottom .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-secondary.tabs-bottom .nav-tabs.nav-justified li .nav-link:hover,
html body .tabs-secondary.tabs-bottom .nav-tabs li .nav-link.active,
html.dark body .tabs-secondary.tabs-bottom .nav-tabs li .nav-link.active,
html body .tabs-secondary.tabs-bottom .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-secondary.tabs-bottom .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-secondary.tabs-bottom .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-secondary.tabs-bottom .nav-tabs li .nav-link.active:hover,
html body .tabs-secondary.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-secondary.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-secondary.tabs-bottom .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-secondary.tabs-bottom .nav-tabs li .nav-link.active:focus,
html body .tabs-secondary.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-secondary.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:focus {
    border-bottom-color: #1e90d3;
}

html body .tabs-secondary.tabs-simple .nav-tabs li .nav-link:hover,
html.dark body .tabs-secondary.tabs-simple .nav-tabs li .nav-link:hover,
html body .tabs-secondary.tabs-simple .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-secondary.tabs-simple .nav-tabs.nav-justified li .nav-link:hover,
html body .tabs-secondary.tabs-simple .nav-tabs li .nav-link.active,
html.dark body .tabs-secondary.tabs-simple .nav-tabs li .nav-link.active,
html body .tabs-secondary.tabs-simple .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-secondary.tabs-simple .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-secondary.tabs-simple .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-secondary.tabs-simple .nav-tabs li .nav-link.active:hover,
html body .tabs-secondary.tabs-simple .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-secondary.tabs-simple .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-secondary.tabs-simple .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-secondary.tabs-simple .nav-tabs li .nav-link.active:focus,
html body .tabs-secondary.tabs-simple .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-secondary.tabs-simple .nav-tabs.nav-justified li .nav-link.active:focus {
    color: #1e90d3 !important;
    border-bottom-color: #1e90d3;
}

html body .tabs-secondary.tabs-vertical.tabs-left li .nav-link:hover,
html.dark body .tabs-secondary.tabs-vertical.tabs-left li .nav-link:hover,
html body .tabs-secondary.tabs-vertical.tabs-left li .nav-link.active,
html.dark body .tabs-secondary.tabs-vertical.tabs-left li .nav-link.active,
html body .tabs-secondary.tabs-vertical.tabs-left li .nav-link.active:hover,
html.dark body .tabs-secondary.tabs-vertical.tabs-left li .nav-link.active:hover,
html body .tabs-secondary.tabs-vertical.tabs-left li .nav-link.active:focus,
html.dark body .tabs-secondary.tabs-vertical.tabs-left li .nav-link.active:focus {
    border-left-color: #1e90d3;
}

html body .tabs-secondary.tabs-vertical.tabs-right li .nav-link:hover,
html.dark body .tabs-secondary.tabs-vertical.tabs-right li .nav-link:hover,
html body .tabs-secondary.tabs-vertical.tabs-right li .nav-link.active,
html.dark body .tabs-secondary.tabs-vertical.tabs-right li .nav-link.active,
html body .tabs-secondary.tabs-vertical.tabs-right li .nav-link.active:hover,
html.dark body .tabs-secondary.tabs-vertical.tabs-right li .nav-link.active:hover,
html body .tabs-secondary.tabs-vertical.tabs-right li .nav-link.active:focus,
html.dark body .tabs-secondary.tabs-vertical.tabs-right li .nav-link.active:focus {
    border-right-color: #1e90d3;
}

html body .tabs-uc .nav-tabs li .nav-link,
html.dark body .tabs-uc .nav-tabs li .nav-link,
html body .tabs-uc .nav-tabs.nav-justified li .nav-link,
html.dark body .tabs-uc .nav-tabs.nav-justified li .nav-link,
html body .tabs-uc .nav-tabs li .nav-link:hover,
html.dark body .tabs-uc .nav-tabs li .nav-link:hover,
html body .tabs-uc .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-uc .nav-tabs.nav-justified li .nav-link:hover {
    color: #525252;
}

html body .tabs-uc .nav-tabs li .nav-link:hover,
html.dark body .tabs-uc .nav-tabs li .nav-link:hover,
html body .tabs-uc .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-uc .nav-tabs.nav-justified li .nav-link:hover {
    border-top-color: #525252;
}

html body .tabs-uc .nav-tabs li .nav-link.active,
html.dark body .tabs-uc .nav-tabs li .nav-link.active,
html body .tabs-uc .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-uc .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-uc .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-uc .nav-tabs li .nav-link.active:hover,
html body .tabs-uc .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-uc .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-uc .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-uc .nav-tabs li .nav-link.active:focus,
html body .tabs-uc .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-uc .nav-tabs.nav-justified li .nav-link.active:focus {
    border-top-color: #525252;
    color: #525252;
}

html body .tabs-uc.tabs-bottom .nav-tabs li .nav-link:hover,
html.dark body .tabs-uc.tabs-bottom .nav-tabs li .nav-link:hover,
html body .tabs-uc.tabs-bottom .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-uc.tabs-bottom .nav-tabs.nav-justified li .nav-link:hover,
html body .tabs-uc.tabs-bottom .nav-tabs li .nav-link.active,
html.dark body .tabs-uc.tabs-bottom .nav-tabs li .nav-link.active,
html body .tabs-uc.tabs-bottom .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-uc.tabs-bottom .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-uc.tabs-bottom .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-uc.tabs-bottom .nav-tabs li .nav-link.active:hover,
html body .tabs-uc.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-uc.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-uc.tabs-bottom .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-uc.tabs-bottom .nav-tabs li .nav-link.active:focus,
html body .tabs-uc.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-uc.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:focus {
    border-bottom-color: #525252;
}

html body .tabs-uc.tabs-simple .nav-tabs li .nav-link:hover,
html.dark body .tabs-uc.tabs-simple .nav-tabs li .nav-link:hover,
html body .tabs-uc.tabs-simple .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-uc.tabs-simple .nav-tabs.nav-justified li .nav-link:hover,
html body .tabs-uc.tabs-simple .nav-tabs li .nav-link.active,
html.dark body .tabs-uc.tabs-simple .nav-tabs li .nav-link.active,
html body .tabs-uc.tabs-simple .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-uc.tabs-simple .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-uc.tabs-simple .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-uc.tabs-simple .nav-tabs li .nav-link.active:hover,
html body .tabs-uc.tabs-simple .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-uc.tabs-simple .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-uc.tabs-simple .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-uc.tabs-simple .nav-tabs li .nav-link.active:focus,
html body .tabs-uc.tabs-simple .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-uc.tabs-simple .nav-tabs.nav-justified li .nav-link.active:focus {
    color: #525252 !important;
    border-bottom-color: #525252;
}

html body .tabs-uc.tabs-vertical.tabs-left li .nav-link:hover,
html.dark body .tabs-uc.tabs-vertical.tabs-left li .nav-link:hover,
html body .tabs-uc.tabs-vertical.tabs-left li .nav-link.active,
html.dark body .tabs-uc.tabs-vertical.tabs-left li .nav-link.active,
html body .tabs-uc.tabs-vertical.tabs-left li .nav-link.active:hover,
html.dark body .tabs-uc.tabs-vertical.tabs-left li .nav-link.active:hover,
html body .tabs-uc.tabs-vertical.tabs-left li .nav-link.active:focus,
html.dark body .tabs-uc.tabs-vertical.tabs-left li .nav-link.active:focus {
    border-left-color: #525252;
}

html body .tabs-uc.tabs-vertical.tabs-right li .nav-link:hover,
html.dark body .tabs-uc.tabs-vertical.tabs-right li .nav-link:hover,
html body .tabs-uc.tabs-vertical.tabs-right li .nav-link.active,
html.dark body .tabs-uc.tabs-vertical.tabs-right li .nav-link.active,
html body .tabs-uc.tabs-vertical.tabs-right li .nav-link.active:hover,
html.dark body .tabs-uc.tabs-vertical.tabs-right li .nav-link.active:hover,
html body .tabs-uc.tabs-vertical.tabs-right li .nav-link.active:focus,
html.dark body .tabs-uc.tabs-vertical.tabs-right li .nav-link.active:focus {
    border-right-color: #525252;
}

html body .tabs-dort .nav-tabs li .nav-link,
html.dark body .tabs-dort .nav-tabs li .nav-link,
html body .tabs-dort .nav-tabs.nav-justified li .nav-link,
html.dark body .tabs-dort .nav-tabs.nav-justified li .nav-link,
html body .tabs-dort .nav-tabs li .nav-link:hover,
html.dark body .tabs-dort .nav-tabs li .nav-link:hover,
html body .tabs-dort .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-dort .nav-tabs.nav-justified li .nav-link:hover {
    color: #71b1dd;
}

html body .tabs-dort .nav-tabs li .nav-link:hover,
html.dark body .tabs-dort .nav-tabs li .nav-link:hover,
html body .tabs-dort .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-dort .nav-tabs.nav-justified li .nav-link:hover {
    border-top-color: #71b1dd;
}

html body .tabs-dort .nav-tabs li .nav-link.active,
html.dark body .tabs-dort .nav-tabs li .nav-link.active,
html body .tabs-dort .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-dort .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-dort .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-dort .nav-tabs li .nav-link.active:hover,
html body .tabs-dort .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-dort .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-dort .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-dort .nav-tabs li .nav-link.active:focus,
html body .tabs-dort .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-dort .nav-tabs.nav-justified li .nav-link.active:focus {
    border-top-color: #71b1dd;
    color: #71b1dd;
}

html body .tabs-dort.tabs-bottom .nav-tabs li .nav-link:hover,
html.dark body .tabs-dort.tabs-bottom .nav-tabs li .nav-link:hover,
html body .tabs-dort.tabs-bottom .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-dort.tabs-bottom .nav-tabs.nav-justified li .nav-link:hover,
html body .tabs-dort.tabs-bottom .nav-tabs li .nav-link.active,
html.dark body .tabs-dort.tabs-bottom .nav-tabs li .nav-link.active,
html body .tabs-dort.tabs-bottom .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-dort.tabs-bottom .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-dort.tabs-bottom .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-dort.tabs-bottom .nav-tabs li .nav-link.active:hover,
html body .tabs-dort.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-dort.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-dort.tabs-bottom .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-dort.tabs-bottom .nav-tabs li .nav-link.active:focus,
html body .tabs-dort.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-dort.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:focus {
    border-bottom-color: #71b1dd;
}

html body .tabs-dort.tabs-simple .nav-tabs li .nav-link:hover,
html.dark body .tabs-dort.tabs-simple .nav-tabs li .nav-link:hover,
html body .tabs-dort.tabs-simple .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-dort.tabs-simple .nav-tabs.nav-justified li .nav-link:hover,
html body .tabs-dort.tabs-simple .nav-tabs li .nav-link.active,
html.dark body .tabs-dort.tabs-simple .nav-tabs li .nav-link.active,
html body .tabs-dort.tabs-simple .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-dort.tabs-simple .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-dort.tabs-simple .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-dort.tabs-simple .nav-tabs li .nav-link.active:hover,
html body .tabs-dort.tabs-simple .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-dort.tabs-simple .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-dort.tabs-simple .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-dort.tabs-simple .nav-tabs li .nav-link.active:focus,
html body .tabs-dort.tabs-simple .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-dort.tabs-simple .nav-tabs.nav-justified li .nav-link.active:focus {
    color: #71b1dd !important;
    border-bottom-color: #71b1dd;
}

html body .tabs-dort.tabs-vertical.tabs-left li .nav-link:hover,
html.dark body .tabs-dort.tabs-vertical.tabs-left li .nav-link:hover,
html body .tabs-dort.tabs-vertical.tabs-left li .nav-link.active,
html.dark body .tabs-dort.tabs-vertical.tabs-left li .nav-link.active,
html body .tabs-dort.tabs-vertical.tabs-left li .nav-link.active:hover,
html.dark body .tabs-dort.tabs-vertical.tabs-left li .nav-link.active:hover,
html body .tabs-dort.tabs-vertical.tabs-left li .nav-link.active:focus,
html.dark body .tabs-dort.tabs-vertical.tabs-left li .nav-link.active:focus {
    border-left-color: #71b1dd;
}

html body .tabs-dort.tabs-vertical.tabs-right li .nav-link:hover,
html.dark body .tabs-dort.tabs-vertical.tabs-right li .nav-link:hover,
html body .tabs-dort.tabs-vertical.tabs-right li .nav-link.active,
html.dark body .tabs-dort.tabs-vertical.tabs-right li .nav-link.active,
html body .tabs-dort.tabs-vertical.tabs-right li .nav-link.active:hover,
html.dark body .tabs-dort.tabs-vertical.tabs-right li .nav-link.active:hover,
html body .tabs-dort.tabs-vertical.tabs-right li .nav-link.active:focus,
html.dark body .tabs-dort.tabs-vertical.tabs-right li .nav-link.active:focus {
    border-right-color: #71b1dd;
}

html body .tabs-dark .nav-tabs li .nav-link,
html.dark body .tabs-dark .nav-tabs li .nav-link,
html body .tabs-dark .nav-tabs.nav-justified li .nav-link,
html.dark body .tabs-dark .nav-tabs.nav-justified li .nav-link,
html body .tabs-dark .nav-tabs li .nav-link:hover,
html.dark body .tabs-dark .nav-tabs li .nav-link:hover,
html body .tabs-dark .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-dark .nav-tabs.nav-justified li .nav-link:hover {
    color: #212529;
}

html body .tabs-dark .nav-tabs li .nav-link:hover,
html.dark body .tabs-dark .nav-tabs li .nav-link:hover,
html body .tabs-dark .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-dark .nav-tabs.nav-justified li .nav-link:hover {
    border-top-color: #212529;
}

html body .tabs-dark .nav-tabs li .nav-link.active,
html.dark body .tabs-dark .nav-tabs li .nav-link.active,
html body .tabs-dark .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-dark .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-dark .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-dark .nav-tabs li .nav-link.active:hover,
html body .tabs-dark .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-dark .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-dark .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-dark .nav-tabs li .nav-link.active:focus,
html body .tabs-dark .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-dark .nav-tabs.nav-justified li .nav-link.active:focus {
    border-top-color: #212529;
    color: #212529;
}

html body .tabs-dark.tabs-bottom .nav-tabs li .nav-link:hover,
html.dark body .tabs-dark.tabs-bottom .nav-tabs li .nav-link:hover,
html body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li .nav-link:hover,
html body .tabs-dark.tabs-bottom .nav-tabs li .nav-link.active,
html.dark body .tabs-dark.tabs-bottom .nav-tabs li .nav-link.active,
html body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-dark.tabs-bottom .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-dark.tabs-bottom .nav-tabs li .nav-link.active:hover,
html body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-dark.tabs-bottom .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-dark.tabs-bottom .nav-tabs li .nav-link.active:focus,
html body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-dark.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:focus {
    border-bottom-color: #212529;
}

html body .tabs-dark.tabs-simple .nav-tabs li .nav-link:hover,
html.dark body .tabs-dark.tabs-simple .nav-tabs li .nav-link:hover,
html body .tabs-dark.tabs-simple .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-dark.tabs-simple .nav-tabs.nav-justified li .nav-link:hover,
html body .tabs-dark.tabs-simple .nav-tabs li .nav-link.active,
html.dark body .tabs-dark.tabs-simple .nav-tabs li .nav-link.active,
html body .tabs-dark.tabs-simple .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-dark.tabs-simple .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-dark.tabs-simple .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-dark.tabs-simple .nav-tabs li .nav-link.active:hover,
html body .tabs-dark.tabs-simple .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-dark.tabs-simple .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-dark.tabs-simple .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-dark.tabs-simple .nav-tabs li .nav-link.active:focus,
html body .tabs-dark.tabs-simple .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-dark.tabs-simple .nav-tabs.nav-justified li .nav-link.active:focus {
    color: #212529 !important;
    border-bottom-color: #212529;
}

html body .tabs-dark.tabs-vertical.tabs-left li .nav-link:hover,
html.dark body .tabs-dark.tabs-vertical.tabs-left li .nav-link:hover,
html body .tabs-dark.tabs-vertical.tabs-left li .nav-link.active,
html.dark body .tabs-dark.tabs-vertical.tabs-left li .nav-link.active,
html body .tabs-dark.tabs-vertical.tabs-left li .nav-link.active:hover,
html.dark body .tabs-dark.tabs-vertical.tabs-left li .nav-link.active:hover,
html body .tabs-dark.tabs-vertical.tabs-left li .nav-link.active:focus,
html.dark body .tabs-dark.tabs-vertical.tabs-left li .nav-link.active:focus {
    border-left-color: #212529;
}

html body .tabs-dark.tabs-vertical.tabs-right li .nav-link:hover,
html.dark body .tabs-dark.tabs-vertical.tabs-right li .nav-link:hover,
html body .tabs-dark.tabs-vertical.tabs-right li .nav-link.active,
html.dark body .tabs-dark.tabs-vertical.tabs-right li .nav-link.active,
html body .tabs-dark.tabs-vertical.tabs-right li .nav-link.active:hover,
html.dark body .tabs-dark.tabs-vertical.tabs-right li .nav-link.active:hover,
html body .tabs-dark.tabs-vertical.tabs-right li .nav-link.active:focus,
html.dark body .tabs-dark.tabs-vertical.tabs-right li .nav-link.active:focus {
    border-right-color: #212529;
}

html body .tabs-light .nav-tabs li .nav-link,
html.dark body .tabs-light .nav-tabs li .nav-link,
html body .tabs-light .nav-tabs.nav-justified li .nav-link,
html.dark body .tabs-light .nav-tabs.nav-justified li .nav-link,
html body .tabs-light .nav-tabs li .nav-link:hover,
html.dark body .tabs-light .nav-tabs li .nav-link:hover,
html body .tabs-light .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-light .nav-tabs.nav-justified li .nav-link:hover {
    color: #FFF;
}

html body .tabs-light .nav-tabs li .nav-link:hover,
html.dark body .tabs-light .nav-tabs li .nav-link:hover,
html body .tabs-light .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-light .nav-tabs.nav-justified li .nav-link:hover {
    border-top-color: #FFF;
}

html body .tabs-light .nav-tabs li .nav-link.active,
html.dark body .tabs-light .nav-tabs li .nav-link.active,
html body .tabs-light .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-light .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-light .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-light .nav-tabs li .nav-link.active:hover,
html body .tabs-light .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-light .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-light .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-light .nav-tabs li .nav-link.active:focus,
html body .tabs-light .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-light .nav-tabs.nav-justified li .nav-link.active:focus {
    border-top-color: #FFF;
    color: #FFF;
}

html body .tabs-light.tabs-bottom .nav-tabs li .nav-link:hover,
html.dark body .tabs-light.tabs-bottom .nav-tabs li .nav-link:hover,
html body .tabs-light.tabs-bottom .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-light.tabs-bottom .nav-tabs.nav-justified li .nav-link:hover,
html body .tabs-light.tabs-bottom .nav-tabs li .nav-link.active,
html.dark body .tabs-light.tabs-bottom .nav-tabs li .nav-link.active,
html body .tabs-light.tabs-bottom .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-light.tabs-bottom .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-light.tabs-bottom .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-light.tabs-bottom .nav-tabs li .nav-link.active:hover,
html body .tabs-light.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-light.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-light.tabs-bottom .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-light.tabs-bottom .nav-tabs li .nav-link.active:focus,
html body .tabs-light.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-light.tabs-bottom .nav-tabs.nav-justified li .nav-link.active:focus {
    border-bottom-color: #FFF;
}

html body .tabs-light.tabs-simple .nav-tabs li .nav-link:hover,
html.dark body .tabs-light.tabs-simple .nav-tabs li .nav-link:hover,
html body .tabs-light.tabs-simple .nav-tabs.nav-justified li .nav-link:hover,
html.dark body .tabs-light.tabs-simple .nav-tabs.nav-justified li .nav-link:hover,
html body .tabs-light.tabs-simple .nav-tabs li .nav-link.active,
html.dark body .tabs-light.tabs-simple .nav-tabs li .nav-link.active,
html body .tabs-light.tabs-simple .nav-tabs.nav-justified li .nav-link.active,
html.dark body .tabs-light.tabs-simple .nav-tabs.nav-justified li .nav-link.active,
html body .tabs-light.tabs-simple .nav-tabs li .nav-link.active:hover,
html.dark body .tabs-light.tabs-simple .nav-tabs li .nav-link.active:hover,
html body .tabs-light.tabs-simple .nav-tabs.nav-justified li .nav-link.active:hover,
html.dark body .tabs-light.tabs-simple .nav-tabs.nav-justified li .nav-link.active:hover,
html body .tabs-light.tabs-simple .nav-tabs li .nav-link.active:focus,
html.dark body .tabs-light.tabs-simple .nav-tabs li .nav-link.active:focus,
html body .tabs-light.tabs-simple .nav-tabs.nav-justified li .nav-link.active:focus,
html.dark body .tabs-light.tabs-simple .nav-tabs.nav-justified li .nav-link.active:focus {
    color: #FFF !important;
    border-bottom-color: #FFF;
}

html body .tabs-light.tabs-vertical.tabs-left li .nav-link:hover,
html.dark body .tabs-light.tabs-vertical.tabs-left li .nav-link:hover,
html body .tabs-light.tabs-vertical.tabs-left li .nav-link.active,
html.dark body .tabs-light.tabs-vertical.tabs-left li .nav-link.active,
html body .tabs-light.tabs-vertical.tabs-left li .nav-link.active:hover,
html.dark body .tabs-light.tabs-vertical.tabs-left li .nav-link.active:hover,
html body .tabs-light.tabs-vertical.tabs-left li .nav-link.active:focus,
html.dark body .tabs-light.tabs-vertical.tabs-left li .nav-link.active:focus {
    border-left-color: #FFF;
}

html body .tabs-light.tabs-vertical.tabs-right li .nav-link:hover,
html.dark body .tabs-light.tabs-vertical.tabs-right li .nav-link:hover,
html body .tabs-light.tabs-vertical.tabs-right li .nav-link.active,
html.dark body .tabs-light.tabs-vertical.tabs-right li .nav-link.active,
html body .tabs-light.tabs-vertical.tabs-right li .nav-link.active:hover,
html.dark body .tabs-light.tabs-vertical.tabs-right li .nav-link.active:hover,
html body .tabs-light.tabs-vertical.tabs-right li .nav-link.active:focus,
html.dark body .tabs-light.tabs-vertical.tabs-right li .nav-link.active:focus {
    border-right-color: #FFF;
}

html[dir="rtl"] .tabs.tabs-vertical.tabs-left .nav-tabs li .nav-link:hover html[dir="rtl"] .tabs.tabs-vertical.tabs-left .nav-tabs li .nav-link.active,
html[dir="rtl"] .tabs.tabs-vertical.tabs-left .nav-tabs li .nav-link.active:hover,
html[dir="rtl"] .tabs.tabs-vertical.tabs-left .nav-tabs li .nav-link.active:focus {
    border-right-color:#15628f;
    border-left-color: transparent;
}

html[dir="rtl"] .tabs.tabs-vertical.tabs-right .nav-tabs li .nav-link:hover html[dir="rtl"] .tabs.tabs-vertical.tabs-right .nav-tabs li .nav-link.active,
html[dir="rtl"] .tabs.tabs-vertical.tabs-right .nav-tabs li .nav-link.active:hover,
html[dir="rtl"] .tabs.tabs-vertical.tabs-right .nav-tabs li .nav-link.active:focus {
    border-right-color: transparent;
    border-left-color:#15628f;
}

.list.list-icons li > [class*="fa-"]:first-child,
.list.list-icons li a:first-child > [class*="fa-"]:first-child,
.list.list-icons li > .icons:first-child,
.list.list-icons li a:first-child > .icons:first-child {
    color:#15628f;
    border-color:#15628f;
}

.list.list-icons.list-icons-style-3 li > [class*="fa-"]:first-child,
.list.list-icons.list-icons-style-3 li a:first-child > [class*="fa-"]:first-child,
.list.list-icons.list-icons-style-3 li > .icons:first-child,
.list.list-icons.list-icons-style-3 li a:first-child > .icons:first-child {
    background-color:#15628f;
}

.list.list-ordened li:before {
    color:#15628f;
    border-color:#15628f;
}

.list.list-ordened.list-ordened-style-3 li:before {
    background-color:#15628f;
}

html .list-primary.list-icons li > [class*="fa-"]:first-child,
html .list-primary.list-icons li a:first-child > [class*="fa-"]:first-child,
html .list-primary.list-icons li > .icons:first-child,
html .list-primary.list-icons li a:first-child > .icons:first-child {
    color:#15628f;
    border-color:#15628f;
}

html .list-primary.list-icons.list-icons-style-3 li > [class*="fa-"]:first-child,
html .list-primary.list-icons.list-icons-style-3 li a:first-child > [class*="fa-"]:first-child,
html .list-primary.list-icons.list-icons-style-3 li > .icons:first-child,
html .list-primary.list-icons.list-icons-style-3 li a:first-child > .icons:first-child {
    background-color:#15628f;
    color: #FFF;
}

html .list-primary.list-ordened li:before {
    color:#15628f;
}

html .list-primary.list-ordened.list-ordened-style-3 li:before {
    background-color:#15628f;
    color: #FFF;
}

html .list-secondary.list-icons li > [class*="fa-"]:first-child,
html .list-secondary.list-icons li a:first-child > [class*="fa-"]:first-child,
html .list-secondary.list-icons li > .icons:first-child,
html .list-secondary.list-icons li a:first-child > .icons:first-child {
    color: #1e90d3;
    border-color: #1e90d3;
}

html .list-secondary.list-icons.list-icons-style-3 li > [class*="fa-"]:first-child,
html .list-secondary.list-icons.list-icons-style-3 li a:first-child > [class*="fa-"]:first-child,
html .list-secondary.list-icons.list-icons-style-3 li > .icons:first-child,
html .list-secondary.list-icons.list-icons-style-3 li a:first-child > .icons:first-child {
    background-color: #1e90d3;
    color: #777;
}

html .list-secondary.list-ordened li:before {
    color: #1e90d3;
}

html .list-secondary.list-ordened.list-ordened-style-3 li:before {
    background-color: #1e90d3;
    color: #777;
}

html .list-uc.list-icons li > [class*="fa-"]:first-child,
html .list-uc.list-icons li a:first-child > [class*="fa-"]:first-child,
html .list-uc.list-icons li > .icons:first-child,
html .list-uc.list-icons li a:first-child > .icons:first-child {
    color: #525252;
    border-color: #525252;
}

html .list-uc.list-icons.list-icons-style-3 li > [class*="fa-"]:first-child,
html .list-uc.list-icons.list-icons-style-3 li a:first-child > [class*="fa-"]:first-child,
html .list-uc.list-icons.list-icons-style-3 li > .icons:first-child,
html .list-uc.list-icons.list-icons-style-3 li a:first-child > .icons:first-child {
    background-color: #525252;
    color: #777;
}

html .list-uc.list-ordened li:before {
    color: #525252;
}

html .list-uc.list-ordened.list-ordened-style-3 li:before {
    background-color: #525252;
    color: #777;
}

html .list-dort.list-icons li > [class*="fa-"]:first-child,
html .list-dort.list-icons li a:first-child > [class*="fa-"]:first-child,
html .list-dort.list-icons li > .icons:first-child,
html .list-dort.list-icons li a:first-child > .icons:first-child {
    color: #71b1dd;
    border-color: #71b1dd;
}

html .list-dort.list-icons.list-icons-style-3 li > [class*="fa-"]:first-child,
html .list-dort.list-icons.list-icons-style-3 li a:first-child > [class*="fa-"]:first-child,
html .list-dort.list-icons.list-icons-style-3 li > .icons:first-child,
html .list-dort.list-icons.list-icons-style-3 li a:first-child > .icons:first-child {
    background-color: #71b1dd;
    color: #FFF;
}

html .list-dort.list-ordened li:before {
    color: #71b1dd;
}

html .list-dort.list-ordened.list-ordened-style-3 li:before {
    background-color: #71b1dd;
    color: #FFF;
}

html .list-dark.list-icons li > [class*="fa-"]:first-child,
html .list-dark.list-icons li a:first-child > [class*="fa-"]:first-child,
html .list-dark.list-icons li > .icons:first-child,
html .list-dark.list-icons li a:first-child > .icons:first-child {
    color: #212529;
    border-color: #212529;
}

html .list-dark.list-icons.list-icons-style-3 li > [class*="fa-"]:first-child,
html .list-dark.list-icons.list-icons-style-3 li a:first-child > [class*="fa-"]:first-child,
html .list-dark.list-icons.list-icons-style-3 li > .icons:first-child,
html .list-dark.list-icons.list-icons-style-3 li a:first-child > .icons:first-child {
    background-color: #212529;
    color: #FFF;
}

html .list-dark.list-ordened li:before {
    color: #212529;
}

html .list-dark.list-ordened.list-ordened-style-3 li:before {
    background-color: #212529;
    color: #FFF;
}

html .list-light.list-icons li > [class*="fa-"]:first-child,
html .list-light.list-icons li a:first-child > [class*="fa-"]:first-child,
html .list-light.list-icons li > .icons:first-child,
html .list-light.list-icons li a:first-child > .icons:first-child {
    color: #FFF;
    border-color: #FFF;
}

html .list-light.list-icons.list-icons-style-3 li > [class*="fa-"]:first-child,
html .list-light.list-icons.list-icons-style-3 li a:first-child > [class*="fa-"]:first-child,
html .list-light.list-icons.list-icons-style-3 li > .icons:first-child,
html .list-light.list-icons.list-icons-style-3 li a:first-child > .icons:first-child {
    background-color: #FFF;
    color: #777;
}

html .list-light.list-ordened li:before {
    color: #FFF;
}

html .list-light.list-ordened.list-ordened-style-3 li:before {
    background-color: #FFF;
    color: #777;
}

html .highlight-primary {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%,#15628f 0);
}

html .highlight-primary.highlight-bg-opacity {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(77, 187, 109, 0.2) 0);
}

html .highlight-primary.highlight-change-text-color {
    color: #FFF;
}

html .highlight-secondary {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, #1e90d3 0);
}

html .highlight-secondary.highlight-bg-opacity {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(238, 244, 242, 0.2) 0);
}

html .highlight-secondary.highlight-change-text-color {
    color: #777;
}

html .highlight-uc {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, #525252 0);
}

html .highlight-uc.highlight-bg-opacity {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(226, 253, 234, 0.2) 0);
}

html .highlight-uc.highlight-change-text-color {
    color: #777;
}

html .highlight-dort {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, #71b1dd 0);
}

html .highlight-dort.highlight-bg-opacity {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(16, 16, 25, 0.2) 0);
}

html .highlight-dort.highlight-change-text-color {
    color: #FFF;
}

html .highlight-dark {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, #212529 0);
}

html .highlight-dark.highlight-bg-opacity {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(33, 37, 41, 0.2) 0);
}

html .highlight-dark.highlight-change-text-color {
    color: #FFF;
}

html .highlight-light {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, #FFF 0);
}

html .highlight-light.highlight-bg-opacity {
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.2) 0);
}

html .highlight-light.highlight-change-text-color {
    color: #777;
}

.parallax blockquote i.fa-quote-left {
    color:#15628f;
}

section.video blockquote i.fa-quote-left {
    color:#15628f;
}

.accordion .card-header a {
    color:#15628f;
}

html .accordion.accordion-primary .card-header {
    background-color:#15628f !important;
}

html .accordion.accordion-primary .card-header a {
    color: #FFF;
}

html .accordion-modern-status-primary.accordion-modern-status > .card .card-header a:not(.collapsed) {
    background-color:#15628f !important;
    color: #FFF !important;
}

html .accordion-modern-status-primary.accordion-modern-status > .card:hover .card-header a.collapsed {
    color:#15628f !important;
}

html .accordion.accordion-secondary .card-header {
    background-color: #1e90d3 !important;
}

html .accordion.accordion-secondary .card-header a {
    color: #777;
}

html .accordion-modern-status-secondary.accordion-modern-status > .card .card-header a:not(.collapsed) {
    background-color: #1e90d3 !important;
    color: #777 !important;
}

html .accordion-modern-status-secondary.accordion-modern-status > .card:hover .card-header a.collapsed {
    color: #1e90d3 !important;
}

html .accordion.accordion-uc .card-header {
    background-color: #525252 !important;
}

html .accordion.accordion-uc .card-header a {
    color: #777;
}

html .accordion-modern-status-uc.accordion-modern-status > .card .card-header a:not(.collapsed) {
    background-color: #525252 !important;
    color: #777 !important;
}

html .accordion-modern-status-uc.accordion-modern-status > .card:hover .card-header a.collapsed {
    color: #525252 !important;
}

html .accordion.accordion-dort .card-header {
    background-color: #71b1dd !important;
}

html .accordion.accordion-dort .card-header a {
    color: #FFF;
}

html .accordion-modern-status-dort.accordion-modern-status > .card .card-header a:not(.collapsed) {
    background-color: #71b1dd !important;
    color: #FFF !important;
}

html .accordion-modern-status-dort.accordion-modern-status > .card:hover .card-header a.collapsed {
    color: #71b1dd !important;
}

html .accordion.accordion-dark .card-header {
    background-color: #212529 !important;
}

html .accordion.accordion-dark .card-header a {
    color: #FFF;
}

html .accordion-modern-status-dark.accordion-modern-status > .card .card-header a:not(.collapsed) {
    background-color: #212529 !important;
    color: #FFF !important;
}

html .accordion-modern-status-dark.accordion-modern-status > .card:hover .card-header a.collapsed {
    color: #212529 !important;
}

html .accordion.accordion-light .card-header {
    background-color: #FFF !important;
}

html .accordion.accordion-light .card-header a {
    color: #777;
}

html .accordion-modern-status-light.accordion-modern-status > .card .card-header a:not(.collapsed) {
    background-color: #FFF !important;
    color: #777 !important;
}

html .accordion-modern-status-light.accordion-modern-status > .card:hover .card-header a.collapsed {
    color: #FFF !important;
}

html .divider.divider-primary [class*="fa-"],
html .divider.divider-primary .icons {
    color:#15628f;
}

html .divider.divider-primary.divider-small hr {
    background:#15628f;
}

html .divider.divider-secondary [class*="fa-"],
html .divider.divider-secondary .icons {
    color: #1e90d3;
}

html .divider.divider-secondary.divider-small hr {
    background: #1e90d3;
}

html .divider.divider-uc [class*="fa-"],
html .divider.divider-uc .icons {
    color: #525252;
}

html .divider.divider-uc.divider-small hr {
    background: #525252;
}

html .divider.divider-dort [class*="fa-"],
html .divider.divider-dort .icons {
    color: #71b1dd;
}

html .divider.divider-dort.divider-small hr {
    background: #71b1dd;
}

html .divider.divider-dark [class*="fa-"],
html .divider.divider-dark .icons {
    color: #212529;
}

html .divider.divider-dark.divider-small hr {
    background: #212529;
}

html .divider.divider-light [class*="fa-"],
html .divider.divider-light .icons {
    color: #FFF;
}

html .divider.divider-light.divider-small hr {
    background: #FFF;
}

html .divider.divider-style-2.divider-primary [class*="fa-"],
html .divider.divider-style-2.divider-primary .icons {
    background:#15628f;
    color: #FFF;
}

html .divider.divider-style-2.divider-secondary [class*="fa-"],
html .divider.divider-style-2.divider-secondary .icons {
    background: #1e90d3;
    color: #777;
}

html .divider.divider-style-2.divider-uc [class*="fa-"],
html .divider.divider-style-2.divider-uc .icons {
    background: #525252;
    color: #777;
}

html .divider.divider-style-2.divider-dort [class*="fa-"],
html .divider.divider-style-2.divider-dort .icons {
    background: #71b1dd;
    color: #FFF;
}

html .divider.divider-style-2.divider-dark [class*="fa-"],
html .divider.divider-style-2.divider-dark .icons {
    background: #212529;
    color: #FFF;
}

html .divider.divider-style-2.divider-light [class*="fa-"],
html .divider.divider-style-2.divider-light .icons {
    background: #FFF;
    color: #777;
}

html .divider.divider-style-3.divider-primary [class*="fa-"],
html .divider.divider-style-3.divider-primary .icons {
    border-color:#15628f;
}

html .divider.divider-style-3.divider-secondary [class*="fa-"],
html .divider.divider-style-3.divider-secondary .icons {
    border-color: #1e90d3;
}

html .divider.divider-style-3.divider-uc [class*="fa-"],
html .divider.divider-style-3.divider-uc .icons {
    border-color: #525252;
}

html .divider.divider-style-3.divider-dort [class*="fa-"],
html .divider.divider-style-3.divider-dort .icons {
    border-color: #71b1dd;
}

html .divider.divider-style-3.divider-dark [class*="fa-"],
html .divider.divider-style-3.divider-dark .icons {
    border-color: #212529;
}

html .divider.divider-style-3.divider-light [class*="fa-"],
html .divider.divider-style-3.divider-light .icons {
    border-color: #FFF;
}

#header .tip {
    background:#15628f;
    color: #FFF;
}

#header .tip:before {
    border-right-color:#15628f;
    border-left-color: transparent;
}

html #header .tip-primary {
    background:#15628f !important;
    color: #FFF !important;
}

html #header .tip-primary:before {
    border-right-color:#15628f !important;
}

html #header .tip-secondary {
    background: #1e90d3 !important;
    color: #777 !important;
}

html #header .tip-secondary:before {
    border-right-color: #1e90d3 !important;
}

html #header .tip-uc {
    background: #525252 !important;
    color: #777 !important;
}

html #header .tip-uc:before {
    border-right-color: #525252 !important;
}

html #header .tip-dort {
    background: #71b1dd !important;
    color: #FFF !important;
}

html #header .tip-dort:before {
    border-right-color: #71b1dd !important;
}

html #header .tip-dark {
    background: #212529 !important;
    color: #FFF !important;
}

html #header .tip-dark:before {
    border-right-color: #212529 !important;
}

html #header .tip-light {
    background: #FFF !important;
    color: #777 !important;
}

html #header .tip-light:before {
    border-right-color: #FFF !important;
}

html[dir="rtl"] #header .tip:before {
    border-left-color:#15628f;
}

html[dir="rtl"] #header .tip.skin:before {
    border-left-color:#15628f;
}

html[dir="rtl"] #header .tip-primary:before {
    border-left-color:#15628f !important;
    border-right-color: transparent !important;
}

html[dir="rtl"] #header .tip-secondary:before {
    border-left-color: #1e90d3 !important;
    border-right-color: transparent !important;
}

html[dir="rtl"] #header .tip-uc:before {
    border-left-color: #525252 !important;
    border-right-color: transparent !important;
}

html[dir="rtl"] #header .tip-dort:before {
    border-left-color: #71b1dd !important;
    border-right-color: transparent !important;
}

html[dir="rtl"] #header .tip-dark:before {
    border-left-color: #212529 !important;
    border-right-color: transparent !important;
}

html[dir="rtl"] #header .tip-light:before {
    border-left-color: #FFF !important;
    border-right-color: transparent !important;
}

#header .header-btn-collapse-nav {
    background:#15628f;
}

@media (min-width: 992px) {
    #header .header-nav-main nav > ul > li > a {
        color:#15628f;
    }

    #header .header-nav-main nav > ul > li.open > a,
    #header .header-nav-main nav > ul > li:hover > a {
        background:#15628f;
    }

    #header .header-nav-main nav > ul > li.dropdown .dropdown-menu {
        border-top-color:#15628f;
    }

    #header .header-nav-main nav > ul > li.dropdown.open > a:before,
    #header .header-nav-main nav > ul > li.dropdown:hover > a:before {
        border-bottom-color:#15628f;
    }

    #header .header-nav-main nav > ul > li.dropdown-mega-signin .dropdown-menu {
        border-top-color:#15628f;
    }

    #header .header-nav-main nav > ul > li.dropdown-mega-signin .dropdown-menu li a {
        color:#15628f;
    }

    #header .header-nav-main nav > ul:not(:hover) > li > a.active {
        background-color:#15628f;
        color: #FFF;
    }

    #header .header-nav.header-nav-stripe nav > ul > li:hover > a,
    #header .header-nav.header-nav-stripe nav > ul > li.open > a {
        background-color:#15628f;
    }

    #header .header-nav.header-nav-stripe nav > ul:not(:hover) > li > a.active {
        background-color:#15628f;
    }

    #header .header-nav.header-nav-stripe nav > ul:hover > li > a.active {
        color:#15628f;
    }

    #header .header-nav.header-nav-links nav > ul li:hover > a {
        color:#15628f;
    }

    #header .header-nav.header-nav-links nav > ul:not(:hover) > li > a.active {
        color: #1e90d3;
    }

    #header .header-nav.header-nav-links.header-nav-links-vertical-slide nav ul li.dropdown .dropdown-menu::-webkit-scrollbar-thumb {
        background:#15628f !important;
    }

    #header .header-nav.header-nav-line nav > ul li:hover > a {
        color:#15628f;
    }

    #header .header-nav.header-nav-line nav > ul li:hover > a:before {
        background:#15628f;
    }

    #header .header-nav.header-nav-line nav > ul:not(:hover) li > a.active {
        color: #d4d4d4;
    }

    #header .header-nav.header-nav-line nav > ul:not(:hover) li > a.active:before {
        background:#15628f;
    }

    #header .header-nav-main.header-nav-main-slide nav > ul > li.open > span > a,
    #header .header-nav-main.header-nav-main-slide nav > ul > li:hover > span > a {
        color: #1e90d3;
    }

    #header .header-nav-main.header-nav-main-slide nav > ul:not(:hover) > li > span > a.active {
        color: #1e90d3;
    }

    html.side-header #header.side-header .header-nav-main nav > ul li.dropdown.open > .dropdown-menu,
    html.side-header #header.side-header .header-nav-main nav > ul li.dropdown:hover > .dropdown-menu {
        border-left-color:#15628f;
    }

    html.side-header-right #header.side-header .header-nav-main nav > ul li.dropdown.open > .dropdown-menu,
    html.side-header-right #header.side-header .header-nav-main nav > ul li.dropdown:hover > .dropdown-menu {
        border-right-color:#15628f;
    }
}

@media (min-width: 992px) {
    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary .dropdown-menu {
        background-color:#15628f;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary .dropdown-menu li a {
        color: #FFF;
        border-bottom-color: #1e90d3;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary .dropdown-menu li:hover > a {
        background: #1e90d3;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary.open > a:before,
    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary:hover > a:before {
        border-bottom-color:#15628f;
        background:#15628f;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-mega.dropdown-primary .dropdown-mega-sub-title {
        color: #FFF;
        opacity: 0.7;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary:hover > a {
        background:#15628f;
        color: #FFF;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary .dropdown-menu li a {
        color: #FFF;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-primary > a.active {
        background:#15628f;
        color: #FFF;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary a:focus,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary a:hover {
        color:#15628f;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary a:focus:before,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary a:hover:before {
        background-color:#15628f;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary:hover > a {
        color:#15628f;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary.open > a:before,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary:hover > a:before {
        background:#15628f;
    }

    html #header .header-nav-line .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-primary > a.active {
        color:#15628f;
    }

    html #header .header-nav-line .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-primary > a.active:before {
        background-color:#15628f;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary a {
        color:#15628f;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary a:focus,
    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary a:hover {
        color:#15628f;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary:hover > a {
        color:#15628f;
    }

    html #header .header-nav-links .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-primary > a.active {
        color:#15628f;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary .dropdown-menu {
        background-color: #1e90d3;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary .dropdown-menu li a {
        color: #777;
        border-bottom-color: #e5eeeb;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary .dropdown-menu li:hover > a {
        background: #f7faf9;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary.open > a:before,
    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary:hover > a:before {
        border-bottom-color: #1e90d3;
        background: #1e90d3;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-mega.dropdown-secondary .dropdown-mega-sub-title {
        color: #777;
        opacity: 0.7;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary:hover > a {
        background: #1e90d3;
        color: #777;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary .dropdown-menu li a {
        color: #777;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-secondary > a.active {
        background: #1e90d3;
        color: #777;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary a:focus,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary a:hover {
        color: #1e90d3;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary a:focus:before,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary a:hover:before {
        background-color: #1e90d3;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary:hover > a {
        color: #1e90d3;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary.open > a:before,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary:hover > a:before {
        background: #1e90d3;
    }

    html #header .header-nav-line .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-secondary > a.active {
        color: #1e90d3;
    }

    html #header .header-nav-line .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-secondary > a.active:before {
        background-color: #1e90d3;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary a {
        color: #1e90d3;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary a:focus,
    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary a:hover {
        color: #1e90d3;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary:hover > a {
        color: #1e90d3;
    }

    html #header .header-nav-links .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-secondary > a.active {
        color: #1e90d3;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc .dropdown-menu {
        background-color: #525252;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc .dropdown-menu li a {
        color: #777;
        border-bottom-color: #d4fce0;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc .dropdown-menu li:hover > a {
        background: #f0fef4;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc.open > a:before,
    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc:hover > a:before {
        border-bottom-color: #525252;
        background: #525252;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-mega.dropdown-uc .dropdown-mega-sub-title {
        color: #777;
        opacity: 0.7;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc:hover > a {
        background: #525252;
        color: #777;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc .dropdown-menu li a {
        color: #777;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-uc > a.active {
        background: #525252;
        color: #777;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc a:focus,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc a:hover {
        color: #525252;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc a:focus:before,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc a:hover:before {
        background-color: #525252;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc:hover > a {
        color: #525252;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc.open > a:before,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc:hover > a:before {
        background: #525252;
    }

    html #header .header-nav-line .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-uc > a.active {
        color: #525252;
    }

    html #header .header-nav-line .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-uc > a.active:before {
        background-color: #525252;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc a {
        color: #525252;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc a:focus,
    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc a:hover {
        color: #525252;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc:hover > a {
        color: #525252;
    }

    html #header .header-nav-links .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-uc > a.active {
        color: #525252;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort .dropdown-menu {
        background-color: #71b1dd;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort .dropdown-menu li a {
        color: #FFF;
        border-bottom-color: #0a0a10;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort .dropdown-menu li:hover > a {
        background: #161622;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort.open > a:before,
    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort:hover > a:before {
        border-bottom-color: #71b1dd;
        background: #71b1dd;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-mega.dropdown-dort .dropdown-mega-sub-title {
        color: #FFF;
        opacity: 0.7;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort:hover > a {
        background: #71b1dd;
        color: #FFF;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort .dropdown-menu li a {
        color: #FFF;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-dort > a.active {
        background: #71b1dd;
        color: #FFF;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort a:focus,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort a:hover {
        color: #71b1dd;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort a:focus:before,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort a:hover:before {
        background-color: #71b1dd;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort:hover > a {
        color: #71b1dd;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort.open > a:before,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort:hover > a:before {
        background: #71b1dd;
    }

    html #header .header-nav-line .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-dort > a.active {
        color: #71b1dd;
    }

    html #header .header-nav-line .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-dort > a.active:before {
        background-color: #71b1dd;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort a {
        color: #71b1dd;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort a:focus,
    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort a:hover {
        color: #71b1dd;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort:hover > a {
        color: #71b1dd;
    }

    html #header .header-nav-links .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-dort > a.active {
        color: #71b1dd;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark .dropdown-menu {
        background-color: #212529;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark .dropdown-menu li a {
        color: #FFF;
        border-bottom-color: #1a1d21;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark .dropdown-menu li:hover > a {
        background: #282d31;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark.open > a:before,
    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark:hover > a:before {
        border-bottom-color: #212529;
        background: #212529;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-mega.dropdown-dark .dropdown-mega-sub-title {
        color: #FFF;
        opacity: 0.7;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark:hover > a {
        background: #212529;
        color: #FFF;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark .dropdown-menu li a {
        color: #FFF;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-dark > a.active {
        background: #212529;
        color: #FFF;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark a:focus,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark a:hover {
        color: #212529;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark a:focus:before,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark a:hover:before {
        background-color: #212529;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark:hover > a {
        color: #212529;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark.open > a:before,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark:hover > a:before {
        background: #212529;
    }

    html #header .header-nav-line .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-dark > a.active {
        color: #212529;
    }

    html #header .header-nav-line .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-dark > a.active:before {
        background-color: #212529;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark a {
        color: #212529;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark a:focus,
    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark a:hover {
        color: #212529;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dark:hover > a {
        color: #212529;
    }

    html #header .header-nav-links .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-dark > a.active {
        color: #212529;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light .dropdown-menu {
        background-color: #FFF;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light .dropdown-menu li a {
        color: #777;
        border-bottom-color: #f7f7f7;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light .dropdown-menu li:hover > a {
        background: #ffffff;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light.open > a:before,
    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light:hover > a:before {
        border-bottom-color: #FFF;
        background: #FFF;
    }

    html #header .header-nav .header-nav-main nav > ul > li.dropdown-full-color.dropdown-mega.dropdown-light .dropdown-mega-sub-title {
        color: #777;
        opacity: 0.7;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light:hover > a {
        background: #FFF;
        color: #777;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light .dropdown-menu li a {
        color: #777;
    }

    html #header .header-nav:not(.header-nav-line):not(.header-nav-links) .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-light > a.active {
        background: #FFF;
        color: #777;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light a:focus,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light a:hover {
        color: #FFF;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light a:focus:before,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light a:hover:before {
        background-color: #FFF;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light:hover > a {
        color: #FFF;
    }

    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light.open > a:before,
    html #header .header-nav-line .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light:hover > a:before {
        background: #FFF;
    }

    html #header .header-nav-line .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-light > a.active {
        color: #FFF;
    }

    html #header .header-nav-line .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-light > a.active:before {
        background-color: #FFF;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light a {
        color: #FFF;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light a:focus,
    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light a:hover {
        color: #FFF;
    }

    html #header .header-nav-links .header-nav-main nav > ul > li.dropdown-full-color.dropdown-light:hover > a {
        color: #FFF;
    }

    html #header .header-nav-links .header-nav-main nav > ul:not(:hover) > li.dropdown-full-color.dropdown-light > a.active {
        color: #FFF;
    }
}

@media (min-width: 992px) {
    html #header .header-nav-force-light-text-active-skin-color .header-nav-main nav > ul > li:hover > a,
    html #header .header-nav-force-light-text-active-skin-color .header-nav-main nav > ul > li .wrapper-items-cloned:hover > a {
        color:#15628f !important;
    }

    html #header .header-nav-force-light-text-active-skin-color .header-nav-main nav > ul:not(:hover) > li > a.active,
    html #header .header-nav-force-light-text-active-skin-color .header-nav-main nav > ul:not(:hover) > li .wrapper-items-cloned > a.active {
        color:#15628f !important;
    }
}

@media (max-width: 991px) {
    #header .header-nav-main:not(.header-nav-main-mobile-dark) nav > ul > li > a {
        color:#15628f;
    }

    #header .header-nav-main:not(.header-nav-main-mobile-dark) nav > ul > li > a:active {
        color:#15628f;
    }

    #header .header-nav-main:not(.header-nav-main-mobile-dark) nav > ul > li > a.active {
        background:#15628f;
    }

    #header .header-nav-main:not(.header-nav-main-mobile-dark) nav > ul > li > a.active:focus,
    #header .header-nav-main:not(.header-nav-main-mobile-dark) nav > ul > li > a.active:hover {
        background:#15628f;
    }

    #header .header-nav-main.header-nav-main-mobile-dark nav > ul > li > a.active {
        background:#15628f;
    }

    #header .header-nav-main.header-nav-main-mobile-dark nav > ul > li > a.active:focus,
    #header .header-nav-main.header-nav-main-mobile-dark nav > ul > li > a.active:hover {
        background:#15628f;
    }

    html.side-header-hamburguer-sidebar #header.side-header .header-nav.header-nav-links .header-nav-main.header-nav-main-mobile-dark nav > ul > li > a.active {
        color:#15628f !important;
    }

    html.side-header-hamburguer-sidebar #header.side-header .header-nav.header-nav-links nav::-webkit-scrollbar-thumb {
        background-color:#15628f;
    }

    html.side-header-hamburguer-sidebar #header.side-header .header-nav.header-nav-links nav > ul > li > a.active {
        color:#15628f !important;
    }

    html.side-header-hamburguer-sidebar #header.side-header .header-nav.header-nav-links nav > ul > li:hover > a {
        color:#15628f !important;
    }
}

@media (max-width: 991px) {
    html #header .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary > a {
        color:#15628f;
    }

    html #header .header-nav-main nav > ul > li.dropdown-full-color.dropdown-primary > a.active {
        background:#15628f !important;
        color: #FFF !important;
    }

    html #header .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary > a {
        color: #1e90d3;
    }

    html #header .header-nav-main nav > ul > li.dropdown-full-color.dropdown-secondary > a.active {
        background: #1e90d3 !important;
        color: #777 !important;
    }

    html #header .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc > a {
        color: #525252;
    }

    html #header .header-nav-main nav > ul > li.dropdown-full-color.dropdown-uc > a.active {
        background: #525252 !important;
        color: #777 !important;
    }

    html #header .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort > a {
        color: #71b1dd;
    }

    html #header .header-nav-main nav > ul > li.dropdown-full-color.dropdown-dort > a.active {
        background: #71b1dd !important;
        color: #FFF !important;
    }
}

html #header .header-top.header-top-primary {
    background:#15628f;
    border-top-color:#15628f;
}

html #header .header-top.header-top-primary .header-nav-top ul > li.open > a {
    background: #cd8080;
}

html #header .header-top.header-top-primary .header-nav-top ul > li > a:hover,
html #header .header-top.header-top-primary .header-nav-top ul > li.open > a:hover,
html #header .header-top.header-top-primary .header-nav-top ul > li > a:focus,
html #header .header-top.header-top-primary .header-nav-top ul > li.open > a:focus {
    background: #cd8080;
}

html #header .header-top.header-top-primary .dropdown-menu {
    background: #cd8080;
    border-color: #cd8080;
}

html #header .header-top.header-top-primary .dropdown-menu a:hover,
html #header .header-top.header-top-primary .dropdown-menu a:focus {
    background: #cd8080 !important;
}

html #header .header-top.header-top-secondary {
    background: #1e90d3;
    border-top-color: #dfeae6;
}

html #header .header-top.header-top-secondary .header-nav-top ul > li.open > a {
    background: #fdfefe;
}

html #header .header-top.header-top-secondary .header-nav-top ul > li > a:hover,
html #header .header-top.header-top-secondary .header-nav-top ul > li.open > a:hover,
html #header .header-top.header-top-secondary .header-nav-top ul > li > a:focus,
html #header .header-top.header-top-secondary .header-nav-top ul > li.open > a:focus {
    background: #fdfefe;
}

html #header .header-top.header-top-secondary .dropdown-menu {
    background: #fdfefe;
    border-color: #fdfefe;
}

html #header .header-top.header-top-secondary .dropdown-menu a:hover,
html #header .header-top.header-top-secondary .dropdown-menu a:focus {
    background: #ffffff !important;
}

html #header .header-top.header-top-uc {
    background: #525252;
    border-top-color: #bdd2f1;
}

html #header .header-top.header-top-uc .header-nav-top ul > li.open > a {
    background: #fafffb;
}

html #header .header-top.header-top-uc .header-nav-top ul > li > a:hover,
html #header .header-top.header-top-uc .header-nav-top ul > li.open > a:hover,
html #header .header-top.header-top-uc .header-nav-top ul > li > a:focus,
html #header .header-top.header-top-uc .header-nav-top ul > li.open > a:focus {
    background: #fafffb;
}

html #header .header-top.header-top-uc .dropdown-menu {
    background: #fafffb;
    border-color: #fafffb;
}

html #header .header-top.header-top-uc .dropdown-menu a:hover,
html #header .header-top.header-top-uc .dropdown-menu a:focus {
    background: #ffffff !important;
}

html #header .header-top.header-top-dort {
    background: #71b1dd;
    border-top-color: #060609;
}

html #header .header-top.header-top-dort .header-nav-top ul > li.open > a {
    background: #1a1a29;
}

html #header .header-top.header-top-dort .header-nav-top ul > li > a:hover,
html #header .header-top.header-top-dort .header-nav-top ul > li.open > a:hover,
html #header .header-top.header-top-dort .header-nav-top ul > li > a:focus,
html #header .header-top.header-top-dort .header-nav-top ul > li.open > a:focus {
    background: #1a1a29;
}

html #header .header-top.header-top-dort .dropdown-menu {
    background: #1a1a29;
    border-color: #1a1a29;
}

html #header .header-top.header-top-dort .dropdown-menu a:hover,
html #header .header-top.header-top-dort .dropdown-menu a:focus {
    background: #242438 !important;
}

html #header .header-top.header-top-dark {
    background: #212529;
    border-top-color: #16181b;
}

html #header .header-top.header-top-dark .header-nav-top ul > li.open > a {
    background: #2c3237;
}

html #header .header-top.header-top-dark .header-nav-top ul > li > a:hover,
html #header .header-top.header-top-dark .header-nav-top ul > li.open > a:hover,
html #header .header-top.header-top-dark .header-nav-top ul > li > a:focus,
html #header .header-top.header-top-dark .header-nav-top ul > li.open > a:focus {
    background: #2c3237;
}

html #header .header-top.header-top-dark .dropdown-menu {
    background: #2c3237;
    border-color: #2c3237;
}

html #header .header-top.header-top-dark .dropdown-menu a:hover,
html #header .header-top.header-top-dark .dropdown-menu a:focus {
    background: #383f45 !important;
}

html #header .header-top.header-top-light {
    background: #FFF;
    border-top-color: #f2f2f2;
}

html #header .header-top.header-top-light .header-nav-top ul > li.open > a {
    background: #ffffff;
}

html #header .header-top.header-top-light .header-nav-top ul > li > a:hover,
html #header .header-top.header-top-light .header-nav-top ul > li.open > a:hover,
html #header .header-top.header-top-light .header-nav-top ul > li > a:focus,
html #header .header-top.header-top-light .header-nav-top ul > li.open > a:focus {
    background: #ffffff;
}

html #header .header-top.header-top-light .dropdown-menu {
    background: #ffffff;
    border-color: #ffffff;
}

html #header .header-top.header-top-light .dropdown-menu a:hover,
html #header .header-top.header-top-light .dropdown-menu a:focus {
    background: #ffffff !important;
}

@media (min-width: 992px) {
    html #header .header-nav-bar-primary {
        background:#15628f !important;
        color: #FFF !important;
    }

    html #header .header-nav-bar-secondary {
        background: #1e90d3 !important;
        color: #777 !important;
    }

    html #header .header-nav-bar-uc {
        background: #525252 !important;
        color: #777 !important;
    }

    html #header .header-nav-bar-dort {
        background: #71b1dd !important;
        color: #FFF !important;
    }

    html #header .header-nav-bar-dark {
        background: #212529 !important;
        color: #FFF !important;
    }

    html #header .header-nav-bar-light {
        background: #FFF !important;
        color: #777 !important;
    }
}

@media (min-width: 992px) {
    #header .header-nav-main.header-nav-main-light nav > ul > li.open > a,
    #header .header-nav-main.header-nav-main-light nav > ul > li:hover > a {
        color:#15628f;
    }

    #header .header-nav-main.header-nav-main-light nav > ul > li > a.active {
        color:#15628f;
    }
}

#header .header-nav-features .header-nav-features-search-reveal-big-search .form-control {
    border-bottom-color:#15628f;
}

.testimonial blockquote {
    background: #fff;
}

.testimonial .testimonial-arrow-down {
    border-top-color: #79aecc;
}

html .testimonial-primary blockquote {
    background: #79aecc;
}

html .testimonial-primary .testimonial-arrow-down {
    border-top-color: #79aecc;
}

html .testimonial-primary.testimonial-style-7 {
    background: # #79aecc;
}

html .testimonial-quotes-primary blockquote:before,
html .testimonial-quotes-primary blockquote:after {
    color:#15628f !important;
}

html .testimonial-secondary blockquote {
    background: #fdfefe;
}

html .testimonial-secondary .testimonial-arrow-down {
    border-top-color: #fdfefe;
}

html .testimonial-secondary.testimonial-style-7 {
    background: #fdfefe;
}

html .testimonial-quotes-secondary blockquote:before,
html .testimonial-quotes-secondary blockquote:after {
    color:#15628f !important;
}

html .testimonial-uc blockquote {
    background: #fafffb;
}

html .testimonial-uc .testimonial-arrow-down {
    border-top-color: #fafffb;
}

html .testimonial-uc.testimonial-style-7 {
    background: #fafffb;
}

html .testimonial-quotes-uc blockquote:before,
html .testimonial-quotes-uc blockquote:after {
    color:#15628f !important;
}

html .testimonial-dort blockquote {
    background: #1a1a29;
}

html .testimonial-dort .testimonial-arrow-down {
    border-top-color: #1a1a29;
}

html .testimonial-dort.testimonial-style-7 {
    background: #1a1a29;
}

html .testimonial-quotes-dort blockquote:before,
html .testimonial-quotes-dort blockquote:after {
    color:#15628f !important;
}

html .testimonial-dark blockquote {
    background: #2c3237;
}

html .testimonial-dark .testimonial-arrow-down {
    border-top-color: #2c3237;
}

html .testimonial-dark.testimonial-style-7 {
    background: #2c3237;
}

html .testimonial-quotes-dark blockquote:before,
html .testimonial-quotes-dark blockquote:after {
    color:#15628f !important;
}

html .testimonial-light blockquote {
    background: #ffffff;
}

html .testimonial-light .testimonial-arrow-down {
    border-top-color: #ffffff;
}

html .testimonial-light.testimonial-style-7 {
    background: #ffffff;
}

html .testimonial-quotes-light blockquote:before,
html .testimonial-quotes-light blockquote:after {
    color:#15628f !important;
}

.circular-bar.only-icon [class*="fa-"],
.circular-bar.only-icon .icons {
    color:#15628f;
}

.form-control.bg-primary,
.form-control.bg-color-primary {
    color: #FFF;
    border-color:#15628f;
}

.form-control.bg-primary::-webkit-input-placeholder,
.form-control.bg-color-primary::-webkit-input-placeholder {
    color: #e6e6e6;
}

.form-control.bg-primary::-moz-placeholder,
.form-control.bg-color-primary::-moz-placeholder {
    color: #e6e6e6;
}

.form-control.bg-primary:-ms-input-placeholder,
.form-control.bg-color-primary:-ms-input-placeholder {
    color: #e6e6e6;
}

.form-control.bg-primary:-moz-placeholder,
.form-control.bg-color-primary:-moz-placeholder {
    color: #e6e6e6;
}

.form-control .testimonial-primary blockquote {
    background: #387294;
}

.form-control .testimonial-primary .testimonial-arrow-down {
    border-top-color: #3c83ad;
}

.form-control .testimonial-primary.testimonial-style-7 {
    background: #3a7da4;
}

.form-control .testimonial-quotes-primary blockquote:before,
.form-control .testimonial-quotes-primary blockquote:after {
    color:#15628f !important;
}

.form-control.bg-secondary,
.form-control.bg-color-secondary {
    color: #777;
    border-color: #1e90d3;
}

.form-control.bg-secondary::-webkit-input-placeholder,
.form-control.bg-color-secondary::-webkit-input-placeholder {
    color: #5e5e5e;
}

.form-control.bg-secondary::-moz-placeholder,
.form-control.bg-color-secondary::-moz-placeholder {
    color: #5e5e5e;
}

.form-control.bg-secondary:-ms-input-placeholder,
.form-control.bg-color-secondary:-ms-input-placeholder {
    color: #5e5e5e;
}

.form-control.bg-secondary:-moz-placeholder,
.form-control.bg-color-secondary:-moz-placeholder {
    color: #5e5e5e;
}

.form-control .testimonial-secondary blockquote {
    background: #fdfefe;
}

.form-control .testimonial-secondary .testimonial-arrow-down {
    border-top-color: #fdfefe;
}

.form-control .testimonial-secondary.testimonial-style-7 {
    background: #fdfefe;
}

.form-control .testimonial-quotes-secondary blockquote:before,
.form-control .testimonial-quotes-secondary blockquote:after {
    color:#15628f !important;
}

.form-control.bg-uc,
.form-control.bg-color-uc {
    color: #777;
    border-color: #525252;
}

.form-control.bg-uc::-webkit-input-placeholder,
.form-control.bg-color-uc::-webkit-input-placeholder {
    color: #5e5e5e;
}

.form-control.bg-uc::-moz-placeholder,
.form-control.bg-color-uc::-moz-placeholder {
    color: #5e5e5e;
}

.form-control.bg-uc:-ms-input-placeholder,
.form-control.bg-color-uc:-ms-input-placeholder {
    color: #5e5e5e;
}

.form-control.bg-uc:-moz-placeholder,
.form-control.bg-color-uc:-moz-placeholder {
    color: #5e5e5e;
}

.form-control .testimonial-uc blockquote {
    background: #fafffb;
}

.form-control .testimonial-uc .testimonial-arrow-down {
    border-top-color: #fafffb;
}

.form-control .testimonial-uc.testimonial-style-7 {
    background: #fafffb;
}

.form-control .testimonial-quotes-uc blockquote:before,
.form-control .testimonial-quotes-uc blockquote:after {
    color:#15628f !important;
}

.form-control.bg-dort,
.form-control.bg-color-dort {
    color: #FFF;
    border-color: #71b1dd;
}

.form-control.bg-dort::-webkit-input-placeholder,
.form-control.bg-color-dort::-webkit-input-placeholder {
    color: #e6e6e6;
}

.form-control.bg-dort::-moz-placeholder,
.form-control.bg-color-dort::-moz-placeholder {
    color: #e6e6e6;
}

.form-control.bg-dort:-ms-input-placeholder,
.form-control.bg-color-dort:-ms-input-placeholder {
    color: #e6e6e6;
}

.form-control.bg-dort:-moz-placeholder,
.form-control.bg-color-dort:-moz-placeholder {
    color: #e6e6e6;
}

.form-control .testimonial-dort blockquote {
    background: #1a1a29;
}

.form-control .testimonial-dort .testimonial-arrow-down {
    border-top-color: #1a1a29;
}

.form-control .testimonial-dort.testimonial-style-7 {
    background: #1a1a29;
}

.form-control .testimonial-quotes-dort blockquote:before,
.form-control .testimonial-quotes-dort blockquote:after {
    color:#15628f !important;
}

.form-control.bg-dark,
.form-control.bg-color-dark {
    color: #FFF;
    border-color: #212529;
}

.form-control.bg-dark::-webkit-input-placeholder,
.form-control.bg-color-dark::-webkit-input-placeholder {
    color: #e6e6e6;
}

.form-control.bg-dark::-moz-placeholder,
.form-control.bg-color-dark::-moz-placeholder {
    color: #e6e6e6;
}

.form-control.bg-dark:-ms-input-placeholder,
.form-control.bg-color-dark:-ms-input-placeholder {
    color: #e6e6e6;
}

.form-control.bg-dark:-moz-placeholder,
.form-control.bg-color-dark:-moz-placeholder {
    color: #e6e6e6;
}

.form-control .testimonial-dark blockquote {
    background: #2c3237;
}

.form-control .testimonial-dark .testimonial-arrow-down {
    border-top-color: #2c3237;
}

.form-control .testimonial-dark.testimonial-style-7 {
    background: #2c3237;
}

.form-control .testimonial-quotes-dark blockquote:before,
.form-control .testimonial-quotes-dark blockquote:after {
    color:#15628f !important;
}

.form-control.bg-light,
.form-control.bg-color-light {
    color: #777;
    border-color: #FFF;
}

.form-control.bg-light::-webkit-input-placeholder,
.form-control.bg-color-light::-webkit-input-placeholder {
    color: #5e5e5e;
}

.form-control.bg-light::-moz-placeholder,
.form-control.bg-color-light::-moz-placeholder {
    color: #5e5e5e;
}

.form-control.bg-light:-ms-input-placeholder,
.form-control.bg-color-light:-ms-input-placeholder {
    color: #5e5e5e;
}

.form-control.bg-light:-moz-placeholder,
.form-control.bg-color-light:-moz-placeholder {
    color: #5e5e5e;
}

.form-control .testimonial-light blockquote {
    background: #ffffff;
}

.form-control .testimonial-light .testimonial-arrow-down {
    border-top-color: #ffffff;
}

.form-control .testimonial-light.testimonial-style-7 {
    background: #ffffff;
}

.form-control .testimonial-quotes-light blockquote:before,
.form-control .testimonial-quotes-light blockquote:after {
    color:#15628f !important;
}

.form-range::-webkit-slider-thumb {
    background-color:#15628f;
}

.form-range::-webkit-slider-thumb:active {
    background-color: rgba(30, 144, 211, 0.62);
}

.form-range:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.25rem rgba(30, 144, 211, 0.63);
}

html .counters .counter-primary [class*="fa-"],
html .counters .counter-primary .icons,
html .counters .counter-primary strong {
    color:#15628f;
}

html .counters .counter-secondary [class*="fa-"],
html .counters .counter-secondary .icons,
html .counters .counter-secondary strong {
    color: #1e90d3;
}

html .counters .counter-uc [class*="fa-"],
html .counters .counter-uc .icons,
html .counters .counter-uc strong {
    color: #525252;
}

html .counters .counter-dort [class*="fa-"],
html .counters .counter-dort .icons,
html .counters .counter-dort strong {
    color: #71b1dd;
}

html .counters .counter-dark [class*="fa-"],
html .counters .counter-dark .icons,
html .counters .counter-dark strong {
    color: #212529;
}

html .counters .counter-light [class*="fa-"],
html .counters .counter-light .icons,
html .counters .counter-light strong {
    color: #FFF;
}

html .countdown.countdown-primary > span > span {
    color:#15628f;
}

html .countdown.countdown-secondary > span > span {
    color: #1e90d3;
}

html .countdown.countdown-uc > span > span {
    color: #525252;
}

html .countdown.countdown-dort > span > span {
    color: #71b1dd;
}

html .countdown.countdown-dark > span > span {
    color: #212529;
}

html .countdown.countdown-light > span > span {
    color: #FFF;
}

html .image-hotspot-primary strong {
    color: #FFF !important;
}

html .image-hotspot-primary .circle {
    background:#15628f !important;
}

html .image-hotspot-primary .ring {
    border-color: rgba(25, 61, 117, 0.62);
}

html .image-hotspot-secondary strong {
    color: #777 !important;
}

html .image-hotspot-secondary .circle {
    background: #1e90d3 !important;
}

html .image-hotspot-secondary .ring {
    border-color: rgba(238, 244, 242, 0.9);
}

html .image-hotspot-uc strong {
    color: #777 !important;
}

html .image-hotspot-uc .circle {
    background: #525252 !important;
}

html .image-hotspot-uc .ring {
    border-color: rgba(226, 253, 234, 0.9);
}

html .image-hotspot-dort strong {
    color: #FFF !important;
}

html .image-hotspot-dort .circle {
    background: #71b1dd !important;
}

html .image-hotspot-dort .ring {
    border-color: rgba(16, 16, 25, 0.9);
}

html .image-hotspot-dark strong {
    color: #FFF !important;
}

html .image-hotspot-dark .circle {
    background: #212529 !important;
}

html .image-hotspot-dark .ring {
    border-color: rgba(33, 37, 41, 0.9);
}

html .image-hotspot-light strong {
    color: #777 !important;
}

html .image-hotspot-light .circle {
    background: #FFF !important;
}

html .image-hotspot-light .ring {
    border-color: rgba(255, 255, 255, 0.9);
}

.icon-featured {
    background-color:#15628f;
}

html .featured-box-primary .icon-featured {
    background-color:#15628f;
}

html .featured-box-primary h4 {
    color:#15628f;
}

html .featured-box-primary .box-content {
    border-top-color:#15628f;
}

html .featured-box-primary .box-content-border-bottom {
    border-bottom-color:#15628f;
}

html .featured-box-secondary .icon-featured {
    background-color: #1e90d3;
}

html .featured-box-secondary h4 {
    color: #1e90d3;
}

html .featured-box-secondary .box-content {
    border-top-color: #1e90d3;
}

html .featured-box-secondary .box-content-border-bottom {
    border-bottom-color: #1e90d3;
}

html .featured-box-uc .icon-featured {
    background-color: #525252;
}

html .featured-box-uc h4 {
    color: #525252;
}

html .featured-box-uc .box-content {
    border-top-color: #525252;
}

html .featured-box-uc .box-content-border-bottom {
    border-bottom-color: #525252;
}

html .featured-box-dort .icon-featured {
    background-color: #71b1dd;
}

html .featured-box-dort h4 {
    color: #71b1dd;
}

html .featured-box-dort .box-content {
    border-top-color: #71b1dd;
}

html .featured-box-dort .box-content-border-bottom {
    border-bottom-color: #71b1dd;
}

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:#15628f;
    color:#15628f;
}

html .featured-boxes-style-3 .featured-box.featured-box-secondary .icon-featured {
    border-color: #1e90d3;
    color: #1e90d3;
}

html .featured-boxes-style-3 .featured-box.featured-box-uc .icon-featured {
    border-color: #525252;
    color: #525252;
}

html .featured-boxes-style-3 .featured-box.featured-box-dort .icon-featured {
    border-color: #71b1dd;
    color: #71b1dd;
}

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:#15628f;
    color:#15628f;
}

html .featured-boxes-style-4 .featured-box.featured-box-secondary .icon-featured {
    border-color: #1e90d3;
    color: #1e90d3;
}

html .featured-boxes-style-4 .featured-box.featured-box-uc .icon-featured {
    border-color: #525252;
    color: #525252;
}

html .featured-boxes-style-4 .featured-box.featured-box-dort .icon-featured {
    border-color: #71b1dd;
    color: #71b1dd;
}

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:#15628f;
}

html .featured-boxes-style-5 .featured-box.featured-box-secondary .icon-featured {
    color: #1e90d3;
}

html .featured-boxes-style-5 .featured-box.featured-box-uc .icon-featured {
    color: #525252;
}

html .featured-boxes-style-5 .featured-box.featured-box-dort .icon-featured {
    color: #71b1dd;
}

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:#15628f;
}

html .featured-boxes-style-6 .featured-box.featured-box-secondary .icon-featured {
    color: #1e90d3;
}

html .featured-boxes-style-6 .featured-box.featured-box-uc .icon-featured {
    color: #525252;
}

html .featured-boxes-style-6 .featured-box.featured-box-dort .icon-featured {
    color: #71b1dd;
}

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:#15628f;
}

html .featured-boxes-style-8 .featured-box.featured-box-secondary .icon-featured {
    color: #1e90d3;
}

html .featured-boxes-style-8 .featured-box.featured-box-uc .icon-featured {
    color: #525252;
}

html .featured-boxes-style-8 .featured-box.featured-box-dort .icon-featured {
    color: #71b1dd;
}

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:#15628f;
    background: linear-gradient(135deg,#15628f 0%, #71b1dd 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#353535', endColorstr='#71b1dd', GradientType=1);
}

.featured-boxes-modern-style-secondary .featured-box {
    background: #1e90d3;
    background: linear-gradient(135deg, #1e90d3 0%, #71b1dd 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1e90d3', endColorstr='#71b1dd', GradientType=1);
}

.featured-boxes-modern-style-uc .featured-box {
    background: #525252;
    background: linear-gradient(135deg, #525252 0%, #71b1dd 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#525252', endColorstr='#71b1dd', GradientType=1);
}

html .featured-box-effect-2.featured-box-primary .icon-featured:after {
    box-shadow: 0 0 0 3px#15628f;
}

html .featured-box-effect-2.featured-box-secondary .icon-featured:after {
    box-shadow: 0 0 0 3px #1e90d3;
}

html .featured-box-effect-2.featured-box-uc .icon-featured:after {
    box-shadow: 0 0 0 3px #525252;
}

html .featured-box-effect-2.featured-box-dort .icon-featured:after {
    box-shadow: 0 0 0 3px #71b1dd;
}

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#15628f;
}

html .featured-box-effect-3.featured-box-primary:hover .icon-featured {
    background:#15628f !important;
}

html .featured-box-effect-3.featured-box-secondary .icon-featured:after {
    box-shadow: 0 0 0 10px #1e90d3;
}

html .featured-box-effect-3.featured-box-secondary:hover .icon-featured {
    background: #1e90d3 !important;
}

html .featured-box-effect-3.featured-box-uc .icon-featured:after {
    box-shadow: 0 0 0 10px #525252;
}

html .featured-box-effect-3.featured-box-uc:hover .icon-featured {
    background: #525252 !important;
}

html .featured-box-effect-3.featured-box-dort .icon-featured:after {
    box-shadow: 0 0 0 10px #71b1dd;
}

html .featured-box-effect-3.featured-box-dort:hover .icon-featured {
    background: #71b1dd !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:#15628f;
}

html .feature-box-primary .feature-box-icon {
    background-color:#15628f;
}

html .feature-box-secondary .feature-box-icon {
    background-color: #1e90d3;
}

html .feature-box-uc .feature-box-icon {
    background-color: #525252;
}

html .feature-box-dort .feature-box-icon {
    background-color: #71b1dd;
}

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:#15628f;
}

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:#15628f;
}

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: #1e90d3;
}

html .feature-box-uc.feature-box-style-2 .feature-box-icon [class*="fa-"],
html .feature-box-uc.feature-box-style-2 .feature-box-icon .icons {
    color: #525252;
}

html .feature-box-dort.feature-box-style-2 .feature-box-icon [class*="fa-"],
html .feature-box-dort.feature-box-style-2 .feature-box-icon .icons {
    color: #71b1dd;
}

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:#15628f;
}

.feature-box.feature-box-style-3 .feature-box-icon [class*="fa-"],
.feature-box.feature-box-style-3 .feature-box-icon .icons {
    color:#15628f;
}

html .feature-box-primary.feature-box-style-3 .feature-box-icon {
    border-color:#15628f;
}

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:#15628f;
}

html .feature-box-secondary.feature-box-style-3 .feature-box-icon {
    border-color: #1e90d3;
}

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: #1e90d3;
}

html .feature-box-uc.feature-box-style-3 .feature-box-icon {
    border-color: #525252;
}

html .feature-box-uc.feature-box-style-3 .feature-box-icon [class*="fa-"],
html .feature-box-uc.feature-box-style-3 .feature-box-icon .icons {
    color: #525252;
}

html .feature-box-dort.feature-box-style-3 .feature-box-icon {
    border-color: #71b1dd;
}

html .feature-box-dort.feature-box-style-3 .feature-box-icon [class*="fa-"],
html .feature-box-dort.feature-box-style-3 .feature-box-icon .icons {
    color: #71b1dd;
}

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:#15628f;
}

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:#15628f;
}

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: #1e90d3;
}

html .feature-box-uc.feature-box-style-4 .feature-box-icon [class*="fa-"],
html .feature-box-uc.feature-box-style-4 .feature-box-icon .icons {
    color: #525252;
}

html .feature-box-dort.feature-box-style-4 .feature-box-icon [class*="fa-"],
html .feature-box-dort.feature-box-style-4 .feature-box-icon .icons {
    color: #71b1dd;
}

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:#15628f;
}

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:#15628f;
}

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: #1e90d3;
}

html .feature-box-uc.feature-box-style-5 .feature-box-icon [class*="fa-"],
html .feature-box-uc.feature-box-style-5 .feature-box-icon .icons {
    color: #525252;
}

html .feature-box-dort.feature-box-style-5 .feature-box-icon [class*="fa-"],
html .feature-box-dort.feature-box-style-5 .feature-box-icon .icons {
    color: #71b1dd;
}

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:#15628f;
}

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: #1e90d3;
}

html .feature-box-uc.feature-box-style-6 .feature-box-icon [class*="fa-"],
html .feature-box-uc.feature-box-style-6 .feature-box-icon .icons {
    color: #525252;
}

html .feature-box-dort.feature-box-style-6 .feature-box-icon [class*="fa-"],
html .feature-box-dort.feature-box-style-6 .feature-box-icon .icons {
    color: #71b1dd;
}

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: #f04443;
}

html .featured-boxes-full-scale > .featured-box-full-primary:nth-child(2) {
    background-color: #f04443;
}

html .featured-boxes-full-scale > .featured-box-full-primary:nth-child(3) {
    background-color:#15628f;
}

html .featured-boxes-full-scale > .featured-box-full-primary:nth-child(4) {
    background-color: #c27a60;
}

html .featured-boxes-full-scale > .featured-box-full-primary:nth-child(5) {
    background-color: #c27a60;
}

html .featured-boxes-full-scale > .featured-box-full-primary:nth-child(6) {
    background-color: #c27a60;
}

html .featured-boxes-full .featured-box-full-primary {
    background-color:#15628f;
    color: #FFF;
}

html .featured-boxes-full .featured-box-full-secondary {
    background-color: #1e90d3;
    color: #777;
}

html .featured-boxes-full .featured-box-full-uc {
    background-color: #525252;
    color: #777;
}

html .featured-boxes-full .featured-box-full-dort {
    background-color: #71b1dd;
    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;
}

.pricing-table .most-popular {
    border-color:#15628f;
}

.pricing-table .most-popular h3 {
    background-color:#15628f;
}

.pricing-table.princig-table-flat .plan h3 {
    background-color:#15628f;
}

.pricing-table.princig-table-flat .plan h3 span {
    background:#15628f;
}

html .call-to-action.featured.featured-primary {
    border-top-color:#15628f;
}

html .call-to-action.call-to-action-primary {
    background:#15628f;
}

html .call-to-action.with-full-borders-primary {
    border-color:#15628f;
}

html .call-to-action.call-to-action-primary {
    background:#15628f;
}

html .call-to-action.call-to-action-primary h3,
html .call-to-action.call-to-action-primary p {
    color: #FFF;
}

html .call-to-action.featured.featured-secondary {
    border-top-color: #1e90d3;
}

html .call-to-action.call-to-action-secondary {
    background: #1e90d3;
}

html .call-to-action.with-full-borders-secondary {
    border-color: #1e90d3;
}

html .call-to-action.call-to-action-secondary {
    background: #1e90d3;
}

html .call-to-action.call-to-action-secondary h3,
html .call-to-action.call-to-action-secondary p {
    color: #777;
}

html .call-to-action.featured.featured-uc {
    border-top-color: #525252;
}

html .call-to-action.call-to-action-uc {
    background: #525252;
}

html .call-to-action.with-full-borders-uc {
    border-color: #525252;
}

html .call-to-action.call-to-action-uc {
    background: #525252;
}

html .call-to-action.call-to-action-uc h3,
html .call-to-action.call-to-action-uc p {
    color: #777;
}

html .call-to-action.featured.featured-dort {
    border-top-color: #71b1dd;
}

html .call-to-action.call-to-action-dort {
    background: #71b1dd;
}

html .call-to-action.with-full-borders-dort {
    border-color: #71b1dd;
}

html .call-to-action.call-to-action-dort {
    background: #71b1dd;
}

html .call-to-action.call-to-action-dort h3,
html .call-to-action.call-to-action-dort p {
    color: #FFF;
}

html .call-to-action.featured.featured-dark {
    border-top-color: #212529;
}

html .call-to-action.call-to-action-dark {
    background: #212529;
}

html .call-to-action.with-full-borders-dark {
    border-color: #212529;
}

html .call-to-action.call-to-action-dark {
    background: #212529;
}

html .call-to-action.call-to-action-dark h3,
html .call-to-action.call-to-action-dark p {
    color: #FFF;
}

html .call-to-action.featured.featured-light {
    border-top-color: #FFF;
}

html .call-to-action.call-to-action-light {
    background: #FFF;
}

html .call-to-action.with-full-borders-light {
    border-color: #FFF;
}

html .call-to-action.call-to-action-light {
    background: #FFF;
}

html .call-to-action.call-to-action-light h3,
html .call-to-action.call-to-action-light p {
    color: #777;
}

section.timeline .timeline-box.left:before,
section.timeline .timeline-box.right:before {
    background:#15628f;
    box-shadow: 0 0 0 3px #FFF, 0 0 0 6px#15628f;
}

ul.history li .featured-box .box-content {
    border-top-color:#15628f;
}

.portfolio-list .portfolio-item.portfolio-item-new:after {
    background: linear-gradient(135deg,#15628f 0%, #1e90d3 80%);
}

.recent-posts .date .month,
article.post .post-date .month {
    background-color:#15628f;
}

.recent-posts .date .day,
article.post .post-date .day {
    color:#15628f;
}

.slider .tp-bannertimer {
    background-color:#15628f;
}

.home-concept strong {
    color:#15628f;
}

html .home-intro-primary {
    background:#15628f;
}

html .home-intro-secondary {
    background: #1e90d3;
}

html .home-intro-uc {
    background: #525252;
}

html .home-intro-dort {
    background: #71b1dd;
}

html .home-intro-dark {
    background: #212529;
}

html .home-intro-light {
    background: #FFF;
}

html .slide-overlay-primary .slotholder:after {
    background-color:#15628f !important;
}

html .slider-container .tp-caption-overlay-primary {
    background:#15628f;
}

html .slider-container .tp-caption-overlay-opacity-primary {
    background: rgba(30, 144, 211, 0.64);
}

html .tp-bullets.bullets-color-primary .tp-bullet:hover,
html .tp-bullets.bullets-color-primary .tp-bullet.selected {
    background:#15628f;
}

html .slide-overlay-secondary .slotholder:after {
    background-color: #1e90d3 !important;
}

html .slider-container .tp-caption-overlay-secondary {
    background: #1e90d3;
}

html .slider-container .tp-caption-overlay-opacity-secondary {
    background: rgba(238, 244, 242, 0.4);
}

html .tp-bullets.bullets-color-secondary .tp-bullet:hover,
html .tp-bullets.bullets-color-secondary .tp-bullet.selected {
    background: #1e90d3;
}

html .slide-overlay-uc .slotholder:after {
    background-color: #525252 !important;
}

html .slider-container .tp-caption-overlay-uc {
    background: #525252;
}

html .slider-container .tp-caption-overlay-opacity-uc {
    background: rgba(226, 253, 234, 0.4);
}

html .tp-bullets.bullets-color-uc .tp-bullet:hover,
html .tp-bullets.bullets-color-uc .tp-bullet.selected {
    background: #525252;
}

html .slide-overlay-dort .slotholder:after {
    background-color: #71b1dd !important;
}

html .slider-container .tp-caption-overlay-dort {
    background: #71b1dd;
}

html .slider-container .tp-caption-overlay-opacity-dort {
    background: rgba(16, 16, 25, 0.4);
}

html .tp-bullets.bullets-color-dort .tp-bullet:hover,
html .tp-bullets.bullets-color-dort .tp-bullet.selected {
    background: #71b1dd;
}

html .slide-overlay-dark .slotholder:after {
    background-color: #212529 !important;
}

html .slider-container .tp-caption-overlay-dark {
    background: #212529;
}

html .slider-container .tp-caption-overlay-opacity-dark {
    background: rgba(33, 37, 41, 0.4);
}

html .tp-bullets.bullets-color-dark .tp-bullet:hover,
html .tp-bullets.bullets-color-dark .tp-bullet.selected {
    background: #212529;
}

html .slide-overlay-light .slotholder:after {
    background-color: #FFF !important;
}

html .slider-container .tp-caption-overlay-light {
    background: #FFF;
}

html .slider-container .tp-caption-overlay-opacity-light {
    background: rgba(255, 255, 255, 0.4);
}

html .tp-bullets.bullets-color-light .tp-bullet:hover,
html .tp-bullets.bullets-color-light .tp-bullet.selected {
    background: #FFF;
}

html .slide-overlay.slide-overlay-gradient .slotholder:after {
    background-color: #525252 !important;
    background-image: linear-gradient(to right, #525252 0%, ##1e90d3 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#525252', endColorstr='#71b1dd', GradientType=1);
}

.cd-product-viewer-handle .handle {
    background:#15628f;
}

.tparrows.tparrows-carousel.tp-leftarrow,
.tparrows.tparrows-carousel.tp-rightarrow {
    background-color:#15628f;
    border-color:#15628f#15628f#15628f;
    color: #fff;
}

.tparrows.tparrows-carousel.tp-leftarrow:hover,
.tparrows.tparrows-carousel.tp-rightarrow:hover,
.tparrows.tparrows-carousel.tp-leftarrow.hover,
.tparrows.tparrows-carousel.tp-rightarrow.hover {
    border-color: #c16161 #c16161 #c16161;
    color: #fff;
}

.tparrows.tparrows-carousel.tp-leftarrow:hover:not(.bg-transparent),
.tparrows.tparrows-carousel.tp-rightarrow:hover:not(.bg-transparent),
.tparrows.tparrows-carousel.tp-leftarrow.hover:not(.bg-transparent),
.tparrows.tparrows-carousel.tp-rightarrow.hover:not(.bg-transparent) {
    background-color: #c66969;
}

.tparrows.tparrows-carousel.tp-leftarrow:focus,
.tparrows.tparrows-carousel.tp-rightarrow:focus,
.tparrows.tparrows-carousel.tp-leftarrow.focus,
.tparrows.tparrows-carousel.tp-rightarrow.focus {
    border-color: #f04443 #f04443 #f04443;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(21, 49, 94, 0.6);
}

.tparrows.tparrows-carousel.tp-leftarrow:focus:not(.bg-transparent),
.tparrows.tparrows-carousel.tp-rightarrow:focus:not(.bg-transparent),
.tparrows.tparrows-carousel.tp-leftarrow.focus:not(.bg-transparent),
.tparrows.tparrows-carousel.tp-rightarrow.focus:not(.bg-transparent) {
    background-color:#15628f;
}

.tparrows.tparrows-carousel.tp-leftarrow.disabled,
.tparrows.tparrows-carousel.tp-rightarrow.disabled,
.tparrows.tparrows-carousel.tp-leftarrow:disabled,
.tparrows.tparrows-carousel.tp-rightarrow:disabled {
    border-color: #f04443 #f04443 #f04443;
}

.tparrows.tparrows-carousel.tp-leftarrow.disabled:not(.bg-transparent),
.tparrows.tparrows-carousel.tp-rightarrow.disabled:not(.bg-transparent),
.tparrows.tparrows-carousel.tp-leftarrow:disabled:not(.bg-transparent),
.tparrows.tparrows-carousel.tp-rightarrow:disabled:not(.bg-transparent) {
    background-color:#15628f;
}

.tparrows.tparrows-carousel.tp-leftarrow:active,
.tparrows.tparrows-carousel.tp-rightarrow:active,
.tparrows.tparrows-carousel.tp-leftarrow.active,
.tparrows.tparrows-carousel.tp-rightarrow.active {
    border-color: #f04443 #f04443 #f04443 !important;
}

.tparrows.tparrows-carousel.tp-leftarrow:active:not(.bg-transparent),
.tparrows.tparrows-carousel.tp-rightarrow:active:not(.bg-transparent),
.tparrows.tparrows-carousel.tp-leftarrow.active:not(.bg-transparent),
.tparrows.tparrows-carousel.tp-rightarrow.active:not(.bg-transparent) {
    background-color: #861d1d !important;
    background-image: none !important;
}

.tparrows.arrows-primary:before {
    color:#15628f;
}

.shop .products .product .onsale {
    background-color:#15628f;
    border-bottom-color:#15628f;
}

.shop .cart-totals tr.total .amount {
    color:#15628f;
}

.shop .products .product .quick-view {
    background: rgba(30, 144, 211, 0.64);
}

.shop .products .product:hover .quick-view:hover {
    background:#15628f;
}

.product .product-thumb-info .addtocart-btn-wrapper .addtocart-btn:hover {
    color: #FFF;
    background:#15628f;
}

.product .product-thumb-info .countdown-offer-wrapper {
    background:#15628f;
}

.dropdown-menu.dropdown-menu-arrow-centered a:focus,
.dropdown-menu.dropdown-menu-arrow-centered a:active {
    background-color:#15628f;
}

#footer .footer-ribbon {
    background:#15628f;
}

#footer .footer-ribbon:before {
    border-right-color: #22648c;
    border-left-color: #22648c;
}

#footer .footer-nav.footer-nav-bottom-line nav > ul:not(:hover) > li > a.active {
    color:#15628f !important;
}

#footer .footer-nav.footer-nav-bottom-line nav > ul:not(:hover) > li > a.active:before {
    background:#15628f !important;
}

#footer .footer-nav.footer-nav-bottom-line nav > ul:hover > li:hover > a {
    color:#15628f !important;
}

#footer .footer-nav.footer-nav-bottom-line nav > ul:hover > li:hover > a:before {
    background:#15628f !important;
}

.scrollable.colored-slider .scrollable-slider {
    background:#15628f;
}

.sample-icon-list .sample-icon a:hover {
    background-color:#15628f;
}

.cursor-inner {
    background-color: #71b1dd;
}

.cursor-inner.cursor-inner-plus:before {
    color:#15628f;
}

.cursor-outer {
    border-color:#15628f;
}

.cssload-thecube .cssload-cube:before {
    background-color:#15628f;
}

.cssload-cube-progress {
    border-color:#15628f;
}

.cssload-cube-progress-inner {
    background-color:#15628f;
}

.cssload-float-rings-inner.cssload-one {
    border-bottom-color:#15628f;
}

.cssload-float-rings-inner.cssload-two {
    border-right-color:#15628f;
}

.cssload-float-rings-inner.cssload-three {
    border-top-color:#15628f;
}

.cssload-float-bars-loading,
.cssload-float-bars-loading:after,
.cssload-float-bars-loading:before {
    background:#15628f;
}

.cssload-speeding-wheel {
    border-top-color:#15628f;
    border-bottom-color:#15628f;
}

.cssload-zenith {
    box-shadow: 3px 3px 1px#15628f;
}

.cssload-spinning-square-loading {
    background:#15628f;
}

.cssload-spinning-square-loading:before {
    background: #1e90d3;
}

.cssload-spinning-square-loading:after {
    background: #FFF;
}

.cssload-pulse-loader {
    background:#15628f;
}

.map-rounded-pin {
    background:#15628f;
}

html.boxed .body {
    border-top-color:#15628f;
}

.rounded,
.img-thumbnail,
.img-thumbnail img,
code,
pre,
.form-control,
.form-control-sm,
.form-control-sm .form-control,
.form-control-lg,
.form-control-lg .form-control,
.form-control-sm,
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn,
.form-control-lg,
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn,
.invalid-tooltip,
.btn:not(.btn-rounded):not(.btn-circle),
.btn-group-4 > .btn:not(.btn-rounded),
.btn-sm,
.btn-group-2 > .btn:not(.btn-rounded),
.btn-xs,
.btn-group-1 > .btn:not(.btn-rounded),
.btn-lg,
.btn-group-lg > .btn:not(.btn-rounded),
.btn-sm,
.btn-group-sm > .btn:not(.btn-rounded),
.dropdown-menu,
.input-group-4 > .form-control,
.input-group-4 > .input-group-addon,
.input-group-4 > .input-group-btn > .btn,
.input-group-2 > .form-control,
.input-group-2 > .input-group-addon,
.input-group-2 > .input-group-btn > .btn,
.input-group-addon,
.input-group-addon.form-control-sm,
.input-group-addon.form-control-lg,
.nav-tabs > li > a,
.nav-tabs.nav-justified > li > a,
.nav-pills > li > a,
.nav-tabs-justified > li > a,
.navbar,
.navbar-toggle,
.navbar-toggle .icon-bar,
.breadcrumb,
.pagination,
.pager li > a,
.pager li > span,
.label,
.badge,
.container .jumbotron,
.container-fluid .jumbotron,
.thumbnail,
.alert,
.progress,
.card,
.accordion .card,
.well,
.well-lg,
.well-sm,
.modal-content,
.tooltip-inner,
.popover,
.popover-title,
.carousel-indicators li,
.pagination > li:first-child > a,
.pagination > li:first-child > span,
.pagination-lg > li:first-child > a,
.pagination-lg > li:first-child > span,
.pagination > li:last-child > a,
.pagination > li:last-child > span,
.pagination-lg > li:last-child > a,
.pagination-lg > li:last-child > span,
#header .header-search .form-control,
#header .header-nav-main nav > ul > li > a,
#header .header-nav-main nav > ul > li.dropdown .dropdown-menu,
#header .header-nav-main nav > ul > li.dropdown .dropdown-menu li.dropdown-submenu > .dropdown-menu,
#header .header-nav-main nav > ul > li.dropdown-mega > .dropdown-menu,
#header .header-nav-main nav > ul > li.dropdown-mega .dropdown-mega-sub-nav > li > a,
#header.header-transparent .header-nav-main,
#header.header-semi-transparent .header-nav-main,
#header.header-semi-transparent-light .header-nav-main,
#header .header-nav-main nav > ul > li.dropdown-mega.dropdown-mega-signin .dropdown-menu,
#header .header-nav-main nav > ul > li.dropdown.open > a,
#header .header-nav-main nav > ul > li.dropdown:hover > a,
#header .header-nav-top .dropdown-menu,
.slider-container .tparrows,
.home-intro-compact,
html.dark #header,
html.boxed .body,
blockquote.with-borders,
p.drop-caps.drop-caps-style-2:first-child:first-letter,
.btn-3d,
select,
.captcha-refresh,
.featured-icon,
.accordion .card-header,
.tabs,
.nav-tabs li a,
.tab-content,
.tabs.tabs-bottom .tab-content,
.tabs.tabs-bottom .nav-tabs li a,
.tabs-left .tab-content,
.tabs-left .nav-tabs > li:first-child a,
.tabs-left .nav-tabs > li:last-child a,
.tabs-right .tab-content,
.tabs-right .nav-tabs > li:first-child a,
.tabs-right .nav-tabs > li:last-child a,
.nav-tabs.nav-justified li:first-child a,
.nav-tabs.nav-justified li:first-child a:hover,
.nav-tabs.nav-justified li:last-child a,
.nav-pills .nav-link,
.nav-tabs.nav-justified li:last-child a:hover,
.tabs.tabs-bottom .nav.nav-tabs.nav-justified li:first-child a,
.tabs.tabs-bottom .nav.nav-tabs.nav-justified li:last-child a,
.tabs-navigation,
.tabs-navigation .nav-tabs > li:first-child a,
.tabs-navigation .nav-tabs > li:last-child a,
.nav-pills .nav-link,
.navbar-toggler,
.card,
.card-header:first-child,
.card-footer:last-child,
.card-img,
.badge,
.badge-pill,
.jumbotron,
.alert,
.progress,
.modal-content,
.tooltip-inner,
.popover,
.rounded,
.toggle > label,
.toggle.toggle-simple .toggle > label,
.toggle.toggle-simple .toggle > label:after,
.owl-carousel .owl-nav button[class*="owl-"],
.owl-carousel.rounded-nav .owl-nav button[class*="owl-"],
.owl-carousel.rounded-nav .owl-nav button[class*="owl-"]:hover,
.owl-carousel.full-width .owl-nav button.owl-prev,
.owl-carousel.big-nav .owl-nav button.owl-prev,
.owl-carousel.full-width .owl-nav button.owl-next,
.owl-carousel.big-nav .owl-nav button.owl-next,
.embed-responsive.embed-responsive-borders,
.pricing-table h3,
.pricing-table .plan,
.featured-box,
.featured-box .box-content,
.thumb-info,
.thumb-info .thumb-info-wrapper,
.thumb-info .thumb-info-wrapper:after,
.thumb-info .thumb-info-type,
.thumb-info img,
section.timeline .timeline-date,
section.timeline .timeline-box,
.testimonial blockquote,
.testimonial.testimonial-style-2 blockquote,
.testimonial.testimonial-style-3 blockquote,
.testimonial.testimonial-style-4,
.testimonial.testimonial-style-4 blockquote,
.testimonial.testimonial-style-5 blockquote,
.testimonial.testimonial-style-6 blockquote,
.testimonial.testimonial-style-7 blockquote,
.container .call-to-action,
.progress,
.progress.progress-border-radius,
.progress.progress-border-radius .progress-bar,
.progress-bar,
.progress-bar-tooltip,
.scrollable .scrollable-slider,
.counters.with-borders .counter,
html .scroll-to-top,
.google-map.small,
.google-map-borders,
article.post .post-date .month,
article.post .post-date .day,
article .post-video,
article .post-audio,
ul.comments .comment-block,
.recent-posts .date .month,
#header nav.mega-menu .mega-menu-shop .dropdown-menu,
.shop ul.products .product .add-to-cart-product,
.product-info,
.product-info img,
.product-info + .product-info,
.img-thumbnail.img-thumbnail-hover-icon:before,
.product-thumb-info,
.accordion.accordion-modern-2 > .card .card-header a {
    border-radius: 0 !important;
}

@media (min-width: 992px) {
    #header nav.mega-menu ul.nav-main li.mega-menu-item ul.sub-menu a,
    #header nav.mega-menu ul.nav-main li.mega-menu-fullwidth ul.dropdown-menu,
    #header.flat-menu nav.mega-menu ul.nav-main li.mega-menu-fullwidth ul.dropdown-menu,
    #header.flat-menu nav ul.nav-main li a,
    html.boxed #header.flat-menu .header-top {
        border-radius: 0;
    }
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li > a,
    .nav-tabs-justified > li > a,
    .navbar {
        border-radius: 0;
    }
}

@media (max-width: 575px) {
    .tabs .nav.nav-tabs.nav-justified li:first-child a,
    .tabs .nav.nav-tabs.nav-justified li:first-child a:hover,
    .tabs.tabs-bottom .nav.nav-tabs.nav-justified li:last-child a,
    .tabs.tabs-bottom .nav.nav-tabs.nav-justified li:last-child a:hover {
        border-radius: 0;
    }
}

.dropdown-menu > li > a i {
    color:#15628f;
}

html #header.header-semi-transparent .header-body:before,
html #header.header-semi-transparent-light .header-body:before {
    background: #71b1dd;
}

@media (min-width: 992px) {
    #header .header-nav-main.header-nav-main-square nav > ul > li.active > a {
        color:#15628f !important;
    }

    #header .header-nav-main.header-nav-main-square nav > ul > li.active > a.dropdown-toggle::after {
        border-color:#15628f transparent transparent !important;
    }

    #header .header-nav-main.header-nav-main-square nav > ul > li:hover > a {
        color:#15628f !important;
    }

    #header .header-nav-main.header-nav-main-square nav > ul > li:hover > a.dropdown-toggle::after {
        border-color:#15628f transparent transparent !important;
    }
}

.btn-primary.active:not([disabled]):not(.disabled),
.btn-primary:active:not([disabled]):not(.disabled),
.show > .btn-primary.dropdown-toggle {
    background-color:#15628f;
    border-color:#15628f;
    box-shadow: 0 0 0 0.2rem rgba(30, 144, 211, 0.62);
}

.tp-leftarrow.custom-arrows-style-1,
.tp-rightarrow.custom-arrows-style-1 {
    background: rgba(16, 16, 25, 0.5);
}

.tp-leftarrow.custom-arrows-style-1:hover,
.tp-rightarrow.custom-arrows-style-1:hover {
    background: #71b1dd;
}

.custom-call-to-action {
    border-color:#15628f;
}

@media (max-width: 991px) {
    .custom-position-1 {
        background-color: #71b1dd;
    }
}

.custom-accordion-style-1 .card .card-title > a.accordion-toggle:not(.collapsed) {
    color:#15628f;
}

.custom-accordion-style-1 .card .card-title > a.accordion-toggle:not(.collapsed):before {
    border-color:#15628f;
}

.custom-accordion-style-1 .card .card-title > a.accordion-toggle:not(.collapsed) .custom-accordion-plus:after {
    border-color:#15628f;
}

.custom-accordion-style-1 .card .card-title > a .custom-accordion-plus:after {
    border-color:#15628f;
}

.thumb-info.custom-thumb-info-style-1:hover .thumb-info-caption {
    background-color:#15628f !important;
}

.owl-carousel.custom-dots-style-1 button.owl-dot.active span,
.owl-carousel.custom-dots-style-1 button.owl-dot:hover span {
    border-color:#15628f;
}

.owl-carousel.custom-dots-style-1 button.owl-dot.active span:before,
.owl-carousel.custom-dots-style-1 button.owl-dot:hover span:before {
    background-color:#15628f;
}

.team-item .team-infos .share:hover i.fa-share-alt {
    background-color:#15628f;
}

.owl-carousel.custom-arrows-style-2 .owl-nav button.owl-prev:before,
.owl-carousel.custom-xs-arrows-style-2 .owl-nav button.owl-prev:before,
.owl-carousel.custom-arrows-style-2 .owl-nav button.owl-next:before,
.owl-carousel.custom-xs-arrows-style-2 .owl-nav button.owl-next:before {
    border-color:#15628f;
}

.owl-carousel.custom-arrows-style-2 .owl-nav button.owl-prev:after,
.owl-carousel.custom-xs-arrows-style-2 .owl-nav button.owl-prev:after,
.owl-carousel.custom-arrows-style-2 .owl-nav button.owl-next:after,
.owl-carousel.custom-xs-arrows-style-2 .owl-nav button.owl-next:after {
    border-color:#15628f;
}
.card {
    background-color: rgba(255, 255, 255, 0.29) !important;
}
