@import url("https://fonts.googleapis.com/css?family=Roboto:400,500|Work+Sans:400,500,600|Open+Sans:400,700,800&display=swap");

/* GENERAL */
body {
    font-family: "Roboto", sans-serif;
    color: #282828 !important;
    font-size: 14px;
    background-color: #d6d6d6;
}

.wrapper {
    margin: 0 auto;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Work Sans", sans-serif;
}

a {
    text-decoration: none !important;
    outline: none;
}
  
p {
    line-height: 1.8;
}

.rounded {
    border-radius: 4px !important;
}

.btn-default {
    color:#ffffff;
    border-radius: 0px;
    background-color:#ff7315;
    padding: 12px 24px;
    font-size: 14px;
    letter-spacing: 0.5px;
    border-radius: 4px !important;
}

.btn-rounded {
    border-radius: 30px !important;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.btn-default.focus,
.btn-default:active,
.open > .dropdown-toggle .btn-default {
    color: #ffffff;
    background-color: #ff7315;
}

/* NAVBAR */
.navbar-default {
    padding: 30px 0px;
    border-radius: 0px;
    z-index: 999;
    margin-bottom: 0px;
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    margin: 0 auto;
    transition: 0.5s;
}

.navbar-default .navbar-nav li a {
    font-family: "Work Sans", sans-serif;
    line-height: 26px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    text-transform: capitalize;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    background-color: transparent !important;
    padding: 6px 0;
    margin: 0 10px;
    font-weight: 700;
}

.sticky-white {
    margin-top: 0px;
    padding: 8px 0px;
    background-color: #fffffffd;
    -webkit-box-shadow: 0 10px 33px rgba(140, 140, 140, 0.1);
    box-shadow: 0 10px 33px rgba(140, 140, 140, 0.1);
    color: #000 !important;
}

.sticky-white .navbar-nav li a.active{
    color: #ff7315 !important;
}

.sticky-white .navbar-nav li a {
    color: #282828 !important;
}

.sticky-white.navbar-default .navbar-nav li.active a,
.sticky-white.navbar-default .navbar-nav li a:hover,
.sticky-white.navbar-default .navbar-nav li a:active {
    color: #ff7315 !important;
}

section#about-section:hover ~ nav a[href="about-section"] {
    color: #ff7315 !important;
}

.navbar-toggler {
    font-size: 24px;
    margin-top: 5px;
    margin-bottom: 0px;
    color: #282828;
}

.navbar .nav-logo {
    float: left;
}

.navbar .nav-logo img {
    width: 120px;
    transition: 0.5s;
}

.navbar-default .navbar-nav li.active a,
.navbar-default .navbar-nav li a:hover,
.navbar-default .navbar-nav li a:active {
    color: #ffffff !important;
}

.navbar-toggle {
    font-size: 24px;
    margin-top: 5px;
    margin-bottom: 0px;
    color: #ffffff;
}

.navbar-contacts {
    margin-left: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.navbar-contacts .ct-btn {
    margin-left: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ffff;
    display: flex;
    align-items: center;
    position: relative;
}

.navbar-contacts .ct-btn i {
    font-size: 24px;
    color: #ffff;
}

.sticky-white .navbar-contacts {
    margin-left: 40px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

.sticky-white .navbar-contacts .ct-btn {
    margin-left: 10px;
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #ff7315 !important;
    display: flex;
    align-items: center;
    position: relative;
}

.sticky-white .navbar-contacts .ct-btn i {
    font-size: 24px;
    color: #ff7315 !important;
}

/* HOME */
.home-section {
    background: #1e2433;
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 180px 0px 150px 0px;
}

.bg-home-overlay {
    background: url("../images/fingers-typing-01.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: absolute;
    opacity: .7;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.home-center-content {
    display: table;
    width: 100%;
    height: 100%;
}

.home-description {
    display: table-cell;
    vertical-align: middle;
}

.home-vertical-align {
    display: -moz-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.home-title {
    font-size: 50px;
    color: #ffffff;
    max-width: 500px;
    font-weight: 700;
    line-height: 1.4;
}

.home-descript {
    line-height: 1.8;
}

/* HOME - Registration Form */
.home-registration-form {
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 3px 0px #d2d2d2;
    box-shadow: 0px 0px 3px 0px #d2d2d2;
    width: 600px;
}
  
.home-registration-form .registration-form label {
    font-size: 13px;
}

.registration-form .registration-input-box {
    border: none;
    border-radius: 5px;
    color: #999;
    height: 45px;
    border: 1px solid #e0e0e0 !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/* ABOUT */
.about-section {
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.bg-overlay-about {
    background: url("../images/FgXTEc.png");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center;
    position: absolute;
    opacity: .3;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.about-vertical-content {
    display: -moz-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
}

.card {
    border: none;
    background: #ffffff;
}

.card-header {
    background-color: transparent;
    border: none;
}

.card-header h5 {
    font-size: 16px;
    color: #282828;
    font-family: "Roboto", sans-serif;
}

.accordion .card:last-of-type {
    border-bottom: none;
}

/* SERVICES */
.services-section {
    background: #f4f4f4;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.services-overlay {
    background: #337ab7;
}

.services-title {
    font-size: 32px;
    font-weight: 700;
}

.services-box {
    padding: 15px;
}

.services-icon i {
    font-size: 40px;
    color: #ff7315 !important;
}

/* PRICING */
.pricing-section {
    background: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.price-title-heading {
    font-size: 32px;
    font-weight: 700;
}

.price-box {
    padding: 40px 30px;
    border: 2px solid #ff7315;
    border-radius: 10px;
}

.pricing-name span {
    font-size: 13px;
}

.plan-price {
    margin: 20px -30px;
    padding: 20px 0px 10px 0px;
    position: relative;
    background-color: #f4f4f4;
}

.plan-price span {
    font-size: 15px;
    color: #282828;
    font-weight: 400;
}

.plan-price h2 {
    font-size: 44px;
    font-weight: 700;
    color: #ff7315 !important;
}

.plan-price .valor {
    color: #282828;
    font-size: 20px;
    display: inline-block;
    -webkit-transform: translateY(-20px) translateX(5px);
    transform: translateY(-20px) translateX(5px);
}

.price-features i {
    height: 20px;
    width: 20px;
    display: inline-block;
    text-align: center;
    line-height: 20px;
    font-size: 14px;
    border-radius: 50%;
    margin-right: 20px;
    color: #ff7315;
    background-color: rgba(245, 87, 83, 0.1);
}

/* DEMO */
.demo-section {
    background-image: url("../images/rich_big_data_bg.png");
    background-size: cover;
    position: relative;
    background-position: center center;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.demo-section h4 {
    font-size: 17px;
}

/* CONTACT */
.contact-section {
    background-color: #f3f8fa !important;
    padding-top: 100px;
    padding-bottom: 100px;
    position: relative;
}

.contact-title {
    font-size: 32px;
    font-weight: 700;
}

.contact-descript {
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    padding-right: 5px;
    font-family: 'Open Sans', sans-serif;
}

.contact-text h2 {
    font-weight: 700;
    margin-bottom: 38px;
}

.contact-text p {
    margin-bottom: 30px;
}

.contact-text ul {
    margin-bottom: 40px;
    list-style: none;
}

.contact-text ul li {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-text ul li a {
    text-decoration: none;
    color: #222831;
}

.contact-text ul li i {
    font-size: 29px;
    color: #f45905;
    display: inline-block;
    width: 41px;
    position: relative;
    top: 5px;
    font-weight: 400;
}

.contact-form {
    padding-top: 0;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    height: 59px;
    border: none;
    padding: 0 27px;
    margin-bottom: 30px;
    font-size: 14px;
    font-style: italic;
    color: #222831;
}

.contact-form textarea {
    height: 222px;
    padding: 20px 27px 10px;
    margin-bottom: 35px;
    resize: none;
}

.submitBnt {
    color: #ffffff !important;
    font-weight: 600;
    font-size: 17px !important;
}

.submitBnt:hover {
    background: #222831;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 18px !important;
}

/* FOOTER */
.bg-footer {
    background: #1e2433;
    background-size: cover;
    background-position: center center;
    position: relative;
    padding: 20px;
}

.footer-content {
    color: #f4f4f4;
}

/* Scroll Top */
.scroll-top {
    display: none;
    position: fixed;
    bottom: 18px;
    left: 18px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: #ff7315;
    color: white;
    cursor: pointer;
    padding: 5px 12px;
    border-radius: 10px;
    font-size: 22px;
}

.scroll-top:hover {
    transition: .5s;
    background: #f45905;
}

@media (min-width: 991px) and (max-width: 1200px) {
    .navbar-default .navbar-nav li a{
        margin: 0 !important;
    }

    .sticky-white .navbar-contacts {
        margin-left: 20px !important;
    }

    .navbar-contacts {
        display: inline-table;
    }
}

@media (max-width: 1000px) {
    .navbar-default {
        margin-top: 0px;
        padding: 15px 0px !important;
        background-color: #ffffff !important;
        -webkit-box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
        box-shadow: 0 10px 33px rgba(0, 0, 0, 0.1);
        color: #ffffff !important;
    }

    .navbar-default .navbar-nav {
        margin-top: 0px;
    }

    .navbar-default .navbar-nav li.active {
        border-color: transparent;
    }

    .navbar-default .navbar-nav li a {
        -webkit-transition: all 0.4s;
        transition: all 0.4s;
        color: #282828 !important;
        margin: 0px;
    }

    .navbar-default>.container {
        width: 90%;
    }

    .navbar-default .navbar-nav li.active a,
    .navbar-default .navbar-nav li a:hover,
    .navbar-default .navbar-nav li a:active {
        color: #ff7315 !important;
    }

    .navbar-toggler {
        font-size: 24px;
        margin-top: 0px;
        margin-bottom: 0px;
        color: #282828;
    }

    .navbar-contacts {
        margin-top: 15px;
        display: flex !important;
        justify-content: right !important;
    }

    .navbar-contacts .ct-btn {
        color: #ff7315 !important;
    }

    .navbar-contacts .ct-btn i {
        color: #ff7315 !important;
    }

    .home-content {
        text-align: center;
        margin-bottom: 60px;
    }

    .home-title {
        font-size: 52px;
        padding: 0 !important;
    }

    .home-descript {
        margin-bottom: 36px !important;
    }

    .home-button a {
        display: none !important;
        margin-bottom: 10px;
    }

    .demo-section h2 {
        margin: 0 !important;
    }

    .demo-section h4 {
        margin-bottom: 0 !important;
    }

    .demo-section .btn-demo {
        margin-top: 2rem !important;
    }

    .img-demo {
        width: 400px;
        padding-left: 70px !important;
        display: flex;
        justify-content: center;
    }

    .contact-text {
        padding: 0 !important;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .contact-text ul {
        padding: 0 !important;
        margin: 0 !important;
        left: 0 !important;
        right: 0 !important;
    }

    .contact-text ul li {
        padding: 0 !important;
        margin: 0 !important;
    }

    .custom-form {
        margin-top: 26px;
    }

    .contact-content {
        margin-top: 20px !important;
    }
}

@media (min-width: 200px) and (max-width: 991px) {
    .home-title {
        max-width: none;
    }
    /* .navbar-contacts {
        display: inline-table !important;
    } */
}