* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background-color: #ffffff;
    color: black;
}

/* -------------- NAVBAR START -------------- */
.navbar {
    background-color: #fff;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    padding: 1rem 0 1rem 0;
}

.navbar .navbar-nav li.nav-item {
    -webkit-transition: all 0.8ms ease;
    -o-transition: all 0.8ms ease;
    transition: all 0.8ms ease;
    padding: 1.5rem 0;
}

.navbar.active .navbar-nav li.nav-item {
    padding: 0.5rem 0;
}

.navbar svg.vahara_logo {
    shape-rendering: geometricPrecision !important;
    fill: black;
}

.navbar .navbar-brand {
    color: red;
}

.navbar .nav-link {
    color: black;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus {
    color: black;
    text-decoration: none;
}

.navbar .navbar-brand {
    color: black;
}

.navbar.active {
    background: #fff;
    padding: 0.5rem 0 0.5rem 0;
    -webkit-box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05) !important;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -2px rgba(0, 0, 0, .05) !important;
}

.navbar.active svg.vahara_logo {
    fill: black;
}

.navbar.active .nav-link {
    color: #555;
}

.navbar.active .nav-link:hover,
.navbar.active .nav-link:focus {
    color: #555;
    text-decoration: none;
}

.navbar.active .navbar-brand {
    color: #555;
}

.dropdown-toggle::after {
    display: none !important;
}

.navbar-toggler {
    border: 1px solid silver;
}

@media (max-width: 767.98px) {
    .nav-container {
        margin: 0 30px !important;
        max-width: 100% !important;
    }

    .navbar {
        padding: 1.5rem 0 !important;
        background: #fff;
    }

    .navbar svg.vahara_logo {
        fill: black;
    }

    .navbar-right {
        display: none;
    }

    .navbar.active {
        padding: 0.5rem 0 !important;
        background: #fff;
    }
}

/* -------------- NAVBAR END -------------- */

/* -------------- NAVBAR MEGAMENU DROPDOWN START -------------- */
@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 10%, 0);
        transform: translate3d(0, 10%, 0);
    }
    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none;
    }
}

.nav-megamenu-dropdown {
    position: static;
}

.nav-megamenu-dropdown .nav-megamenu-dropdown-menu {
    width: 100%;
    background: #fff;
    border-top: 1px solid #e9e9e9;
    -webkit-box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25) !important;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .25) !important;
}

.nav-megamenu-dropdown-menu .menu-column .nav-megamenu-submenu {
    margin-bottom: 20px;
}

.nav-megamenu-dropdown-menu .menu-column .nav-megamenu-submenu ul li {
    margin-bottom: 5px;
}

.nav-megamenu-dropdown-menu .menu-column .nav-megamenu-submenu .nav-link {
    color: #616161;
}

.nav-megamenu-dropdown-menu .menu-column {
    padding: 20px 0 5px 0;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.show > .nav-megamenu-dropdown-menu .menu-column {
    animation-name: fadeInUp;
    animation-duration: .2s;
    animation-iteration-count: 1;
    animation-timing-function: ease;
    animation-fill-mode: forwards;

    -webkit-animation-name: fadeInUp;
    -webkit-animation-duration: .2s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;

    -moz-animation-name: fadeInUp;
    -moz-animation-duration: .2s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: ease;
    -moz-animation-fill-mode: forwards;
}

/* -------------- NAVBAR MEGAMENU DROPDOWN END -------------- */

/* -------------- NAV-SIDEBAR START -------------- */
.nav-sidebar {
    width: 280px;
    position: fixed;
    top: 0;
    right: -280px;
    height: 100vh;
    z-index: 99999;
    background: #2732ff;
    color: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
    -webkit-box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}

.nav-sidebar.active {
    right: 0;
    overflow: hidden !important;
}

.nav-sidebar .nav-sidebar-close {
    display: block;
    position: absolute;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    top: 20px;
    right: 35px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.nav-sidebar-close:hover {
    color: #2732ff;
    background-color: #adcfff;
}

.nav-sidebar ul.nav-sidebar--menu {
    color: #adcfff;
    list-style-type: none;
    padding: 0;
    margin: 0 0 0 30px;
    font-size: 20px;
}

.nav-sidebar ul.nav-sidebar--menu li a {
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    text-decoration: none;
    color: #a7ccde;
    padding: 10px;
    display: block;
    font-size: 20px;
    line-height: 36px;
    font-weight: 500;
}

.nav-sidebar ul li a:hover {
    color: #fff;
}

/* -------------- NAV-SIDEBAR END -------------- */

/* -------------- CUSTOM CONTAINER START -------------- */
.custom-nested-container {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

@media (min-width: 576px) {
    .custom-nested-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .custom-nested-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .custom-nested-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .custom-nested-container {
        max-width: 1140px;
    }
}

/* -------------- CUSTOM CONTAINER END -------------- */

/* -------------- CONTENT START -------------- */
.content-container {
    margin-top: 40px;
    padding-bottom: 50px;
}

.hero-block {
    padding-top: 8rem;
}

.hero-block .heading {
    font-size: 2.5rem;
    color: #444;
    font-weight: 500;
}

.hero-block .text {
    max-width: 600px;
    color: #555;
    line-height: 1.4rem;
    margin: 40px auto 60px;
}

@media (max-width: 767.98px) {
    .content-container {
        padding: 0 30px;
    }
}

.content-outer {
    margin: 0;
    padding-bottom: 0px;
    margin-bottom: 505px;
    min-height: 110px;
    position: relative;
    z-index: 10;
    background: #ffffff;
    min-height: 100vh;
}

/* -------------- CONTENT END -------------- */

/* -------------- FOOTER START --------------*/
.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 1;
    background-color: #000000 !important;
    color: #ffffff !important;
}

.footer-content .row {
    margin: 80px 0;
}

.footer-content ul {
    list-style: none;
    padding-inline-start: 0;
}

.footer-content ul li {
    padding: 4px 0 !important;
}

.footer-content a {
    font-size: 14px;
    color: #ffffff;
}

.footer-content a:hover {
    text-decoration: none;
}

.footer-content h4 {
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    color: #a0a0a0;
    font-size: 14px;
}

.footer-content p {
    font-size: 14px;
    padding-bottom: 20px;
    line-height: 28px;
}

.copyright-social-section {
    border: none;
    background-color: #000000;
    border-top: 1px solid #ffffff2e;
    font-size: 12px;
    color: #777;
    padding: 18px 0;
}

.copyright-social-section p {
    padding: 0;
    margin: 0;
}

ul.social-links {
    float: right;
    margin: 0;
    padding: 0;
}

ul.social-links li {
    float: left;
    margin-left: 20px;
    list-style: none;
}

ul.social-links li a {
    display: block;
    line-height: 22px;
    height: 24px;
    position: relative;
    background-position: center top;
    color: #777;
    font-size: 18px;
}

ul.social-links li a:hover {
    color: #ffffff;
}

/* -------------- FOOTER END --------------*/
/* -------------- MOBILE NAV MENU START --------------*/
.jquery-accordion-menu ul ul.submenu,
.jquery-accordion-menu ul ul.submenu li ul.submenu {
    width: 100%;
    display: none;
    position: static;
    list-style: none;
    padding-inline-start: 0;
}

.jquery-accordion-menu ul ul.submenu li {
    clear: both;
    width: 100%
}

.jquery-accordion-menu ul ul.submenu li a {
    width: 100%;
    float: left;
    font-size: 16px;
    line-height: 22px;
    text-transform: capitalize;
    color: #c2cbff;
    letter-spacing: 0;
    font-weight: 500;
    border-top: none;
    position: relative;
    border-left: solid 6px transparent;
    -o-transition: border .2s linear;
    -moz-transition: border .2s linear;
    -webkit-transition: border .2s linear;
    transition: border .2s linear
}

.submenu-indicator-active {
    color: #ffffff !important;
    text-decoration: underline !important;
    text-underline-position: under;
}

.jquery-accordion-menu ul ul.submenu > li > a {
    padding-left: 30px
}

.jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > a {
    padding-left: 45px
}

.jquery-accordion-menu ul ul.submenu > li > ul.submenu > li > ul.submenu > li > a {
    padding-left: 60px
}

.jquery-accordion-menu ul li .jquery-accordion-menu-label,
.jquery-accordion-menu ul ul.submenu li .jquery-accordion-menu-label {
    min-width: 20px;
    padding: 1px 2px 1px 1px;
    position: absolute;
    right: 18px;
    top: 14px;
    font-size: 11px;
    font-weight: 800;
    color: #555;
    text-align: center;
    line-height: 18px;
    background: #f0f0f0;
    border-radius: 100%
}

.jquery-accordion-menu ul ul.submenu li .jquery-accordion-menu-label {
    top: 12px
}

.ink {
    display: block;
    position: absolute;
    background: rgba(255, 255, 255, .3);
    border-radius: 100%;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0)
}

.animate-ink {
    -webkit-animation: ripple .5s linear;
    -moz-animation: ripple .5s linear;
    -ms-animation: ripple .5s linear;
    -o-animation: ripple .5s linear;
    animation: ripple .5s linear
}

.mobile-top-margin {
    margin-top: 100px !important;
}


ul.off-canvas-social-links {
    margin-top: 80px;
    list-style: none;
    width: 250px;
    padding-inline-start: 0;
}

ul.off-canvas-social-links li {
    display: inline-block;
    padding: 0 6px 6px 0;
}

ul.off-canvas-social-links a {
    padding: 0 8px !important;
    opacity: 0.7 !important;
    font-size: 16px !important;
}

/* -------------- MOBILE NAV MENU END --------------*/

.light-theme {
    color: #4b555f;
    line-height: 28px;
    letter-spacing: 0.2px;
}

.content-wrapper p {
    margin-bottom: 20px;
    color: #4b555f;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0.2px;
    line-height: 28px;
}

.text-blue-plate strong {
    font-weight: 600;
}

.hero-block .heading {
    font-size: 2.5rem;
    color: #444;
    font-weight: 500;
    background: #f8f9fa;
    line-height: initial;
    padding: 5px;
}

.client-logos img, .client-logos {
    max-width: 100%;
    height: 40px;
}

.client-logos-icon {
    max-width: 100%;
    height: 40px;
    opacity: 0.5;
}

.client-logos-icon:hover {
    transition: all 0.3s ease-in-out;
    opacity: 1;
}

.quote-block-1 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    background-color: #ffffff !important;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    background-position: center;
    background-size: cover;
}

.horizontal-form input[type=submit],
.btn-submit-testimonial,
.about-07 button,
.hero-06 .btn-white,
.contact-04 button,
.split-section-04 .btn-primary,
.testimonials-16 .btn-primary,
.faq-o4 .btn-primary,
button.btn-blue-bg,
a.btn-blue-bg,
.contact-04-inputs input[type=submit],
.promo-10 button,
.contact-10-inputs input[type=submit] {
    background: #1c46f2;
    min-height: 48px;
    margin-bottom: 10px;
    margin-top: 14px !important;
    float: left;
    border-radius: 5px !important;
    font-size: 14px !important;
    letter-spacing: 2px !important;
    cursor: pointer !important;
    font-weight: 500 !important;
    color: #ffffff;
    border: none;
}

.contact-04-inputs input[type=submit],
.contact-10-inputs input[type=submit] {
    width: 48% !important;
}

.horizontal-form input[type=submit] {
    width: 15% !important;
}

.btn-submit-testimonial,
.about-07 button {
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 12px !important;
}

.btn-submit-testimonial:focus,
.btn-submit-testimonial:hover,
.contact-04 button:hover,
.contact-04 button:focus,
.hero-06 .btn-white:focus,
.hero-06 .btn-white:hover,
.hero-19 .btn-hero-19:focus,
.hero-19 .btn-hero-19:hover,
.hero-02 .btn-primary:focus,
.hero-02 .btn-primary:hover,
.hero-12 .btn-primary:focus,
.hero-12 .btn-primary:hover,
.pricing-05 .btn-pricing:hover,
.pricing-05 .btn-pricing:focus,
.promo-10 button:focus,
.promo-10 button:hover,
.split-section-04 .btn-primary:hover,
.split-section-04 .btn-primary:focus,
button.btn-blue-bg:hover,
button.btn-blue-bg:focus,
a.btn-blue-bg:hover,
a.btn-blue-bg:focus,
.testimonials-16 .btn-primary:hover,
.testimonials-16 .btn-primary:focus,
.faq-o4 .btn-primary:hover,
.faq-o4 .btn-primary:focus,
.promo-11 button:hover,
.promo-11 button:focus,
.about-07 button:hover,
.about-07 button:focus {
    transform: translateY(-2px);
    transition: all .2s;
    background: #1c46f2 !important;
    box-shadow: none !important;
    border-color: #1c46f2 !important;
}

.contact-04-inputs input[type=submit]:hover,
.horizontal-form input[type=submit]:hover,
.contact-10-inputs input[type=submit]:hover {
    background: #1d43dd;
    transform: translateY(-3px) !important;
    box-shadow: 0px 9px 17px -3px rgba(0, 0, 0, 0.13) !important;
}

a.btn-blue-bg, .btn-submit-testimonial {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    align-items: center;
}

.horizontal-form input[type=text] {
    width: 30% !important;
    float: left;
    margin-right: 2% !important;
    transition: all 0.2s ease-in-out;
    border-radius: 0;
    border: 2px solid #e9ecef;
    padding: 15px 20px;
    line-height: 18px;
    font-weight: 500;
    font-style: normal;
    color: #4b555f;
    font-size: 13px;
    opacity: 1;
    visibility: visible;
    margin-bottom: 10px;
    height: auto;
}

.horizontal-form input[type=text]:focus {
    border-bottom: 1px solid #1c46f2 !important;
    transition: all 0.2s ease-in-out;
    box-shadow: none;
    outline: none;
}

.feature-01-section {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
    color: #ffffff;
}

.feature-01-section a.learn-more {
    color: #dcdff2;
    text-decoration: none;
    font-weight: 600;
    padding-bottom: 2px;
    border-bottom: 2px solid #6f162c;
    font-size: 15px;
}

.feature-01-section p,
.feature-01-section i {
    color: #ffffff;
}

.quote-3 {
    background-color: #f8f8f8 !important;
    border-top: 1px solid #e9ecef !important;
    border-bottom: 1px solid #e9ecef !important;
}

.quote-content h5 {
    line-height: 18px;
    letter-spacing: 2px;
    font-weight: 700;
    font-style: normal;
    font-size: 12px;
    text-transform: uppercase;
}

.quote-content {
    padding-top: 220px;
    padding-bottom: 35px;
}

.hero-middle-content {
    margin-left: auto;
    margin-right: auto;
    z-index: 1;
}

.hero-04 {
    padding-top: 100px !important;
    padding-bottom: 50px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    min-height: 100vh;
    color: #ffffff;
    text-align: center;
    display: flex;
    flex-flow: column nowrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    transition: opacity .5s ease;
    overflow: hidden;
}

.hero-04:after {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #1952efbf;
}

.hero-04 p {
    color: #dcdff2;
    text-align: center;
    letter-spacing: 0.2px;
}

.contact-04-inputs input[type=text],
.contact-10-inputs input[type=text] {
    width: 48% !important;
}

.hero-04 h1 {
    line-height: 72px;
    letter-spacing: -1px;
    font-weight: 700;
    font-style: normal;
    font-size: 60px;
}

.contact-04-inputs input[type=text],
.contact-10-inputs input[type=text],
textarea {
    float: left;
    margin-right: 2% !important;
    border: 2px solid #e9ecef;
    padding: 20px 20px;
    line-height: 18px;
    font-weight: 500;
    font-style: normal;
    color: #4b555f;
    font-size: 13px;
    border-radius: 0;
    margin-bottom: 10px;
}

.contact-04-inputs textarea,
.contact-10-inputs textarea {
    padding: 15px 20px;
    line-height: 18px;
    width: 98% !important;
}

.contact-04-inputs input[type=text]:focus,
.contact-04-inputs textarea:focus,
.contact-10-inputs input[type=text]:focus,
.contact-10-inputs textarea:focus {
    transition: all 0.2s ease-in-out;
    box-shadow: none;
    outline: none;
}

.testimonial-15 h5 {
    color: #1c46f2;
}

.hero-06, .hero-29 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    min-height: unset !important;
}

.hero-29 {
    padding-top: 220px !important;
    padding-bottom: 150px !important;
}

.hero-06 .btn-white {
    font-weight: 500 !important;
    background-color: white !important;
    float: none;
    color: #1c46f2 !important;
    margin-top: 0 !important;
}

.hero-06 .btn-white:focus,
.hero-06 .btn-white:hover {
    background-color: white !important;
    background: white !important;
    text-decoration: none;
}

.hero-06:after {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #1952efbf;
}

/*Features-11*/
.features-11 h4 {
    color: #323c47;
}

.bg-black {
    background-color: black;
}

.split-section-07 a:hover {
    text-decoration: none;
    padding-bottom: 1px;
    border-bottom: 2px solid #2f6ce6;
}

.split-section-07 p,
.hero-19 p {
    line-height: 28px;
    letter-spacing: 0.2px;
}

.split-section-07 img {
    height: 100%;
    width: 100%;
}

.img-quote-04 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    height: 100%;
    width: 100%;
}

.quote-04 strong {
    color: rgb(28, 70, 242);
    font-weight: 600 !important;
    color: #4b555f;
}

.quote-4-border {
    height: 1px;
    border-top: 1px solid #ebebeb;
    display: block;
    position: relative;
    border-color: rgba(0, 0, 0, 0.05)
}

.quote-04 strong {
    font-weight: 600 !important;
    line-height: 28px;
    letter-spacing: 0.2px;
}

.hero-22 h2 {
    line-height: 48px;
    font-size: 36px;
    visibility: visible;
}

.hero-22, .hero-12 {
    padding-top: 80px !important;
    padding-bottom: 100px !important;
    background-color: #ffffff !important;
    position: relative;
    overflow: hidden;
    min-height: 100%;
    background-position: center;
    background-size: cover;
}

.hero-12, .hero-1 {
    min-height: 100vh;
}

.hero-22 a {
    color: #47535e;
}

.hero-22 a:hover {
    color: #1c46f2;
    text-decoration: none;
}

.hero-06 .btn-white,
.hero-19 .btn-hero-19,
.hero-02 .btn-primary,
.hero-12 .btn-primary,
.hero-22 button {
    font-size: 14px !important;
    letter-spacing: 2px !important;
    padding: 22px 80px 23px 80px !important;
    background-color: #1c46f2;
    border: none;
}


.hero-19 {
    padding-left: 74px;
    padding-right: 74px;
    padding-top: 150px !important;
    padding-bottom: 45px !important;
    background-color: #ffffff !important;
    background-position: center !important;
    background-size: cover !important;

    background-repeat: no-repeat !important;
    min-height: unset !important;
}

.hero-19:after {
    position: absolute;
    content: " ";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-color: #ffffffbf;
}

.hero-19 p {
    color: #4b555f;
}

.light-top-border {
    border-top: 1px solid #ebebeb;
    position: relative;
    border-color: #e9ecef;
    z-index: 1;
}


/*hero 02*/
.hero-02 {
    background-position: center !important;
    background-size: cover !important;
    padding-left: 65px !important;
    padding-right: 65px !important;
    height: 100vh !important;
}

.hero-02 p {
    color: #dcdff2;
    line-height: 28px;
    letter-spacing: 0.2px;
}

.hero-12 h1 {
    font-size: 100px;
    line-height: 1;
    text-align: center;
}

.hero-12 h3 {
    color: #292929;
    font-weight: 400;
}


.team-08-container:hover .team-08-image-overlay {
    height: 100%;
}

.team-08-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.85);
    overflow: hidden;
    width: 100%;
    height: 0;
    transition: .2s ease;
}

.team-08-overlay-icon {
    color: #47535e;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.team-08-image-container {
    height: 288px;
}

.team-08 p {
    letter-spacing: 0.2px;
    line-height: 28px;
}

.pricing-05 .btn-pricing {
    font-size: 11px !important;
    letter-spacing: 1.5px !important;
    padding-left: 30px !important;
    padding-right: 30px !important;
    border-width: 2px;
    border-radius: 5px;
    padding-top: 10px;
    padding-bottom: 10px;
    border-color: rgb(255, 255, 255);
    color: rgb(255, 255, 255);
    background-color: transparent;
}


.process-01 h3 {
    font-weight: 400;
    color: #292929;
}

a.read-link {
    color: #47535e;
    text-decoration: none;
    padding-bottom: 1px;
    position: relative;
}

a.read-link::before {
    border-top: 2px solid #7b2a38;
}

a.read-link::after {
    background: rgba(123, 42, 56, 0.1);
}

a.read-link {
    position: relative;
    display: inline-block;
    outline: none;
    vertical-align: bottom;
    text-decoration: none;
    white-space: nowrap;
}

a.read-link::before,
a.read-link::after {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    font-smoothing: antialiased;
}

a.read-link {
    overflow: hidden;
}

a.read-link:hover {
    color: #1c46f2;
}

a.read-link::before,
a.read-link::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: '';
    -webkit-transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
}

a.read-link::before {
    background: transparent;
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
    -webkit-transform: translateY(calc(100% - 3px));
    transform: translateY(calc(100% - 3px));
}

a.read-link:hover::before,
a.read-link:focus::before {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
}

a.read-link:hover::before,
a.read-link:focus::before,
a.read-link:hover::after,
a.read-link:focus::after {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}

a.read-link::after { /*	z-index: -1;*/
    -webkit-transform: translateY(-100%); /* transform: translateY(-100%); */
}

a.read-link:hover::after,
a.read-link:focus::after {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

/*contact-04*/
.contact-04 h4 {
    color: #292929;
}

.contact-04 p {
    color: #4b555f;
}

.contact-04 button {
    width: 48%;
}

.split-section-04 .btn-primary,
button.btn-blue-bg,
a.btn-blue-bg,
.promo-10 button {
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 30px !important;
    padding-right: 30px !important;
    font-size: 12px !important;
    border: 1px solid transparent !important;
    text-decoration: none;
    margin-top: 0 !important;
    margin-bottom: 22px;
}

.split-section-04 p {
    line-height: 28px;
    letter-spacing: 0.2px;
    color: #4b555f;
}

.promo-10 h2 {
    line-height: 48px;
    letter-spacing: 0px;
    font-weight: 500;
    font-style: normal;
    font-size: 36px;
}

.promo-10 h6 {
    color: #dcdee0;
    text-transform: none;
    line-height: 18px;
    letter-spacing: 0.2px;
    font-weight: 600;
    font-style: normal;
    font-size: 12px;
    clear: both;
}

.service-04 h4 {
    color: #292929;
}

.service-04 .light-border {
    border-width: 2px !important;
    border-color: #e9ecef !important;
    border-style: solid !important;
    border-radius: 5px !important;
    height: 100%;
}

.service-04 .light-shadow-effect:hover, .testimonials-16 .light-shadow-effect:hover {
    box-shadow: 0px 30px 80px 0 rgba(20, 52, 92, 0.2);
    border-radius: 5px;
    border-color: #fff !important;
    background-color: #fff !important;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
}

.testimonials-12 h4, .promo-11 h4 {
    color: #292929;
}

.testimonials-12 p, .promo-11 p, .testimonials-16 p {
    letter-spacing: 0.2px;
    color: #4b555f;
}

.promo-11 p {
    line-height: 28px;
}

.testimonials-13 p {
    letter-spacing: 0.2px;
    color: #dcdff2;
}

.testimonials-13 strong {
    font-weight: 600;
}

.testimonials-13 .display-name {
    display: flex;
    align-items: center;
}

.testimonials-16 img {
    width: 100%;
}

.about-11, .about-11 h2 {
    color: #ffffff !important;
}

.hero-1 h1 {
    line-height: 72px;
    letter-spacing: -1px;
    font-weight: 700;
    font-style: normal;
    font-size: 60px;
}

.hero-1 h1 {
    font-weight: 400;
}

.hero-1 p {
    letter-spacing: 0.2px;
    line-height: 28px;
}

.hero-1 .btn-blue-bg {
    padding: 22px 80px 23px 80px !important;
}

.hero-1 .d-flex {
    align-items: center;
}

.hero-1 .read-link {
    color: #dcdff2;
    font-weight: 600;
    line-height: 28px;
}

a.read-link:hover {
    color: #dcdff2;
}

.hero-1 .read-link:before {
    border-top: 2px solid #fff;
}

.hero-1 .read-link:after {
    background: rgba(255, 255, 255, 0.1);
}

.hero-10 h1 {
    font-size: 200px;
    color: #ffffff;
    line-height: 1;
    text-align: center;
}

.hero-10 h3 {
    line-height: 36px;
    letter-spacing: 0px;
    font-weight: 400;
    font-style: normal;
    font-size: 24px;
    color: #E7E7EF;
}

.promo-1 .num-rounded {
    font-size: 30px;
    border-radius: 50%;
    border: 2px solid;
    height: 48px;
    width: 48px;
    text-align: center;
    padding: 0;
    margin: 0;
    color: rgb(212, 216, 219);
    margin-bottom: 8px;
}

.promo-1 .num-rounded:hover {
    color: #1c46f2;
    transition: all 1s;
}

.promo-1 h4, .faq-o4 h4, .faq-o4 h2 {
    color: #292929;
}

.promo-1 p, .faq-o4 p {
    color: #4b555f;
    letter-spacing: 0.2px;
    line-height: 28px;
}

.pricing-7 {
    background-color: #f8f8f8 !important;
}

.pricing-7 h6 {
    color: #292929 !important;
}

.pricing-7 h5 {
    color: #1c46f2;
    font-weight: 400;
}

.pricing-7 .professional-section:hover {
    box-shadow: 0px 30px 80px 0 rgba(20, 52, 92, 0.2);
    border-radius: 5px;
    border-color: #fff !important;
    background-color: #fff !important;
}

.testimonial-15 .rounded-avatar-img {
    margin: auto;
    overflow: hidden;
    border-radius: 50%;
    display: flex;
    margin-top: 5px;
    justify-content: center;
    align-items: center;
}

.testimonial-15 .rounded-avatar-img {
    height: 64px;
    width: 64px;
}

.testimonial-15 .border-light-gray {
    height: 100%;
}

.testimonial-15 .testimonial-details {
    /*display: flex;
    flex-direction: column;
    justify-content: space-between;*/
}

.testimonial-15 .rounded-avatar-img img {
    border-radius: 0 !important;
}

.banner-image-200 {
    height: 200px;
    position: relative;
}

.banner-image-200 .vh-bg-image-layer-200, .vh-bg-image-layer-300-container, .banner-image-center .vh-bg-image-layer-200 {
    background-position: 50% 50%;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.banner-image-center .image-view-section {
    position: relative; padding-top: 115%;
}

.banner-image-center {
    position: relative;
}

.vh-bg-image-layer-300-container .vh-bg-image-layer-300 {
    height: 100%;
    background-position: 50% 50% !important;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
}

.vh-banner-300 {
    position: relative;
    height: 300px;
}

.vh-banner-300 .vw-inner {
    position: relative;
    z-index: 3;
    color: #FFFFFF;
}

.vh-banner-300 .vw-inner h2 {
    color: #FFFFFF;
    font-weight: 600;
}

.vw-has-image-opacity .vw-image-opacity {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 2;
}

.vh-banner-300 .vw-inner .container {
    max-width: 580px;
}

@media (min-width: 768px) {
    .team-08 .card.border-white {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 100%;
    }

    .team-08 .team-08-container {
        height: 100%;
        position: absolute;
    }

    .team-08 .team-08-container img {
        height: 100%;
        max-width: 100%;
        object-fit: cover;
    }
}

.product-feature-06 .flex-box, .product-feature-07 .flex-box {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    margin-left: -0.75rem;
    margin-right: -0.75rem;
}

.product-feature-06 .flexbox-content, .product-feature-07 .flexbox-content {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    min-width: 0;
    max-width: 100%;
    padding: 0 0.75rem;
}

.product-feature-06 .flexbox-content h4, .product-feature-07 .flexbox-content h4 {
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0;
    color: #333;
}

.product-feature-07 .flexbox-icon {
    width: 3rem;
    height: 2rem;
    padding: 0 0.5rem;
}

.product-feature-07 .flexbox-icon i {
    border: none;
    background-color: transparent !important;
    color: #1abc9c;
    border-radius: 0;
    font-size: 32px;
}

.product-feature-06 h2 {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
}

.product-feature-06 h2 + span {
    font-size: 20px;
    margin-top: 10px;
    font-weight: 300;
    color: #777;
}

.product-feature-06 .heading-block::after {
    content: '';
    display: block;
    margin-top: 30px;
    width: 40px;
    border-top: 3px solid #444;
    margin: 30px auto 0;
}

.product-feature-06 .flexbox-content p, .product-feature-07 .flexbox-content p {
    margin-top: 0.5rem;
    margin-bottom: 0;
    color: #999;
    line-height: 1.8;
    font-size: 16px;
}

.product-feature-06 .flexbox-icon {
    width: 5.5rem;
    height: 4rem;
    padding: 0 0.75rem;
}

.product-feature-06 .flexbox-icon a {
    text-decoration: none;
}

.product-feature-06 .flexbox-icon i {
    border-radius: 50%;
    background-color: #1abc9c;
    color: #ffffff;
    font-size: 28px;
    font-style: normal;
    line-height: 4rem;
    text-align: center;
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.product-feature-06 .flexbox-icon {
    width: 5.5rem;
    height: 4rem;
    padding: 0 0.75rem;
}

.min-vh-40 {
    min-height: 40vh !important;
}

.min-vh-100 {
    min-height: 100vh !important;
}

.slider-element-10 .text-stretch {
    font-weight: 700;
    font-size: 4rem;

}

.hero-2col-10 .content-wrap {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.hero-2col-10 h1 {
    font-size: 64px;
    font-weight: 700;
    color: #cccccc;
}

.hero-2col-10 i {
    position: relative;
    display: inline-block;
    font-size: 24px;
    width: 48px;
    line-height: 48px;
    height: 48px;
    vertical-align: middle;
    color: #555555;
}

.min-vh-50 {
    min-height: 50vh !important;
}

.portfolio-11 .portfolio-item {
    padding: 0;
    overflow: hidden;
    position: relative;
    line-height: normal;
}

.portfolio-11 .portfolio-desc {
    padding-left: 15px;
    padding-right: 15px;
    transition: all .3s ease-in-out;
    background-color: #fff;
    top: -100%;
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
    position: relative;
    z-index: 6;
    padding: 20px 15px;
    margin-top: -94px;
}

.portfolio-11 .bg-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    overflow: hidden;
    z-index: 5;
    transition: all .3s ease-in-out;
}

.bg-overlay, .bg-overlay-bg, .bg-overlay-content {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.overlay-trigger-icon {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 0.25rem;
    font-size: 18px;
    text-align: center;
    border-radius: 50%;
    -webkit-backface-visibility: hidden;
    transition: all .3s ease;
    opacity: 0;
    border: 1px solid #f8f9fa;
    color: #444;
}

.overlay-trigger-icon:hover {
    color: #444;
    border: 1px solid #dae0e5 !important
}

.portfolio-11 h2 {
    font-size: 28px;
    margin-bottom: 0;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #333;
}

.portfolio-11 .heading-block::after {
    content: '';
    display: block;
    margin-top: 30px;
    width: 40px;
    border-top: 2px solid #444;
    margin: 30px auto 0;
}

.portfolio-11 .portfolio-item:hover .bg-overlay-bg.dark {
    background-color: rgba(0, 0, 0, .5);
}

.portfolio-11 .portfolio-item:hover .portfolio-desc {
    transition: all .3s ease;
    -webkit-transform: translateY(0);
    transform: translateY(0);
}

.portfolio-11 .portfolio-item:hover .overlay-trigger-icon {
    opacity: 1;
}

.portfolio-11 .portfolio-item:hover .portfolio-image img,
.portfolio-11 .portfolio-item:hover .bg-overlay {
    -webkit-transform: translateY(-15%);
    transform: translateY(-15%);
}

.bg-overlay-content {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    padding: 20px;
}

.portfolio-item .portfolio-image, .portfolio-item .portfolio-image > a {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    height: 100%;
}

.grid-inner {
    width: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    line-height: 0;
}


.portfolio-11 img {
    width: 100%;
    transition: all .3s ease-in-out;
    height: 100%;
}

.portfolio-11 .portfolio-desc h3 a {
    color: #444;
    line-height: 1.5;
}

.portfolio-11 .portfolio-desc h3 a:hover {
    color: #1abc9c;
    text-decoration: none;
}

.portfolio-11 .portfolio-desc h3 {
    margin: 0;
    padding: 0;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
}

.portfolio-11 .portfolio-desc span, .portfolio-11 .portfolio-desc span a {
    color: #888;
    font-size: 16px;
    line-height: 24px;
}

@media (min-width: 768px) {

    .slider-element-10 .text-stretch {
        width: calc(100% + 300px);
        z-index: 1;
    }

    .min-vh-md-100 {
        min-height: 100vh !important;
    }

    .text-md-end {
        text-align: right !important;
    }

    .team-08 .card.border-white {
        position: relative;
        width: 100%;
        height: 0;
        padding-bottom: 100%;
    }

    .team-08 .team-08-container {
        height: 100%;
        position: absolute;
    }

    .team-08 .team-08-container img {
        height: 100%;
        max-width: 100%;
        object-fit: cover;
    }
}

@media (max-width: 1200px) {
    .slider-element-10 .text-stretch {
        font-size: calc(1.575rem + 3.9vw);
    }
}

@media (max-width: 1439px) {
    .testimonial-15 .rounded-avatar-img {
        height: 56px;
        width: 56px;
    }

    .testimonial-15 .rounded-avatar-img img {
        width: 100%;
        height: auto;
    }

    .hero-19 {
        padding-left: 64.5px !important;
        padding-right: 64.5px !important;
    }

    .hero-02 {
        padding-left: 64.5px !important;
        padding-right: 64.5px !important;
        height: 100%;
    }
}

@media (max-width: 992px) {
    .testimonial-15 .rounded-avatar-img {
        height: 24px;
        width: 24px;
    }

    .hero-19, .hero-29 h1 {
        padding-left: 21px !important;
        padding-right: 21px !important;
    }

    .hero-02 {
        padding-left: 21px !important;
        padding-right: 21px !important;
        height: 100% !important;
    }

    .img-72 {
        width: 95% !important;
        height: auto !important;
    }
}

@media (max-width: 767.98px) {
    .testimonial-15 .testimonial-details {
        padding-top: 0 !important;
    }

    .testimonials-16 img {
        width: 150px;
    }

    .img-72 {
        width: auto !important;
        height: 72px !important;
    }

    .about-13 {
        padding-left: 53px;
        padding-right: 53px;
    }

    .about-icon {
        margin-bottom: 24px;
        margin-left: 12px;
    }

    .horizontal-form input[type=text],
    .contact-10-inputs input[type=text] {
        width: 100% !important;
    }

    .quote-content {
        padding-top: 150px;
    }

    .testimonial-15 .rounded-avatar-img {
        height: 64px;
        width: 64px;
    }

    .hero-19 {
        padding-left: 21px !important;
        padding-right: 21px !important;
    }

    .hero-02 {
        padding-left: 68.5px !important;
        padding-right: 68.5px !important;
    }

    .hero-29 h1 {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .card-img, .card-img-bottom, .team-08-container .card-img-top {
        width: 75%;
        height: auto;
    }

    .contact-04-inputs textarea,
    .contact-04-inputs input[type=text] {
        width: 100% !important;
        margin-right: 0 !important;
    }

    .contact-04-inputs button {
        width: 100% !important;
    }

    .hero-10 h1 {
        font-size: 65px;
    }
}

@media (min-width: 576px) {
    .hero-2col-10 .section-split {
        --section-width: 50%;
        --hover-width: 65%;
        --less-width: calc(100% - var(--hover-width));
        --hover-speed: 0.5s;
        --bg-opacity: 0.7;
        position: absolute;
        left: 0;
        top: 0;
        width: var(--section-width);
        background-repeat: no-repeat;
        background-size: auto 100%;
        background-position: center center;
        transition: width var(--hover-speed) ease;
    }

    .min-vh-sm-100 {
        min-height: 100vh !important;
    }

    .hero-2col-10 .section-split.split-right {
        left: auto;
        right: 0;
    }

    .hero-2col-10 .section-split:hover {
        width: var(--hover-width);
    }

    .section-split:hover ~ .section-split {
        width: var(--less-width);
    }
}

@media (max-width: 576px) {
    .hero-02 {
        padding-left: 53px !important;
        padding-right: 53px !important;
    }
}

@media (max-width: 480px) {
    .hero-02 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
}