:root {
    --primaryfont-bold: 'Zoho_Puvi_Bold';
    --primaryfont-semibold: 'Zoho_Puvi_SemiBold';
    --primaryfont-regular: 'Zoho_Puvi_Regular';
    --primaryfont-medium: 'Zoho_Puvi_Medium';
    --primaryfont-light: 'Zoho_Puvi_Light';
}


/* Common  */

*,
 :after,
 :before {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}


/* body {
    padding-top: 95px;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: #000;
}

.act-btn {
    background: #e9152b;
    color: #fff;
    cursor: pointer;
    outline: none;
    display: inline-block;
    padding: 13px 40px;
    font-size: 16px;
    line-height: initial;
    border: 1px solid #e9152b;
    text-transform: uppercase;
    font-family: var(--primaryfont-bold);
    border-radius: 4px;
}

.act-btn.line-btn {
    background: none;
    color: #e9152b;
    cursor: pointer;
    outline: none;
    display: inline-block;
    padding: 13px 40px;
    font-size: 16px;
    line-height: initial;
    border: 1px solid #e9152b;
    text-transform: uppercase;
    font-family: var(--primaryfont-bold);
    border-radius: 4px;
}

.content-wrap {
    max-width: 1170px;
    width: 90%;
    margin: 0 auto
}


/* Common End */

#header-topsec {
    position: unset;
}

#commonHeader {
    min-height: 64px;
    height: 95px;
    width: 100%;
    position: static;
    top: 0;
    z-index: 100;
    background: #fff;
    border-bottom: 1px solid #f0f0f0;
}

.head-container {
    padding: 0 !important;
    width: 90% !important;
    max-width: 1600px;
}


/* div#survey {
    display: none !important;
} */


/* Product Header */

.product-header-wrap {
    display: block;
    max-width: 1600px;
    width: 90%;
    margin: 0 auto;
    position: relative;
    top: -6px;
    /* overflow: hidden; */
}

.product-header-wrap .content-wrap,
.product-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 100%;
    width: 100%;
    padding: 0;
    margin: 0 auto;
}

.product-header-top {
    left: 0;
    background: #fff;
    max-width: 100%;
    transition: .25s ease;
    margin: 0 auto;
    overflow: hidden;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    position: fixed;
    width: 100%;
    top: 0;
    min-height: 65px;
    display: flex;
    align-items: center;
    padding: 0 2%;
}

.product-header-wrap .prd-logo,
.product-header-top .prd-logo {
    width: 246px;
    height: 26px;
}

.product-header-wrap .prd-nav,
.product-header-top .prd-nav {
    display: flex;
    justify-content: space-between;
    float: none;
    width: auto;
}

.product-header-wrap .prd-nav ul,
.product-header-top .prd-nav ul {
    display: flex;
    align-items: center;
}

.product-header-wrap .prd-nav ul li,
.product-header-top .prd-nav ul li {
    padding: 0 10px;
    /* float: none; */
}

.product-header-wrap .prd-nav ul li a,
.product-header-top .prd-nav ul li a {
    padding: 0 0 3px;
    border-bottom: 2px solid transparent;
    font-family: var(--primaryfont-medium);
    font-size: 16px;
    color: #000;
    transition: .5s all;
}

span.ico-arrow {
    display: inline-block;
    position: relative;
    top: 5px;
    height: 10px;
    width: 10px;
    padding: 0 0 0 4px;
}

span.ico-arrow:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    height: 10px;
    width: 10px;
    border-style: solid;
    border-color: black;
    border-width: 0px 2px 2px 0px;
    transform: rotate(45deg);
    transition: border-width 150ms ease-in-out;
}

.product-header-wrap .prd-nav ul li a:hover,
.product-header-top .prd-nav ul li a:hover {
    color: #23A279;
}

.product-header-wrap .prd-nav ul li a:hover span.ico-arrow:before,
.product-header-top .prd-nav ul li a:hover span.ico-arrow:before {
    border-color: #23A279;
}

.product-header-wrap .prd-nav ul li a.active,
.product-header-top .prd-nav ul li a.active {
    color: #23A279;
    font-family: var(--primaryfont-bold);
    border-color: #23A279;
}

.product-header-wrap .prd-nav ul li a.active span.ico-arrow:before,
.product-header-top .prd-nav ul li a.active span.ico-arrow:before {
    border-color: #23A279;
}

.product-header-wrap .prd-nav .btn-wrap,
.product-header-top .prd-nav .btn-wrap {
    margin: 0 0 0 20px
}

.product-header-wrap .act-btn.line-btn,
.product-header-top .act-btn.line-btn {
    background-color: #e9152b;
    color: #fff;
}

.prd-mobile-menu {
    display: none;
    padding: 12px 0;
    z-index: 1338;
    position: absolute;
    right: 0;
    top: 0;
}

.mobile-menu,
.mobile-menu:after,
.mobile-menu:before {
    width: 24px;
    height: 4px;
    border-radius: 2px;
}

.mobile-menu {
    position: relative;
    background: black;
    transition: all 0ms 200ms;
    display: block;
}

.animate .mobile-menu {
    background: white;
}

.mobile-menu:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    background: black;
    transition: bottom 200ms 200ms cubic-bezier(0.23, 1, 0.32, 1), transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.mobile-menu:after {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    background: black;
    transition: top 200ms 200ms cubic-bezier(0.23, 1, 0.32, 1), transform 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.animate .mobile-menu:after {
    top: 0;
    transform: rotate(45deg);
    transition: top 200ms cubic-bezier(0.23, 1, 0.32, 1), transform 200ms 200ms cubic-bezier(0.23, 1, 0.32, 1);
}

.animate .mobile-menu:before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 200ms cubic-bezier(0.23, 1, 0.32, 1), transform 200ms 200ms cubic-bezier(0.23, 1, 0.32, 1);
}


/* Product Header End*/


/*  */

.product-header-wrap .prd-nav ul,
.product-header-top .prd-nav ul {
    font-size: 0;
    list-style-type: none;
}

.product-header-wrap .prd-nav ul li,
.product-header-top .prd-nav ul li {
    font-family: "Open Sans", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #333;
    display: inline-block;
    position: relative;
    float: none;
    width: auto;
    text-align: inherit;
}

.product-header-wrap .prd-nav ul li ul,
.product-header-top .prd-nav ul li ul {
    display: none;
    background: #fff;
    padding: 20px 20px 26px;
    box-shadow: 0px 6px 9px 4px rgb(0 0 0 / 20%);
}

.product-header-wrap .prd-nav ul li ul li.prd-sub-item,
.product-header-top .prd-nav ul li ul li.prd-sub-item {
    padding: 10px 0 0 10px;
    font-family: var(--primaryfont-regular);
}

.product-header-wrap .prd-nav ul li ul li.prd-sub-item a,
.product-header-top .prd-nav ul li ul li.prd-sub-item a {
    font-family: var(--primaryfont-medium);
    font-size: 14px;
    border-bottom: none;
    padding: 0;
}

.product-header-wrap .prd-nav ul li ul li.prd-sub-title,
.product-header-top .prd-nav ul li ul li.prd-sub-title {
    padding: 0;
    border-bottom: none;
    font-family: var(--primaryfont-bold);
    font-size: 16px;
    color: #000;
    transition: .5s all;
}

.product-header-wrap .prd-nav ul li ul li.prd-sub-title.title-alone:before,
.product-header-top .prd-nav ul li ul li.prd-sub-title.title-alone:before {
    content: none;
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 147px;
    height: 2px;
    background: #000;
}

.product-header-wrap .prd-nav ul li ul li.prd-sub-title:nth-child(1),
.product-header-top .prd-nav ul li ul li.prd-sub-title:nth-child(1) {
    padding: 0;
}

.product-header-wrap .prd-nav ul li ul li.prd-sub-title a,
.product-header-top .prd-nav ul li ul li.prd-sub-title a {
    font-family: var(--primaryfont-semibold);
    border-bottom: 1px solid #ddd;
    display: block;
    padding: 12px 0;
    position: relative;
}

.product-header-wrap .prd-nav ul li ul li.prd-sub-title:nth-child(2) a:after,
.product-header-top .prd-nav ul li ul li.prd-sub-title:nth-child(2) a:after {
    content: 'New';
    padding: 2px;
    font-size: 10px;
    background: #e9152b;
    vertical-align: super;
    margin: 0 0 0 4px;
    color: #fff;
}

.product-header-wrap .prd-nav ul li:hover ul,
.product-header-top .prd-nav ul li:hover ul {
    display: block;
    margin-top: 0px;
    width: 260px;
    top: 25px;
    left: 10px;
    position: absolute;
}

.product-header-wrap .prd-nav ul li ul li.prd-sub-title.title-alone,
.product-header-top .prd-nav ul li ul li.prd-sub-title.title-alone {
    padding: 15px 0 0;
}

.product-header-wrap .prd-nav ul li:hover ul li,
.product-header-top .prd-nav ul li:hover ul li {
    display: block;
}

.product-header-wrap .prd-nav ul li:hover ul li span,
.product-header-top .prd-nav ul li:hover ul li span {
    float: right;
    color: #f9f9f9;
    background-color: #F03861;
    padding: 2px 5px;
    text-align: center;
    font-size: 0.8rem;
    border-radius: 3px;
}

.product-header-wrap .prd-nav ul li:hover ul li:hover span,
.product-header-top .prd-nav ul li:hover ul li:hover span {
    background-color: #ee204e;
}

.slide {
    top: -500px;
}


/* Product footer*/

.product-footer {
    padding: 80px 0;
    background-color: #fbfbfb;
    border-top: 1px solid #ededed;
}

.product-footer .content-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-footer-promo {
    width: 300px;
    display: none;
}

.promo-img-2 {
    margin: 15px 0 0;
}

.foo-quick-nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    max-width: 840px;
    margin: 0 auto;
}

.foo-quick-nav-list h3 {
    font-size: 24px;
    line-height: 1;
    margin: 0 0 20px;
}

.foo-quick-nav ul li:not(:last-child) {
    padding: 0 0 10px;
}

.foo-quick-nav ul li a {
    font-size: 16px;
    color: #000;
    transition: .3s all;
}

.foo-quick-nav ul li a:hover {
    color: #138cd6
}


/* Product Footer End*/


/* One Line Form */

.one-line-form {
    margin: 30px auto 0;
    max-width: 563px;
    text-align: left;
}

.form-group {
    margin: 0;
    z-index: 1;
}

.one-line-wrap .form-group.country-select-box {
    margin: 0;
    display: flex;
    position: relative;
    width: 59px;
    left: 0px;
}

.one-line-wrap {
    display: flex;
    align-items: center;
}

.one-line-wrap .form-group:nth-child(1) {
    width: 300px;
    margin: 0;
}

.list-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.one-line-wrap input#btnSubmit {
    margin: 0;
    padding: 7px 14px;
    height: 44px;
    border-radius: 0;
    border: 1px solid #e9152b;
    max-width: 160px;
}

.one-line-wrap input[type="text"],
.one-line-wrap input[type="email"],
.one-line-wrap input[type="number"],
.one-line-wrap select,
.one-line-wrap textarea {
    padding: 7px 14px;
    height: 45px;
    border: 1px solid #cfd9ea !important;
    appearance: none;
    margin: 0 !important;
    outline: none;
}

.one-line-wrap select#MECountryListing {
    width: 60px;
    font-weight: 300;
    height: 45px;
    border: 0;
    padding: 0 10px;
    box-sizing: border-box;
    border-radius: 0;
    margin: 0;
    z-index: 9;
    position: relative;
    color: #000;
    font-size: 12px;
    opacity: 0;
    -moz-appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    float: left;
    padding: 0;
    left: -1px;
}

.one-line-wrap .selectedCountry {
    text-align: left;
    width: 60px;
    height: 100%;
    top: 0px;
    position: absolute;
    color: #000;
    font-size: 14px;
    line-height: 33px;
    left: -1px;
    padding-left: 8px;
    font-weight: 300;
    background: #fff;
    padding-top: 5px;
    border: 1px solid #cfd9ea;
    z-index: 1;
}

.one-line-wrap .selectedCountry:before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #1e0437;
    z-index: 4;
    right: 10px;
    top: 20px;
}

.one-line-wrap .selectedCountry:after {
    content: "";
    position: absolute;
    width: 1px;
    height: 33px;
    top: 0;
    right: 0;
    background-color: #e6e6e6;
    display: none;
}

.one-line-wrap.with-state {
    max-width: 540px;
}

.one-line-wrap.with-state .form-group.country-select-box {
    width: auto;
}

.one-line-wrap.with-state .form-group.country-select-box .selectedCountry {
    left: -15px;
}

.one-line-wrap select#country_state,
.one-line-wrap select#ukcountry_region {
    left: -2px;
    position: relative;
    width: 98px;
    appearance: none;
    border: 1px solid #cfd9ea;
}

.one-line-form.with-state .form-group.country-select-box {
    width: 156px;
}

.ffw-errmsg {
    display: none;
    color: red;
    font-size: 12px;
    margin-top: -20px;
    position: absolute;
    font-weight: 300;
    white-space: nowrap;
}


/* One Line Form END */


/*  */


/* .pmp-banner-wrap {
    margin: 95px 0 0;
} */

@media (max-width: 1100px) {
    /* body {
        padding-top: 80px;
    } */
    #commonHeader {
        height: 80px !important;
    }
    #topsec-rhs {
        display: none;
    }
    .prd-mobile-menu {
        display: block;
        right: 0;
    }
    .product-header-wrap {
        overflow: unset;
        top: 0px;
    }
    .product-header-wrap .prd-nav {
        display: block;
        position: fixed;
        bottom: 0;
        right: -320px;
        left: unset;
        width: 320px;
        height: calc(100% - 80px);
        background: #fff;
        z-index: 1000;
        transition: 1s all;
        padding: 30px
    }
    .animate.product-header-wrap .prd-nav {
        right: 0;
    }
    .product-header-wrap:before {
        transition: 1s background;
        content: '';
        position: fixed;
        bottom: 0;
        height: calc(100% - 80px);
        width: 120%;
        background: #000000c2;
        transition: 1s background;
        display: none;
        right: 0;
    }
    .animate.product-header-wrap:before {
        display: block
    }
    .product-header-wrap .prd-nav ul {
        display: block;
    }
    .product-header-wrap .prd-nav ul li {
        padding: 5px;
        display: block;
    }
    .product-header-wrap .prd-nav ul li:hover ul {
        position: static;
    }
    .product-header-wrap .prd-nav ul li ul {
        box-shadow: none;
        padding: 10px 20px;
    }
    .product-header-wrap .prd-nav .btn-wrap {
        margin: 10px 0 0;
    }
    .product-header-top {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .product-footer {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .one-line-wrap {
        display: block;
    }
    .one-line-wrap .selectedCountry {
        display: none;
    }
    .one-line-wrap .form-group {
        background: transparent;
    }
    .one-line-wrap .form-group:nth-child(1),
    .one-line-wrap select#country_state,
    .one-line-wrap select#ukcountry_region {
        width: 100%;
    }
    .one-line-wrap select#MECountryListing {
        opacity: 1;
        width: 100%;
        border: 1px solid #cfd9ea;
        font-size: 15px;
        appearance: auto;
        -webkit-appearance: auto;
        padding: 0 10px;
    }
    .one-line-wrap .form-group.country-select-box,
    .one-line-form.with-state .form-group.country-select-box {
        display: block;
        width: 100%;
    }
    .one-line-wrap input[type="text"],
    .one-line-wrap input[type="email"],
    .one-line-wrap input[type="number"],
    .one-line-wrap select,
    .one-line-wrap textarea {
        appearance: auto;
        margin: 0 0 10px 0 !important;
        width: 100%;
    }
    .one-line-wrap input#btnSubmit {
        max-width: 100%;
    }
}



#scroll ul {
    padding: 10px 0 10px 30px;
    list-style-type: none;
}
     :root {
        --feat_list_border: 1px dashed #dcdcdc;
    }
    
    h1 {
        font-family: var(--primaryfont-bold);
    }
    
    h2 {
        margin: 0;
        font-size: 40px;
        font-family: var(--primaryfont-bold);
        line-height: 1.2;
        margin: 0;
    }
    
    h3 {
        font-size: 24px;
        line-height: 1.4;
        font-family: var(--primaryfont-semibold);
    }
    /*  */
    
    .anim-sec * {
        transition-duration: 1s;
        transition-property: all;
    }
    
    .anim-sec .banner-left,
    .anim-sec .banner-right,
    .anim-sec .one-line-form,
    .solution-wrap .anim-sec h2,
    .solution-wrap .anim-sec p,
    .solution-wrap .anim-sec h4,
    .solution-wrap .anim-sec span,
    .features-wrap .anim-sec .heading-wrap h2,
    .features-wrap .anim-sec .heading-wrap p,
    .features-wrap .anim-sec ul li,
    .features-wrap .anim-sec .btn-wrap a,
    .demo-wrapper .content-wrap.anim-sec,
    .demo-wrapper .anim-sec .why-pmp-heading-wrap h2,
    .demo-wrapper .anim-sec .why-pmp-heading-wrap p,
    .demo-wrapper .anim-sec ul li,
    .customers-wrap .anim-sec h3,
    .customers-wrap .anim-sec ul li,
    .pam-footer-wrap .anim-sec h2,
    .pam-footer-wrap .anim-sec p,
    .demo-wrapper .content-wrap {
        -webkit-transform: translateY(70px);
        -ms-transform: translateY(70px);
        transform: translateY(70px);
        opacity: 0;
    }
    
    .anim-sec.ele-cont-view .banner-left,
    .anim-sec.ele-cont-view .banner-right,
    .anim-sec.ele-cont-view .one-line-form,
    .solution-wrap .anim-sec.ele-cont-view h2,
    .solution-wrap .anim-sec.ele-cont-view p,
    .solution-wrap .anim-sec.ele-cont-view h4,
    .solution-wrap .anim-sec.ele-cont-view span,
    .features-wrap .anim-sec.ele-cont-view .heading-wrap h2,
    .features-wrap .anim-sec.ele-cont-view .heading-wrap p,
    .features-wrap .anim-sec.ele-cont-view ul li,
    .features-wrap .anim-sec.ele-cont-view .btn-wrap a,
    .demo-wrapper .content-wrap.anim-sec.ele-cont-view,
    .demo-wrapper .anim-sec.ele-cont-view .why-pmp-heading-wrap h2,
    .demo-wrapper .anim-sec.ele-cont-view .why-pmp-heading-wrap p,
    .demo-wrapper .anim-sec.ele-cont-view ul li,
    .customers-wrap .anim-sec.ele-cont-view h3,
    .customers-wrap .anim-sec.ele-cont-view ul li,
    .pam-footer-wrap .anim-sec.ele-cont-view h2,
    .pam-footer-wrap .anim-sec.ele-cont-view p {
        -webkit-transform: translateY(0px);
        -ms-transform: translateY(0px);
        transform: translateY(0px);
        opacity: 1;
    }
    
    .demo-wrapper .anim-sec ul li {
        transition-duration: .1s;
        transition-property: all;
        transition-delay: .1s !important;
    }
    /*  */
    
    .pmp-banner-wrap {
width: 100%;
        padding: 80px 0;
        overflow: hidden;
        position: relative;
        align-items: center;
        justify-content: center;
        background: #e1f5ef;
    }
    
    .pmp-banner-wrap .content-wrap {
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .banner-right {
        max-width: 420px;
        border: 1px solid #bcbcbc;
        padding: 20px 30px 30px;
        border-radius: 5px;
        background: #fff;
    }
    
    .banner-right h3 {
        margin: 0;
        text-align: center;
    }
    
    .banner-left {
        max-width: 660px;
    }
    
    .banner-left h1 {
        font-size: 48px;
        line-height: 1.25;
        margin: 0 0 0;
        color: #000;
    }
    
    .banner-left p {
        font-size: 20px;
        margin: 15px 0 25px;
    }
    
    .banner-left p span {
        font-family: var(--primaryfont-bold);
    }
    
    .pmp-banner-wrap ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 20px;
        text-align: left;
    }
    
    .pmp-banner-wrap ul li {
        position: relative;
        padding: 0 0 0 30px;
    }
    
    .pmp-banner-wrap ul li::after,
    .pmp-banner-wrap ul li::before {
        content: "";
        position: absolute
    }
    
    .pmp-banner-wrap ul li::before {
        width: 4px;
        height: 8px;
        border-right: 1.5px solid #000;
        border-bottom: 1.5px solid #000;
        border-image: initial;
        border-left: unset;
        border-top: unset;
        left: 8px;
        transform: rotate(45deg);
        top: 8px;
    }
    
    .pmp-banner-wrap ul li::after {
        width: 18px;
        height: 17px;
        border: 1.5px solid #000;
        left: 0;
        top: 4px;
        border-radius: 50%
    }
    /*  */
    
    .one-line-form {
        max-width: 550px;
        margin: 0 0 0;
    }
    
    .one-line-form * {
        transition: none !important;
    }
    
    .const-text {
        color: #626262;
    }
    
    .success-message {
        display: none;
    }
    
    .success-message p {
        font-size: 13px;
    }
    
    .success-message p a {
        border-bottom: 1px solid;
    }
    
    .one-line-wrap .form-group:nth-child(1) {
        width: 340px;
    }
    
    .form-group.country-select-box {
        background: transparent;
    }
    /*  */
    
    .pmp-content-wrap {
        position: relative;
    }
    
    .pmp-content-wrap .section {
        padding: 80px 0;
    }
    
    .section .customers-wrap {
        padding: 100px 0;
    }
    
    .section .solution-wrap {
        padding: 0;
    }
    
    .section .features-wrap {
        padding: 100px 0;
    }
    /*  */
    
    .section.customers-wrap {
        position: relative;
        background-color: #ffffff;
    }
    
    .section.customers-wrap:before {
        content: none;
        position: absolute;
        top: -50px;
        bottom: 0;
        z-index: 7;
        width: 100%;
        height: 100px;
        animation-duration: 30s;
    }
    
    .customers-wrap .content-wrap {
        position: relative;
        overflow: hidden;
    }
    
    .section.customers-wrap .content-wrap:before,
    .section.customers-wrap .content-wrap:after {
        content: none;
        position: absolute;
        background-image: linear-gradient(to right, rgb(1 13 45) 0%, rgba(255, 255, 255, 0) 100%);
        height: 100%;
        width: 25%;
        z-index: 2;
        pointer-events: none;
    }
    
    .customers-wrap .content-wrap:after {
        right: 0;
        top: 0;
        transform: rotate(180deg);
    }
    
    .customers-wrap h3 {
        font-size: 24px;
        margin: 0 0 30px;
    }
    
    .customers-wrap ul {
        white-space: nowrap;
        position: relative;
        display: flex;
        justify-content: center;
        max-width: 1100px;
        width: 100%;
        margin: 0 auto;
        align-items: center;
        flex-wrap: wrap;
    }
    
    .customers-wrap ul li {
        background-image: url(https://www.manageengine.com/br/passwordmanagerpro/images/pmp-customers-logo-sprite.png);
        background-size: auto 60px;
        background-repeat: no-repeat;
        height: 60px;
        width: 120px;
        white-space: nowrap;
        margin: 15px 25px;
    }
    
    .customers-logo {
        display: block;
        white-space: nowrap;
    }
    
    .gb-bbc {
        background-position: 0 0;
    }
    
    .gb-kpmg {
        background-position: -120px 0;
    }
    
    .gb-dell {
        background-position: -240px 0;
    }
    
    .gb-cisco {
        background-position: -360px 0;
    }
    
    .gb-noki {
        background-position: -478px 0;
    }
    
    .gb-gsa {
        background-position: -596px 0;
    }
    /*  */
    
    .btn-wrap {
        margin: 0;
    }
    
    .act-btn {
        background: #e9152b;
        color: #fff;
        padding: 12px 25px;
        font-size: 17px;
        line-height: 1.4;
        display: inline-block;
        cursor: pointer;
        border-radius: 3px;
        font-family: var(--primaryfont-semibold);
        border: 1px solid transparent;
    }
    
    a.act-btn.btn-border {
        background: transparent;
        color: #000;
        border: 1px solid;
        margin: 0 10px 0 0;
    }
    
    .section.features-wrap {
        position: relative;
        padding: 80px 0;
        background: #f4fdfa;
        color: #000;
    }
    
    .features-wrap .content-wrap h2 {
        max-width: 870px;
        margin: 0 auto 20px;
        color: #000;
    }
    
    .features-wrap .heading-wrap p {
        margin: 0;
    }
    
    .features-list-wrap ul {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
        margin: 40px 0;
        position: relative;
    }
    
    .features-list-wrap ul li {
        padding: 25px;
        border: var(--feat_list_border);
        transition-duration: .5s;
        transition-property: all;
    }
    
    .features-list-wrap ul li:hover {
        box-shadow: 0 0 10px 5px #f1fdfa;
    }
    
    .features-list-wrap ul li p:last-child {
        margin: 0;
    }
    
    .features-list-wrap p.link-text-wrap {
        text-align: right
    }
    
    .features-list-wrap p.link-text-wrap a {
        background: none;
        color: #138cd6;
        padding: 0 20px 2px 0;
        transition: 0.5s all;
        font-family: var(--primaryfont-semibold);
        position: relative;
    }
    
    .features-list-wrap p.link-text-wrap a:after {
        content: '\2794';
        font-size: 17px;
        position: absolute;
        right: 0;
        transition: .5s all;
    }
    
    .features-list-wrap p.link-text-wrap a:hover:after {
        transform: translateX(15px);
    }
    
    .features-list-wrap ul li h3 {
        margin-top: 15px;
        color: #000;
    }
    
    .features-list-wrap ul li span {
        display: block;
        width: 60px;
        height: 70px;
        text-indent: -9999px;
        background-image: url(https://www.manageengine.com/br/passwordmanagerpro/images/epm-sprite.png);
        background-size: 510px auto;
        background-repeat: no-repeat;
    }
    
    .features-list-wrap ul li:nth-child(1) span {
        background-position: -300px 0;
    }
    
    .features-list-wrap ul li:nth-child(2) span {
        background-position: -366px 0;
        width: 70px;
    }
    
    .features-list-wrap ul li:nth-child(3) span {
        background-position: -437px 0;
        width: 70px;
    }
    
    .features-list-wrap a.act-btn.btn-border {
        margin: 0;
        color: #e5152b;
    }
    
    .customers-wrap {
        background: transparent;
        color: #fff;
    }
    
    .section.solution-wrap {
        padding: 0 0 80px;
        margin: 0 0 0;
    }
    
    .solution-wrap .content-wrap {
        padding: 0;
        color: #000;
        border-radius: 10px;
    }
    
    .solution-wrap .content-wrap h2 {
        font-size: 40px;
        color: #000;
        margin: 0 0 20px;
    }
    
    .solution-heading {
        max-width: 720px;
        margin: 0 auto;
        text-align: center;
    }
    
    .solution-heading p:last-child {
        margin: 0;
    }
    
    .solution-wrap ul {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-gap: 40px;
        margin: 60px 0;
    }
    
    .solution-wrap ul li h4 {
        color: #000000;
        margin: 0 0 15px;
    }
    
    .solution-wrap ul li p:last-child {
        margin: 0;
    }
    
    .solution-wrap ul li span {
        display: block;
        width: 60px;
        height: 60px;
        text-indent: -9999px;
        background-image: url(https://www.manageengine.com/br/passwordmanagerpro/images/epm-sprite.png);
        background-size: 440px auto;
        background-repeat: no-repeat;
        margin: 0 0 15px;
    }
    
    .solution-wrap ul li:nth-child(1) span {
        background-position: 0 0;
    }
    
    .solution-wrap ul li:nth-child(2) span {
        background-position: -63px 0;
    }
    
    .solution-wrap ul li:nth-child(3) span {
        background-position: -125px 0;
    }
    
    .solution-wrap ul li:nth-child(4) span {
        background-position: -185px 0;
    }
    /*  */
    
    .demo-wrapper .content-wrap {
        padding: 40px;
        border: 1px solid #e4e4e4;
    }
    /*  */
    
    .section.pam-footer-wrap {
        text-align: center;
        padding: 0 0 80px;
    }
    
    .pam-footer-wrap .content-wrap {
        max-width: 1030px;
        color: #fff;
        border-radius: 10px;
    }
    
    .pam-footer-wrap h2 {
        margin: 0 0 15px;
        color: #000;
        font-size: 38px;
        line-height: 1.25;
    }
    
    .pam-footer-wrap a.act-btn.btn-border {
        background: transparent;
        color: #fff;
        border-color: #fff;
    }
    
    .trans-effect~label {
        color: #7c7c7c;
        top: 10px;
        font-size: 14px;
    }
    
    span.focus-border {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
    }
    
    .form-group {
        margin: 25px 0;
        background: #fff;
    }
    
    input#btnSubmit {
        margin: 0;
    }
    
    .trans-effect~.focus-border:before,
    .trans-effect~.focus-border:after,
    .trans-effect~.focus-border i:before,
    .trans-effect~.focus-border i:after {
        background-color: #012643;
    }
    
    .trans-effect:focus~label,
    .has-content.trans-effect~label {
        opacity: 0;
    }
    
    #demoForm .const-text,
    #demoForm #meGDPRMessage {
        color: #fff;
    }
    
    #meGDPRMessage {
        padding: 0 0;
        margin: 10px 0 0;
        color: #3c3c3c;
    }
    /*  */
    
    .why-pmp-heading-wrap {
        text-align: center;
    }
    
    .why-pmp-heading-wrap h2 {
        margin: 0 0 15px;
        font-size: 24px;
    }
    
    .why-pmp-heading-wrap p:last-child {
        margin: 0;
    }
    
    p.clearfix {
        line-height: 0;
    }
    /*  */
    
    .ffw-errmsg {
        display: none;
        color: red;
        font-size: 12px;
        margin-top: -16px;
        position: absolute;
        top: 0;
        font-weight: 300;
        white-space: nowrap;
    }
    
    @media screen and (max-width: 1366px) {
        h2 {
            font-size: 36px;
        }
        .banner-left h1 {
            font-size: 44px;
        }
        .banner-left p {
            font-size: 20px;
        }
        /**/
        .section.features-wrap {
            padding: 80px 0;
        }
        .section.customers-wrap:before {
            top: -40px;
        }
        .solution-wrap .content-wrap h2 {
            font-size: 36px;
        }
        .banner-left {
            max-width: calc(100% - 420px);
        }
        .banner-right {
            max-width: 380px;
        }
        .pam-footer-wrap h2 {
            font-size: 36px;
        }
    }
    
    @media screen and (max-width: 992px) {
        .banner-left h1 {
            font-size: 42px;
        }
        .pmp-banner-wrap {
            text-align: center;
        }
        .pmp-banner-wrap .content-wrap {
            display: block;
        }
        .banner-left {
            max-width: 100%;
        }
        .banner-right {
            margin: 60px auto 0;
            text-align: left;
        }
        /**/
        .solution-wrap .content-wrap h2 {
            max-width: 100%;
            text-align: center;
        }
        .solution-wrap ul {
            grid-template-columns: repeat(2, 1fr);
        }
        .solution-wrap-text {
            width: 100%;
            margin: 25px 0 0;
        }
        .features-wrap .content-wrap {
            display: block;
        }
        .features-wrap .content-wrap h2 {
            width: 100%;
            position: unset;
            text-align: center;
        }
        .features-list-wrap {
            width: 100%;
        }
        .features-list-wrap ul {
            margin: 40px 0;
            grid-template-columns: repeat(2, 1fr);
        }
        .demo-wrapper .content-wrap {
            display: block;
        }
        .pam-footer-wrap h2 {
            font-size: 34px;
        }
    }
    
    @media screen and (max-width: 767px) {
        .banner-left h1 {
            font-size: 30px;
        }
        h2 {
            font-size: 34px;
        }
        .solution-wrap .content-wrap h2 {
            font-size: 34px;
        }
        .pmp-banner-wrap:before,
        .section.customers-wrap:before {
            content: none;
        }
        .one-line-wrap .form-group:nth-child(1) {
            width: 100%;
        }
        /*      */
        .section.features-wrap,
        .section.demo-wrapper {
            padding: 80px 0;
        }
        .section.customers-wrap {
            display: none;
        }
        .section.solution-wrap {
            padding: 80px 0;
        }
        /*      */
        .solution-wrap-text p.btn-wrap a {
            text-align: right;
        }
        .pam-footer-wrap h2 {
            font-size: 32px;
        }
    }
    
    @media screen and (max-width: 650px) {
        .features-list-wrap ul {
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 30px;
        }
        .features-list-wrap ul:before {
            content: none;
        }
        .features-list-wrap ul li {
            padding: 20px !important;
            border: var(--feat_list_border) !important;
        }
        a.act-btn.btn-border {
            margin: 0 0 10px;
        }
        .pam-footer-wrap a.act-btn {
            margin: 10px 0 0
        }
        .solution-wrap ul {
            grid-template-columns: repeat(1, 1fr);
        }
    }
    
    @media screen and (max-width: 420px) {
        .pmp-banner-wrap ul {
            grid-template-columns: repeat(1, 1fr);
            grid-gap: 10px;
            max-width: 320px;
            margin: 0 auto;
            font-size: 15px;
        }
    }

.footer .col1 {
    padding: 2% 4% 2% 0;
    border-right: 1px solid #292929;
    min-height: 250px;
    width: 32%;
}

.footer .col3 {
    padding: 4% 0 0 3%;
}
.prd-nav li {
    width: 25%;
}

.prd-nav .btm-dwn a {
    width: 160px;
}
.heading-menu {
    display: none;
}