:root {
    /*--theme-color: #253055;*/
    --theme-color: #091726;
    --theme-color-highligt: #17B794;
    --theme-color-secondary: #eb212e;
}

body {
    font-family: "Droid Sans", Arial, sans-serif;
    font-weight: 300;
    font-size: 14px;
    line-height: 1.6;
    color: #616370;
    height: 100%;
    position: relative;
    background: #fbfbfd;
}

a {
    color: var(--theme-color);
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

a:hover, a:active, a:focus {
    color: var(--theme-color);
    outline: none;
}

p {
    margin-bottom: 1.5em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: "Open Sans", Arial, sans-serif;
    font-weight: 400;
    margin: 0 0 30px 0;
}

::-webkit-selection {
    color: #fff;
    background: var(--theme-color);
}

::-moz-selection {
    color: #fff;
    background: var(--theme-color);
}

::selection {
    color: #fff;
    background: var(--theme-color);
}

#header {
    position: absolute;
    z-index: 99;
    width: 100%;
    opacity: 1;
    top: 0;
}

#header .navbar {
    padding-bottom: 0;
    margin-bottom: 0;
}

#header #navbar.navbar-collapse {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#header #navbar .navbar-right {
    margin-right: 0;
}

@media screen and (max-width: 912px) {
    #header #navbar .navbar-right {
        margin-right: -15px;
    }
}

#header #navbar li a {
    font-family: "Open Sans", Arial, sans-serif;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    font-size: 16px;
    font-weight: 400;
}

@media screen and (max-width: 912px) {
    #header #navbar li a {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}

#header #navbar li a span {
    position: relative;
    display: block;
    padding-bottom: 2px;
}

#header #navbar li a span:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.5);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    -moz-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

#header #navbar li a:hover {
    color: #fff;
}

#header #navbar li a:hover span:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    -moz-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}

@media screen and (max-width: 480px) {
    #header #navbar li a:hover span:before {
        display: none;
    }
}

#header #navbar li.active a {
    background: transparent;
    background: none;
    color: #fff;
}

@media screen and (max-width: 480px) {
    #header #navbar li.active a {
        color: #fff;
    }
}

#header #navbar li.active a span:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    background-color: #fff;
}

@media screen and (max-width: 480px) {
    #header #navbar li.active a span:before {
        background-color: transparent;
    }
}

#header #navbar li.call-to-action {
    margin-left: 10px;
}

#header #navbar li.call-to-action a {
    padding: 2px 20px 2px 20px;
    margin: 12px 0 0 0px;
    line-height: 1.5;
    background-color: var(--theme-color);
    border: 2px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
}

#header #navbar li.call-to-action a:hover {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

#header #navbar li.call-to-action a span:before {
    background-color: transparent;
}

#header .navbar-brand {
    float: left;
    display: block;
    font-size: 24px;
    font-weight: 700;
    padding-left: 0;
    color: #fff;
    text-transform: uppercase;
    font-family: "Open Sans", Arial, sans-serif;
}

@media screen and (max-width: 912px) {
    #header .navbar-brand {
        padding-left: 10px !important;
        padding-right: 0 !important;
    }
}

#header.navbar-fixed-top {
    position: fixed !important;
    background: #fff;
    -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.3);
    margin-top: 0px;
    top: 0;
}

#header.navbar-fixed-top #navbar li a {
    color: rgba(255, 255, 255, 0.5) !important;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

#header.navbar-fixed-top #navbar li a:hover {
    color: var(--theme-color);
}

#header.navbar-fixed-top #navbar li.active a {
    color: #fff !important;
}

#header.navbar-fixed-top #navbar li.active a span:before {
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    background-color: #fff;
}

@media screen and (max-width: 768px) {
    #header.navbar-fixed-top #navbar li.active a span:before {
        background-color: transparent;
    }
}

#header.navbar-fixed-top #navbar li.call-to-action a {
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    -ms-border-radius: 30px;
    border-radius: 30px;
}

#header.navbar-fixed-top #navbar li.call-to-action a:hover {
    background-color: var(--theme-color);
    color: #fff !important;
}

#header.navbar-fixed-top #navbar li.call-to-action a span:before {
    background-color: transparent;
}

#header .navbar-default {
    border: transparent;
    background: #1a1b1e;
    background: var(--theme-color);
    margin: 0;
    padding-left: 50px;
    padding-right: 50px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
}

@media screen and (max-width: 768px) {
    #header .navbar-default {
        margin-top: 0px;
        padding-right: 0px;
        padding-left: 0px;
    }
}

#header .navbar-default .brand-slogan {
    margin: 28px 0 0 15px;
    float: left;
    letter-spacing: 2px;
    color: #adadad;
}

#header .navbar-default .brand-slogan em {
    color: var(--theme-color);
    font-style: normal;
}

.lead {
    font-size: 18px;
}

img {
    margin-bottom: 40px;
}

.img-shadow {
    -webkit-box-shadow: 0px 3px 6px -1px rgba(0, 0, 0, 0.19);
    -moz-box-shadow: 0px 3px 6px -1px rgba(0, 0, 0, 0.19);
    -ms-box-shadow: 0px 3px 6px -1px rgba(0, 0, 0, 0.19);
    -o-box-shadow: 0px 3px 6px -1px rgba(0, 0, 0, 0.19);
    box-shadow: 0px 3px 6px -1px rgba(0, 0, 0, 0.19);
}

#home {
    background-color: transparent;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    width: 100%;
    color: #fff;
}

#home h2 {
    font-size: 18px !important;
    color: #a6192e !important;
}


#home a {
    color: rgba(255, 255, 255, 0.8) !important;
    text-decoration: underline;
}

#home a:hover {
    color: #fff;
    text-decoration: none;
}

#home .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    background: rgba(38, 39, 44, 0.0);
}

#home, #home .text-wrap {
    height: 900px;
}

#home .text-wrap {
    display: table;
    width: 100%;
    position: relative;
    z-index: 4;
}

#home .text-inner {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

#home .text-inner h1 {
    font-size: 40px;
    color: #a6192e;
    margin: 500px 0 20px 0;
    font-weight: 400;
}

#home .text-inner h2 {
    font-size: 20px;
    line-height: 30px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 60px 0;
}

#home .text-inner .call-to-action {
    display: block;
    width: 100%;
}

#home .text-inner .call-to-action a {
    text-decoration: none;
}

#home .text-inner .call-to-action a:hover {
    color: var(--theme-color) !important;
}

#home .text-inner .call-to-action a.demo {
    border: 2px solid #fff;
    text-decoration: none !important;
}

@media screen and (max-width: 768px) {
    #home .text-inner .call-to-action a.demo {
        margin-bottom: 20px;
    }
}

#home .text-inner .call-to-action a.demo:hover {
    background: rgba(255, 255, 255, 0.2);
}

#home .text-inner .call-to-action a.download {
    border: 2px solid var(--theme-color);
    background: var(--theme-color);
    text-decoration: none !important;
}

#services, #clients, #faq, #team, #trusted, #footer {
    padding: 5em 0;
}

@media screen and (max-width: 768px) {
    #services, #clients, #about, #explore, #faq, #team, #trusted, #footer {
        padding: 2em 0;
    }
}

#about {
    padding: 7em 0;
}

@media screen and (max-width: 768px) {
    #about {
        padding: 4em 0;
    }
}

.explore {
    padding-bottom: 40px;
}

.explore-bg-color {
    width: 100%;
    background: #1a1b1e;
    padding: 7em 0;
    margin-bottom: 0;
}

.mt {
    margin-top: 0px;
    margin-bottom: 80px;
}

.mt h4 {
    position: relative;
    padding-left: 40px;
    font-size: 20px;
}

.mt h4 i {
    position: absolute;
    left: 0;
    top: 0;
    color: var(--theme-color-secondary);
}

.mt > div {
    margin-bottom: 40px;
}

.mt .list-nav {
    margin: 50px 0 0 0;
    padding: 0;
}

.mt .list-nav li {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
}

.mt .list-nav li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: var(--theme-color-secondary);
}

.list-nav {
    margin: 30px 0 30px 0;
    padding: 0;
}

.list-nav li {
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: 14px;
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
}

.list-nav li i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    color: var(--theme-color-secondary);
}

#clients {
    background: #1a1b1e;
    padding: 7em 0;
}

@media screen and (max-width: 768px) {
    #clients {
        padding: 3em 0;
    }
}

#clients .wrap-clients {
    position: relative;
    width: 100%;
}

#clients .wrap-clients .clients-slide {
    text-align: center;
}

#clients .wrap-clients .clients-slide span {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-family: "Open Sans", Arial, sans-serif !important;
}

#clients .wrap-clients .clients-slide figure {
    /*margin-bottom: 20px;*/
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
}

#clients .wrap-clients .clients-slide figure img {
    margin: 0;
}

#clients .wrap-clients .clients-slide blockquote {
    border: none;
    margin: 0 auto;
    width: 72%;
    position: relative;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

@media screen and (max-width: 912px) {
    #clients .wrap-clients .clients-slide blockquote {
        width: 100%;
    }
}

#clients .wrap-clients .clients-slide blockquote p {
    font-style: normal;
    color: #fff;
    font-weight: 100;
    font-size: 20px;
    line-height: 1.6em;
}

#clients .wrap-clients .clients-slide blockquote:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: var(--theme-color-secondary);
    left: 50%;
    margin-left: -25px;
    bottom: 0;
}

#clients .wrap-clients .clients-slide.active {
    display: block;
}

#clients .wrap-clients .arrow-thumb {
    position: absolute;
    top: 40%;
    display: block;
    width: 100%;
}

#clients .wrap-clients .arrow-thumb a {
    font-size: 32px;
    color: #dadada;
}

#clients .wrap-clients .arrow-thumb a:hover, #clients .wrap-clients .arrow-thumb a:focus, #clients .wrap-clients .arrow-thumb a:active {
    text-decoration: none;
}

.getting-started {
    background: var(--theme-color);
    padding: 60px 0 40px 0;
}

.getting-started h3 {
    color: #fff;
}

.getting-started p {
    color: rgba(255, 255, 255, 0.8);
}

.getting-started .call-to-action {
    display: block;
    width: 100%;
    float: left;
}

@media screen and (max-width: 912px) {
    .getting-started .call-to-action {
        float: none !important;
        width: 100%;
        text-align: left !important;
    }
}

@media screen and (max-width: 912px) {
    .getting-started .call-to-action a.sign-up {
        float: left !important;
    }
}

.services .box-services {
    position: relative;
    margin-bottom: 70px;
}

.services .box-services i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 38px;
    color: var(--theme-color-secondary);
}

.services .post {
    padding-left: 75px;
}

.services .post h3 {
    font-size: 18px;
    margin-bottom: 15px;
}

.services .call-to-action .btn-learn {
    padding: 12px 30px;
    background: var(--theme-color-secondary);
    color: #fff;
}

.box-faq {
    margin-bottom: 60px;
}

.box-faq h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

.partner-logo {
    margin-bottom: 30px;
    float: left;
    width: 100%;
    vertical-align: middle;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.section-heading {
    float: left;
    width: 100%;
    padding-bottom: 50px;
    margin-bottom: 0px;
    clear: both;
}

.section-heading h2 {
    margin: 0 0 0 0;
    font-size: 26px;
    font-weight: 400;
    position: relative;
    display: block;
    padding-bottom: 10px;
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .section-heading h2 {
        font-size: 28px;
    }
}

.section-heading h3 {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #555863;
    position: relative;
    display: block;
    padding-bottom: 30px;
}

.section-heading h3:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 2px;
    background: var(--theme-color);
    left: 50%;
    margin-left: -25px;
    bottom: 0;
}

@media screen and (max-width: 768px) {
    .section-heading h3 {
        font-size: 16px !important;
        line-height: 28px;
    }
}

#footer {
    background: #26272c;
}

#footer a {
    color: #74889e;
}

#footer a:hover {
    color: #fff !important;
    text-decoration: underline;
}

#footer .section-title {
    font-size: 22px;
    color: #fff;
    position: relative;
    padding-bottom: 20px;
}

#footer .section-title:after {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    display: block;
    width: 35px;
    height: 2px;
    background: var(--theme-color-highligt);
}

#footer p {
    color: #a0a1ac;
}

#footer .copy-right {
    position: relative;
    padding-top: 20px;
    margin-top: 40px;
}

#footer .copy-right:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    display: block;
    width: 35px;
    height: 2px;
    background: var(--theme-color-highligt);
}

#footer .contact-info {
    margin: 0 0 60px 0;
    padding: 0;
    color: #a0a1ac;

}

#footer .contact-info li {
    font-size: 14px;
    list-style: none;
    margin: 0 0 20px 0;
    position: relative;
    padding-left: 40px;
}

#footer .contact-info li a {
    color: var(--theme-color-highligt);
}

#footer .contact-info li i {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    color: #848694;
}

#footer .contact-form .form-group input[type="name"],
#footer .contact-form .form-group input[type="text"],
#footer .contact-form .form-group input[type="email"],
#footer .contact-form .form-group textarea {
    font-size: 14px;
}

#footer .contact-form .form-group input[type="name"]::-webkit-input-placeholder,
#footer .contact-form .form-group input[type="text"]::-webkit-input-placeholder,
#footer .contact-form .form-group input[type="email"]::-webkit-input-placeholder,
#footer .contact-form .form-group textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#footer .contact-form .form-group input[type="name"]:-moz-placeholder,
#footer .contact-form .form-group input[type="text"]:-moz-placeholder,
#footer .contact-form .form-group input[type="email"]:-moz-placeholder,
#footer .contact-form .form-group textarea:-moz-placeholder {
    /* Firefox 18- */
    color: rgba(255, 255, 255, 0.5);
}

#footer .contact-form .form-group input[type="name"]::-moz-placeholder,
#footer .contact-form .form-group input[type="text"]::-moz-placeholder,
#footer .contact-form .form-group input[type="email"]::-moz-placeholder,
#footer .contact-form .form-group textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: rgba(255, 255, 255, 0.5);
}

#footer .contact-form .form-group input[type="name"]:-ms-input-placeholder,
#footer .contact-form .form-group input[type="text"]:-ms-input-placeholder,
#footer .contact-form .form-group input[type="email"]:-ms-input-placeholder,
#footer .contact-form .form-group textarea:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}

#footer .contact-form .form-group input {
    color: #fff;
    border: none;
    background: #3e3f47;
    box-shadow: none;
}

#footer .contact-form .form-group textarea {
    color: #fff;
    border: none;
    background: #3e3f47;
    box-shadow: none;
}

#footer #btn-submit {
    color: rgba(255, 255, 255, 0.9) !important;
    background: var(--theme-color) !important;
}

.nav-toggle {
    width: 25px;
    height: 25px;
    cursor: pointer;
    text-decoration: none;
}

.nav-toggle.active i::before, .nav-toggle.active i::after {
    background: #fff;
}

.nav-toggle:hover, .nav-toggle:focus, .nav-toggle:active {
    outline: none;
    border-bottom: none !important;
}

.nav-toggle i {
    position: relative;
    display: -moz-inline-stack;
    display: inline-block;
    zoom: 1;
    *display: inline;
    width: 25px;
    height: 2px;
    color: #fff;
    font: bold 14px/.4 Helvetica;
    text-transform: uppercase;
    text-indent: -55px;
    background: #fff;
    transition: all .2s ease-out;
}

.nav-toggle i::before, .nav-toggle i::after {
    content: '';
    width: 25px;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}

.nav-toggle i::before {
    top: -7px;
}

.nav-toggle i::after {
    bottom: -7px;
}

.nav-toggle:hover i::before {
    top: -10px;
}

.nav-toggle:hover i::after {
    bottom: -10px;
}

.nav-toggle.active i {
    background: transparent;
}

.nav-toggle.active i::before {
    top: 0;
    -webkit-transform: rotateZ(45deg);
    -moz-transform: rotateZ(45deg);
    -ms-transform: rotateZ(45deg);
    -o-transform: rotateZ(45deg);
    transform: rotateZ(45deg);
}

.nav-toggle.active i::after {
    bottom: 0;
    -webkit-transform: rotateZ(-45deg);
    -moz-transform: rotateZ(-45deg);
    -ms-transform: rotateZ(-45deg);
    -o-transform: rotateZ(-45deg);
    transform: rotateZ(-45deg);
}

.nav-toggle {
    position: absolute;
    top: 6px;
    right: 15px;
    z-index: 21;
    padding: 6px 0 0 0;
    display: block;
    margin: 0 auto;
    display: none;
    height: 44px;
    width: 25px;
    border-bottom: none !important;
}

@media screen and (max-width: 768px) {
    .nav-toggle {
        display: block;
    }
}


.btn {
    margin-right: 4px;
    margin-bottom: 4px;
    font-family: "Droid Sans", Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    padding: 8px 30px;
}

.btn.btn-md {
    padding: 8px 20px !important;
}

.btn.btn-lg {
    padding: 18px 36px !important;
}

.btn:hover, .btn:active, .btn:focus {
    box-shadow: none !important;
    outline: none !important;
}

.btn-white {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}

.btn-white:hover, .btn-white:focus, .btn-white:active {
    color: #000;
    background: #f2f2f2 !important;
    border-color: #f2f2f2 !important;
}

.btn-white.btn-outline {
    color: #fff;
    border: 2px solid #fff;
}

.btn-white.btn-outline:hover, .btn-white.btn-outline:focus, .btn-white.btn-outline:active {
    background: #fff;
    color: #000;
    border: 2px solid #fff;
}

.btn-outline {
    background: none;
    border: 2px solid gray;
    font-size: 16px;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
}

.btn-outline:hover, .btn-outline:focus, .btn-outline:active {
    box-shadow: none;
}

#map {
    width: 100%;
    height: 500px;
    position: relative;
}

@media screen and (max-width: 768px) {
    #map {
        height: 200px;
    }
}

.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
    opacity: 0;
    -webkit-backface-visibility: hidden;
    /* ideally, transition speed should match zoom duration */
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}

.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container,
.mfp-with-zoom.mfp-removing.mfp-bg {
    opacity: 0;
}

.js .to-animate,
.js .to-animate-2,
.js .to-animate-3,
.js .single-animate {
    opacity: 0;
}

@media screen and (max-width: 480px) {
    .col-xxs-12 {
        float: none;
        width: 100%;
    }
}

.row-bottom-padded-lg {
    padding-bottom: 7em;
}

@media screen and (max-width: 768px) {
    .row-bottom-padded-lg {
        padding-bottom: 2em;
    }
}

.row-bottom-padded-md {
    padding-bottom: 4em;
}

@media screen and (max-width: 768px) {
    .row-bottom-padded-md {
        padding-bottom: 2em;
    }
}

.row-bottom-padded-sm {
    padding-bottom: 2em;
}

@media screen and (max-width: 768px) {
    .row-bottom-padded-sm {
        padding-bottom: 2em;
    }
}

.animated {
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-controls .owl-dot span {
    background: #333333;
}

.owl-carousel .owl-controls .owl-dot span:hover, .owl-carousel .owl-controls .owl-dot span:focus {
    background: #4d4d4d;
}

.owl-carousel .owl-controls .owl-dot:hover span, .owl-carousel .owl-controls .owl-dot:focus span {
    background: #4d4d4d;
}

.owl-carousel .owl-controls .owl-dot.active span {
    background: transparent;
    border: 2px solid var(--theme-color-secondary);
}

/*# sourceMappingURL=style.css.map */


#cicad-features {
    clear: both;
    position: relative;
}
#cicad-products,
#cicad-services,
.cicad-section {
    padding: 7em 0;
    clear: both;
    position: relative;
}

@media screen and (max-width: 768px) {
    #cicad-features,
    #cicad-products,
    #cicad-services,
    #cicad-footer,
    .cicad-section {
        padding: 3em 0;
    }
}

#cicad-features.border-bottom,
#cicad-products.border-bottom,
#cicad-services.border-bottom,
#cicad-footer.border-bottom,
.cicad-section.border-bottom {
    border-bottom: 1px solid #d9d9d9;
}

.cicad-container {
    max-width: 1140px;
    position: relative;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}


.cicad-heading {
    margin-bottom: 5em;
}

.cicad-heading.cicad-heading-sm {
    margin-bottom: 2em;
}

.cicad-heading h2 {
    font-size: 36px;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: bold;
    color: #000;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 10px;
}

.cicad-heading h2:before {
    position: absolute;
    bottom: 0;
    content: "";
    width: 50px;
    margin-left: -25px;
    height: 2px;
    left: 50%;
    background: var(--theme-color-highligt);
}

.cicad-heading p {
    font-size: 20px;
    line-height: 1.5;
    color: #1a1a1a;
}

.feature-center {
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    float: left;
    width: 100%;
    margin-bottom: 40px;
}

@media screen and (max-width: 768px) {
    .feature-center {
        margin-bottom: 50px;
    }
}

.feature-center .icon {
    width: 90px;
    height: 90px;
    border: 1px solid #d6d6d6;
    display: table;
    text-align: center;
    margin: 0 auto 30px auto;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}

.feature-center .icon i {
    display: table-cell;
    vertical-align: middle;
    height: 90px;
    font-size: 40px;
    line-height: 40px;
    color: var(--theme-color-highligt);
}

.feature-center p, .feature-center h3 {
    margin-bottom: 30px;
}

.feature-center h3 {
    font-size: 18px;
    color: #000;
    position: relative;
}


.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}


@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

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

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



@keyframes slideOutUp {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

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



@keyframes fadeInUp {
    from {
        opacity: 0;
        /*-webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0);*/
        -webkit-transform: translate3d(0, 50px, 0);
        transform: translate3d(0, 50px, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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



@keyframes fadeInLeft {
    from {
        opacity: 0;
        /*-webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);*/
        -webkit-transform: translate3d(-50px, 0, 0);
        transform: translate3d(-50px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        /*-webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);*/
        -webkit-transform: translate3d(50px, 0, 0);
        transform: translate3d(50px, 0, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

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


@keyframes bounceIn {
    from, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3);
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97);
    }

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

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