/** page properties */


body {
    font-family: "Work Sans", sans-serif;
    font-display: swap;
}

a {
    color: #000000;
}

a:hover {
    color: #0051FF;
    text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {

}

/** helpers **/
.cb {
    clear: both;
}


.bg-metrical-blue {
    background: #0051FF;
    color: #fff;
}

/** back to the top*/
.back-to-top {
    position: fixed;
    display: none;
    width: 40px;
    height: 40px;
    border-radius: 50px;
    right: 15px;
    bottom: 15px;
    background: #5777ba;
    color: #fff;
    transition: display 0.5s ease-in-out;
    z-index: 99999;
}

.back-to-top i {
    font-size: 24px;
    position: absolute;
    top: 7px;
    left: 8px;
}

.back-to-top:hover {
    color: #fff;
    background: #748ec6;
    transition: background 0.2s ease-in-out;
}

/* Header */
#header {
    height: 72px;
    transition: all 0.5s;
    z-index: 997;
    transition: all 0.5s;
    padding-top: 20px;
}

#header.header-scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
    padding-top: 15px;
}

#header .logo h1 {
    font-size: 30px;
    margin: 0;
    padding: 2px 0;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 2px;
}

#header .logo h1 a, #header .logo h1 a:hover {
    color: #5777ba;
    text-decoration: none;
}

#header .logo img {
    padding: 0;
    margin: 0;
    max-height: 40px;
}

@media (max-width: 992px) {
    #header {
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
        padding-top: 15px;
    }
}


/* Desktop Navigation */

.nav-menu, .nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu > ul > li {
    position: relative;
    white-space: nowrap;
    float: left;
    margin-top: 10px;
}

.nav-menu a {
    display: block;
    position: relative;
    color: #000000;
    padding: 8px 21px 12px 21px;
    transition: 0.3s;
    font-size: 14px;
    line-height: 18px;
}

@media (max-width: 1199.98px) {
    .nav-menu a {
        padding: 8px 15px 12px 15px;
    }
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
    color: #5777ba;
    text-decoration: none;
}

.nav-menu .btn-nav a, .mobile-nav .btn-nav a {

    color: #0051FF;
    border-radius: 6px;
    border: 1px solid #0051FF;
    margin: 0 5px;
    padding: 10px 25px;
    font-size: 13px;
    font-weight: 500;
}

.nav-menu .btn-nav a.active-button, .nav-menu .btn-nav:hover a, .mobile-nav .btn-nav a.active-button, .nav-menu .btn-nav:hover a {
    background: #0051FF;
    color: #fff;
    border-radius: 6px;
    margin: 0 5px;
    padding: 10px 25px;
}


.nav-menu .drop-down ul {
    display: block;
    position: absolute;
    left: 0;
    top: calc(100% - 30px);
    z-index: 99;
    opacity: 0;
    visibility: hidden;
    padding: 10px 0;
    background: #fff;
    box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
    transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
}

.nav-menu .drop-down li {
    min-width: 180px;
    position: relative;
}

.nav-menu .drop-down ul a {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-transform: none;
    color: #233355;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
    color: #5777ba;
}

.nav-menu .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
    top: 0;
    left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
    opacity: 1;
    top: 0;
    left: 100%;
}

.nav-menu .drop-down .drop-down > a {
    padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
    content: "\eaa0";
    font-family: IcoFont;
    position: absolute;
    right: 15px;
}

@media (max-width: 1366px) {
    .nav-menu .drop-down .drop-down ul {
        left: -90%;
    }

    .nav-menu .drop-down .drop-down:hover > ul {
        left: -100%;
    }

    .nav-menu .drop-down .drop-down > a:after {
        content: "\ea9d";
    }
}

/* Mobile Navigation */
.mobile-nav-toggle {
    position: fixed;
    right: 15px;
    top: 22px;
    z-index: 9998;
    border: 0;
    background: none;
    font-size: 24px;
    transition: all 0.4s;
    outline: none !important;
    line-height: 1;
    cursor: pointer;
    text-align: right;
}

.mobile-nav-toggle i {
    color: #0051FF;
}

.mobile-nav {
    position: fixed;
    top: 55px;
    right: 15px;
    bottom: 15px;
    left: 15px;
    z-index: 9999;
    overflow-y: auto;
    background: #fff;
    transition: ease-in-out 0.2s;
    opacity: 0;
    visibility: hidden;
    border-radius: 10px;
    padding: 10px 0;
}

.mobile-nav * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav a {
    display: block;
    position: relative;
    color: #000000;
    padding: 10px 20px;
    font-weight: 500;
    outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
    color: #5777ba;
    text-decoration: none;
}

.mobile-nav .drop-down > a:after {
    content: "\ea99";
    font-family: IcoFont;
    padding-left: 10px;
    position: absolute;
    right: 15px;
}

.mobile-nav .active.drop-down > a:after {
    content: "\eaa1";
}

.mobile-nav .drop-down > a {
    padding-right: 35px;
}

.mobile-nav .drop-down ul {
    display: none;
    overflow: hidden;
}

.mobile-nav .drop-down li {
    padding-left: 20px;
}

.mobile-nav-overly {
    width: 100%;
    height: 100%;
    z-index: 9997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(35, 51, 85, 0.7);
    overflow: hidden;
    display: none;
    transition: ease-in-out 0.2s;
}

.mobile-nav-active {
    overflow: hidden;
}

.mobile-nav-active .mobile-nav {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
    color: #fff;
}

/** mobile menu buttons */
.mobile-nav .btn-nav a {

    margin-bottom: 15px;
}

.mobile-nav .btn-nav a.active-button, .mobile-nav .btn-nav:hover a {
    margin-bottom: 15px;
}

/**  sections */
section {

}

/** section hero */

#hero {
    margin-top: 172px;
    min-height: 372px;
}


.hero-title {
    font-weight: normal;
    font-size: 34px;
    line-height: 40px;
    margin-top: 46px;
    margin-bottom: 50px;
}


.hero-text {
    font-size: 14px;
    font-weight: normal;
    line-height: 21px;
    margin-bottom: 60px;
    color: #526174;
}

.hero-buttons {
    margin-bottom: 20px;
}


.btn-hero-trial {
    float: left;
    width: 220px;
    height: 44px;
    line-height: 30px;
    font-weight: 500;
}

.btn-hero-schedule {
    /*margin-left: 23px;*/
    float: left;
    width: 220px;
    height: 44px;
    line-height: 30px;
    font-weight: 500;

}

@media (max-width: 1200px) {
    .btn-hero-trial {
        float: left;
        width: 190px;
        margin-bottom: 20px;
    }

    .btn-hero-schedule {
        width: 190px;
        /*margin-left: 20px;*/

    }
}

@media (max-width: 992px) {
    /*.btn-hero-trial {
        float: left;
        width: 150px;
        margin-bottom: 20px;
    }

    .btn-hero-schedule {
        width: 180px;
        margin-left: 20px;

    }*/
}

@media (max-width: 375px) {
    .btn-hero-trial {
        width: 165px
    }

    .btn-hero-schedule {
       width: 165px
    }
}


#mobile-app-leaders {
    margin-top: 103px;
}

#mobile-app-leaders h3 {
    font-size: 26px;
    line-height: 30px;
    font-weight: normal;
    margin: 0 auto;

}

.leaders-container {
    padding-top: 70px;
    padding-bottom: 60px;
    border-bottom: 1px solid #D3E1FF;

}

.leaders-container ul li {
    list-style: none;
    float: left;
    margin-left: 76px;
}

.leaders-container ul li:first-child {
    margin-left: 0;
}

@media (max-width: 375px) {
    .leaders-container ul li {

        width: 100%;
        list-style: none;
        float: left;
        margin-left: 0;

        margin-bottom: 20px;
    }

    .leaders-container ul li img {
        width: 80%;
    }
}

@media (max-width: 425px) {
    .owl-item {
        margin-left: 30px;
    }
}


#testimonials .testimonial-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 0.5rem 1rem rgba(208, 223, 255, 0.75);
    padding: 30px;

    height: 325px;
    margin-top: 25px;
    margin-bottom: 20px;
}


@media (max-width: 375px) {
    #testimonials .testimonial-box {
        margin-bottom: 30px;
    }
}

#testimonials .testimonial-box img.img-avatar {
    margin-bottom: 25px;
    border-radius: 50%;
}

#testimonials .testimonial-box img.img-quote {
    margin-left: 10px;
}

#testimonials .testimonial-box h5.fullname {
    font-size: 18px;
    line-height: 21px;
    font-weight: normal;
    color: #000000;
    margin: 0;
}

@media (max-width: 1024px) {
    #testimonials .testimonial-box h5.fullname {
        font-size: 16px;
        line-height: 18px;

    }
}

#testimonials .testimonial-box div.title {
    clear: both;
    font-size: 14px;
    line-height: 16px;
    color: #526174;

}


#testimonials .testimonial-box div.company {
    clear: both;
    font-size: 14px;
    line-height: 16px;
    color: #0051FF;
    margin-bottom: 15px;
}

#testimonials .testimonial-box p {
    font-size: 13px;
    line-height: 21px;
    color: #526174;
    overflow: hidden;
}

@media (max-width: 1024px) {
    #testimonials .testimonial-box p {
        font-size: 12px;
        line-height: 16px;
    }
}

#product {

}

/*
@media (max-width: 375px) {
    #product{
        margin-top: 60px;
    }
}
*/
#product h2 {
    margin: 0px auto;
    font-size: 26px;
    line-height: 30px;
    margin-top: 60px;
    margin-bottom: 85px;

}

.metrikal-does {
    text-align: center;
}


.metrikal-does img.icon {
    margin-bottom: 20px;
}

.metrikal-does h3 {
    font-size: 18px;
    line-height: 21px;
    color: #000000;
    margin-bottom: 20px;
}

.metrikal-does p {
    color: #526174;
    font-size: 13px;
    line-height: 21px;
    text-align: left;
    margin-bottom: 26px;
}

#how-works {


    background: url("../img/how-works/bg-dots.svg") no-repeat -600px -75px;

}

#how-works div.container {
    margin-top: 114px;
    padding-top: 71px;
    border-top: 1px solid #D3E1FF; /* #A8C4FF; */
}

#how-works h2 {
    font-size: 26px;
    line-height: 30px;
    margin-top: 0;
    margin-bottom: 53px;
    font-weight: normal;
}


#how-works ul {
    list-style: none;
}

ul#step-list {
    width: 96%;
    max-width: 780px;
    margin: 0 auto;
    padding: 0;

}


ul#step-list li {
    clear: both;
}

#step-list .icon {
    max-width: 77px;
    float: left;
    margin-right: 50px;
}

#step-list .step-text {
    max-width: 570px;
    float: left;
    text-align: center;
}

ul#step-list h4 {
    font-size: 18px;
    line-height: 21px;
    font-weight: normal;
    margin-top: 25px;
    margin-bottom: 13px;
}


ul#step-list p {
    font-size: 15px;
    line-height: 21px;
    font-weight: lighter;
    color: #526174;
}

@media (min-width: 768px) {
    ul#step-list .step-text {
        max-width: 570px;
    }
}

@media (min-width: 576px) {

    ul#step-list .step-text {
        max-width: 490px;
    }
}


@media (max-width: 375px) {

    ul#step-list {

        max-width: 100%;
    }

    #step-list .icon {
        max-width: 50px;
        float: left;
        margin-right: 20px;
    }

    #step-list .step-text {
        max-width: 250px;
    }

    #step-list .step-text h4 {
        margin-top: 10px;
    }
}


#metrikal-for {

}

#metrikal-for div.container {
    margin-top: 115px;
    padding-top: 71px;
    border-top: 1px solid #D3E1FF;
}

#metrikal-for h3 {
    font-size: 26px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 30px;
}

.metrikal-for-container {
    background: #F8FAFF;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 0.5rem 0.2rem rgba(208, 223, 255, 0.75);
}

.metrikal-for-container div.col-md-4 {
    border-left: 1px solid #D8E4FF;
}

.metrikal-for-container div.col-md-4:first-child {
    border-left: none;
}

@media (max-width: 770px) {
    .metrikal-for-container div.col-md-4 {
        border-left: none;
    }
}

.box-metrikal-for h5 {
    color: #0051FF;
    font-size: 19px;
    line-height: 23px;
    font-weight: 500;
    margin-bottom: 28px;
}

.box-metrikal-for ul {

}

.box-metrikal-for ul li {
    margin-left: -24px;
    padding-left: 20px;
    list-style-image: url("../img/how-works/list-dot.svg");
    font-size: 13px;
    line-height: 21px;
    color: #526174;
    font-weight: normal;
    margin-bottom: 20px;
}

#metrikal-different {
    background: url("../img/metrikal-different/bg-metrikal-different.svg") no-repeat -799px -75px;
}

#metrikal-different div.container {
    margin-top: 95px;
    padding-top: 91px;
    border-top: 1px solid #A8C4FF;
    padding-bottom: 162px;

}

@media (max-width: 375px) {
    #metrikal-different div.container {
        padding-bottom: 62px;
    }
}

#metrikal-different h1 {
    font-size: 19px;
    line-height: 23px;
    font-weight: normal;
    margin-bottom: 32px;
    color: #0051FF;
}


#metrikal-different h3 {
    font-size: 26px;
    line-height: 30px;
    font-weight: normal;
    margin-bottom: 56px;
}

#metrikal-different h4 {
    font-size: 21px;
    line-height: 25px;
    color: #0051FF;
    font-weight: normal;
    margin-top: 10px;
    margin-bottom: 35px;

}

#metrikal-different p {
    font-size: 15px;
    line-height: 26px;
    color: #526174;
    font-weight: normal;
}

/*
#metrikal-different h5{
    font-size: 19px;
    line-height: 23px;
    font-weight: normal;
    margin-bottom: 32px;
    color: #0051FF;
}

 */

.different-box-container {
    margin-top: 57px;
}

#metrikal-different div.different-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 0.5rem 1rem rgba(208, 223, 255, 0.75);
    padding: 45px 50px 45px 50px;
    margin-bottom: 20px;
}

@media (max-width: 375px) {
    #metrikal-different div.different-box {
        margin-bottom: 30px;
    }
}

#metrikal-different div.different-box h5 {
    font-size: 19px;
    line-height: 23px;
    font-weight: normal;
    margin-bottom: 32px;
    color: #0051FF;
}

#metrikal-different div.different-box p {
    font-size: 13px;
    line-height: 21px;
    color: #526174;
    height: 120px;
}

@media (max-width: 375px) {

}

/** footer elements */

footer {
    background: #F2F6FF;
    padding-top: 50px;
    padding-bottom: 70px;
}

footer p {
    padding-top: 9px;
    font-size: 11px;
    line-height: 16px;
    color: #686A6E;
}

footer .footer-nav-link {
    font-size: 14px;
    line-height: 18px;
    font-weight: normal;
}

footer a.social-icon {
    margin: 0 10px;
}

footer a.social-icon img {
    margin-top: 11px;
    width: 22px;
}

.owl-stage {
    display: flex;
    align-items: center;
}

.owl-carousel .owl-item img {

    margin: 0 auto;
}

.owl-item {
    padding: 15px;
}

.page-title {
    font-weight: normal;
    font-size: 34px;
    line-height: 40px;
    margin-top: 5px;
    margin-bottom: 28px;
}


.page-text {
    font-size: 14px;
    font-weight: normal;
    line-height: 21px;
    margin-bottom: 35px;
    color: #526174;
}

@media (min-width: 1200px) {
    .page-title, .page-text {
        width: 477px;
    }

    .offset-md-2 .page-title, .offset-md-2 .page-text, .offset-md-2 img {
        margin-left: -60px
    }

    .image-shadow {
        max-width: 477px;
    }
}

@media (max-width: 425px) {
    .footer-nav-link {
        margin-top: 15px;
    }
}


#new-page {
    background: url("/assets/img/new-page/bg.png");
    background-size: 1440px;
    background-position-y: -250px;
}

#new-page #hero {
    margin-top: 100px;
}

#new-page .hero-buttons {
    margin-bottom: 0;
    padding: 0 !important;
}

#new-page img.image-shadow {
    -webkit-box-shadow: 0px 2px 20px 0 rgba(0, 81, 255, 0.3);
    -moz-box-shadow: 0px 2px 20px 0 rgba(0, 81, 255, 0.3);
    box-shadow: 0px 2px 20px 0 rgba(0, 81, 255, 0.3);
    border-radius: 6px;
}

#new-page section div.container {
    border-bottom: 1px solid rgba(168, 196, 255, 0.4);
}

#new-page section div.container .row {
    padding-bottom: 63px;
    padding-top: 63px;
}
