@charset 'UTF-8';

/*------------------------------------
Table of Contents
--------------------------------------
01. type
02. header
03. overlay nav
04. footer
05. components
06. bs reset
07. utilities

------------------------------------*/
/*------------------------------------
type
------------------------------------*/
body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
}

html {
    scroll-behavior: smooth;
}

a {
    -webkit-transition: all .3s;
    transition: all .3s;
    text-decoration: none;
    color: #808080;
}

a:hover {
    text-decoration: none;
    color: #1367e6;
}

button,
a,
.btn {
    -webkit-transition: all .3s;
    transition: all .3s;
    outline: 0;
}

button:focus,
a:focus,
.btn:focus {
    text-decoration: none;
    outline: none;
    box-shadow: none !important;
}

img {
    max-width: 100%;
    height: auto;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: 'Nunito', sans-serif;
    font-weight: bold;
    -webkit-transition: all .3s;
    transition: all .3s;
}

h1 a,
.h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
    color: #242424;
}

h1 a:hover,
.h1 a:hover,
h2 a:hover,
.h2 a:hover,
h3 a:hover,
.h3 a:hover,
h4 a:hover,
.h4 a:hover,
h5 a:hover,
.h5 a:hover,
h6 a:hover,
.h6 a:hover {
    text-decoration: none;
    color: #287dfe;
}

h1,
.h1 {
    font-size: 48px;
}

h2,
.h2 {
    font-size: 36px;
}

h3,
.h3 {
    font-size: 32px;
}

h4,
.h4 {
    font-size: 28px;
}

h5,
.h5 {
    font-size: 24px;
}

h6,
.h6 {
    font-size: 18px;
}

.section-gap {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (max-width: 991px)
{
    h1,
    .h1 {
        font-size: 36px;
    }

    h2,
    .h2 {
        font-size: 30px;
    }

    h3,
    .h3 {
        font-size: 24px;
    }

    h4,
    .h4 {
        font-size: 20px;
    }

    h5,
    .h5 {
        font-size: 18px;
    }

    h6,
    .h6 {
        font-size: 16px;
    }

    .app-header + .section-gap {
        padding-top: 25rem;
    }
}

@media (max-width: 767px)
{
    h1,
    .h1 {
        font-size: 32px;
    }

    h2,
    .h2 {
        font-size: 28px;
    }

    p,
    a {
        font-size: 15px;
    }
}

@media (max-width: 667px)
{
    h1,
    .h1 {
        font-size: 32px;
    }

    h1 a,
    .h1 a {
        font-size: 30px;
    }

    h2,
    .h2 {
        font-size: 26px;
    }

    h2 a,
    .h2 a {
        font-size: 26px;
    }

    h3,
    .h3 {
        font-size: 22px;
    }

    h3 a,
    .h3 a {
        font-size: 22px;
    }

    h4,
    .h4 {
        font-size: 18px;
    }

    h4 a,
    .h4 a {
        font-size: 18px;
    }

    h5,
    .h5 {
        font-size: 16px;
    }

    h5 a,
    .h5 a {
        font-size: 16px;
    }

    h6,
    .h6 {
        font-size: 14px;
    }

    h6 a,
    .h6 a {
        font-size: 14px;
    }

    p,
    a {
        font-size: 15px;
    }
}

@media (min-width: 769px)
{
    .section-gap {
        padding-top: 5.0rem;
        padding-bottom: 5.0rem;
    }
}

/*------------------------------------
header
------------------------------------*/
.vlmenu > li > a:hover,
.vlmenu > li.active > a {
    color: #646464;
}

.hamburger {
    font: inherit;
    display: inline-block;
    overflow: visible;
    margin: 30px 0 0;
    padding: 0;
    cursor: pointer;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-property: opacity, -webkit-filter;
    transition-property: opacity, -webkit-filter;
    transition-property: opacity, filter;
    transition-property: opacity, filter, -webkit-filter;
    text-transform: none;
    color: inherit;
    border: 0;
    background-color: transparent;
}

.hamburger:hover {
    opacity: .7;
}

.hamburger.is-active:hover {
    opacity: .7;
}

.hamburger.is-active .hamburger-inner,
.hamburger.is-active .hamburger-inner::before,
.hamburger.is-active .hamburger-inner::after {
    background-color: #000;
}

.hamburger-box {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 17px;
}

.hamburger-inner {
    top: 50%;
    display: block;
    margin-top: -2px;
}

.hamburger-inner,
.hamburger-inner::before,
.hamburger-inner::after {
    position: absolute;
    width: 20px;
    height: 2px;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    border-radius: 4px;
    background-color: #000;
}

.hamburger-inner::before,
.hamburger-inner::after {
    display: block;
    content: '';
}

.hamburger-inner::before {
    top: -10px;
}

.hamburger-inner::after {
    bottom: -10px;
}

/*
 * hamburger Slider
 */
.hamburger--slider .hamburger-inner {
    top: 2px;
}

.hamburger--slider .hamburger-inner::before {
    top: 7px;
    width: 14px;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .15s;
    transition-duration: .15s;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
}

.hamburger--slider .hamburger-inner::after {
    top: 14px;
}

.hamburger--slider.is-active .hamburger-inner {
    -webkit-transform: translate3d(0, 7px, 0) rotate(45deg);
    transform: translate3d(0, 7px, 0) rotate(45deg);
}

.hamburger--slider.is-active .hamburger-inner::before {
    -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0;
}

.hamburger--slider.is-active .hamburger-inner::after {
    -webkit-transform: translate3d(0, -14px, 0) rotate(-90deg);
    transform: translate3d(0, -14px, 0) rotate(-90deg);
}

.vl-accordion {
    font-family: 'Nunito', sans-serif !important;
}

@media (max-width: 1024px)
{
    .vlmenu {
        margin-top: 10px;
    }

    .app-header {
        position: absolute;
        z-index: 10;
        top: auto;
        width: 100%;
        padding: .3em 0;
        background: #FFF;
    }

    .app-header .logo-dark {
        display: block;
    }

    .app-header .logo-light {
        display: none;
    }

    .app-header.transparent-header .logo-light {
        display: none;
    }

    .header-links.navbar {
        position: absolute;
        right: 15px;
    }

    .vlmenu .vl-accordion .fa-angle-down {
        display: none;
    }

    .vlmenu li li a {
        font-family: 'Nunito', sans-serif;
    }

    .mega-menu h3 {
        font-size: 14px;
        font-weight: bold;
    }

    .vlmenu .vl-accordion .fa-angle-down,
    .nav-extra-link {
        display: true;
    }
}

@media (max-width: 767px)
{
    .header-links.navbar {
        right: 25px;
    }
}

@media (min-width: 1025px)
{
    .app-header {
        position: absolute;
        z-index: 10;
        top: auto;
        width: 100%;
        -webkit-transition: all .1s ease;
        transition: all .1s ease;
        background: #fff;
        height: 100px;
        box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    }

    .app-header .navbar-brand {
        margin-top: 8px;
    }

    .app-header .logo-light {
        display: none;
    }

    .app-header.transparent-header .logo-light {
        display: block;
    }

    .app-header.sticky-nav {
        position: fixed;
        z-index: 1030;
        top: 0;
        bottom: auto;
        padding: 0;
        -webkit-animation: smoothScroll .3s forwards;
        animation: smoothScroll .3s forwards;
        background: #fff;
        box-shadow: 0 2px 15px rgba(0, 0, 0, .15);
    }

    @-webkit-keyframes smoothScroll
    {
        0% {
            -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
        }

        100% {
            -webkit-transform: translateY(0px);
            transform: translateY(0px);
        }
    }

    @keyframes smoothScroll
    {
        0% {
            -webkit-transform: translateY(-100px);
            transform: translateY(-100px);
        }

        100% {
            -webkit-transform: translateY(0px);
            transform: translateY(0px);
        }
    }

    .transparent-header {
        top: auto;
        padding-top: 2rem;
        background: transparent;
    }

    .transparent-header .vlmenu > li > a {
        color: #fff;
    }

    .transparent-header .vlmenu > li > a:hover {
        opacity: .7;
    }

    .transparent-header .logo-dark {
        display: none;
    }

    .transparent-header.sticky-nav {
        top: 0;
        background: #fff;
        box-shadow: 0 1px 10px rgba(151, 164, 175, .15);
    }

    .transparent-header.sticky-nav .vlmenu > li > a {
        color: #242424;
    }

    .transparent-header.sticky-nav .vlmenu > li > a:hover {
        color: #287dfe;
    }

    .transparent-header.sticky-nav .logo-light {
        display: none;
    }

    .transparent-header.sticky-nav .logo-dark {
        display: block;
    }

    .transparent-header-dark-nav .vlmenu > li > a {
        color: #242424;
    }

    .transparent-header-dark-nav .vlmenu > li > a:hover {
        color: #287dfe;
    }

    .transparent-header-dark-nav .logo-dark {
        display: block;
    }

    .transparent-header-dark-nav .logo-light {
        display: none !important;
    }

    .vlmenu > li > a > i.arrow {
        position: relative;
        top: 2px;
        display: none;
    }

    .light-sub-menu ul,
    .light-sub-menu li > div {
        box-shadow: 0 1px 15px 1px rgba(69, 65, 78, .1);
    }

    .vlmenu ul {
        width: 250px;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .vlmenu ul a {
        font-size: 14px;
        padding: 12px 30px;
    }

    .vlmenu ul ul {
        left: 251px;
    }

    .vlmenu li > div {
        padding: 30px;
    }

    .vlmenu li > div p {
        font-size: 12px;
    }

    .vlmenu > li.menu-right > ul ul {
        left: -251px;
    }

    .vlmenu h3 {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .vlmenu .mega-menu ol li a {
        font-size: 14px;
        padding: 12px 20px;
        border-radius: 6px;
    }

    .vlmenu > li {
        padding: 0 10px;
    }

    .light-sub-menu ul a:hover,
    .light-sub-menu ol li a:hover {
        color: #fff;
        background: #323232;
    }

    .vlmenu > li > a {
        padding: 35px 10px 39px;
    }

    .nav-btn {
        display: none;
    }

    .vlmenu .half-nav,
    .vlmenu .full-nav,
    .vlmenu ul {
        border-radius: 6px;
    }

    .nav-extra-link .mt-3 {
        margin-top: 1.75rem !important;
    }
}

/*------------------------------------
overlay nav
------------------------------------*/
.overlay-nav {
    position: relative;
    z-index: 6;
    top: 1.7rem;
}

.toggle-wrap {
    position: absolute;
    z-index: 100;
    top: 3%;
    right: 0;
    width: 20px;
    height: 16px;
    cursor: pointer;
    -webkit-transition: opacity .25s ease;
    transition: opacity .25s ease;
}

.toggle-wrap.active .top {
    -webkit-transform: translateY(7px) translateX(0) rotate(45deg);
    -ms-transform: translateY(7px) translateX(0) rotate(45deg);
    transform: translateY(7px) translateX(0) rotate(45deg);
    background: #fff;
}

.toggle-wrap.active .middle {
    opacity: 0;
    background: #fff;
}

.toggle-wrap.active .bottom {
    -webkit-transform: translateY(-7px) translateX(0) rotate(-45deg);
    -ms-transform: translateY(-7px) translateX(0) rotate(-45deg);
    transform: translateY(-7px) translateX(0) rotate(-45deg);
    background: #fff;
}

.toggle-wrap span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    cursor: pointer;
    -webkit-transition: all .35s ease;
    transition: all .35s ease;
    border: none;
    background: #242424;
}

.toggle-wrap span:nth-of-type(2) {
    top: 7px;
    width: 60%;
}

.toggle-wrap span:nth-of-type(3) {
    top: 14px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    visibility: hidden;
    overflow: hidden;
    width: 100%;
    height: 0;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
    transition: opacity .35s, visibility .35s, height .35s;
    opacity: 0;
    background: #242424;
}

.overlay.open {
    visibility: visible;
    height: 100%;
    opacity: 1;
}

.overlay.open li {
    -webkit-animation: fadeInDown .5s ease forwards;
    animation: fadeInDown .5s ease forwards;
    -webkit-animation-delay: .35s;
    animation-delay: .35s;
}

.overlay.open li:nth-of-type(2) {
    -webkit-animation-delay: .4s;
    animation-delay: .4s;
}

.overlay.open li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
    animation-delay: .45s;
}

.overlay.open li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
    animation-delay: .50s;
}

.overlay.open li:nth-of-type(5) {
    -webkit-animation-delay: .55s;
    animation-delay: .55s;
}

.overlay.open li:nth-of-type(6) {
    -webkit-animation-delay: .60s;
    animation-delay: .60s;
}

.overlay.open li:nth-of-type(7) {
    -webkit-animation-delay: .65s;
    animation-delay: .65s;
}

.overlay.open li:nth-of-type(8) {
    -webkit-animation-delay: .70s;
    animation-delay: .70s;
}

.overlay nav {
    font-size: 1.5rem;
    position: relative;
    top: 45%;
    height: 60%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

.overlay ul {
    position: relative;
    display: inline-block;
    height: 100%;
    margin: 0 auto;
    padding: 0;
    list-style: none;
}

.overlay ul li {
    position: relative;
    display: block;
    height: calc(100% / 10);
    min-height: 50px;
    opacity: 0;
}

.overlay ul li a {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 0 0 10px;
    text-decoration: none;
    color: #fff;
}

.overlay ul li a:hover {
    color: #287dfe;
}

.overlay ul li a:hover:after,
.overlay ul li a:focus:after,
.overlay ul li a:active:after {
    width: 100%;
}

.overlay ul li a:after {
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 0;
    height: 1px;
    content: '';
    -webkit-transition: .35s;
    transition: .35s;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    background: #287dfe;
}

.overlay-nav-social-link a {
    font-size: 18px;
    margin: 0 .8rem;
    opacity: 0;
    color: #8c8c8c;
}

.overlay-nav-social-link a:hover {
    color: #287dfe;
}

.overlay-nav-social-link.open a {
    -webkit-animation: fadeInDown .6s ease forwards;
    animation: fadeInDown .6s ease forwards;
    -webkit-animation-delay: .80s;
    animation-delay: .80s;
}

@-webkit-keyframes fadeInDown
{
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes fadeInDown
{
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        opacity: 0;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

/*------------------------------------
footer
------------------------------------*/
.app-footer {
    padding: 3rem 0;
    border-top: 1px solid #e4e6ea;
}

.app-footer .footer-link {
    margin-bottom: 1.5rem;
    padding: 0;
}

.app-footer .footer-link li {
    display: inline-block;
    margin-right: 0px;
    margin-bottom: .2rem;
}

.app-footer .footer-link li a {
    font-size: 12px;
    text-transform: uppercase;
    color: #8c8c8c;
}

.app-footer .footer-link li a:hover {
    text-decoration: none;
    color: #242424;
}

.app-footer .footer-link li:last-child {
    margin-right: 0;
}

.app-footer .social-links li a {
    font-size: 16px;
}

.app-footer .copyright {
    font-size: 13px;
    color: #808080;
    text-align: center;
    margin: 0px;
    line-height: 10px !important;
}

.app-footer.bg-dark {
    padding: 4rem 0;
    color: #fff;
}

.app-footer.bg-dark .footer-link li a {
    font-size: 14px;
    text-transform: capitalize;
    color: #8c8c8c;
}

.app-footer.bg-dark .footer-link li a:hover {
    color: #fff;
}

.app-footer.bg-dark .border-right {
    border-right: 1px solid #616161 !important;
}

.app-footer.bg-dark .border-left {
    border-left: 1px solid #616161 !important;
}

.app-footer.bg-dark .border-top {
    border-top: 1px solid #616161 !important;
}

.app-footer.bg-dark .border-bottom {
    border-bottom: 1px solid #616161 !important;
}

.app-secondary-footer {
    background: #231f20;
    text-align: center;
    padding: 1.5rem 1.5rem 1.7rem;
    line-height: 1.2rem;
}

.two-col-link li {
    float: left;
    box-sizing: border-box;
    width: 50%;
    margin-right: 0 !important;
}

.instagram-feed a {
    display: inline-block;
    overflow: hidden;
    width: 75px;
    height: 75px;
    margin: 0 .3rem .2rem 0;
}

.instagram-feed a img {
    width: 100%;
    height: 100%;
}

.social-media-list {
    padding: 0;
    list-style: none;
}

.social-media-list a {
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    margin-bottom: .5rem;
    text-transform: capitalize;
    color: #242424;
}

.social-media-list a:hover {
    color: #287dfe;
}

.go-up-link i {
    font-weight: bold;
}

.go-up-link:hover {
    text-decoration: none;
}

@media (max-width: 767px)
{
    .app-footer .border-right,
    .app-footer.bg-dark .border-right {
        border-right: none !important;
    }

    .app-footer,
    .app-footer.bg-dark {
        /*padding: 8rem 0*/
    }

    .social-media-list a {
        font-size: 14px;
    }
}

/*------------------------------------
Components
------------------------------------*/
/*------------------------------------
hero banner
------------------------------------*/
.hero-img {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    min-height: 600px;
}

.hero-img,
.hero-map,
.bg-overlay,
.bg-overlay:before,
.bg-theme-overlay,
.bg-theme-overlay:before,
.bg-navy-overlay,
.bg-navy-overlay:before,
.bg-gradient-overlay,
.bg-gradient-overlay:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.bg-overlay:before {
    content: '';
    background-color: #242424;
}

.bg-theme-overlay:before {
    content: '';
    background: #287dfe;
}

.bg-navy-overlay:before {
    content: '';
    background: #1d2b40;
}

.bg-gradient-overlay:before {
    content: '';
    background-image: -webkit-linear-gradient(left, #287dfe 0%, #7431ff 100%);
    background-image: linear-gradient(to right, #287dfe 0%, #7431ff 100%);
}

[data-overlay='0']::before {
    opacity: 0;
}

[data-overlay='1']::before {
    opacity: .1;
}

[data-overlay='2']::before {
    opacity: .2;
}

[data-overlay='3']::before {
    opacity: .3;
}

[data-overlay='4']::before {
    opacity: .4;
}

[data-overlay='5']::before {
    opacity: .5;
}

[data-overlay='6']::before {
    opacity: .6;
}

[data-overlay='7']::before {
    opacity: .7;
}

[data-overlay='8']::before {
    opacity: .8;
}

[data-overlay='9']::before {
    opacity: .9;
}

@media (max-width: 768px)
{
    .section-top {
        padding-top: 5rem;
    }

    .hero-avatar-bottom {
        position: relative;
        bottom: -3rem;
    }

    .scroll-down {
        right: 0;
        bottom: 10px;
        left: 0;
    }

    .scroll-down span {
        display: block;
        color: #287dfe;
    }

    .scroll-down-circle {
        display: none;
    }
}

@media (min-width: 769px)
{
    .section-full > .container > .row {
        min-height: calc(100vh - 7.5rem * 2 - 5.8125rem);
    }

    .section-full .container > .row:before {
        min-height: inherit;
        content: '';
    }

    .section-top {
        padding-top: 32.5rem;
    }

    .scroll-down {
        right: 0;
        bottom: 50px;
        left: 0;
    }

    .scroll-down span {
        display: block;
        color: #287dfe;
    }

    .scroll-down-circle {
        line-height: 80px;
        position: absolute;
        bottom: -100px;
        left: 50%;
        width: 80px;
        height: 80px;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        border-radius: 50%;
        background: #fff;
        box-shadow: 0 .2rem .8rem rgba(36, 36, 36, .15);
    }
}

/*------------------------------------
buttons
------------------------------------*/
.btn {
    font-size: 11px !important;
    font-weight: bold;
    padding: .750rem 2rem;
    white-space: nowrap;
    text-transform: uppercase;
}

.btn.btn-sm {
    font-size: 10px;
    font-weight: bold;
    line-height: 1.6;
    padding: .485rem 1.2rem;
}

.btn.btn-lg {
    padding: .965rem 2rem;
    font-size: 13px !important;
    font-weight: 800 !important;
}

.btn-pill {
    border-radius: 5rem;
}

.btn-theme {
    color: #fff !important;
    border: 2px solid #323232;
    background: #323232;
    margin-left: 25px;
}

.btn-theme:hover {
    color: #fff;
    border: 2px solid #848484;
    background: #848484;
}

.btn-outline {
    color: #ff9d41;
    border: 2px solid #e8e8e8;
    background: #fff;
}

.btn-outline:hover {
    color: #fff;
    border-color: #242424;
    background: #242424;
}

.btn-outline-dark {
    color: #242424;
    border: 2px solid #242424;
    background: transparent;
}

.btn-outline-dark:hover {
    color: #fff;
    border-color: #242424;
    background: #242424;
}

.btn-outline-light {
    color: #fff;
    border: 2px solid #fff;
    background: transparent;
}

.btn-outline-light:hover {
    color: #242424;
    border-color: #fff;
    background: #fff;
}

.btn-solid-light {
    color: #242424;
    border: 2px solid #fff;
    background: #fff;
}

.btn-solid-light:hover {
    color: #fff;
    border-color: #287dfe;
    background: #287dfe;
}

.btn-solid-dark {
    color: #fff;
    border: 2px solid #242424;
    background: #242424;
}

.btn-solid-dark:hover {
    color: #fff;
    border-color: #287dfe;
    background: #287dfe;
}

.video-btn .video-play-icon,
.video-btn span {
    display: inline-block;
}

.video-btn .video-play-icon {
    line-height: 46px;
    width: 46px;
    height: 46px;
    cursor: pointer;
    text-align: center;
    color: #242424;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .05);
}

.video-btn .video-play-icon i {
    font-size: 12px;
    position: relative;
    top: 0;
    left: 2px;
}

.video-btn .video-play-icon:hover i {
    color: #287dfe;
}

.video-btn span {
    font-size: 11px;
    font-weight: bold;
    position: relative;
    left: 10px;
    text-transform: uppercase;
}

.video-play-btn-align-center {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate3d(-50%, -50%, 0);
    transform: translate3d(-50%, -50%, 0);
}

.btn-read-more {
    position: relative;
    display: inline-block;
    margin-left: -15px;
}

.btn-read-more:after {
    font-family: 'Clab-Icon-Set';
    font-size: 15px;
    position: absolute;
    top: 1px;
    right: -25px;
    content: '\e952';
    -webkit-transition: all .3s;
    transition: all .3s;
}

.btn-read-more:hover {
    text-decoration: none;
}

.btn-read-more:hover:after {
    right: -30px;
}

@media (max-width: 767px)
{
    .btn.btn-sm {
        padding: .4rem 1rem;
    }

    .btn {
        padding: .50rem 1.3rem;
    }

    .btn.btn-lg {
        padding: .7rem 1.4rem;
    }
}

/*------------------------------------
accordion
------------------------------------*/
.accordion .card {
    border-color: #e4e6ea;
}

.accordion .card p {
    color: #8c8c8c;
}

.accordion .card-header {
    padding: 0;
    border-color: #e4e6ea;
}

.accordion .card-header h6 {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 0;
}

.accordion .card-header a {
    position: relative;
    display: block;
    padding: 1.2rem 1.5rem;
    cursor: pointer;
    color: #287dfe;
    border-radius: 4px 4px 0 0;
    background: #fff;
}

.accordion .card-header a:hover {
    color: #287dfe;
}

.accordion .card-header a:after {
    font-family: 'Clab-Icon-Set';
    font-size: 18px;
    position: absolute;
    top: 35%;
    right: 20px;
    content: '\e938';
}

.accordion .card-header .collapsed {
    color: #242424;
}

.accordion .card-header .collapsed:after {
    content: '\e943';
}

.accordion .accordion-list {
    list-style: none;
}

.accordion .accordion-list li {
    margin-bottom: .5rem;
}

.accordion .accordion-list li a {
    color: #8c8c8c;
}

.accordion .accordion-list li a i {
    font-size: 14px;
}

.accordion .accordion-list li a:hover {
    text-decoration: none;
    color: #287dfe;
}

.accordion.accordion-style-1 .card-header a {
    color: #287dfe;
    background: #fff;
}

.accordion.accordion-style-1 .card-header a:hover {
    color: #287dfe;
}

.accordion.accordion-style-1 .card-header a:hover:after {
    -webkit-transition: all .3s;
    transition: all .3s;
    color: #fff;
    border: 1px solid #287dfe;
    background: #287dfe;
}

.accordion.accordion-style-1 .card-header a:after {
    font-family: 'Clab-Icon-Set';
    font-size: 10px;
    line-height: 25px;
    position: absolute;
    top: 28%;
    right: 20px;
    width: 25px;
    height: 25px;
    content: '\e938';
    text-align: center;
    color: #fff;
    border: 1px solid #287dfe;
    border-radius: 50%;
    background: #287dfe;
}

.accordion.accordion-style-1 .card-header .collapsed {
    color: #242424;
}

.accordion.accordion-style-1 .card-header .collapsed:after {
    content: '\e943';
    color: #8c8c8c;
    border: 1px solid #ccc;
    background: #fff;
}

.accordion.accordion-style-2 .card {
    margin-bottom: 10px;
    border-radius: 4px;
}

.accordion.accordion-style-2 .card .card-header {
    margin-bottom: 0;
    border: none;
    background: transparent;
}

.accordion.accordion-style-2 .card .card-header a:after {
    font-family: 'fontawesome';
    font-size: 14px;
    position: absolute;
    top: 35%;
    right: 20px;
    content: '\f107';
}

.accordion.accordion-style-2 .card .card-header a.collapsed {
    position: relative;
    border-radius: 4px;
}

.accordion.accordion-style-2 .card .card-header a.collapsed:after {
    content: '\f105';
}

.accordion.accordion-style-2 .card:not(:first-of-type):not(:last-of-type) {
    border-radius: 4px;
}

.accordion.accordion-style-2 .card:first-of-type,
.accordion.accordion-style-2 .card:not(:first-of-type):not(:last-of-type) {
    border-bottom: 1px solid #e4e6ea;
}

.accordion.accordion-style-3 .card,
.accordion.accordion-style-3 .card-header,
.accordion.accordion-style-3 .card-header a {
    border: none;
    background: transparent;
}

.accordion.accordion-style-3 .card-header a {
    padding: 1.2rem 0 1.2rem 4rem;
    color: #287dfe;
}

.accordion.accordion-style-3 .card-header a:before {
    font-family: 'fontawesome';
    font-size: 14px;
    line-height: 40px;
    position: absolute;
    top: 8px;
    left: 5px;
    width: 40px;
    height: 40px;
    content: '\f107';
    text-align: center;
    color: #fff;
    border-radius: 50%;
    background: #287dfe;
}

.accordion.accordion-style-3 .card-header a:after {
    content: '';
}

.accordion.accordion-style-3 .card-header .collapsed {
    color: #242424;
}

.accordion.accordion-style-3 .card-header .collapsed:before {
    line-height: 38px;
    width: 40px;
    height: 40px;
    content: '\f105';
    text-align: center;
    color: #242424;
    border: 1px solid #f2f3f5;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, .05);
}

.accordion.accordion-style-3 .card-body {
    padding: 1.25rem 0 1.25rem 4rem;
}

.accordion.accordion-style-4 .card {
    margin-bottom: 10px;
    border-radius: 4px;
}

.accordion.accordion-style-4 .card .card-header {
    position: relative;
    margin-bottom: 0;
    border: none;
    background: transparent;
}

.accordion.accordion-style-4 .card .card-header a {
    font-weight: bold;
    padding: 2.5rem 1.5rem;
    color: #242424;
}

.accordion.accordion-style-4 .card .card-header a:after {
    font-family: 'Clab-Icon-Set';
    font-size: 18px;
    font-weight: normal;
    position: absolute;
    top: 35%;
    right: 20px;
    content: '\e937';
    color: #8c8c8c;
}

.accordion.accordion-style-4 .card .card-header a.collapsed {
    position: relative;
    border-radius: 4px;
}

.accordion.accordion-style-4 .card .card-header a.collapsed:after {
    content: '\e942';
}

.accordion.accordion-style-4 .card .card-header i {
    position: absolute;
    top: 28px;
    color: #287dfe;
}

.accordion.accordion-style-4 .card .card-header span {
    padding-left: 3rem;
}

.accordion.accordion-style-4 .card:not(:first-of-type):not(:last-of-type) {
    border-radius: 4px;
}

.accordion.accordion-style-4 .card:first-of-type,
.accordion.accordion-style-4 .card:not(:first-of-type):not(:last-of-type) {
    border-bottom: 1px solid #e4e6ea;
}

/*------------------------------------
blurb
------------------------------------*/
.blurb i {
    font-size: 3.5rem;
    display: inline-block;
    margin-bottom: 2rem;
    margin-top: 1rem;
}

.blurb p {
    padding-right: 0rem;
    color: #505050;
}

.blurb.text-right p {
    padding-right: 0;
    padding-left: 2rem;
}

.blurb-border {
    padding: 1.0rem;
    border: 1px solid #e4e6ea;
    border-radius: 6px;
    background: #fff;
    margin-bottom: 2rem;
}

.blurb-border p {
    padding: 0 0 0 0rem;
    font-size: 16px;
    line-height: 20px;
}

@media (max-width: 767px)
{
    .blurb i {
        font-size: 2.5rem;
    }

    .blurb-border {
        margin-bottom: 1.5rem;
    }
}

/*------------------------------------
list group
------------------------------------*/
.list-group-right-arrow a {
    position: relative;
}

.list-group-right-arrow a:after {
    font-family: 'fontawesome';
    font-size: 14px;
    line-height: 23px;
    position: absolute;
    top: 30%;
    right: 20px;
    width: 25px;
    height: 25px;
    padding-left: 2px;
    content: '\f105';
    text-align: center;
    border: 1px solid #e4e6ea;
    border-radius: 50%;
}

.list-group-right-arrow a:hover:after {
    -webkit-transition: all .3s;
    transition: all .3s;
    color: #fff;
    border-color: #287dfe;
    background: #287dfe;
}

.list-group-right-arrow .list-group-item.active {
    color: #287dfe;
    border-color: #e4e6ea;
    background: #fff;
}

.list-group-right-arrow .list-group-item.active:after {
    color: #fff;
    border-color: #287dfe;
    background: #287dfe;
}

.list-group-right-arrow-on-hover a:after {
    line-height: 25px;
    top: 33%;
    right: 13px;
    width: 30px;
    height: 30px;
    opacity: 0;
    border: 3px solid #fff;
}

.list-group-right-arrow-on-hover a:hover:after {
    line-height: 25px;
    right: -13px;
    width: 30px;
    height: 30px;
    opacity: 1;
    border: 3px solid #fff;
}

.list-group-right-arrow-on-hover .list-group-item.active:after {
    line-height: 25px;
    right: -13px;
    width: 30px;
    height: 30px;
    opacity: 1;
    border: 3px solid #fff;
}

.list-group .list-group-item h6 {
    color: #242424;
}

.list-group .list-group-item:hover h6 {
    color: #287dfe;
}

.list-group-gap .list-group-item {
    margin-bottom: 10px;
    padding: 1.8rem 1.25rem;
    border-radius: 6px;
}

.custom-list {
    padding: 0;
    list-style: none;
}

.custom-list li {
    padding: .8rem 0;
}

.custom-list li a {
    color: #242424;
}

.custom-list li a:hover {
    text-decoration: none;
    color: #287dfe;
}

.custom-list-border li {
    border-bottom: 1px solid #e4e6ea;
}

.custom-list-border li:first-child {
    border-top: 1px solid #e4e6ea;
}

/*------------------------------------
carousel
------------------------------------*/
.clients-thumb {
    width: 100%;
    max-width: 10rem;
    height: auto;
    margin-right: auto;
    margin-left: auto;
    opacity: 1.0;
}

.clients-thumb:hover {
    opacity: 1;
}

.dot-style-1.owl-theme .owl-dots .owl-dot span {
    width: 6px;
    height: 6px;
    -webkit-transition: all .3s;
    transition: all .3s;
    background: #242424;
}

.dot-style-1.owl-theme .owl-dots .owl-dot.active span {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5);
}

.dot-style-2.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    -webkit-transition: all .3s;
    transition: all .3s;
    background: #242424;
    background: #ccc;
}

.dot-style-2.owl-theme .owl-dots .owl-dot.active span {
    width: 20px;
    height: 10px;
    margin: 5px 3px;
    background: #287dfe;
}

.owl-carousel.text-center .owl-stage {
    display: inline-block;
}

.carousel-highlighter.owl-carousel .owl-item {
    opacity: .2;
}

.carousel-highlighter.owl-carousel .owl-item .card-img-overlay {
    opacity: 0;
}

.carousel-highlighter.owl-carousel .owl-item.center {
    opacity: 1;
}

.carousel-highlighter.owl-carousel .owl-item.center .card-img-overlay {
    opacity: 1;
}

.carousel-zoom-img .owl-stage-outer {
    overflow: visible;
}

.carousel-zoom-img .owl-item .item h6 {
    opacity: 0;
}

.carousel-zoom-img .owl-item.center .item {
    position: relative;
    z-index: 100;
    -webkit-transform: scale(1.2, 1.2);
    -ms-transform: scale(1.2, 1.2);
    transform: scale(1.2, 1.2);
}

.carousel-zoom-img .owl-item.center .item h6 {
    opacity: 1;
}

.carousel-zoom-img .owl-dots {
    margin-top: 4rem;
}

.owl-theme .owl-nav,
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px;
}

.nav-circle.owl-theme .owl-nav [class*=owl-],
.nav-circle-light.owl-theme .owl-nav [class*=owl-],
.nav-circle-solid-light.owl-theme .owl-nav [class*=owl-] {
    font-size: 12px;
    line-height: 50px;
    position: relative;
    width: 50px;
    height: 50px;
    margin-bottom: 2rem;
    text-align: center;
    color: #8c8c8c;
    border: 1px solid #ccc;
    border-radius: 50%;
}

.nav-circle.owl-theme .owl-nav [class*=owl-]:hover,
.nav-circle-light.owl-theme .owl-nav [class*=owl-]:hover,
.nav-circle-solid-light.owl-theme .owl-nav [class*=owl-]:hover {
    color: #fff;
    border-color: #242424;
    background: #242424;
}

.nav-circle-light.owl-theme .owl-nav [class*=owl-]:hover {
    color: #242424;
    border-color: #fff;
    background: #fff;
}

.nav-circle-solid-light.owl-theme .owl-nav [class*=owl-] {
    color: #242424;
    border-color: #fff;
    background: #fff;
}

.nav-circle-solid-light.owl-theme .owl-nav [class*=owl-]:hover {
    color: #fff;
    border-color: #287dfe;
    background: #287dfe;
}

.nav-round.owl-theme .owl-nav [class*=owl-] {
    font-size: 12px;
    line-height: 90px;
    position: relative;
    width: 40px;
    height: 90px;
    margin-bottom: 2rem;
    text-align: center;
    color: #fff;
    border-radius: 6px;
    background: rgba(0, 0, 0, .3);
}

.nav-round.owl-theme .owl-nav [class*=owl-]:hover {
    background: #242424;
}

.nav-round.owl-carousel .owl-nav .owl-prev,
.nav-round.owl-carousel .owl-nav .owl-next {
    position: absolute;
    top: 55%;
    margin-top: -90px;
}

.nav-round.owl-carousel .owl-nav .owl-prev {
    left: -5px;
    border-radius: 0 6px 6px 0;
}

.nav-round.owl-carousel .owl-nav .owl-next {
    right: -5px;
    border-radius: 6px 0 0 6px;
}

.custom-testimonial.owl-theme .owl-nav {
    bottom: 2%;
}

.custom-testimonial.owl-theme .owl-nav {
    margin-top: 0;
}

.custom-testimonial.owl-theme .owl-nav [class*=owl-] {
    font-size: 12px;
    line-height: 35px;
    position: relative;
    width: 35px;
    height: 35px;
    text-align: center;
    color: #8c8c8c;
    border: 1px solid #ccc;
    border-radius: 50%;
}

.custom-testimonial.owl-theme .owl-nav [class*=owl-]:hover {
    color: #fff;
    border-color: #242424;
    background: #242424;
}

.owl-carousel .owl-item img {
    width: auto;
}

@media (min-width: 1025px)
{
    .nav-circle.owl-carousel .owl-nav .owl-prev,
    .nav-circle.owl-carousel .owl-nav .owl-next,
    .nav-circle-light.owl-carousel .owl-nav .owl-prev,
    .nav-circle-light.owl-carousel .owl-nav .owl-next,
    .nav-circle-solid-light.owl-carousel .owl-nav .owl-prev,
    .nav-circle-solid-light.owl-carousel .owl-nav .owl-next,
    .nav-inside.owl-carousel .owl-nav .owl-prev,
    .nav-inside.owl-carousel .owl-nav .owl-next {
        position: absolute;
        top: 50%;
        margin-top: -50px;
    }

    .nav-circle.owl-carousel .owl-nav .owl-prev,
    .nav-circle-light.owl-carousel .owl-nav .owl-prev,
    .nav-circle-solid-light.owl-carousel .owl-nav .owl-prev {
        left: -8%;
    }

    .nav-circle.owl-carousel .owl-nav .owl-next,
    .nav-circle-light.owl-carousel .owl-nav .owl-next,
    .nav-circle-solid-light.owl-carousel .owl-nav .owl-next {
        right: -8%;
    }

    .nav-inside.owl-carousel .owl-nav .owl-prev,
    .nav-inside.owl-carousel .owl-nav .owl-prev {
        left: 3%;
    }

    .nav-inside.owl-carousel .owl-nav .owl-next,
    .nav-inside.owl-carousel .owl-nav .owl-next {
        right: 3%;
    }

    .custom-testimonial.owl-theme .owl-nav {
        position: absolute;
        z-index: 100;
        right: 11%;
        bottom: 8%;
        margin-top: 0;
    }
}

.t-star-icon {
    font-size: 8px;
    position: relative;
    bottom: 2px;
}

/*------------------------------------
card
------------------------------------*/
.justify-content-between .card-arrow-icon {
    line-height: 25px;
    position: relative;
    width: 25px;
    height: 25px;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 50%;
}

.justify-content-between .card-arrow-icon:after {
    font-family: 'fontawesome';
    font-size: 14px;
    position: absolute;
    top: -1px;
    left: 9px;
    content: '\f105';
}

.justify-content-between > a {
    text-decoration: none;
}

.justify-content-between > a:hover + .card-arrow-icon {
    color: #fff;
    border-color: #287dfe;
    background: #287dfe;
}

.card-img-overlay {
    top: 0px;
    left: 0px;
    text-align: left;
    max-height: 80% !important;
}

.box-hover,
img.box-hover {
    position: relative;
    top: 0;
    -webkit-transition: top .2s ease, box-shadow .2s ease;
    transition: top .2s ease, box-shadow .2s ease;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

.box-hover:hover,
img.box-hover:hover {
    top: -.5rem;
    box-shadow: 0 .2rem .8rem rgba(36, 36, 36, .15);
}

@media (max-width: 767px)
{
    .card.flex-md-row .card-img-left {
        border-radius: .375rem .375rem 0 0;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .card.flex-md-row .card-img-right {
        border-radius: 0 .0 .375rem .375rem;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media (min-width:768px) and (max-width:991px)
{
    .card.flex-md-row .card-img-left {
        border-radius: .375rem 0 0 .375rem;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .card.flex-md-row .card-img-right {
        border-radius: 0 .375rem .375rem 0;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media (min-width: 992px)
{
    .card.flex-column .card-img-left {
        border-radius: .375rem 0 0 .375rem;
        -o-object-fit: cover;
        object-fit: cover;
    }

    .card.flex-md-row .card-img-right {
        border-radius: 0 .375rem .375rem 0;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

/*------------------------------------
form
------------------------------------*/
.form-control,
.custom-select,
.custom-file,
.custom-file-input,
.custom-file-label {
    height: calc(2.25rem + 12px);
    border: 1px solid #e4e6ea;
}

.form-control:focus,
.custom-select:focus,
.custom-file:focus,
.custom-file-input:focus,
.custom-file-label:focus {
    box-shadow: none;
}

.form-inline .form-control {
    height: calc(2.25rem + 8px);
}

.custom-file {
    border: none;
}

.custom-file-label {
    padding: .65rem .75rem;
}

.custom-file-label:after {
    height: 2.85rem;
    padding: inherit;
    border-radius: 0 .15rem .15rem 0;
    background: #f8f9fa;
}

.icon-field,
.icon-field-right {
    position: relative;
}

.icon-field i,
.icon-field-right i {
    position: absolute;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #8c8c8c;
}

.icon-field i {
    top: 15px;
    left: 15px;
}

.icon-field input {
    padding-left: 45px;
}

.icon-field-right i {
    top: 15px;
    right: 15px;
}

.icon-field-right input {
    padding-right: 45px;
}

.custom-control-label::before,
.custom-control-label::after {
    top: .1rem;
    left: -1.5rem;
    width: 1.3rem;
    height: 1.3rem;
}

.custom-control-label::before {
    border: 1px solid #e4e6ea;
}

.custom-control-label {
    padding-left: 10px;
}

.custom-switch .custom-control-label::before {
    left: -2.25rem;
    width: 40px;
    height: 24px;
    pointer-events: all;
    border-radius: 5rem;
    background: #e8e8e8;
}

.custom-switch .custom-control-label:after {
    top: calc(.25rem - 1px);
    left: calc(-2.25rem + 3px);
    width: calc(1.4rem - 2px);
    height: calc(1.4rem - 2px);
    border-radius: 5rem;
    background-color: #fff;
}

.custom-switch .custom-control-input:checked ~ .custom-control-label:after {
    -webkit-transform: translateX(.95rem);
    -ms-transform: translateX(.95rem);
    transform: translateX(.95rem);
}

.custom-switch .custom-control-label {
    padding-left: 20px;
}

.custom-file-input:focus ~ .custom-file-label,
.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none;
}

.custom-control-input:checked ~ .custom-control-label::before,
.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
    border: 1px solid #e4e6ea;
}

.custom-select {
    background: url('../img/select-arrow.svg') no-repeat right .75rem center/8px 10px;
    background-color: #fff;
}

.login-content {
    position: absolute;
    top: 50%;
    width: 100%;
    padding: 2rem;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
}

.login-circle-logo {
    line-height: 80px;
    display: inline-block;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 .2rem .8rem rgba(36, 36, 36, .15);
}

.c-form-content,
.coming-soon-social {
    position: absolute;
    bottom: 3%;
    width: 100%;
    padding: 3rem;
    text-align: center;
    color: #fff;
}

.coming-soon-social {
    left: 0;
}

@media (max-width: 991px)
{
    .coming-soon-social {
        position: relative;
        margin-top: 3rem;
        padding: 0;
    }
}

@media (max-width: 767px)
{
    .form-inline .form-control {
        height: calc(2.25rem + 0px);
    }
}

/*------------------------------------
steps
------------------------------------*/
.steps-solid,
.steps-dashed,
.steps-dashed-light {
    line-height: 150px;
    position: relative;
    display: inline-block;
    width: 150px;
    height: 150px;
    text-align: center;
    border: 2px solid #f0f1f4;
    border-radius: 50%;
    background: #fff;
}

.steps-solid:after,
.steps-dashed:after,
.steps-dashed-light:after {
    position: absolute;
    top: 50%;
    right: -110%;
    width: 100px;
    content: '';
    border-bottom: 1px dashed #ccc;
}

.steps-solid i,
.steps-dashed i,
.steps-dashed-light i {
    line-height: 150px;
}

.steps-solid .step-number,
.steps-dashed .step-number,
.steps-dashed-light .step-number {
    font-size: 12px;
    font-weight: bold;
    line-height: normal;
    position: absolute;
    top: 10px;
    right: 5px;
    padding: 2px 10px;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 30px;
    background: #287dfe;
}

.steps-solid.step-last:after,
.steps-dashed.step-last:after,
.steps-dashed-light.step-last:after {
    border-bottom: none;
}

.steps-dashed {
    border: 2px dashed #ccc;
    background: transparent;
}

.steps-dashed-light {
    border: 2px dashed #777;
    background: transparent;
}

.steps-dashed-light i {
    color: #ff9d41;
}

.steps-dashed-light:after {
    border-bottom: 1px dashed #777;
}

.steps-dashed-light + .steps-info {
    color: #fff;
}

.steps-info {
    padding: 0 2rem;
}

@media (max-width: 1024px)
{
    .steps-solid:after,
    .steps-dashed:after,
    .steps-dashed-light:after {
        top: 50%;
        right: -110%;
        width: 100%;
    }
}

@media (max-width: 991px)
{
    .steps-solid:after,
    .steps-dashed:after,
    .steps-dashed-light:after {
        right: -60%;
        width: 55%;
    }
}

@media (max-width: 767px)
{
    .steps-solid,
    .steps-dashed,
    .steps-dashed-light {
        line-height: 100px;
        width: 100px;
        height: 100px;
    }

    .steps-solid i,
    .steps-dashed i,
    .steps-dashed-light i {
        line-height: 100px;
    }

    .steps-solid:after,
    .steps-dashed:after,
    .steps-dashed-light:after {
        border-bottom: none;
    }

    .steps-solid .step-number,
    .steps-dashed .step-number,
    .steps-dashed-light .step-number {
        right: -15px;
    }

    .steps-info {
        margin-bottom: 2rem;
    }
}

/*------------------------------------
block image
------------------------------------*/
.block-image {
    z-index: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

img.block-image {
    -o-object-fit: cover;
    object-fit: cover;
}

.block-image:not([class*='absolute']) {
    position: absolute;
}

.img-caption {
    position: absolute;
    bottom: 10%;
    left: 0;
    width: 70%;
    padding: 1.5rem;
    border-radius: 0 .375rem .375rem 0;
    background: rgba(255, 255, 255, .9);
}

@media (min-width: 1025px)
{
    .parallax-img {
        background-attachment: fixed;
    }
}

@media (max-width: 767px)
{
    .img-caption {
        padding: 1rem;
    }
}

/*------------------------------------
progress bar
------------------------------------*/
.custom-progress {
    position: relative;
    height: 2px;
    margin-top: 4rem;
    border-radius: 0;
    background: #e8e8e8;
    box-shadow: none;
}

.custom-progress .progress-bar .skills-info {
    font-size: 14px;
    position: relative;
    top: -20px;
    text-align: left;
    color: #242424;
}

.custom-progress .progress-bar span {
    line-height: normal;
    position: relative;
    bottom: 0;
    float: right;
    color: #242424;
}

.custom-progress:first-child {
    margin-top: 1.5rem;
}

.custom-progress.progress {
    overflow: visible;
}

.custom-progress.dark-progress .progress-bar,
.custom-progress-inside.dark-progress .progress-bar {
    background: #242424;
}

.progress-light-txt .progress-bar .skills-info,
.progress-light-txt .progress-bar span {
    color: #fff;
}

.custom-progress-inside {
    height: 30px;
    margin-top: 2rem;
    background: #e8e8e8;
}

.custom-progress-inside .progress-bar .skills-info {
    font-size: 14px;
    position: relative;
    top: 0;
    padding: 0 1rem;
    text-align: left;
    color: #fff;
}

.custom-progress-inside .progress-bar span {
    line-height: normal;
    position: relative;
    bottom: 0;
    float: right;
    color: #fff;
}

.custom-progress-inside:first-child {
    margin-top: 0;
}

/*------------------------------------
tabs
------------------------------------*/
.nav.nav-group {
    display: inline-block;
}

.nav.nav-group > li {
    float: left;
    margin: 0 auto;
    text-align: center;
}

.nav.nav-group > li .nav-link {
    display: block;
    padding: 1rem 5rem;
    color: #242424;
}

.nav.nav-group li a {
    margin-right: -1px;
    border: 1px solid #f0f1f4;
    background: #f9f9f9;
}

.nav.nav-group li a.active {
    color: #287dfe;
    background: #fff;
}

.nav.nav-group li:first-child a {
    border-radius: 30px 0 0 30px;
}

.nav.nav-group li:last-child a {
    border-radius: 0 30px 30px 0;
}

.nav-line {
    border-bottom: 1px solid #e4e6ea;
}

.nav-line > li .nav-link {
    position: relative;
    bottom: -1px;
    display: block;
    padding: 1.5rem 3rem;
    color: #242424;
    border-bottom: 1px solid transparent;
}

.nav-line > li a.active {
    color: #287dfe;
    border-bottom: 1px solid #242424;
}

.nav-vertical {
    border-right: 1px solid #e4e6ea;
}

.nav-vertical .nav-link {
    position: relative;
    right: -1px;
    display: block;
    padding: 1rem 1rem;
    color: #242424;
    border-right: 1px solid transparent;
}

.nav-vertical i {
    position: relative;
    top: 5px;
}

.nav-vertical a.active {
    color: #287dfe;
    border-right: 1px solid #242424;
}

@media (max-width: 1024px)
{
    .nav.nav-group > li .nav-link,
    .nav.nav-line > li .nav-link {
        padding: .6rem 1.5rem;
    }
}

@media (max-width: 767px)
{
    .nav-vertical {
        margin-bottom: 2rem;
    }
}

/*------------------------------------
table
------------------------------------*/
.vl-custom-table {
    border-spacing: 0 1em;
    border-collapse: separate;
}

.vl-custom-table h6 {
    font-size: 16px;
    color: #616161;
}

.vl-custom-table thead th {
    padding: .5rem 1.75rem;
    vertical-align: middle;
    border-bottom: none;
}

.vl-custom-table th,
.vl-custom-table td {
    font-family: 'Nunito', sans-serif;
    vertical-align: middle;
    border-top: none;
}

.vl-custom-table td:first-child {
    border-left: 1px solid #e2e1e4;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.vl-custom-table td:last-child {
    border-right: 2px solid #f0f1f4;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.vl-custom-table tbody td {
    padding: 1.0rem 1.0rem 0.6rem;
    border-top: 1px solid #e2e1e4;
    border-bottom: 1px solid #e2e1e4;
    background: #efeeef;
}

.table-striped td,
.table-striped th {
    vertical-align: middle;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, .025);
}

.table thead th {
    border-bottom-width: 1px;
}

.table .btn {
    white-space: nowrap;
}

/*------------------------------------
team
------------------------------------*/
.team-hover {
    position: relative;
    overflow: hidden;
}

.team-hover .team-info {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.5rem;
    -webkit-transition: all .3s;
    transition: all .3s;
    opacity: 0;
    background: rgba(6, 135, 255, .8);
}

.team-hover .team-info .team-title {
    position: absolute;
    top: 20px;
    color: #fff;
}

.team-hover .team-info .team-title p {
    font-size: 14px;
}

.team-hover .team-info .team-social-links {
    position: absolute;
    bottom: 20px;
    color: #fff;
}

.team-hover .team-info .team-social-links a {
    display: inline-block;
    margin-right: 15px;
    color: #fff;
}

.team-hover .team-info .team-social-links a:hover {
    color: #242424;
}

.team-hover:hover .team-info {
    opacity: 1;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    color: #8c8c8c;
}

.social-links a:hover {
    color: #287dfe;
}

/*------------------------------------
typist
------------------------------------*/
@-webkit-keyframes blink
{
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: .0;
    }

    100% {
        opacity: 1.0;
    }
}

@keyframes blink
{
    0% {
        opacity: 1.0;
    }

    50% {
        opacity: .0;
    }

    100% {
        opacity: 1.0;
    }
}

.typist-blink:after {
    position: relative;
    top: 10px;
    display: inline-block;
    height: 40px;
    margin-right: 7px;
    margin-left: 3px;
    content: ' ';
    -webkit-animation: blink 1s step-start 0s infinite;
    animation: blink 1s step-start 0s infinite;
    border-right: 2px solid;
}

.typist-blink > .selectedText {
    display: none;
}

.typist-mark > .selectedText {
    font-style: normal;
    color: #fff;
    background-color: #242424;
}

/*------------------------------------
countdown
------------------------------------*/
.count-block {
    display: inline-block;
    width: 150px;
    height: 150px;
    margin: 0 20px;
    text-align: center;
}

.count-block h2 {
    font-weight: bold;
    margin: 2.5rem 0 0 0;
}

.count-block span {
    font-size: 16px;
}

.count-solid-light .count-block {
    margin-bottom: 20px;
    border: 1px solid #f0f1f4;
    background: #fff;
}

.count-solid-dark .count-block {
    margin-bottom: 20px;
    background: #242424;
}

.count-solid-dark .count-block h2,
.count-solid-dark .count-block span {
    color: #fff;
}

.circle .count-block {
    border-radius: 50%;
}

.round .count-block {
    border-radius: 6px;
}

@media screen and (max-width: 767px)
{
    .count-block {
        width: 100px;
        height: 100px;
    }

    .count-block h2 {
        margin: 1.5rem 0 0 0;
    }
}

/*------------------------------------
portfolio
------------------------------------*/
/* portfolio filter */
.portfolio-filter {
    margin-bottom: 50px;
    padding: 0 1rem;
    list-style: none;
    font-family: Nunito;
}

.portfolio-filter li {
    font-family: Nunito;
    position: relative;
    display: inline-block;
    margin: 0 10px;
}

.portfolio-filter li a {
    font-size: 15px;
    text-decoration: none;
    text-transform: capitalize;
    color: #8c8c8c;
}

.portfolio-filter li a:hover {
    color: #242424;
}

.portfolio-filter li:after {
    position: absolute;
    top: 0;
    right: -15px;
    content: '/';
    color: #8c8c8c;
}

.portfolio-filter li:last-child:after {
    content: ' ';
}

.portfolio-filter li.active a {
    color: #242424;
}

/*portfolio-grid*/
.portfolio-grid .portfolio-item {
    float: left;
}

.portfolio-grid .portfolio-item a {
    text-decoration: none;
}

.portfolio-grid .portfolio-item a:focus {
    outline: none;
}

.portfolio-grid .portfolio-item .portfolio-image {
    position: relative;
    display: block;
}

.portfolio-grid .portfolio-item .portfolio-image img {
    display: block;
    width: 100%;
    height: auto;
}

.portfolio-grid .portfolio-item .portfolio-image .portfolio-hover-title {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: 0;
    padding: 30px;
    -webkit-transition: all .3s;
    transition: all .3s;
    opacity: 0;
    background-color: rgba(0, 0, 0, .5);
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.portfolio-grid .portfolio-item .portfolio-image .portfolio-hover-title .portfolio-content {
    position: absolute;
    bottom: 0.65rem;
    left: 1rem;
    width: 88%;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-align: left;
}

.portfolio-grid .portfolio-item .portfolio-image .portfolio-hover-title .portfolio-content h6 {
    font-size: 14px;
    margin-bottom: .2rem;
    color: #fff;
}

.portfolio-grid .portfolio-item .portfolio-image .portfolio-hover-title .portfolio-content .portfolio-category span {
    font-size: 13px !important;
    margin-right: 0px;
    color: #ccc;
}

.portfolio-grid .portfolio-item:hover .portfolio-hover-title {
    opacity: 1;
}

.portfolio-grid .portfolio-title {
    margin: 5% 0;
}

.portfolio-grid .portfolio-title .portfolio-content h6 {
    margin-bottom: .2rem;
    color: #242424;
}

.portfolio-grid .portfolio-title .portfolio-content span {
    font-family: 'Lora', serif;
    color: #8c8c8c;
}

.portfolio-grid.grid-2 .portfolio-item {
    width: 50%;
}

@media (max-width: 768px)
{
    .portfolio-grid.grid-2 .portfolio-item {
        width: 50%;
    }
}

@media (max-width: 568px)
{
    .portfolio-grid.grid-2 .portfolio-item {
        width: 100%;
    }
}

.portfolio-grid.grid-3 .portfolio-item {
    width: 23%;
}

@media (max-width: 768px)
{
    .portfolio-grid.grid-3 .portfolio-item {
        width: 50%;
    }
}

@media (max-width: 568px)
{
    .portfolio-grid.grid-3 .portfolio-item {
        width: 100%;
    }
}

.portfolio-grid.grid-4 .portfolio-item {
    width: 25%;
}

@media (max-width: 768px)
{
    .portfolio-grid.grid-4 .portfolio-item {
        width: 50%;
    }
}

@media (max-width: 568px)
{
    .portfolio-grid.grid-4 .portfolio-item {
        width: 100%;
    }
}

.portfolio-grid.grid-4 .portfolio-item .portfolio-content h6 {
    font-size: 16px;
}

.portfolio-grid.grid-4 .portfolio-item .portfolio-content span {
    font-size: 14px;
}

.portfolio-grid.grid-5 .portfolio-item {
    width: 20%;
}

@media (max-width: 768px)
{
    .portfolio-grid.grid-5 .portfolio-item {
        width: 50%;
    }
}

@media (max-width: 568px)
{
    .portfolio-grid.grid-5 .portfolio-item {
        width: 100%;
    }
}

.portfolio-grid.grid-5 .portfolio-item .portfolio-content h6 {
    font-size: 14px;
}

.portfolio-grid.grid-5 .portfolio-item .portfolio-content span {
    font-size: 28px;
    color: #ffffff;
    padding-bottom: 0.25rem;
}

.portfolio-grid.grid-2.gutter {
    margin-right: -2%;
}

.portfolio-grid.grid-2.gutter .portfolio-item {
    width: 48%;
    margin-right: 2%;
    margin-bottom: 2%;
}

@media (max-width: 768px)
{
    .portfolio-grid.grid-2.gutter .portfolio-item {
        width: 48%;
    }
}

@media (max-width: 568px)
{
    .portfolio-grid.grid-2.gutter .portfolio-item {
        width: 98%;
    }
}

.portfolio-grid.grid-3.gutter {
    margin-right: -2%;
}

.portfolio-grid.grid-3.gutter .portfolio-item {
    width: 31.35%;
    margin-right: 2%;
    margin-bottom: 2%;
}

@media (min-width: 768px) and (max-width: 991px)
{
    .portfolio-grid.grid-3.gutter .portfolio-item {
        width: 31.38%;
    }
}

@media (min-width: 520px) and (max-width: 768px) 
{
    .portfolio-grid.grid-3.gutter .portfolio-item {
        width: 48%;
    }
}

@media (max-width: 519px)
{
    .portfolio-grid.grid-3.gutter .portfolio-item {
        width: 98%;
    }
}

.portfolio-grid.grid-4.gutter {
    margin-right: -2%;
}

.portfolio-grid.grid-4.gutter .portfolio-item {
    width: 23%;
    margin-right: 2%;
    margin-bottom: 2%;
}

@media (max-width: 768px)
{
    .portfolio-grid.grid-4.gutter .portfolio-item {
        width: 48%;
    }
}

@media (max-width: 568px)
{
    .portfolio-grid.grid-4.gutter .portfolio-item {
        width: 48%;
    }
}

.portfolio-grid.grid-5.gutter {
    margin-right: -2%;
}

.portfolio-grid.grid-5.gutter .portfolio-item {
    width: 18%;
    margin-right: 2%;
    margin-bottom: 2%;
}

@media (min-width: 1200px)
{
    .portfolio-grid.grid-5.gutter .portfolio-item {
        width: 18%;
    }
}

@media (min-width: 992px) and (max-width: 1199px) 
{
    .portfolio-grid.grid-5.gutter .portfolio-item {
        width: 23%;
    }
}

@media (min-width: 769px) and (max-width: 991px) 
{
    .portfolio-grid.grid-5.gutter .portfolio-item {
        width: 31.333%;
    }
}

@media (max-width: 768px)
{
    .portfolio-grid.grid-5.gutter .portfolio-item {
        width: 48%;
    }
}

.portfolio-masonry .portfolio-title {
    padding-left: 3%;
}

.portfolio-masonry.gutter .portfolio-title {
    padding-left: 0;
}

.portfolio-grid.gutter .portfolio-item .portfolio-image .portfolio-hover-title,
.portfolio-masonry.gutter .portfolio-item .portfolio-image .portfolio-hover-title {
    border-radius: 6px;
}

.portfolio-grid.gutter img,
.portfolio-masonry.gutter img {
    border-radius: 6px;
}

/*---------------------------------------
 isotop style
 --------------------------------------- */
.isotope-item {
    z-index: 2;
}

.isotope-hidden.isotope-item {
    z-index: 1;
    pointer-events: none;
}

/*Isotope CSS3 transitions */
.isotope,
.isotope .isotope-item {
    -webkit-transition-duration: .8s;
    transition-duration: .8s;
}

.isotope {
    -webkit-transition-property: height, width;
    transition-property: height, width;
}

.isotope .isotope-item {
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
}

/*disabling Isotope CSS3 transitions */
.isotope.no-transition,
.isotope.no-transition .isotope-item,
.isotope .isotope-item.no-transition {
    -webkit-transition-duration: 0s;
    transition-duration: 0s;
}

/* disable CSS transitions for containers with infinite scrolling*/
.isotope.infinite-scrolling {
    -webkit-transition: none;
    transition: none;
}

/*------------------------------------
twitter feed
------------------------------------*/
.twitter-feed-style {
    position: relative;
    border: 1px solid #f0f1f4;
    background: #fff;
}

.twitter-feed-style:after {
    font-family: 'FontAwesome';
    font-size: 24px;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    content: '\f099';
    color: #e8e8e8;
}

.twitter-feed-style ul {
    margin-bottom: 0;
    padding: 0;
    list-style: none;
}

.twitter-feed-style ul li {
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

.twitter-feed-style .user {
    float: left;
    width: 18%;
    margin-bottom: .92857143em;
}

.twitter-feed-style .user img {
    max-width: 80%;
    height: auto;
    border-radius: 50%;
}

.twitter-feed-style .user [data-scribe='component:author'] {
    position: absolute;
    top: 10%;
    left: 18%;
    margin-left: 1.3rem;
}

.twitter-feed-style .user [data-scribe='component:author'] a {
    text-decoration: none;
}

.twitter-feed-style .user [data-scribe='component:author'] span {
    display: block;
}

.twitter-feed-style .user [data-scribe='component:author'] [data-scribe='element:name'] {
    font-weight: bold;
    color: #242424;
}

.twitter-feed-style .user [data-scribe='component:author'] [data-scribe='element:screen_name'] {
    font-size: 14px;
    color: #8c8c8c;
}

.twitter-feed-style .tweet {
    margin-top: 4rem;
    margin-bottom: .46428571em;
    word-break: break-all;
    color: #8c8c8c;
}

.twitter-feed-style .tweet a {
    margin: 0 3px;
}

.twitter-feed-style .tweet,
.twitter-feed-style .timePosted {
    float: right;
    width: 82%;
}

.twitter-feed-style .timePosted {
    font-size: 14px;
    margin-bottom: 0;
}

.twitter-feed-style .timePosted a {
    color: #8c8c8c;
}

.twitter-feed-style .interact {
    display: none;
}

.twitter-feed-alt .user [data-scribe='component:author'] {
    display: none;
}

.twitter-feed-alt .tweet {
    margin-top: 0;
}

.twitter-feed-alt:after {
    content: '';
}

/*------------------------------------
floating kit
------------------------------------*/
.floating-search-wrap {
    position: fixed;
    top: 40%;
    left: 3%;
}

.floating-search-wrap a {
    display: block;
    margin-bottom: 1.5rem;
    text-decoration: none;
    color: #242424;
}

.floating-search-wrap a:hover {
    color: #287dfe;
}

.floating-social-link {
    position: fixed;
    top: 70%;
    right: 0;
    -webkit-transform: translateX(30%) rotate(-90deg);
    -ms-transform: translateX(30%) rotate(-90deg);
    transform: translateX(30%) rotate(-90deg);
}

.floating-social-link a {
    margin-left: .5rem;
    text-decoration: none;
    color: #242424;
}

.floating-social-link a:hover {
    color: #287dfe;
}

.floating-social-link span {
    color: #ccc;
}

@media (max-width: 1249px)
{
    .floating-search-wrap,
    .floating-social-link {
        display: none;
    }
}

/*------------------------------------
blog
------------------------------------*/
.blog-post {
    margin-bottom: 3.5rem;
    padding-bottom: 0rem;
    border-bottom: 1px solid #ccc;
}

.meta a,
.meta.text-white a {
    color: #616161;
}

.meta .meta-separator,
.meta.text-white .meta-separator {
    position: relative;
    bottom: 3px;
    display: inline-block;
    width: 30px;
    margin: 0 15px;
    border-top: 1px solid #616161;
}

.meta.text-white a {
    color: #fff;
}

.meta.text-white .meta-separator {
    border-top: 1px solid #fff;
}

.blog-widget .instagram-feed a {
    width: 95px;
    height: 95px;
}

.blog-single p {
    margin-bottom: 1.5rem;
}

.single-post .comments-area,
.single-post .comments {
    display: block;
    margin-bottom: 5rem;
}

.single-post .comments-area .comments-title,
.single-post .comments .comments-title {
    font-size: 28px;
    margin-bottom: 5rem;
}

.single-post .comments-area ol,
.single-post .comments-area ul,
.single-post .comments ol,
.single-post .comments ul {
    list-style: none;
}

.single-post .comments-area ol ol,
.single-post .comments-area ol ul,
.single-post .comments-area ul ol,
.single-post .comments-area ul ul,
.single-post .comments ol ol,
.single-post .comments ol ul,
.single-post .comments ul ol,
.single-post .comments ul ul {
    list-style: none;
}

.single-post .comment-list,
.single-post .comments > ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.single-post .comment-list li,
.single-post .comments > ul li {
    margin-bottom: 1rem;
}

.single-post .comment-list li .comment-body,
.single-post .comments > ul li .comment-body {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e4e6ea;
}

.single-post .comment-list .comment-meta,
.single-post .comments > ul .comment-meta {
    margin-bottom: 1rem;
}

.single-post .comment-list .comment-meta .comment-author img,
.single-post .comments > ul .comment-meta .comment-author img {
    float: left;
    width: 100px;
    height: 100px;
    margin-right: 2rem;
    border-radius: 6px;
}

.single-post .comment-list .comment-meta .comment-author a,
.single-post .comments > ul .comment-meta .comment-author a {
    font-size: 16px;
    font-weight: bold;
}

.single-post .comment-list .comment-meta .comment-author .says,
.single-post .comments > ul .comment-meta .comment-author .says {
    display: none;
}

.single-post .comment-list .comment-meta .comment-metadata a,
.single-post .comments > ul .comment-meta .comment-metadata a {
    font-size: 14px;
    color: #8c8c8c;
}

.single-post .comment-list .comment-content,
.single-post .comments > ul .comment-content {
    overflow: hidden;
}

.single-post .comment-list .reply,
.single-post .comments > ul .reply {
    position: absolute;
    top: 0;
    right: 0;
}

.single-post .comment-list .reply a,
.single-post .comments > ul .reply a {
    color: #287dfe;
}

.single-post .comment-list .reply a:hover,
.single-post .comments > ul .reply a:hover {
    color: #242424;
}

@media (max-width: 991px)
{
    .single-post .comments-area .comments-title,
    .comment-reply-title {
        font-size: 1.5rem;
    }

    .single-post .comments-area .comments-title {
        margin-bottom: 3rem;
    }
}

@media (max-width: 767px)
{
    .single-post .comments-area .comments-title,
    .comment-reply-title {
        font-size: 1.2rem;
    }

    .single-post .comments-area .comment-list .comment-meta .comment-author img {
        width: 50px;
        height: auto;
    }

    .blog-post {
        margin-bottom: 1.5rem;
        padding-bottom: 1.5rem;
    }
}

/*------------------------------------
shop
------------------------------------*/
.form-qty {
    height: calc(2.25rem + 8px);
}

/*------------------------------------
bs reset
------------------------------------*/
.bg-primary {
    background: #287dfe;
}

.bg-success {
    background: #96be5d;
}

.bg-warning {
    background: #fab63f;
}

.bg-info {
    background: #18b9d4;
}

.bg-danger {
    background: #ef5a5a;
}

.text-primary {
    color: #287dfe;
}

.text-purple {
    color: #7431ff;
}

.text-muted {
    color: #8c8c8c !important;
}

.rounded {
    border-radius: 6px !important;
}

.card {
    border-color: rgba(0,0,0,.125);
    border-radius: 7px;
    text-align: center;
    display: flex;
    height: 100%;
}

.card-img-top {
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.card-footer {
    padding: 1.1rem 1.25rem;
    border-top: 1px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    font-size: 14px;
    line-height: 35px;
}

.bg-dark .card-footer {
    border-top: 1px solid rgba(255, 255, 255, .06);
}

.alert-secondary {
    color: #242424;
    border-color: #e4e6ea;
    background-color: #f4f5f7;
}

.alert-warning {
    color: #fab63f;
    border-color: #fab63f;
    background-color: #fef8ec;
}

.alert-success {
    color: #FFF;
    border-color: #7dad14;
    background-color: #7dad14;
    border-radius: 2.5rem;
    font-size: 11px !important;
    font-weight: bold;
    padding: .750rem 2rem;
    white-space: nowrap;
    text-transform: uppercase;
    margin-bottom: 0rem !important;
}

.alert-danger {
    color: #ef5a5a;
    border-color: #ef5a5a;
    background-color: #fdeced;
}

.alert-primary {
    color: #287dfe;
    border-color: #287dfe;
    background-color: #eaf4ff;
}

.alert-solid-secondary {
    color: #242424;
    border-color: #e4e6ea;
    background-color: #e4e6ea;
}

.alert-solid-warning {
    color: #fff;
    border-color: #fab63f;
    background-color: #fab63f;
}

.alert-solid-success {
    color: #fff;
    border-color: #7dad14;
    background-color: #7dad14;
}

.alert-solid-danger {
    color: #fff;
    border-color: #ef5a5a;
    background-color: #ef5a5a;
}

.alert-solid-primary {
    color: #fff;
    border-color: #287dfe;
    background-color: #287dfe;
}

.list-group-item {
    padding: 1.3rem 1.25rem;
    color: #8c8c8c;
    border-color: #e4e6ea;
}

.badge {
    position: relative;
    bottom: 1px;
}

.custom-modal .modal-body {
    padding: 2.5rem;
}

.custom-modal .modal-content {
    border: none;
}

.custom-modal .modal-header {
    padding: 1rem;
}

.custom-modal .modal-header .close {
    padding: .5rem 1rem;
}

.modal-body {
    padding: 1.8rem;
}

.modal-header,
.modal-footer {
    padding: 1rem 1.8rem;
}

.modal-image {
    position: relative;
    border-top-left-radius: 5px !important;
    border-top-right-radius: 5px !important;
    border-bottom-left-radius: 0px !important;
    border-bottom-right-radius: 0px !important;
}

.modal-image .close {
    line-height: 50px;
    position: absolute;
    top: 1.875rem;
    right: 1.875rem;
    width: 50px;
    height: 50px;
    opacity: 1;
    border-radius: 50%;
    background: #fff;
    text-shadow: none;
}

.modal-image .close:hover {
    opacity: 1;
    color: #fff;
    background: #287dfe;
}

@media (min-width: 576px)
{
    .modal-dialog {
        max-width: 600px;
    }
}

@media (min-width: 992px)
{
    .modal-lg,
    .modal-xl {
        max-width: 800px;
    }
}

/*------------------------------------
utilities
------------------------------------*/
.ls-2 {
    letter-spacing: 1rem;
}

.ls-3 {
    letter-spacing: 2rem;
}

.lh-35 {
    line-height: 35px;
}

.lh-45 {
    line-height: 45px;
}

.h60 {
    height: 60%;
}

.h70 {
    height: 70%;
}

.curve-bottom-1,
.curve-bottom-right {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 70% 100%, 0 85%);
    clip-path: polygon(0 0, 100% 0, 100% 85%, 70% 100%, 0 85%);
}

.curve-top-bottom {
    -webkit-clip-path: polygon(100% 6%, 100% 100%, 68% 94%, 0% 100%, 0 10%, 28% 0);
    clip-path: polygon(100% 6%, 100% 100%, 68% 94%, 0% 100%, 0 10%, 28% 0);
}

.curve-bottom-center {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
    clip-path: polygon(0 0, 100% 0, 100% 70%, 50% 100%, 0 70%);
}

.font-lora {
    font-family: Nunito;
    font-size: 15px;
    font-weight: 600;
    line-height: 20px;
    padding-bottom: 20px;
    font-style: italic;
}

.font-weight-300 {
    font-weight: 300;
}

.font-weight-400 {
    font-weight: 400;
}

.font-weight-600 {
    font-weight: 600;
}

.font-weight-700 {
    font-weight: 700;
}

.font-weight-800 {
    font-weight: 800;
}

.font-size-12 {
    font-size: 12px;
}

.font-size-14 {
    font-size: 14px;
}

.font-size-16 {
    font-size: 16px;
}

.font-size-20 {
    font-size: 20px !important;
}

.font-size-60 {
    font-size: 60px;
}

.font-size-72 {
    font-size: 72px;
}

.i-size-60 {
    font-size: 60px;
}

.section-gray,
.bg-gray {
    background: #efeeef;
}

.bg-white {
    background: #fff;
}

.bg-dark {
    background: #efeeef !important;
}

.bg-dark hr {
    border-top: 1px solid rgba(255, 255, 255, .5);
}

.bg-green-light {
    background: #d7f5e3;
}

.bg-dark-alt {
    background: #303030;
}

.bg-extra {
    background: #e5e8ec;
}

.component-section {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

.show-markup-section {
    position: relative;
}

.demo .btn {
    margin: 0 .4rem 1rem;
}

.title-separator {
    position: relative;
    margin-bottom: 4rem;
}

.title-separator:after {
    position: absolute;
    bottom: -2rem;
    left: 0;
    width: 60px;
    height: 2px;
    content: '';
    background: #fff;
}

.gradient-primary {
    background-image: -webkit-linear-gradient(left, #287dfe 0%, #7431ff 100%);
    background-image: linear-gradient(to right, #287dfe 0%, #7431ff 100%);
}

.cta-img {
    position: relative;
    overflow: hidden;
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
}

.border-light {
    border-color: rgba(255, 255, 255, .125) !important;
}

.custom-dropdown {
    border: none;
    box-shadow: 0 1px 10px rgba(151, 164, 175, .15);
}

.custom-dropdown .dropdown-item {
    font-size: 12px;
}

.custom-dropdown-sm {
    min-width: 6rem;
}

.opacity-30 {
    opacity: .3;
}

.opacity-40 {
    opacity: .4;
}

.opacity-50 {
    opacity: .5;
}

.opacity-60 {
    opacity: .6;
}

.opacity-70 {
    opacity: .7;
}

.opacity-80 {
    opacity: .8;
}

.opacity-90 {
    opacity: .9;
}

.opacity-100 {
    opacity: 1;
}

.avatar-sm {
    width: 30px;
    height: 30px;
}

.avatar,
.avatar-md {
    width: 70px;
    height: 70px;
}

.avatar-lg {
    width: 140px;
    height: 140px;
}

.icon-sm {
    font-size: 28px;
}

.icon-md {
    font-size: 42px;
}

.icon-lg {
    font-size: 72px;
}

.ft-tag {
    font-size: 11px;
    font-weight: bold;
    padding: 3px 12px;
    color: #fff;
    border-radius: 30px;
    background: #287dfe;
}

.ft-inside-tl {
    position: absolute;
    top: 1rem;
    left: 1rem;
}

.ft-inside-tr {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.ft-inside-bl {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
}

.ft-inside-br {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
}

.ft-overflow-bl {
    position: absolute;
    bottom: -.8rem;
    left: 1rem;
    border: 2px solid #fff;
}

.ft-overflow-br {
    position: absolute;
    right: 1rem;
    bottom: -.8rem;
    border: 2px solid #fff;
}

.ft-overflow-bc {
    position: absolute;
    bottom: -.8rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 2px solid #fff;
}

.ft-overflow-tl {
    position: absolute;
    top: 2rem;
    left: -2rem;
    border: 2px solid #fff;
}

.ft-overflow-tr {
    position: absolute;
    top: 2rem;
    right: -2rem;
    border: 2px solid #fff;
}

.ft-overflow-tc {
    position: absolute;
    top: -1rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    border: 2px solid #fff;
}

@media (max-width: 991px)
{
    .component-section {
        padding: 3rem 0;
    }
}

@media (max-width: 767px)
{
    .i-size-60 {
        font-size: 3rem;
    }

    .lh-35,
    .lh-45 {
        line-height: normal;
    }

    .ls-2 {
        letter-spacing: .5rem;
    }

    .font-size-60 {
        font-size: 28px;
    }

    .font-size-72 {
        font-size: 32px;
    }

    .icon-md {
        font-size: 2rem;
    }

    .icon-lg {
        font-size: 72px !important;
    }

    .border-sm-right-0 {
        border-right: none !important;
    }

    .curve-top-bottom,
    .curve-bottom-1,
    .curve-bottom-right {
        -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }

    .btn-sm-block {
        display: block;
        width: 100%;
        padding: .750rem 2rem;
    }
}

@media (min-width: 991px)
{
    .neg-mt-100 {
        margin-top: -100px;
    }

    .neg-mt-300 {
        margin-top: -300px;
    }

    .clab-shape {
        overflow: hidden;
        padding-bottom: 13.5rem;
    }

    .clab-shape:after {
        font-size: 1200px;
        font-weight: 800;
        position: absolute;
        top: -35%;
        left: 50%;
        content: 'ă';
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        color: rgba(20, 32, 241, .1);
    }

    .clab-shape .container {
        position: relative;
        z-index: 1;
    }
}

.markup-example {
    position: relative;
}

.markup-example .btn {
    line-height: normal;
    position: absolute;
    z-index: 2;
    top: .5rem;
    right: .5rem;
    padding: .385rem 1rem;
}

.markup-example pre[class*='language-'] {
    padding: 3rem 1rem 1rem;
    border-radius: 6px;
    background: #f0f1f4;
}

.component-section > button,
.show-markup-section > button {
    position: absolute;
    z-index: 1000;
    top: 50%;
    right: .75rem;
    -webkit-transition: opacity .2s linear;
    transition: opacity .2s linear;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
}

.component-section:hover > button,
.show-markup-section:hover > button {
    opacity: 1;
}

.clip-txt {
    font-size: 15rem;
    font-weight: bold;
    line-height: normal;
    text-align: center;
    color: transparent;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    background-size: cover;
}

@media (max-width: 565px)
{
    .clip-txt {
        font-size: 6rem;
    }
}

@media (min-width: 769px)
{
    .clip-txt {
        font-size: 25rem;
    }
}

.landing-slider .owl-carousel .owl-item img {
    width: 100%;
}

@media screen and (max-width: 991px)
{
    .wow {
        visibility: visible !important;
        -webkit-animation-name: none !important;
        animation-name: none !important;
    }
}

.buy-link {
    font-size: 12px;
    font-weight: bold;
    position: fixed;
    z-index: 1200;
    top: 30%;
    left: -5px;
    padding: .6rem;
    -webkit-transition: all .3s;
    transition: all .3s;
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    border-radius: 0 5px 5px 0;
    background: #82b440;
}

.buy-link:hover {
    left: 0;
    text-decoration: none;
    color: #fff;
}

@media (min-width: 1200px)
{
    .jam {
        float: left;
        padding-left: 40px;
    }
}

.depth {
    height: 20px;
}

@media (max-width: 1199px)
{
    .mb-4,
    .my-4 {
        margin-bottom: .2rem !important;
        font-size: 15px;
        line-height: 20px;
        font-family: Nunito;
        font-weight: 600;
        margin-top: 0px;
    }
}

@media (max-width: 1199px)
{
    .app-footer.bg-dark .footer-link li a {
        font-size: 13px;
        line-height: 10px;
        color: #8c8c8c;
    }
}

@media (max-width: 799px)
{
    .app-footer .copyright {
        font-size: 12px !important;
        margin: 0px;
        color: #808080;
        text-align: center;
        line-height: 10px;
    }
}

@media (max-width: 799px)
{
    .app-footer .copyright a {
        font-size: 12px !important;
        font-weight: 500;
        margin: 0px;
        color: #808080;
        text-align: center;
        line-height: 10px;
    }
}

.mark2,
mark2 {
    padding: .05em .35em;
    background-color: #333333;
    color: #ffffff;
}

.mark4,
mark4 {
    padding: .05em .35em;
    background-color: #e14a7d;
    color: #ffffff;
}

.mark5,
mark5 {
    padding: .05em .35em;
    background-color: #00a5ca;
    color: #ffffff;
}

.mark6,
mark6 {
    padding: .05em .35em;
    background-color: #0acfa1;
    color: #ffffff;
}

.mark7,
mark7 {
    padding: .05em .35em;
    background-color: #ff9d41;
    color: #ffffff;
}

.mark8,
mark8 {
    padding: .05em .35em;
    background-color: #219099;
    color: #ffffff;
}

.mark9,
mark9 {
    padding: .05em .35em;
    background-color: #707ad3;
    color: #ffffff;
}

.mark10,
mark10 {
    padding: 0 .35em .15em;
    background-color: #9b9da0;
    color: #ffffff;
    border-radius: 6px;
}

.introhome {
    font-size: 14px;
    line-height: 19px;
    font-family: Nunito;
    font-weight: 600;
}

.card a:hover {
    text-decoration: none;
    color: #FFF;
    opacity: 0.65;
}

.card a {
    text-decoration: none;
    color: #FFF;
}

.app-secondary-footer a {
    text-decoration: none;
    color: #808080;
}

.app-secondary-footer a:hover {
    text-decoration: none;
    color: #FFF;
}

@media (max-width: 1199px)
{
    .introhome {
        font-size: 14px;
        line-height: 19px;
    }
}

@media (max-width: 768px)
{
    .card {
        border-color: #e4e6ea;
        border-radius: 6px;
        text-align: center;
        margin-top: 30px;

        /*height: 96% !important*/
    }
}

@media (max-width: 767px) {
    .lead {
        font-size: 17px !important;
        font-weight: 600;
        line-height: 26px !important;
        padding-left: 30px;
        padding-right: 30px;
        margin-top: 30px;
        margin-bottom: 0px !important;
    }
}

@media (min-width:768px) and (max-width: 991px) {
    .lead {
        font-size: 16px;
        font-weight: 300;
        line-height: 24px;
        padding-left: 0px;
        padding-right: 00px;
        margin-top: 20px;
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .lead {
        font-size: 17px;
        line-height: 27px;
        padding-left: 30px;
        padding-right: 30px;
        margin-top: 30px;
        margin-bottom: 40px;
    }
}

.pb-md-5 {
    padding-left: 15px;
    padding-right: 15px;
}

.border-1 {
    border: 1px solid #ccc;
}

.back-to-top {
    position: fixed;
    bottom: 25px;
    left: 25px;
    display: none;
    z-index: 999;
}

.mark3,
mark3 {
    padding: .05em .35em;
    background-color: #ffffff;
    color: #333333;
}

@media (max-width: 991px)
{
    .mattfix {
        padding-top: 25rem;
    }
}

.boxleft a:hover {
    text-decoration: none;
    color: #404040 !important;
    opacity: 0.65;
    padding-left: 15px;
}

.boxleft a {
    text-decoration: none;
    color: #404040 !important;
    padding-left: 15px;
}

.boxleft {
    text-align: left;
    font-family: Nunito;
    font-weight: 600;
    margin-bottom: 10px;
}

.boxright a:hover {
    text-decoration: none;
    color: #FFF !important;
    opacity: 0.65;
    padding-left: 15px;
}

.boxright a {
    text-decoration: none;
    color: #FFF !important;
    padding-left: 15px;
}

.boxright {
    text-align: left;
    margin-bottom: 10px;
}

@media (max-width: 991px)
{
    .text-leftfix {
        text-align: center;
    }
}

.bios {
    font-size: 14px;
    line-height: 20px;
}

@media (max-width: 667px)
{
    .bios p {
        font-size: 14px;
        font-weight: 500;
    }
}

@media (max-width: 767px)
{
    .bios  p {
        font-size: 14px;
        font-weight: 500;
    }
}

.biohead {
    margin-bottom: .5rem !important;
    font-size: 18px;
    line-height: 26px;
    font-weight: 700;
}

@media (min-width:767px) and (max-width:1199px)
{
    .pdtop {
        margin-top: 30px;
    }
}

.depth2 {
    height: 30px;
}

@media (max-width:767px)
{
    .depth2 {
        height: 0px;
    }
}

@media (min-width:769px) and (max-width:991px)
{
    .depth3 {
        height: 70px;
    }
}

.sliderfix {
}

@media (max-width:575px)
{
    .sliderfix {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.sliderfixa {
}

@media (max-width:460px)
{
    .sliderfixa {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.btn-theme-mr {
    color: #fff !important;
    border: 2px solid #e14a7d;
    background: #e14a7d;
    margin-left: 0px !important;
}

.btn-theme-mr:hover {
    color: #e14a7d !important;
    border: 2px solid #323232;
    background: #323232;
}

.btn-read-mored {
    position: relative;
    margin-left: -15px;
}

.btn-read-mored:after {
    font-family: 'Clab-Icon-Set';
    font-size: 15px;
    position: relative;
    top: 1px;
    right: -15px;
    content: '\e952';
    -webkit-transition: all .3s;
    transition: all .3s;
}

.btn-read-mored:hover {
    text-decoration: none;
}

.btn-read-mored:hover:after {
    right: -25px;
}

.btn-theme-ir {
    color: #fff !important;
    border: 2px solid #00a5ca;
    background: #00a5ca;
    margin-left: 0px !important;
}

.btn-theme-ir:hover {
    color: #00a5ca !important;
    border: 2px solid #323232;
    background: #323232;
}

.object-fit-cover {
    //: relative;
}

.object-fit-cover img {
    //: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    //: cover;
}

.blurb-border2 {
    border: 1px solid #e4e6ea;
    border-radius: 6px;
    display: inline;
    height: 100%;
    padding: 1.0rem 1.0rem 0rem;
    margin-top: 1rem;
}

.blurb2 p {
    padding-right: 1rem;
    color: #8c8c8c;
}

.blurb2 i {
    font-size: 3rem;
    display: inline-block;
    margin-bottom: 1rem;
}

.blurb2 p {
    padding-right: 0rem;
    color: #8c8c8c;
}

.blurb2.text-right p {
    padding-right: 0;
    padding-left: 2rem;
}

@media (max-width: 767px)
{
    .blurb2 i {
        font-size: 2.5rem;
    }

    .blurb-border {
        margin-bottom: 1.5rem;
    }
}

.depth5 {
    height: 30px;
}

@media (max-width: 1199px)
{
    .blurb2 i {
        font-size: 2.5rem;
    }

    .blurb-border2 {
        /*display: flex*/
        /*height: 100%*/
        margin-bottom: 35px !important;
        padding-bottom: 0rem;
        max-height: 110px;
        margin-top: 1rem;
    }
}

@media (max-width: 991px)
{
    .blurb2 i {
        font-size: 2.5rem;
    }

    .blurb-border2 {
        /*display: flex*/
        /*height: 100%*/
        margin-bottom: 25px !important;
        padding-bottom: 1rem !important;
        max-height: 120px;
        margin-top: 0rem;
    }
}

@media (max-width: 767px)
{
    .blurb2 i {
        font-size: 2.5rem;
    }

    .blurb-border2 {
        /*display: flex*/
        /*height: 100%*/
        margin-bottom: 20px !important;
        padding-bottom: 1rem;
        height: auto;
        margin-top: 0rem;
    }
}

@media (max-width: 768px)
{
    .mapper {
        font-size: 2.5rem;
        margin-top: 2rem;
    }
}

@media (min-width:769px) and (max-width:991px)
{
    .depth4 {
        height: 10px;
    }
}

@media (max-width:769px)
{
    .depth4 {
        height: 50px;
    }
}

.section-gap2 {
    position: relative;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (max-width:769px)
{
    .section-gap2 {
        position: relative;
        padding-top: 0rem;
        padding-bottom: 0rem;
    }
}

.btn-theme-ws {
    color: #fff !important;
    border: 2px solid #0acfa1;
    background: #0acfa1;
    margin-left: 0px !important;
}

.btn-theme-ws:hover {
    color: #0acfa1 !important;
    border: 2px solid #323232;
    background: #323232;
}

.btn-theme-pr {
    color: #fff !important;
    border: 2px solid #ff9d41;
    background: #ff9d41;
    margin-left: 0px !important;
}

.btn-theme-pr:hover {
    color: #ff9d41 !important;
    border: 2px solid #323232;
    background: #323232;
}

.btn-theme-br {
    color: #fff !important;
    border: 2px solid #219099;
    background: #219099;
    margin-left: 0px !important;
}

.btn-theme-br:hover {
    color: #219099 !important;
    border: 2px solid #323232;
    background: #323232;
}

.btn-theme-rs {
    color: #fff !important;
    border: 2px solid #707ad3;
    background: #707ad3;
    margin-left: 0px !important;
}

.btn-theme-rs:hover {
    color: #707ad3 !important;
    border: 2px solid #323232;
    background: #323232;
}

.section-gap3 {
    position: relative;
    padding-top: 1.5rem;
    padding-bottom: 3rem;
}

@media (max-width:769px)
{
    .section-gap3 {
        position: relative;
        padding-top: 0rem;
        padding-bottom: 1.5rem;
    }
}

.section-gap4 {
    position: relative;
    padding-top: 5rem;
    padding-bottom: 0rem;
}

@media (max-width:769px)
{
    .section-gap4 {
        position: relative;
        padding-top: 3rem;
        padding-bottom: 0rem;
    }
}

@media (max-width:991px)
{
    .add15 {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width:992px) and (max-width:1199px)
{
    .add15 {
        padding-left: 30px;
        padding-right: 0px;
    }
}

.btn-read-moren {
    position: relative;
    display: inline-block;
    margin-left: -15px;
    color: #404040 !important;
}

.btn-read-moren:after {
    font-family: 'Clab-Icon-Set';
    font-size: 15px;
    position: absolute;
    top: 1px;
    right: -25px;
    content: '\e952';
    -webkit-transition: all .3s;
    transition: all .3s;
}

.btn-read-moren:hover {
    text-decoration: none;
}

.btn-read-moren:hover:after {
    right: -30px;
}

.btn-read-moreno {
    position: relative;
    display: inline-block;
    margin-left: 0px;
    color: #404040 !important;
}

.btn-read-moreno:after {
    font-family: 'Clab-Icon-Set';
    font-size: 15px;
    position: absolute;
    top: 1px;
    right: 0px;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.btn-read-moreno:hover {
    text-decoration: none;
}

.btn-read-moreno:hover:after {
    right: -0px;
}

@media (max-width: 768px)
{
    .card2 {
        border-color: #e4e6ea;
        border-radius: 6px;
        text-align: center;
        margin-top: 10px !important;
        height: 100% !important;
    }
}

.depth5 {
    height: 3rem;
}

@media (max-width:767px)
{
    .depth5 {
        height: 3.0rem;
    }
}

.btn-theme-bk {
    color: #fff !important;
    border: 2px solid #231f20;
    background: #231f20;
    margin-left: 0px !important;
}

.btn-theme-bk:hover {
    color: #FFF !important;
    border: 2px solid #848484;
    background: #848484;
}

.btn-read-morenews {
    position: relative;
    display: inline-block;
    margin-left: 10px;
    color: #404040 !important;
}

.btn-read-morenews:after {
    font-family: 'Clab-Icon-Set';
    font-size: 15px;
    position: absolute;
    top: 1px;
    right: -25px;
    content: '\e952';
    -webkit-transition: all .3s;
    transition: all .3s;
}

.btn-read-morenews:hover {
    text-decoration: none;
}

.btn-read-morenews:hover:after {
    right: -33px;
}

.btn-theme-rec {
    color: #FFFFFF !important;
    border: 2px solid #9b9da0;
    background: #9b9da0;
    padding-left: 15px  !important;
    padding-right: 15px !important;
    margin-top: 15px;
}

.btn-theme-rec:hover {
    color: #FFF !important;
    border: 2px solid #888;
    background: #888;
    margin-top: 15px;
    padding-left: 15px !important;
    padding-right: 15px !important;
}

.boxleft2 a:hover {
    text-decoration: none;
    color: #000 !important;
    padding-left: 0px;
    padding-right: 0px;
}

.boxleft2 a {
    text-decoration: none;
    color: #000 !important;
    padding-left: 0px;
    padding-right: 0px;
}

.boxleft2 {
    text-align: left;
}

.boxright2 a:hover {
    text-decoration: none;
    color: #000 !important;
    padding-left: 0px;
    padding-right: 0px;
}

.boxright2 a {
    text-decoration: none;
    color: #000 !important;
    padding-left: 0px;
    padding-right: 0px;
}

.boxright2 {
    text-align: left;
}

.height-100 {
    height: 100%;
}

.height-100 p {
    margin-bottom: 1.05rem;
    padding: 0 1.5rem;
}

@media (max-width: 991px)
{
    .height-100 {
        height: 95% !important;
        margin-bottom: 2rem;
    }
}

.boxleft3 a:hover {
    text-decoration: none;
    color: #FFF !important;
    opacity: 1.0 !important;
    padding-left: 0px;
}

.boxleft3 a {
    text-decoration: none;
    color: #8c8c8c !important;
    padding-left: 0px;
}

.boxleft3 {
    text-align: left;
}

.card-body2 {
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: .55rem 1.65rem 0rem;
}

@media (max-width: 767px)
{
    .card.flex-md-row .card-img-contact {
        border-radius: 0 .0 .375rem .375rem;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media (min-width:768px) and (max-width:991px)
{
    .card.flex-md-row .card-img-contact {
        border-radius: 0 .375rem .375rem 0;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media (min-width: 992px)
{
    .card.flex-md-row .card-img-contact {
        border-radius: 0 .375rem .375rem 0;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.hero-map {
    background-repeat: no-repeat;
    background-position: 50%;
    background-size: cover;
    min-height: 600px;
}

.msgbox {
    min-height: orem;
}

.form-control2 {
    height: calc(147px);
    border: 1px solid #e4e6ea;
}

.btn-primary2 {
    color: #fff;
    background-color: #404040;
    border-color: #404040;
}

.btn-primary2:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc;
}

.hidden {
    display: none;
}

.label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
}

label.error {
    font-weight: 600;
    font-size: 12px;
    color: #ff0000;
    position: absolute;
    top: 6px;
    right: 12px;
}

.checkbox label.error {
    top: 18px;
    left: 0px;
}

.addin15 {
    margin-left: -15px !important;
}

.col-12a {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.col-12a {
    position: relative;
    width: 100%;
    padding-right: 0px;
    padding-left: 0px;
}

@media (max-width: 992px)
{
    .boxleft2 {
        text-align: center;
    }
}

@media (max-width: 992px)
{
    .boxright2 {
        text-align: center;
    }
}

@media (max-width: 364px)
{
    h1,
    .h1 {
        font-size: 28px;
    }
}

@media (min-width: 365px) and (max-width: 379px)
{
    h1,
    .h1 {
        font-size: 32px;
    }
}

@media (min-width: 380px) and (max-width: 450px)
{
    h1,
    .h1 {
        font-size: 32px;
    }
}

@media all and (device-width: 768px) and (device-height: 1024px) and (orientation:portrait) {
    .ipad-portrait {
        color: red;
    }

    .cardipad {
        border-color: #e4e6ea;
        border-radius: 6px;
        text-align: center;
        margin-top: 00px !important;
        height: 96% !important;
        width: 99.8% !important;
    }
}

@media (min-width:2000px)
{
    .sliderfixd {
        padding-left: 260px;
        padding-right: 260px;
    }
}

.remcurse {
    cursor: default;
}

.iconsze {
    color: #ffffff;
}

.portfolio-category {
    font-size: 13px;
    line-height: 18px;
}

.pcp {
    color: #333333;
    line-height: 36px;
}

.pt-20 {
    padding-top: 20px;
}

.section-gap9 {
    position: relative;
    padding-top: 0rem;
    padding-bottom: 3rem;
}

.tdtxt {
    font-size: 14px;
    line-height: 16px;
}

.tdtxt li {
    padding: 0px 0px 10px;
}

.fussfoot {
    font-size: 14px;
    font-family: Nunito;
}

@media (min-width: 769px) and (max-width: 991px) {
    .variation {
        max-width: 140px;
        padding-top: 10px;
    }
}

@media (min-width: 320px) and (max-width: 768px) {
    .variation {
        max-width: 120px;
        padding-top: 5px;
    }
}

@media (min-width: 320px) and (max-width: 991px) {
    .variation2 {
        max-width: 39px;
    }
}

@media (min-width: 1200px) {
    .hero-img {
        background-repeat: no-repeat;
        background-position: center top;
        background-size: cover;
        min-height: 600px;
    }
}

@media (max-width: 576px) {
    .mattfix3 {
        margin-left: 50px;
        margin-top: 100px;
    }
}

.introp {
    font-family: Nunito;
    font-weight: 600;
    font-size: 15px;
    line-height: 25px;
}

.introh {
    font-family: Nunito;
    font-weight: 700;
    font-size: 32px;
    line-height: 50px;
}

@media (min-width: 992px) and (max-width: 1199px) {
    .introp {
        font-family: Nunito;
        font-size: 15px;
        line-height: 28px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .introp {
        font-family: Nunito;
        font-size: 15px;
        line-height: 24.5px;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .introp {
        font-family: Nunito;
        font-size: 15px;
        line-height: 22px;
        margin-top: 20px;
        text-align: center;
    }
}

@media (min-width: 576px) and (max-width: 767px) {
    .introh {
        font-family: Nunito;
        font-weight: 700;
        font-size: 32px;
        line-height: 50px;
        text-align: center;
    }
}

@media (min-width: 0px) and (max-width: 575px) {
    .introp {
        font-family: Nunito;
        font-size: 14px;
        line-height: 22px;
        margin-top: 40px;
        text-align: center;
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media (min-width: 0px) and (max-width: 575px) {
    .introh {
        font-family: Nunito;
        font-weight: 700;
        font-size: 32px;
        line-height: 50px;
        text-align: center;
        padding-right: 10px;
        padding-left: 10px;
    }
}

.mattfixspace {
    height: 50px;
}

.text-black {
    color: #000000;
}

.shimcover {
    margin-top: 30px;
}

@media (max-width: 768px) {
    .shimcover {
        margin-top: 0px;
    }
}

.card-img-overlay2 {
    left: 0px;
    text-align: left;
    position: absolute;
    right: 0;
    bottom: 20px;
    left: 20px;
}

@media (min-width: 0px) and (max-width: 767px) {
    .card-img-overlay2 {
        left: 0px;
        text-align: left;
        position: absolute;
        right: 0;
        bottom: 0px;
        left: 20px;
    }
}

@media (max-width: 768px)
{
    .card3 {
        border-color: #e4e6ea;
        border-radius: 6px;
        text-align: center;
        margin-top: 0px;
        height: 80% !important;
        margin-bottom: 30px !important;
    }
}

.mb-50 {
    margin-bottom: 50px;
}

.mb-25 {
    margin-bottom: 25px !important;
}

@media (min-width: 768px) and (max-width: 991px) {
    .introp {
        font-family: Nunito;
        font-size: 15px;
        line-height: 24.5px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .introh {
        font-family: Nunito;
        font-weight: 700;
        font-size: 32px !important;
        line-height: 50px;
    }
}

@media (min-width: 0px) and (max-width: 767px) {
    .p-md-5 {
        padding: 1.25rem 2rem 0.25rem !important;
    }
}

.corners {
}

.prices {
    font-family: Nunito;
    font-size: 18px;
    font-weight: 700;
}

@media (min-width: 0px) and (max-width: 767px) {
    .mattsave {
        margin-top: 60px !important;
    }
}

@media (min-width: 0px) and (max-width: 767px) {
    .mattsave2 {
        margin-bottom: 120px !important;
    }
}

@media (min-width: 0px) and (max-width: 767px) {
    .mattsave3 {
        margin-top: 50px;
    }
}

@media (min-width: 0px) and (max-width: 767px) {
    .mattsave4 {
        margin-top: 70px;
    }
}

.depth6 {
    height: 0px;
}

@media (max-width:767px) {
    .depth6 {
        height: 60px !important;
    }
}

@media (max-width:767px) {
    .depth7 {
        height: 120px !important;
    }
}

@media (max-width:991px) {
    .centre-button {
        text-align: center;
    }
}

a.one:link {
    color: #287dfe;
    text-decoration: underline;
}

a.one:visited {
    color: #aaaaaa;
    text-decoration: none;
}

a.one:hover {
    color: #ea148c;
    text-decoration: underline;
}

.leader {
    font-size: 18px;
    font-weight: 500 !important;
    line-height: 28px;
}

@media (max-width: 767px) {
    .leader {
        font-size: 17px;
        font-weight: 300;
        line-height: 26px;
        padding-left: 30px;
        padding-right: 30px;
        margin-top: 30px;
        margin-bottom: 0px;
    }
}

@media (min-width:768px) and (max-width: 991px) {
    .leader {
        font-size: 16px;
        font-weight: 300;
        line-height: 24px;
        margin-bottom: 20px;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .leader {
        font-size: 16px;
        line-height: 26px;
        margin-bottom: 20px;
    }
}

.breadcrumb-bg-1 {
    background-image: url('../img/crop.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 720px;
}

.centre-button2 {
    padding-bottom: 25px;
}

.centre-button3 {
    margin-top: 0px;
}

@media (max-width: 767px) {
    .shrink {
        max-width: 260px;
    }
}

@media (min-width:1199px) {
    .intropfix {
        font-size: 18px !important;
        font-weight: 600 !important;
        line-height: 28px !important;
    }
}

@media (max-width: 767px) {
    .leadfix {
        font-size: 17px !important;
        font-weight: 700 !important;
        line-height: 26px !important;
        padding-left: 30px;
        padding-right: 30px;
        margin-top: 30px;
        margin-bottom: 0px !important;
    }
}

@media (min-width:768px) and (max-width: 991px) {
    .leadfix {
        font-size: 16px !important;
        font-weight: 700 !important;
        line-height: 24px !important;
        padding-left: 0px;
        padding-right: 00px;
        margin-top: 20px;
        margin-bottom: 0px !important;
        padding-bottom: 20px;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .leadfix {
        font-size: 17px;
        line-height: 27px;
        padding-left: 30px;
        padding-right: 30px;
        margin-top: 30px;
        margin-bottom: 40px;
    }
}

@media (min-width:0px) and (max-width:575px) {
    .intropfix {
        font-family: Nunito;
        font-size: 14px;
        line-height: 22px;
        margin-top: 20px !important;
        text-align: center;
        margin-left: 50px;
        margin-right: 50px;
    }
}

@media (min-width:0px) and (max-width:767px) {
    .coscard {
        margin-top: 0px !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .coscard {
        margin-top: 0px !important;
    }
}

.innerbox {
    font-family: Nunito;
    font-size: 15px;
    font-weight: 500;
    line-height: 25px;
}

.breadcrumb-bg-2 {
    background-image: url('../img/environ-cool-peel.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (min-width:768px) and (max-width:991px) {
    .hideonsmall {
        display: none;
    }
}

.showonmed {
    display: none;
}

@media (min-width:768px) and (max-width:991px) {
    .showonmed {
        display: inline-block;
        margin-bottom: 50px;
        margin-top: 20px;
    }
}

.shrink2 {
    max-width: 200px;
}

.zoskin-bg {
    background-image: url('../img/hero/zo-skin-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (min-width:768px) and (max-width:991px) {
    .zoskin-bg {
        background-image: url('../img/hero/zo-skin-bg-991.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

@media (min-width:576px) and (max-width:767px) {
    .zoskin-bg {
        background-image: url('../img/hero/zo-skin-bg-767.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

@media (min-width:361px) and (max-width:575px) {
    .zoskin-bg {
        background-image: url('../img/hero/zo-skin-bg-575.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

.fineline {
    height: 5px;
    background-color: #ffffff;
}

.antilead {
    padding-bottom: 0px !important;
}

.swapout1 {
    display: none;
}

@media (min-width:1199px) {
    .swapout1 {
        display: block;
    }
}

.swapout2 {
    display: none;
}

@media (max-width:1198px) {
    .swapout2 {
        display: block;
    }
}

@media (max-width: 767px) {
    .dermapen {
        max-width: 200px;
    }
}

.eyecon-bg {
    background-image: url('../img/hero/eyecon-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (min-width:992px) and (max-width:1199px) {
    .eyecon-bg {
        background-image: url('../img/hero/eyecon-bg-1199.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .eyecon-bg {
        background-image: url('../img/hero/eyecon-bg-991.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

@media (min-width:576px) and (max-width:767px) {
    .eyecon-bg {
        background-image: url('../img/hero/eyecon-bg-767.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

@media (min-width:361px) and (max-width:575px) {
    .eyecon-bg {
        background-image: url('../img/hero/eyecon-bg-575.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

.dimension {
    font-family: Nunito;
    font-weight: 600 !important;
    font-size: 14px !important;
    text-align: center !important;
    padding-top: 10px !important;
}

.mxone {
    max-width: 125px;
    max-height: 125px;
}

.prices2 {
    font-family: Nunito;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: -5px !important;
}

.hydro-bg {
    background-image: url('../img/hero/hydro-bg.jpg');
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (min-width:992px) and (max-width:1199px) {
    .hydro-bg {
        background-image: url('../img/hero/hydro-bg-1199.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .hydro-bg {
        background-image: url('../img/hero/hydro-bg-991.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

@media (min-width:576px) and (max-width:767px) {
    .hydro-bg {
        background-image: url('../img/hero/hydro-bg-767.jpg');
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

@media (min-width:361px) and (max-width:575px) {
    .hydro-bg {
        background-image: url('../img/hero/hydro-bg-575.jpg');
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: center bottom;
    }
}

.blend {
    mix-blend-mode: multiply;
}

@media (min-width:768px) and (max-width:991px) {
    .strongermd {
        font-weight: 600 !important;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .mdhydro {
        background-color: rgba(255,255,255, 0.75);
        border-radius: 10px;
        padding: 30px 30px 10px;
    }
}

@media (min-width:576px) and (max-width:767px) {
    .smpad {
        padding-left: 50px;
        padding-right: 50px;
    }
}

@media (min-width:0px) and (max-width:767px) {
    .smsub {
        background-color: rgba(255,255,255, 0.8);
        border-radius: 6px;
        padding-bottom: 10px;
        margin-top: 20px;
    }
}

.dermalux {
    max-width: 190px;
}

@media (min-width:0px) and (max-width:767px) {
    .portfolio-filter li a {
        font-size: 13px;
        text-decoration: none;
        text-transform: capitalize;
        color: #8c8c8c;
    }
}

@media (max-width: 767px) {
    .shrink3 {
        max-width: 280px;
    }
}

.brows-bg {
    background-image: url('../img/hero/brows-bg.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (min-width:768px) and (max-width:991px) {
    .brows-bg {
        background-image: url('../img/hero/brows-bg-991.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

@media (min-width:576px) and (max-width:767px) {
    .brows-bg {
        background-image: url('../img/hero/brows-bg-767.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

@media (min-width:361px) and (max-width:575px) {
    .brows-bg {
        background-image: url('../img/hero/brows-bg-575.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .brows-bg {
        background-image: url('../img/hero/brows-bg-1199.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

.cardbg {
    background-color: rgba(226, 225, 228, 0.5);
}

.breadcrumb-bg-3 {
    background-image: url('../img/3D-ultimatepro.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 600px;
}

.breadcrumb-bg-4 {
    background-image: url('../img/lpg-endermologie.jpg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    min-height: 550px;
}

.bk-perm {
    background-color: #949599;
}

.lumina-bg {
    background-image: url('../img/hero/lumina-bg.jpg');
    background-size: auto 100%;
    background-repeat: no-repeat;
    background-position: center center;
}

@media (min-width:992px) and (max-width:1199px) {
    .lumina-bg {
        background-image: url('../img/hero/lumina-bg-1199.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

@media (min-width:768px) and (max-width:991px) {
    .lumina-bg {
        background-image: url('../img/hero/lumina-bg-991.jpg');
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

@media (min-width:576px) and (max-width:767px) {
    .lumina-bg {
        background-image: url('../img/hero/lumina-bg-767.jpg');
        background-size: auto 100%;
        background-repeat: no-repeat;
        background-position: center center;
    }
}

@media (min-width:361px) and (max-width:575px) {
    .lumina-bg {
        background-image: url('../img/hero/lumina-bg-575.jpg');
        background-size: 100% auto;
        background-repeat: no-repeat;
        background-position: center bottom;
    }
}

.borderbot {
    border-bottom: 1px solid #e4e6ea;
}

@media (min-width:0px) and (max-width:400px) {
    .mxone {
        max-width: 80px !important;
        max-height: 80px !important;
    }
}