﻿/* ***************************************** Common styles Block ******************************************* */

/*-------------------------------------------- Reset styles----------------------------------------------------------------*/
html {
    font-size: 16px;
    scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css?family=Lato:400,700|Poppins:400,500,700&display=swap');

* {
    -webkit-font-smoothing: antialiased;
}

body {
    overflow-x: hidden;
    overflow-y: auto;
    color: #1f345d;
    font-family: 'Open-Sans', sans-serif;
    font-weight: 400;
}

main {
    margin-top: 66px;
}

.btn:focus {
    outline: none;
    box-shadow: none;
}

::selection {
    background: black;
}

@media screen and (max-width: 991px) {
    .container {
        max-width: 98%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
    .container {
        max-width: 95%;
    }
}

.font-10 {
    font-size: 10px;
}

.font-12 {
    font-size: 12px;
}

.font-14 {
    font-size: 14px;
}

.font-16 {
    font-size: 16px;
}

.font-18 {
    font-size: 18px;
}

.grey-text {
    color: #8f929c;
}

.mr-5px {
    margin-right: 5px;
}

.ml-5px {
    margin-left: 5px;
}

.mr-10px {
    margin-right: 10px;
}

.ml-10px {
    margin-left: 10px;
}

.mr-15px {
    margin-right: 15px;
}

.ml-15px {
    margin-left: 15px;
}

.mr-20px {
    margin-right: 20px;
}

.ml-20px {
    margin-left: 20px;
}

h2 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: #1f345d;
    letter-spacing: 0.43px;
}

    h2.main-heading {
        font-size: 30px;
    }

h5 {
    font-family: 'Open-Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.08px;
    line-height: 30px;
    text-transform: uppercase;
}

@media screen and (min-width: 992px) {
    h2 {
        font-size: 32px;
    }

        h2.main-heading {
            font-size: 36px;
        }
}

.dialer-icon-img {
    width: 20px;
    height: 28px;
}

.success-message {
    font-family: 'Poppins';
    font-weight: 500;
    margin: 20px;
    font-size: 16px;
    color: #009d19;
    letter-spacing: 0.07px;
    line-height: 18px;
    text-align: center;
}

.error-message {
    font-family: 'Poppins';
    font-weight: 500;
    margin: 20px;
    font-size: 16px;
    color: #ec4c20;
    letter-spacing: 0.07px;
    line-height: 18px;
    text-align: center;
}
/* feature icons and colors */

.icon-block {
    height: 65px;
    width: 65px;
    border-radius: 100%;
    line-height: 65px;
    font-size: 24px;
    text-align: center;
}

    .icon-block.icon-green {
        background-color: #f1fff3;
        color: #95c898;
    }

    .icon-block.icon-orange {
        background-color: #fff8f3;
        color: #f7ac6c;
    }

    .icon-block.icon-darkgreen {
        background-color: #a2c5a7;
        color: #fff;
    }

    .icon-block.icon-darkorange {
        background-color: #f7ac6c;
        color: #fff;
    }

    .icon-block.icon-grey {
        background-color: #fafafa;
        color: #95c898;
    }

    .icon-block.icon-blue {
        background-color: #eef8ff;
        color: #527e9c;
    }

.text-green {
    color: #59985c;
}

.text-orange {
    color: #ab703d;
}

.text-blue {
    color: #527e9c;
}

/* primary buttons */

.link-solid {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fb776c;
}

.btn-solid {
    background-image: linear-gradient(-130deg, #fc4c82 25%, #fb776c 100%);
    border-radius: 2rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #ffffff;
    letter-spacing: 0.24px;
    text-align: center;
    text-transform: uppercase;
}

.m-for-mobile {
    margin-top: 10px;
}

@media screen and (min-width: 992px) {
    .header-btn-hide {
        transform: scale(0);
        transition: transform 0.2s;
    }

    .header-btn-show {
        margin: 0;
        transform: scale(1);
    }
}

.btn-solid.lg {
    width: 200px;
    height: 45px;
}

.btn-solid.md {
    width: 150px;
    height: 40px;
}

.btn-solid:hover {
    color: #fff;
}

.btn-solid.sm {
    min-width: 150px;
    height: 32px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-image: linear-gradient(145deg, #fb746d 25%, #fc4c82 100%);
    text-transform: uppercase;
}

.btn-solid.xs {
    width: 95px;
    height: 28px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: 0;
    border: 0;
    background-image: linear-gradient(145deg, #fb746d 25%, #fc4c82 100%);
    text-transform: uppercase;
}

.cookie-accept-btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    height: 32px;
    max-width: 100px;
    padding: 0 15px;
    border-radius: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    outline: 0;
    border: 0;
    color: #fb746d;
    background-color: #fb746d20;
    text-transform: uppercase;
}

/* transparent buton */

@media screen and (min-width: 992px) {
    .login-button-container {
        position: absolute;
        right: 0;
        transition: right 0.2s;
    }

        .login-button-container.push-left {
            right: 155px;
        }
}

.btn-transparent-wrapper {
    position: relative;
    background-image: linear-gradient(-145deg, #fb746d 25%, #fc4c82 100%);
    padding: 1px;
}

@media screen and (min-width: 992px) {
    .btn-transparent-wrapper.hide-border {
        background: none;
    }
}

.btn-transparent-wrapper.md {
    border-radius: 20px;
    height: 40px;
    width: 150px;
}

@media screen and (min-width: 992px) {
    .btn-transparent-wrapper.hide-border.md {
        width: 100px;
    }
}

.btn-transparent-wrapper.lg {
    border-radius: 50px;
    height: 46px;
    min-width: 200px;
}

.btn-transparent-wrapper .btn-transparent {
    height: 100%;
    width: 100%;
}

    .btn-transparent-wrapper .btn-transparent a {
        font-size: 14px;
        font-family: 'Poppins', sans-serif;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fc4c82;
        background: #fff;
        height: 100%;
        width: 100%;
        padding: 0 15px;
        text-decoration: none;
        text-transform: uppercase;
    }

.btn-transparent-wrapper.md .btn-transparent a {
    border-radius: 20px;
}

.btn-transparent-wrapper.lg .btn-transparent a {
    border-radius: 23px;
}

.btn-transparent-wrapper:hover .btn-transparent a {
    background-image: linear-gradient(-145deg, #fb746d 25%, #fc4c82 100%);
    color: #fff;
}

@media screen and (min-width: 992px) {
    .btn-transparent-wrapper.hide-border:hover .btn-transparent a {
        background: none;
        color: #fc4c82;
    }
}

/* header */

header {
    padding: 0.8em 0;
    background: #fff;
    box-shadow: none;
    transition: padding 0.4s, box-shadow 0.8s;
}

    header.sticky-top {
        padding: 8px 0;
        position: fixed;
        width: 100%;
        top: 0;
        z-index: 1020;
        margin-top: 45px;
    }

    header.animate-header {
        padding: 0;
        box-shadow: 0 0 6px #d6d6d6;
    }

@media screen and (max-width: 1200px) {
    header .container {
        max-width: 100%;
    }
}

header .navbar {
    justify-content: space-between;
    padding: 0.5em 0;
    position: relative;
}

    header .navbar .nav-link {
        font-family: 'Open-Sans', sans-serif;
        font-weight: 400;
        color: #1f345d !important;
        letter-spacing: 0.24px;
        text-align: left;
        font-size: 14px;
        margin: 0 0.8em;
        text-transform: uppercase;
    }

header .navbar-nav {
    margin: 0 auto;
}

    header .navbar-nav .nav-link:hover {
        color: #f5587d !important;
    }

    header .navbar-nav .nav-link .visited {
        color: #f5587d !important;
    }

    header .navbar-nav .nav-link.active {
        color: #f5587d !important;
        cursor: default;
        font-weight: 700;
    }

header .logo {
    width: 138px;
    height: auto;
}

header .w-200px {
    width: 200px;
}

@media screen and (max-width: 991px) {
    header .btn-transparent-wrapper.md {
        margin: 15px 0 0 0 !important;
    }
}

/* hero block */

.home-page .hero-bg-img {
    background-image: url('../img/home-hero-content-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0% 15%;
    background-origin: content-box;
}

.integration-video-bg {
    background-image: url('../img/integration-video-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0% 15%;
    background-origin: content-box;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute;
        box-shadow: 0 0 25px #f0f0f0;
        border: 0;
        border-radius: 10px;
    }
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 10px 15px;
    clear: both;
    font-weight: 400;
    color: #1f345d;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

    .dropdown-item.active, .dropdown-item:active {
        background-image: linear-gradient(-130deg, #fc4c82 25%, #fb776c 100%);
        color: #fff;
    }

.integrations-header-bg {
    background-image: url('../img/integrations/integrations-header-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0% 15%;
    background-origin: content-box;
}

.investor-page .investor-page-bg {
    background-image: url('../img/investor-page-bg.jpg');
    background-repeat: no-repeat;
    width: 100%;
    height: calc(100% + 3.5em);
    position: absolute;
    z-index: -1;
    background-size: cover;
}

.investor-page .investor-page-bg-2 {
    background-image: url('../img/investor-page-bg-2.jpg');
    background-repeat: no-repeat;
    width: 100%;
    height: calc(100% + 3.5em);
    position: absolute;
    z-index: -1;
    background-size: cover;
    top: 0;
}

.feature-section .investor-page-text-bg {
    background-image: url('../img/investor-page-text-bg.png');
    background-repeat: no-repeat;
    width: 100%;
    height: calc(100% + 3.5em);
    position: absolute;
    z-index: -1;
}



.hero-block {
    padding: 0;
    margin: 0;
    position: relative;
}

.hero-heading h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1f345d;
    letter-spacing: 0.45px;
    text-align: center;
    line-height: 46px;
    margin-top: 2rem;
    font-size: 32px;
}

.hero-heading-white h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.45px;
    text-align: center;
    line-height: 46px;
    margin-top: 2rem;
    font-size: 32px;
}

.ebook-heading h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    color: #1f345d;
    text-align: left;
    line-height: 48px;
    margin-bottom: 2rem;
    font-size: 34px;
}

@media screen and (min-width: 900px) {
    .hero-heading h1 {
        font-size: 42px;
        line-height: 60px;
        margin-top: 2.5rem;
    }
}

@media screen and (min-width: 992px) {
    .hero-heading h1 {
        font-size: 48px;
        margin-top: 4.5rem;
    }
}

.hero-block-bg {
    width: 100%;
    height: calc(100% + 3.5em);
    position: absolute;
    z-index: -1;
    background: linear-gradient(to bottom, #fff, #f5f5f5, #fff);
}

.hero-description {
    max-width: 700px;
    margin: 33px auto 45px auto;
    font-family: 'Open-Sans', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #8f929c;
    letter-spacing: 0.12px;
    text-align: center;
    line-height: 30px;
}

.hero-description-white {
    max-width: 700px;
    margin: 33px auto 45px auto;
    font-family: 'Open-Sans', sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    letter-spacing: 0.12px;
    text-align: center;
    line-height: 30px;
}

.hero-text-block {
    max-width: 900px;
    padding: 20px;
    margin: 0 auto;
}

video {
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: flex;
}

.hero-block-video {
    margin: 20px auto 0;
    border-radius: 10px;
    width: 100%;
    max-width: 1050px;
    max-height: 590px;
    box-shadow: 0 0 24px 0 rgba(78, 78, 78, 0.5);
    position: relative;
}

div#play-btn {
    position: absolute;
    top: 0;
    height: 100%;
    right: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
}

.play-pause-btn {
    background: transparent;
    height: 100%;
    width: 100%;
    color: #f9f9f9;
    border: 0;
    box-shadow: 0 0 10px #f5f5f5;
    font-size: 100px;
    border-radius: 10px;
}

    .play-pause-btn:focus {
        outline: 0;
        box-shadow: none;
    }

.br-10 {
    border-radius: 10px;
}

/* request button blobk */

.request-btn-container {
    display: block;
    justify-content: center;
}

    .request-btn-container .request-btn-block {
        margin-top: 20px;
    }

.request-btn-wrapper .btn-solid.lg,
.request-btn-wrapper .btn-transparent-wrapper.lg {
    width: 100%;
}

@media screen and (min-width: 500px) {
    .request-btn-container {
        display: flex;
        justify-content: center;
    }

        .request-btn-container .request-btn-block {
            margin: 0 10px;
        }

    .request-btn-wrapper .btn-solid.lg,
    .request-btn-wrapper .btn-transparent-wrapper.lg {
        min-width: 200px;
    }
}

/*Request Demo*/

.request-demo-block {
    max-width: 550px;
    box-shadow: 2px 4px 8px 0 rgba(0, 0, 0, 0.01);
    border-radius: 0.2rem;
    margin: 0 auto;
    position: relative;
    width: 100%;
}

.input-request-demo {
    outline-style: none;
    border: none;
    background: #ffffff;
    box-shadow: 0 0 24px 0 rgba(208, 208, 208, 0.5);
    border-radius: 30px;
    font-family: 'Open-Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    height: 60px;
    padding: 0 26px;
    position: relative;
    color: #8f929c;
    letter-spacing: 0.31px;
    width: 100%;
}

.request-demo-btn {
    height: 45px;
    width: 100%;
    padding: 0 24px;
    border: none;
    border-radius: 5rem;
    right: 5px;
    top: 5px;
    margin-top: 15px;
    background-image: linear-gradient(-130deg, #fc4c82 25%, #fb776c 100%);
    border-radius: 25px;
    font-family: 'Open-Sans', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #ffffff;
    text-align: center;
}

@media screen and (min-width: 500px) {
    .input-request-demo {
        padding-right: 170px;
    }

    .request-demo-btn {
        height: 50px;
        position: absolute;
        margin-top: 0;
        width: auto;
    }
}

/* Features Section */

.feature-section {
    margin: 50px 0 0 0;
}

@media screen and (min-width: 992px) {
    .feature-section {
        margin: 50px 0 0 0;
    }
}

.feature-details {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

@media screen and (min-width: 768px) and (max-width: 991px) {
    .feature-img,
    .feature-details {
        padding: 15px !important;
    }

    .feature-img {
        display: inline-flex;
        align-items: center;
    }

        .feature-img img {
            max-width: 90%;
        }
}

@media screen and (max-width: 767px) {
    .feature-img,
    .feature-details {
        padding: 0 !important;
    }

    .feature-img {
        display: flex;
        align-items: center;
        justify-content: center;
        order: 2;
    }

        .feature-img img {
            max-width: 90%;
        }
}

.feature-description {
    font-size: 16px;
    letter-spacing: 0.08px;
    line-height: 30px;
    color: #1f345d;
    font-weight: 400;
}

.feature-block {
    margin: 100px 0;
}

/* integration block */

.m-center {
    margin: 0 auto;
}

.integrations-section {
    margin-top: 100px;
}

.integrations-list-block {
    margin: 50px 0 0 0;
    justify-content: space-around;
}

@media screen and (min-width: 745px) {
    .integrations-list-block {
        height: 260px;
    }
}

.integration-block {
    background: #ffffff;
    box-shadow: 0 0 14px 0 rgba(208, 208, 208, 0.5);
    border-radius: 100%;
    align-items: center;
    justify-content: space-around;
    display: inline-grid;
    height: 120px;
    width: 120px;
    margin: 10px;
}

    .integration-block img {
        max-width: 60px;
    }

.integration-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #1f345d;
    letter-spacing: 0.14px;
    text-align: center;
    margin: 15px 0 30px 0;
}

@media screen and (min-width: 870px) {
    .integrations-list-block {
        height: 300px;
        margin: 100px 0 50px 0;
    }

    .integration-block-190 {
        width: 140px;
        height: 140px;
    }

    .integration-block-180 {
        width: 130px;
        height: 130px;
    }

    .integration-block-175 {
        width: 120px;
        height: 120px;
    }

    .integration-name {
        font-size: 22px;
    }
}

@media screen and (min-width: 991px) {
    .integration-block-190 {
        width: 150px;
        height: 150px;
    }

    .integration-block-180 {
        width: 140px;
        height: 140px;
    }

    .integration-block-175 {
        width: 130px;
        height: 130px;
    }

    .integration-block img {
        max-width: 90px;
    }
}

@media screen and (min-width: 1128px) {
    .integrations-list-block {
        height: 360px;
    }

    .integration-name {
        font-size: 24px;
    }

    .integration-block-190 {
        width: 150px;
        height: 150px;
    }

    .integration-block-180 {
        width: 140px;
        height: 140px;
    }

    .integration-block-175 {
        width: 175px;
        height: 175px;
    }
}

/*Ebook Section*/

.ebook-section {
    padding: 60px 0 0 0;
    background-image: url(../img/ebook-bg-img.png);
    background-position: center center;
    background-repeat: no-repeat !important;
    background-size: 100% 100%;
    overflow-x: hidden;
}

.ebook-page-section {
    padding: 100px 0 0 0;
    background-image: url(../img/ebook-bg-2.png);
    background-position: center center;
    background-repeat: no-repeat !important;
    background-size: 100% 100%;
    overflow-x: hidden;
}

.ebook-main-heading {
    max-width: 800px;
    margin: 0 auto;
}

.ebook-description {
    max-width: 603px;
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 28px;
    color: #8d9099;
    font-weight: 400;
    text-align: center;
    margin: 0 auto;
}

.ebook-tags {
    height: 50px;
    border-radius: 4px;
    box-shadow: 0 0 16px #eaeaea;
    background-color: #ffffff;
    padding: 0 1.5em;
    margin-right: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.ebook-quote {
    font-size: 28px;
    letter-spacing: 0px;
    line-height: 41px;
    color: #1f345d;
    font-family: 'Poppins';
    font-weight: 700;
    display: inline-block;
    margin: 0 auto;
}

@media screen and (min-width: 992px) {
    .ebook-quote {
        font-size: 31px;
    }
}

@media screen and (min-width: 992px) {
    .ebook-quote-2 {
        font-size: 28px;
    }
}

.curve-image {
    width: 10em;
    margin-top: -15px;
    display: block;
}

.curve-image-2 {
    max-width: 400px;
    margin-top: -15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {

    .curve-image-2 {
        width: 300px;
    }
}

.ebook-company-logo-block p {
    font-size: 18px;
    letter-spacing: 0px;
    line-height: 42px;
    color: #1f345d;
    font-family: 'Poppins';
    font-weight: 500;
    padding: 0;
    margin-bottom: 45px;
}

.ebook-mobile-img {
    margin-top: 20px;
    padding: 0;
}

@media screen and (min-width: 768px) {
    .ebook-mobile-img {
        margin-top: 0;
        padding: 0;
        padding-left: 3rem;
    }
}

@media screen and (min-width: 992px) {
    .ebook-company-logo-block p {
        font-size: 18px;
        line-height: 48px;
    }
}

/* cta section */

.ebook-cta-section {
    padding: 70px 0 0 0;
    background-image: url(../img/e-book/ebook-cta-bg.png);
    margin-bottom: 80px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 400px;
    background-attachment: fixed;
    transform-style: preserve-3d;
}





.cta-section {
    padding: 70px 0 0 0;
    background-image: url(../img/cta-bg.png);
    margin-bottom: 80px;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat !important;
    width: 100%;
    height: 400px;
    background-attachment: fixed;
    transform-style: preserve-3d;
}

@media screen and (min-width: 768px) {
    .cta-section {
        margin-bottom: 0;
    }
}

.cta-block {
    max-width: 550px;
    margin: 0 auto;
}

.ebook-cta-block {
    padding-left: 100px;
}

@media screen and (max-width: 768px) {
    .ebook-cta-block {
        padding-left: 0px;
    }
}

@media screen and (max-width: 768px) {
    .footer-data-wrapper {
        margin-top: 30px;
    }
}

.ebook-cta-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #1f345d;
    letter-spacing: 0.32px;
    text-align: left;
    max-width: 400px;
    line-height: 40px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 36px;
    color: #1f345d;
    letter-spacing: 0.32px;
    text-align: center;
    max-width: 400px;
    line-height: 40px;
    margin: 0 auto;
}

@media screen and (min-width: 768px) {
    .cta-section {
        margin-top: 25px;
    }
}

@media screen and (min-width: 992px) {
    .feature-section {
        margin: 50px 0 0 0;
    }

    .cta-title {
        line-height: 50px;
    }
}

p.cta-desc {
    font-family: 'Open-Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #8f929d;
    letter-spacing: 0.08px;
    text-align: center;
    line-height: 30px;
    padding: 15px 0 10px 0;
}

p.ebook-cta-desc {
    font-family: 'Open-Sans', sans-serif;
    font-weight: 400;
    font-size: 18px;
    color: #8f929d;
    letter-spacing: 0.08px;
    text-align: left;
    line-height: 30px;
    padding: 15px 0 10px 0;
}

/* footer */

.footer-section {
    height: 80%;
    width: 100%;
    position: relative;
    overflow-x: hidden;
}

.footer-map {
    position: absolute;
    background-image: url(../img/world-map.png);
    background-position: center center;
    background-repeat: no-repeat !important;
    background-size: contain;
    height: 100%;
    width: 100%;
}

.footer-navs {
    margin-top: 30px;
}

@media screen and (min-width: 768px) {
    .footer-section {
        padding-top: 120px;
        overflow: hidden;
    }

    .footer-map {
        width: 82%;
        margin: -150px 100px 100px 100px;
    }

    .footer-navs {
        margin-top: 0;
    }
}

@media screen and (min-width: 1128px) {
    .footer-section {
        padding-top: 110px;
    }

    .footer-map {
        margin: -180px 100px 100px 100px;
    }
}

.footer-links a.footer-link-category {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #1f345d;
    font-family: 'Poppins';
    font-weight: 700;
    text-decoration: none;
    cursor: default;
}

.footer-links a.footer-link {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 39px;
    color: #1f345d;
    font-weight: 500;
}

.footer-links a:hover {
    color: #333;
}

.footer-description {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #1f345d;
    letter-spacing: 0.07px;
    line-height: 24px;
    max-width: 235px;
    margin: 0 auto;
}

.gototop-link {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fb776c;
    letter-spacing: 0.07px;
    line-height: 24px;
    cursor: pointer;
}

    .gototop-link:hover {
        columns: #fc4c82;
        text-decoration: none;
    }

.copyright-text {
    font-family: 'Open-Sans', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #1f345d;
    letter-spacing: 0.07px;
    line-height: 39px;
    margin: 3em 0;
}

@media screen and (min-width: 768px) {
    .copyright-text {
        margin: 5em 0;
    }
}

@media screen and (min-width: 1128px) {
    .copyright-text {
        margin: 8em 0;
    }
}

.copyright-reserved-text {
    margin: -15px 0 0 0;
}

.footer-logo {
    width: 146px;
    height: auto;
}

.footer-support {
    font-size: 14px;
    margin-top: 10px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #1f345d;
    font-weight: 400;
    max-width: 16em;
}

@media screen and (max-width: 768px) {
    .footer-support {
        max-width: 100%;
    }
}


.footer-support-number {
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #1f345d;
    font-weight: 400;
}

/* --------------------------------- features page ------------------------------------ */

.features-page .hero-block-bg {
    background-image: linear-gradient( 180deg, #ffffff 0%, #fff8ef 48%, #ffffff 100% );
}

.features-page .hero-bg-img {
    background-image: url('../img/features-hero-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0% 20%;
    background-origin: content-box;
}

.features-page .integrations-header-bg {
    background-image: url('../img/integration-hero-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0% 20%;
    background-origin: content-box;
}

.features-page .feature-description {
    color: #8d9099;
}

    .features-page .feature-description label {
        color: #000000;
        font-weight: bold;
    }

        .features-page .feature-description bold {
            color: #000000;
            font-weight: bold;
        }

.features-with-bg-wrapper {
    position: relative;
    margin: 0;
    padding: 40px 0;
    margin: 40px 0 0 0;
}

.feature-block-bg {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 0;
    bottom: 0;
}

/* @media screen and (min-width:992px) {
  .feature-block-bg {
    height: 100%;
    margin: 20px 0;
  }
} */

@media screen and (min-width: 1100px) {
    .feature-block-bg {
        height: 80%;
        margin: 60px 0;
    }
}

@media screen and (min-width: 1200px) {
    .feature-block-bg {
        height: 70%;
        margin: 95px 0;
    }
}

/*Tabs Section*/

.tabs-section {
    padding: 50px 0 0 0;
    width: 100%;
}

@media screen and (min-width: 768px) {
    .tabs-section {
        padding: 60px 0 0 0;
    }
}

.tabs-block {
    margin: 0 auto;
}

.tab-pane-description {
    max-width: 869px;
    font-size: 20px;
    letter-spacing: 0px;
    line-height: 32px;
    color: #1f345d;
    font-weight: 400;
    text-align: center;
    margin: 10px auto 40px auto;
}

.nav-tabs-block {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    padding: 0 5px;
}

.nav.nav-pills {
    background: #f9f9f9;
    border-radius: 3rem;
    min-height: 60px;
    display: flex;
    align-items: center;
}

.nav-pills .nav-link {
    border-radius: 25px;
    font-family: 'Open-Sans', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 14px 10px;
    color: #1f345d;
    letter-spacing: 0.07px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
}

.nav-heading {
    font-family: 'Open-Sans', sans-serif;
    font-weight: 700;
    font-size: 20px;
    padding: 14px 10px;
    color: #1f345d;
    letter-spacing: 0.07px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-transform: uppercase;
    margin: 15px 0;
}

.nav-pills .nav-link .nav-icons {
    font-size: 20px;
    color: #8f929c;
}

.nav-pills .nav-link .nav-text {
    display: none;
}

.nav-pills .nav-link.active {
    background: linear-gradient(-130deg, #fc4c82 25%, #fb776c 100%);
    color: #ffffff;
}

    .nav-pills .nav-link.active .nav-icons {
        color: #ffffff;
    }

@media screen and (min-width: 650px) {
    .nav-pills .nav-link .nav-text {
        display: inline;
    }

    .nav-heading {
        display: none;
    }

    .tab-pane-description {
        font-size: 20px;
        margin: 40px auto;
    }
}

/* feature cards */

.features-page .hero-block {
    margin-bottom: 100px;
}

.feature-card-wrapper .feature-card-main-heading {
    font-size: 30px;
    letter-spacing: 0px;
    line-height: 66px;
    color: #1f345d;
    font-family: 'Poppins';
    font-weight: 500;
    margin: 0 0 5px 0;
}

.feature-card-block {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-card {
    max-width: 100%;
    padding: 4em 2em 4em 2em;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    height: 371px;
    margin: 10px;
    border-radius: 10px;
    background-color: #ffffff;
    flex-grow: 1;
    background: #FFFFFF;
    box-shadow: 0 0 10px 2px rgba(240,240,240,0.50);
}

@media screen and (min-width: 401px) {
    .feature-card {
        max-width: 341px;
    }
}

@media screen and (min-width: 1200px) {
    .feature-card-block {
        justify-content: space-between;
    }

    .feature-card-wrapper .feature-card-main-heading {
        font-size: 39px;
        margin: 25px 0;
    }

    .feature-card {
        margin: 0 20px 0 0;
    }

        .feature-card:last-child {
            margin: 0;
        }
}

.feature-card .feature-card-sub-heading {
    font-size: 21px;
    letter-spacing: 0px;
    line-height: 30px;
    color: #1f345d;
    font-family: 'Poppins';
    font-weight: 700;
    margin: 20px 0 10px 0;
}

.feature-card .feature-card-description {
    font-size: 16px;
    letter-spacing: 0.08px;
    line-height: 28px;
    color: #8d9099;
    font-weight: 500;
    text-align: center;
    margin: 0;
}

.tasks-bg {
    background-image: linear-gradient(-45deg, #feffed40 0%, #fffdcc40 100%);
}

.analytics-bg {
    background-image: linear-gradient(-25deg, #e0fdce40 0%, #e9f9ee40 100%);
    right: 0;
}

.meeting-img-bg {
    background-image: url(../img/features/meeting-booker-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position-x: -160px;
}

.task-img-bg {
    background-image: url('../img/features/task-execution-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.analytics-img-bg {
    background-image: url('../img/features/analytics-bg.png');
    background-repeat: no-repeat;
    background-size: 80%;
    background-position: center;
}

/* ------------------------------- Pricing page ---------------------------------- */

.pricing-page .hero-bg-img {
    background-image: url('../img/pricing-hero-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-origin: content-box;
}

.pricing-page .hero-block-bg {
    background-image: linear-gradient( 180deg, #ffffff 0%, #edfffb 48%, #ffffff 100% );
}


ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
}

.toggle, .toggler {
    display: inline-block;
    vertical-align: middle;
    margin: 10px;
}

.toggler {
    color: #d6d6d6;
    transition: .2s;
    font-weight: bold;
}

.toggler--is-active {
    color: #f5587d;
}

.b {
    display: block;
}

.toggle {
    position: relative;
    width: 80px;
    height: 35px;
    border-radius: 100px;
    background-color: #f5587d;
    overflow: hidden;
    box-shadow: inset 0 0 2px 1px rgba(0, 0, 0, 0.05);
}

.check {
    position: absolute;
    display: block;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 6;
}

    .check:checked ~ .switch {
        right: 2px;
        left: 57.5%;
        transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
        transition-property: left, right;
        transition-delay: .08s, 0s;
    }

.switch {
    position: absolute;
    left: 2px;
    top: 2px;
    bottom: 2px;
    right: 57.5%;
    background-color: #fff;
    border-radius: 36px;
    z-index: 1;
    transition: 0.25s cubic-bezier(0.785, 0.135, 0.15, 0.86);
    transition-property: left, right;
    transition-delay: 0s, .08s;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.hide {
    display: none;
}

.pricing-card-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
}

.pricing-card {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0 0 25px #f0f0f0;
    background-color: #ffffff;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-grow: 1;
    padding: 8em 0;
    position: relative;
}

.for-kenyt-tag {
    position: absolute;
    top: -14px;
    left: 98px;
    background-image: linear-gradient(-130deg, #fc4c82 25%, #fb776c 100%);
    height: 28px;
    padding: 0 10px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
    font-family: 'Poppins' sans-serif;
    font-weight: 700;
}

.questions-section {
    margin: 50px 0 0 0;
}

@media screen and (min-width: 992px) {
    .questions-section {
        margin: 70px 0 0 0;
    }
}

.no-of-users {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 30px;
    color: #1f345d;
    font-weight: 700;
    text-transform: uppercase;
}

.no-of-users-1 {
    font-family: 'Open-Sans';
    font-size: 18px;
    font-weight: 700;
    color: #1f345d;
    letter-spacing: 0.11px;
    text-align: center;
    line-height: 28px;
    max-width: 8rem;
    padding: 15px 0 7px 0;
}

.heart {
    color: #fa1600;
    font-size: 14px;
}

.price-wrapper .price-value {
    font-size: 60px;
    letter-spacing: 0px;
    line-height: 60px;
    color: #1f345d;
    font-family: 'Poppins';
    font-weight: 700;
    margin: 0;
}

.price-wrapper .price-value-strike {
    font-size: 32px;
    letter-spacing: 0px;
    line-height: 60px;
    color: #9b9b9b;
    font-family: 'Poppins';
    font-weight: 700;
    margin: 0;
    text-decoration: line-through;
}

.lets-talk-text {
    font-size: 14px;
    letter-spacing: 0px;
    line-height: 20px;
    color: #1f345d;
    font-weight: 500;
    max-width: 9em;
    margin: 0 auto;
    text-align: center;
}

.startup-pricing-text {
    font-family: 'Open-Sans';
    font-size: 16px;
    color: #1f345d;
    letter-spacing: 0.11px;
    text-align: center;
    line-height: 30px;
    padding: 20px 50px;
}

.price-wrapper .price-value.green {
    color: #38d797;
}

.price-wrapper .price-text {
    font-size: 15px;
    letter-spacing: 0px;
    line-height: 30px;
    color: #8f929c;
    font-weight: 500;
    margin-top: -5px;
}

.special-price-text {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 24px;
    color: #1f345d;
    font-weight: 500;
    max-width: 9em;
    margin: 0 auto;
    font-family: 'Open-Sans' sans-serif;
}

.pricing-btn {
    width: 200px;
    padding: 13px;
    border-radius: 3rem;
    background-image: linear-gradient(-145deg, #38d797 25%, #2dc362 100%);
    border: 1px solid #e0eae8;
    font-size: 12px;
    letter-spacing: 0px;
    color: #fff;
    font-family: 'Poppins' sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 30px 0 20px 0;
    text-decoration: none;
}

    .pricing-btn:hover {
        color: #fff;
        box-shadow: 0 0 10px #d6d6d6;
        font-family: 'Poppins' sans-serif;
        font-weight: 700;
        text-decoration: none;
    }

.pricing-btn-white {
    width: 200px;
    padding: 13px;
    border-radius: 3rem;
    background-color: #fff;
    border: 1px solid #e0eae8;
    font-size: 12px;
    letter-spacing: 0px;
    color: #1f345d;
    font-family: 'Poppins' sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 30px 0 20px 0;
    text-decoration: none;
}

    .pricing-btn-white:hover {
        color: #fff;
        box-shadow: 0 0 10px #d6d6d6;
        font-family: 'Poppins' sans-serif;
        text-decoration: none;
        background-image: linear-gradient(-145deg, #38d797 25%, #2dc362 100%);
    }

.pricing-note {
    font-size: 13px;
    letter-spacing: 0px;
    line-height: 20px;
    color: #8f929c;
    font-weight: 500;
    text-align: center;
    max-width: 12em;
    margin: 0 auto;
}

.startups-pricing-block {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto;
    max-width: 450px;
}

.link {
    color: #2866ff;
    text-decoration: none;
}

@media screen and (min-width: 501px) and (max-width: 735px) {
    .pricing-card-wrapper {
        flex-wrap: nowrap;
    }

    .pricing-card {
        margin: 8px;
        height: 370px;
    }

    .price-wrapper .price-value {
        font-size: 42px;
    }

    .price-wrapper .price-text {
        margin-top: -15px;
    }

    .pricing-btn {
        width: 150px;
    }
}

@media screen and (min-width: 736px) {
    .pricing-card {
        width: 315px;
        margin: 0 15px;
        flex-grow: 0;
    }
}

.collapse-block {
    max-width: 100%;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid #f0f0f0;
    display: flex;
    justify-content: center;
    padding: 1.25em;
    flex-direction: column;
    margin: 15px auto;
}

@media screen and (min-width: 768px) {
    .collapse-block {
        max-width: 470px;
    }
}

.question-block {
    font-size: 16px;
    letter-spacing: 0px;
    color: #1f345d;
    font-family: 'Poppins';
    font-weight: 500;
    display: flex;
    cursor: pointer;
}

.answers-block {
    font-size: 16px;
    letter-spacing: 0.1px;
    line-height: 24px;
    color: #626262;
    font-family: 'Open-Sans';
    font-weight: 400;
    margin: 10px 0 0 24px;
}

/* ------------------------------- contact page ---------------------------------- */

.contact-page .hero-block {
    margin-bottom: 50px;
}

.contact-page .hero-block-bg {
    background-image: linear-gradient( 180deg, #ffffff 0%, #fffbed 48%, #ffffff 100% );
}

.contact-page .hero-bg-img {
    background-image: url('../img/contact-hero-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    background-origin: content-box;
}

.blue-bubble-wrapper,
.contact-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    margin-bottom: 20px;
}

.light-blue-bubble {
    width: 300px;
    height: 300px;
    border-radius: 100%;
    background-color: #e3f4f9;
    box-sizing: border-box;
    padding: 15px;
}

@media screen and (min-width: 768px) {
    .light-blue-bubble {
        width: 338px;
        height: 338px;
    }

    .contact-page .hero-block {
        margin-bottom: 50px;
    }
}

.dark-blue-bubble {
    width: 100%;
    height: 100%;
    border-radius: 100%;
    background-color: #75ccff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
}

    .dark-blue-bubble .map-marker {
        font-size: 38px;
        margin: 0;
        font-family: 'DejaVu Sans';
        font-weight: 400;
    }

    .dark-blue-bubble .map-marker-name {
        font-size: 18px;
        letter-spacing: 0px;
        line-height: 30px;
        color: #ffffff;
        font-family: 'Poppins';
        font-weight: 700;
        margin: -10px 0 0 0;
    }

    .dark-blue-bubble .map-marker-address {
        font-size: 12px;
        letter-spacing: 0.41px;
        line-height: 30px;
        color: #ffffff;
        font-family: 'Poppins';
        font-weight: 500;
        margin: 0 auto;
        text-align: center;
        max-width: 15em;
        margin-top: -5px;
    }

        .dark-blue-bubble .map-marker-address span:last-child {
            margin-top: -10px;
        }

.contact-form {
    background: #fff;
    padding: 20px;
    width: 430px;
    border-radius: 10px;
    box-shadow: 0 0 25px #f0f0f0;
    background-color: #ffffff;
}

    .contact-form label {
        font-size: 16px;
        letter-spacing: 0px;
        line-height: 32px;
        color: #1f345d;
        font-family: 'Open-Sans';
        font-weight: 700;
    }

.form-control::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #9b9b9b;
    opacity: 1; /* Firefox */
}

.contact-form .form-control {
    height: 45px;
    border-radius: 4px;
    background-color: #ffffff;
    border: 1px solid #e4e4e4;
    outline: none;
    font-size: 14px;
}

.contact-form textarea.form-control {
    height: 122px;
    resize: none;
}

/* ------------------------------------gdpr page---------------------------- */

.gdpr-page .container {
    max-width: 800px;
    margin: 0 auto;
}

.gdpr-question-wrapper {
    margin-bottom: 4em;
}

h2.gdpr-heading {
    text-align: center;
    text-transform: uppercase;
    color: #626262;
    padding: 50px 0;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.1;
}

h3.question-text {
    font-weight: 700;
    font-size: 18px;
    color: #333;
}

.gdpr-sub-heading-wrapper {
    margin-bottom: 3em;
}

h4.gdpr-sub-heading {
    font-weight: 700;
    font-size: 15px;
    color: #333;
    margin-bottom: 15px;
}

p.answer-text {
    font-size: 15px;
    color: #333;
    font-family: 'Open-Sans';
    line-height: 1.42857143;
}

.grey-text-heading {
    color: #626262;
    font-size: 16px;
    padding: 20px 0;
}

/*Paddings*/
.pt-1px {
    padding-top: 1px;
}

.img-shadow-radius {
    border-radius: 10px;
    box-shadow: 0 0 24px 0 rgba(78, 78, 78, 0.5);
}

.of-x {
    overflow-x: hidden;
}

/* cookie section */

.cookie-wrapper {
    background: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    box-shadow: 0 0 6px #d6d6d6;
}

.cookie-block-wrapper {
    color: #1f345d;
    font-size: 14px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    flex-shrink: 0;
    padding: 20px;
}

.cookie-block-btn-wrapper {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.cookie-block-link {
    color: #9b9b9b;
    margin: 0 20px 0 0;
    text-decoration: none;
}

    .cookie-block-link:hover {
        color: #626262;
    }

@media screen and (min-width: 992px) {
    .cookie-block-wrapper {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        flex-shrink: 0;
    }

        .cookie-block-wrapper p {
            margin: 0;
        }
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 833px;
        margin: 1.75rem auto;
    }
}

.modal-content {
    border: 0 !important;
}

.modal-body {
    padding: 0rem;
}

.modal-footer {
    padding: 5px 10px;
}

.modal-close-btn {
    font-size: 12px;
    color: #9b9b9b;
}

    .modal-close-btn:hover {
        font-size: 12px;
        color: #626262;
    }

.videoWrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    padding-top: 2px;
    height: 0;
}

    .videoWrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

/* Comparision Pages */

.features-page .hero-bg-img-1 {
    background-image: url('../img/comparision-pages/comparision-page-hero-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 0% 20%;
    background-origin: content-box;
}

.comparision-hero-block {
    min-height: 500px;
    margin-top: 150px;
}

.comparision-hero-second-left-block {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.white-card-block {
    background: #ffffff;
    box-shadow: 0 0 16px 0 #eaeaea;
    border-radius: 4px;
    font-family: 'Open-Sans';
    font-size: 16px;
    color: #1f345d;
    letter-spacing: 0.07px;
    line-height: 28px;
    display: flex;
    text-align: start;
    padding: 20px;
    margin: 20px auto;
    max-width: 330px;
}

.q-icon {
    font-size: 28px;
    padding-right: 10px;
    color: #1f345d;
}

.comparision-hero-second-right-block {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Lato,Lato-Regular;
    font-size: 24px;
    color: #828b9c;
    letter-spacing: 0.12px;
    line-height: 40px;
    max-width: 275px;
}

.top-features-block {
    margin-top: 100px;
}

.top-feature-list-item {
    max-width: 375px;
    display: flex;
    align-items: flex-start;
    margin-bottom: 60px;
}

.top-feature-list-heading {
    font-family: 'Poppins',Poppins-Medium;
    font-size: 23px;
    color: #1f345d;
    letter-spacing: 0.13px;
}

.top-feature-list-desc {
    font-family: 'Open-Sans';
    font-size: 14px;
    color: #1f345d;
    letter-spacing: 0.07px;
    line-height: 28px;
}

.top-feature-icon {
    font-size: 24px;
    padding-right: 6px;
}

.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
}

    .video-responsive iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
    }

.top-features-li-icon {
    font-size: 22px;
    padding-right: 5px;
    padding-top: 6px;
}

.max600 {
    max-width: 600px;
}

.feature-item-heading-block {
    height: 42px;
    display: flex;
    align-items: flex-end;
    margin-left: 10px;
}

.feature-item-heading {
    font-family: Poppins-Medium;
    font-size: 16px;
    color: #1f345d;
    letter-spacing: 0.13px;
    text-transform: uppercase;
}

.feature-item-list-block {
    height: 50px;
    border-bottom: 1px solid #f0f0f0;
}

.feature-item-list {
    font-family: 'Open-Sans';
    font-size: 14px;
    color: #1f345d;
    letter-spacing: 0.07px;
    margin-left: 20px;
}

.comapre-icon-block {
    width: 200px;
    text-align: center;
}

.comapre-icon-block-green {
    align-items: center;
    display: flex;
    justify-content: center;
    color: #95c898;
    font-size: 16px;
}

.comapre-icon-block-grey {
    align-items: center;
    display: flex;
    justify-content: center;
    color: #9b9b9b;
    font-size: 16px;
}

.compare-logo-block {
    height: 70px;
}

.compare-logo {
    max-width: 120px;
}

.ebook-quote-card {
    max-width: 450px;
    padding: 0;
    display: inline-flex;
    flex-direction: column;
    margin: 10px;
    border-radius: 10px;
    box-shadow: 0 0 17px #eeeeee;
    background-color: #ffffff;
    flex-grow: 1;
}

.ebook-quote-img {
    border-radius: 10px 10px 0 0;
}

.ebook-quote-card .ebook-quote-card-heading {
    font-size: 21px;
    letter-spacing: 0px;
    line-height: 30px;
    color: #1f345d;
    font-family: 'Poppins';
    font-weight: 700;
    margin: 0;
    padding: 20px 20px 0 20px;
}

.ebook-quote-card .ebook-quote-card-designation {
    font-size: 14px;
    color: #1f345d;
    font-family: 'Poppins';
    font-weight: 700;
    margin: 0;
    padding: 0 20px 20px 20px;
}

.ebook-quote-card .ebook-quote-card-description {
    font-size: 16px;
    letter-spacing: 0.08px;
    line-height: 28px;
    color: #8d9099;
    font-weight: 500;
    text-align: left;
    margin: 0;
    padding: 0 20px 20px 20px;
}

.quotes-section {
    margin-top: 100px;
}

.ebook-2-section {
    margin-top: 100px;
    margin-bottom: 100px;
}

.integration-img {
    background-image: url(/dist/img/integrations/integrations-bg.svg);
    background-position: 0px -105px;
}

.integration-pd-img {
    background-image: url(/dist/img/integrations/integration.png);
    background-position: 0px -105px;
}

.kenyt-client-logos-title {
    font-family: Lato,Lato-Bold;
    font-size: 22px;
    color: #1F345D;
    letter-spacing: 0.12px;
    text-align: center;
    line-height: 32px;
}

.kenyt-client-logos {
    max-width: 700px;
    width: 100%;
    padding-top: 15px;
}

/* Reviews Css */
.reviews-section {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150pxpx;
    text-align: center;
}

.review-text {
    font-size: 20px;
    max-width: 750px;
    margin: 15px auto 0 auto;
    color: #20345c;
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
}

.reviewer-name {
    padding-top: 30px;
    margin: 0 auto;
    font-weight: 700;
}

.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block;
    width: 12px;
    height: 12px;
    color: #333;
    background-color: #fa6f6f;
    padding: 14px;
    border-radius: 200px;
    margin: 21px;
}


/* investorPage  */

.investor-page {
    overflow-x: hidden;
}

.investor-text-block {
    max-width: 800px;
    margin: 0 auto;
}

.investor-text-bold {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #1f345d;
    letter-spacing: 0.43px;
}

.investor-text {
    color: #8D9099;
    font-family: 'Open-Sans', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.investors-block {
    margin: 50px auto;
    max-width: 1000px;
}

.investor-card {
    background: #FFFFFF;
    box-shadow: 0 0 25px 0 #F0F0F0;
    border-radius: 15px;
    max-width: 300px;
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto 30px auto;
}

.investor-img {
    max-width: 300px;
    width: 100%;
}

.investor-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1F345D;
    letter-spacing: 0.14px;
    text-align: center;
    line-height: 32px;
    margin-bottom: 0px;
    padding-top: 20px;
}

.investor-designation {
    font-family: 'Open-Sans', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #8F929D;
    letter-spacing: 0.11px;
    text-align: center;
    line-height: 22px;
    margin-bottom: 0px;
}

.investor-company {
    font-family: 'Open-Sans', sans-serif;
    font-weight: 300;
    font-size: 14px;
    color: #007BFF;
    letter-spacing: 0.1px;
    line-height: 22px;
    margin-bottom: 0px;
    padding-bottom: 25px;
}

.investors-logos {
    max-width: 400px;
    width: 100%;
}

.text-color-fix {
    color: #7f828c !important;
}

.alternative-page-logos-block {
    display: flex;
    align-items: center;
    justify-content: center;
}

.alternative-page-logos {
    max-width: 600px;
    padding: 25px;
    width: 100%;
}

.social-icons-block {
    display: flex;
}

.social-icons {
    width: 36px;
    height: 36px;
    padding-bottom: 0px;
}

.social-mt-5px {
    margin-top: 5px;
}

.rating-title {
    font-family: Lato,Lato-Bold;
    font-size: 23px;
    color: #29303D;
    letter-spacing: 0.28px;
    text-align: center;
}

.rating-desc {
    font-family: Lato,Lato-Regular;
    font-size: 16px;
    color: #5C6672;
    letter-spacing: 0.19px;
    text-align: center;
}

.percentage-icon {
    width: 150px;
}


/* Customer Review Section */

.carousel-indicators li {
    box-sizing: content-box;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 10px;
    border-radius: 100%;
    height: 20px;
    margin-right: 8px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #333;
    background-clip: padding-box;
    border-top: 9px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

.sq-crousal4 .carousel-indicators li::before {
    width: 15px;
    height: 15px;
    background: #444;
    border-radius: 50%;
    border: solid 2px #aaacae;
    transition: all 0.3s ease 0s;
    box-shadow: 6px 6px 8px #e9e0e0 inset;
}

.sq-crousal4 .carousel-indicators li.active::before {
    background: #1870ed;
    box-shadow: 2px 3px 2px #e5edf8 inset;
    border-color: #1870ed;
}

.sq-crousal4 .carousel-indicators {
    bottom: -75px;
}

.sq-crousal4 li {
    width: 20px;
}

.sq-crousal4 .fa-angle-left {
    font-size: 45px;
    color: #444;
    left: -30px;
    position: relative;
    top: -17px;
}

.sq-crousal4 .fa-angle-right {
    font-size: 45px;
    color: #444;
    right: -30px;
    position: relative;
    top: -17px;
}

.review-block {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    background: #FFFFFF;
    box-shadow: 0 0 15px 6px rgba(218,218,218,0.50);
    border-radius: 8px;
    padding: 50px
}

.review-text {
    font-family: Lato,Lato-Regular;
    font-size: 20px;
    color: #1F345D;
    letter-spacing: 0.16px;
    text-align: center;
    line-height: 32px;
    background-color: #fff;
}

.review-member {
    font-family: Lato,Lato-Regular;
    font-size: 20px;
    color: #1F345D;
    letter-spacing: 0.16px;
    text-align: center;
    line-height: 32px;
    background-color: #fff;
}

.review-text-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}


.carousel-inner {
    width: 100%;
    overflow: hidden;
}


.invester-logo {
    max-height: 60px;
}
