@import url('https://fonts.googleapis.com/css?family=Poppins:100,100i,200,200i,300,300i,400,400i,500,500i,600,600i,700,700i,800,800i,900,900i&subset=devanagari,latin-ext');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    font-family: poppins, sans-serif
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #696969;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

img {
    vertical-align: middle;
    border-style: none;
}

::selection {
    color: #fff;
    background-color: #c82222;
}

::-moz-selection {
    color: #fff;
    background-color: #c82222;
}
a {
    color: #c82222;
    transform: color .4s;
}
a:hover{
    color: #174ea6;
}
.list-none {
    list-style-type: none
}
.text-white{
    color: #fff;
}
.text-center{
    text-align: center;
}
.bg-white {
    background: #fff;
}
.wrap{
    max-width: 1024px;
    margin: 0 auto;
}
.line {
    width: 150px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    margin-left: auto;
    margin-right: auto;
}
.section-title {
    text-align: center;
    padding: 1rem;
    margin: 1rem;
}

.section-title h2 {
    font-size: 2rem;
    color: #202124;
}
input[type=submit],button,.btn {
    outline: none;
    border: none;
    padding: 10px 20px;
    border-radius: 3rem;
    background: #c82222;
    color: #fff;
    transition: background .2s;
    cursor: pointer;
    font-weight: 500;
}
input[type=submit]:hover,button:hover,.btn:hover {
    background: #0664fc;
}
/* Header Menu Started Here*/
.site-header {
    width: 100%;
    padding: 7px 20px;
    position: sticky;
    top: 0;
    z-index: 99999;
    box-shadow: 0 5px 10px 0 rgb(138 155 165 / 15%);
}

.header-wrap,
.rows,.ff-1,.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    max-width: 1040px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.header-wrap {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    flex-wrap: wrap;
}

.site-branding {
    padding: 10px 0;
    margin-right: auto
}

.site-branding img,.footer-logo {
    height: 25px;
    width: auto;
    display: block;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

.site-branding a{
    color:#696969;
}

.main-navigation a {
    padding: 11px;
    font-weight: 500
}

.main-navigation a span {
    position: relative;
    z-index: 99
}

.menu-toggle,
.search-toggle {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 12px;
    cursor: pointer
}

.site-header {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

#menu-toggle:checked+.menu-toggle .menu-icon,
.hidden,
.menu-toggle .close-icon {
    display: none
}

.main-navigation a,
.site-header .icon,
a.search-toggle {
    color: inherit
}

@media only screen and (min-width:731px) {
    .main-menu {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center
    }

    .menu-toggle {
        display: none
    }

    .main-navigation a span:after {
        content: '';
        position: absolute;
        bottom: -3px;
        left: 0;
        width: 0;
        height: 2px;
        background: #c82222;
        -webkit-transition: .3s;
        transition: .3s
    }

    .main-navigation a:hover span:after,
    .main-navigation li.current-menu-item a span:after,.main-navigation a:hover {
        width: 100%;
        color:#c82222;
    }
    .main-navigation a:hover,.footer-menu a:hover {
        width: 100%;
        color: #c82222;
    }

    .main-navigation .sub-menu a span:after {
        content: none
    }
}

@media only screen and (max-width:730px) {
    .main-navigation {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
        -ms-flex-order: 3;
        order: 3
    }

    .main-navigation a {
        display: block;
        padding: 7px 5px
    }

    #menu-toggle:checked+.menu-toggle .close-icon {
        display: block;
        z-index: 999
    }

    .main-menu {
        position: fixed;
        top: 0;
        right: -150%;
        border-top: 3px solid #c82222;
        width: 80%;
        height: 100%;
        overflow: auto;
        padding: 65px 25px 0;
        opacity: 0;
        z-index: 99;
        -webkit-transition: .4s;
        transition: .4s
    }

    #menu-toggle:checked~.main-menu {
        right: 0;
        opacity: 1;
        -webkit-transition: .4s;
        transition: .2s
    }
}

/* Header Menu Ends Here*/

/* Footer section start Here*/
.site-footer{
    padding: 30px 0;
    background-color: #f8f9fa;
}
.site-footer .row{
    justify-content: space-around;
    align-items: center;
}
.footer-menu .menu-item {
    display: inline-block;
    padding: 5px 12px;
}
.footer-menu a{
    color:#5f6368
}
@media only screen and (max-width:549px) {
    .site-footer .row{
        flex-direction: column;
        text-align: center;
    }
    .site-footer .col-left {
        padding-bottom: 10px;
    }
}
/* Footer section Ends Here*/

/* zimimail hero section start Here*/
.zimi-section{
    margin-bottom: 20px;
}
.zimi-hero {
    padding: 90px 10px 20px;
}
.zimi-hero h1 {
    font-size: 42px;
    line-height: 52px;
    letter-spacing: -0.43px;
    color: #202124;
    padding-bottom: 1rem;
}
.zimi-hero h2{
    font-size: 28px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: .0247517px;
    color: #5f6368;
    max-width: 700px;
    margin: 10px auto;
}
.zimi-hero h5 {
    font-size: 18px;
    line-height: 28px;
    max-width: 800px;
    margin: 1rem auto;
    color: #5f6368;
    font-weight: 400;
}
.zimi-hero .ac-btn {
    margin: 1.5rem 0 1rem 0;
}
.zimi-hero .btn,.login-form input#submit{
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .1px;
    line-height: 24px;
    background-color: #c82222;
    border: 1px solid rgba(0,0,0,0);
    border-radius: 4px;
    color: #fff;
    cursor: pointer;
    padding: 12px 24px 11px;
    transition: background-color .2s,box-shadow .2s,color .2s;
}
.zimi-hero .btn:hover,.button--secondary:hover,.login-form input#submit:hover{
    background-color: #174ea6;
    box-shadow: none;
    color: #fff;
}
p.d-none.d-sm-block.mt-4 {
    padding-top: 10px;
}
/* zimimail section Ends Here*/


/* zimimail secure section start Here*/
.ff-1 {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    justify-content: space-evenly;
}

.ff-left {
    display: flex;
    justify-content: center
}

.ff-right,
.ff2-left{
    width: 50%;
    padding: 20px
}

.ff-title {
    font-size: 22px;
    line-height: 22px;
    font-weight: 500;
    padding-bottom: 1rem;
}
.ff-title h2{
    font-size: 28px;
    line-height: 32px;
}
.ff-desc {
    font-weight: 400;
    font-size: 18px;
    color: #575757;
    font-family: poppins, sans-serif;
    padding-bottom: 2rem;
}

@media only screen and (max-width:768px) {
    .ff-1 {
        flex-direction: column;
        gap: 30px
    }
    .zimi-secure .ff-1{
        border-radius: 5px !important;
        margin: 0 1rem;
        padding: 30px 20px !important;
    }

    .ff-11 {
        flex-direction: column-reverse
    }

    .ff2-right {
        display: flex;
        align-items: center;
        justify-content: center
    }
    .ff2-right, .ff-right,
    .ff2-left,.ff-left{
        width: 100%;
        padding: 1rem 0;
        text-align: center
    }
    .zimi-secure .ff-desc{
        padding:0;
    }
    .zimi-hero,.botm-call .zimi-hero {
        padding: 40px 10px 20px !important;
    }
    .zimi-hero h1 {
        font-size: 30px;
        line-height: 40px;
        padding: 1rem;
    }
    .zimi-hero h2 {
        font-size: 22px;
        line-height: 27px;
        padding: 0 1rem;
    }
    .zimi-hero h5 {
        font-size: 16px;
        padding: 1rem;
        margin: 0;
    } 
    .section-title h2 {
        font-size: 25px;
    }
    .section-title{
        margin-bottom: 0;
    }
    .list-li {
        flex-direction: column !important;
        align-items: center !important;
    }
    .li-icon{
        margin-bottom: 1rem !important;
    }
    .zimi-faq{
        padding: 10px;
    }
    .zimi-faq h2{
        font-size: 16px;
        line-height: 24px;
    }
    .zimi-faq p{
        font-size: 14px !important;
    }
    .pricing-cards{
        padding:0 !important;
    }
    .pricing-cards .card{
        margin:1.4rem 15px !important;
    }
    .login-form{
        padding:2rem !important
    }
}
/* zimimail secure section ends Here*/
.zimi-secure {
    padding: 30px 10px 50px;
    margin: 1rem auto;
}
.zimi-secure .ff-1 {
    background: #ffe5e5;
    padding: 30px 20px;
    border-radius: 4rem;
}
.list-li {
    display: flex;
    flex-direction: row;
    margin: 1rem 0;
}
.li-icon {
    min-width: 50px;
    max-width: 50px;
    min-height: 50px;
    max-height: 50px;
    background: #e1f4ff;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 1rem;
    margin-right: 1rem;
    margin-top: auto;
    margin-bottom: auto;
}
.li-title {
    font-size: 13px;
}
/* zimimail faq section start Here*/
.faq-section{
    background: #f8f9fa;
    padding: 20px 10px 40px;
}
.transition, .zimi-faq-ul li i:before, .zimi-faq-ul li i:after, p {
    transition: all 0.25s ease-in-out;
  }
  
  .zimi-faq-ul li {
    animation: flipdown 0.5s ease both;
  }
  
  .no-select,.zimi-faq h2 {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 20px;
    font-weight: 500;
    color: #202124;
  }
  
  .zimi-faq p {
    color: #5f6368;
    font-size: 17px;
    line-height: 26px;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    max-height: 800px;
    opacity: 1;
    transform: translate(0, 0);
    margin-top: 10px;
    margin-bottom: 10px;
    z-index: 2;
  }
  
  .zimi-faq-ul {
    list-style: none;
    perspective: 900;
    padding: 0;
    margin-bottom: 15PX;
  }
  .zimi-faq-ul li {
    position: relative;
    padding: 10px;
    margin: 0;
    border-bottom: 1px solid #bdc1c6;
  }
  .zimi-faq-ul li:nth-of-type(1) {
    animation-delay: 0.5s;
  }
  .zimi-faq-ul li:nth-of-type(2) {
    animation-delay: 0.75s;
  }
  .zimi-faq-ul li:nth-of-type(3) {
    animation-delay: 1s;
  }
  .zimi-faq-ul li:last-of-type {
    padding-bottom: 0;
  }
  .zimi-faq-ul li i {
    position: absolute;
    transform: translate(-6px, 0);
    margin-top: 16px;
    right: 0;
  }
  .zimi-faq-ul li i:before, .zimi-faq-ul li i:after {
    content: "";
    position: absolute;
    background-color: #c82222;
    width: 3px;
    height: 9px;
  }
  .zimi-faq-ul li i:before {
    transform: translate(-2px, 0) rotate(45deg);
  }
  .zimi-faq-ul li i:after {
    transform: translate(2px, 0) rotate(-45deg);
  }
  .zimi-faq-ul li input[type=checkbox] {
    position: absolute;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
  }
  .zimi-faq-ul li input[type=checkbox]:checked ~ p {
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    transform: translate(0, 50%);
  }
  .zimi-faq-ul li input[type=checkbox]:checked ~ i:before {
    transform: translate(2px, 0) rotate(45deg);
  }
  .zimi-faq-ul li input[type=checkbox]:checked ~ i:after {
    transform: translate(-2px, 0) rotate(-45deg);
  }
  
  @keyframes flipdown {
    0% {
      opacity: 0;
      transform-origin: top center;
      transform: rotateX(-90deg);
    }
    5% {
      opacity: 1;
    }
    80% {
      transform: rotateX(8deg);
    }
    83% {
      transform: rotateX(6deg);
    }
    92% {
      transform: rotateX(-3deg);
    }
    100% {
      transform-origin: top center;
      transform: rotateX(0deg);
    }
  }
/* zimimail faq section end Here*/

/* zimimail bottom call section start Here*/
  .botm-call .zimi-hero {
    padding: 40px 10px 40px;
}
/* zimimail bottom call section ends Here*/
.card .row{
    align-items: center;
    justify-content: center;
    padding: 1rem 0;
}
.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .card {
    width: 250px;
    margin: 10px;
    padding: 10px;
    border-radius: 8px;
    background: #fff;
    box-sizing: border-box;
  }
  .user-reviews .card h2 {
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 18px;
    line-height: 18px;
    margin-bottom: -5px;
}
.user-icon {
    margin-right: 1rem;
}
.user-title span{
    font-size: 14px;
}
.pricing-cards{
    padding:2rem 0;
}
.pricing-cards .card{
    border: 1px solid #eee;
    padding: 25px 10px;
    position: relative;
    border-radius: 0;
    width: 263px;
}
.card.focus{
    border: 1px solid #c82222;
}
.card .most-popular {
    background: #ffd4d4;
    color: #cb0505;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    position: absolute;
    text-align: center;
    text-transform: uppercase;
    top: -25px;
    left: 0;
    width: 100%;
}
.card-title{
    font-size: 22px;
    font-weight: 600;
    line-height: 28px;
}
.card-price {
    color: #c82222;
    font-size: 34px;
    font-weight: 400;
}
.card-price span {
    color: #616161;
    font-size: 14px;
    font-weight: 400;
    margin-left: 5px;
}
.card-desc {
    color: #616161;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: .15px;
    line-height: 18px;
    text-align: center;
}
.card-btn {
    margin: 2rem 0 1rem 0;
}
.button--secondary {
    background: #fff;
    border: 1px solid #dadce0;
    color: #c82222;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .1px;
    border-radius: 4px;
    cursor: pointer;
    padding: 12px 24px 11px;
    transition: background-color .2s;
}
.card-feat {
    border-top: 1px solid #eee;
    font-size: 14px;
    line-height: 18px;
    margin-top: 24px;
    text-align: left;
}
.card-feat ul{
    padding-left: 15px;
    padding-top: 10px;
}
.card-feat ul > li{
    margin: 15px 0;
}
.card-feat ul > li:last-child{
    margin-bottom: 0;
}
.gg-check {
    box-sizing: border-box;
    position: relative;
    display: inline-block;
    transform: scale(var(--ggs,1));
    width: 22px;
    height: 18px;
    border: 2px solid transparent;
    border-radius: 100px;
    color: #c82222
}
.gg-check::after {
    content: "";
    display: block;
    box-sizing: border-box;
    position: absolute;
    left: 3px;
    top: -1px;
    width: 6px;
    height: 10px;
    border-width: 0 2px 2px 0;
    border-style: solid;
    transform-origin: bottom left;
    transform: rotate(45deg)
}

.zimi-section.zimi-login {
    padding: 60px 10px;
}
.login-logo {
    margin-bottom: 2rem;
}
.login-logo img.footer-logo {
    margin: 1rem auto;
}
.login-form {
    max-width: 400px;
    margin: 1rem auto;
    background: #fff2f2;
    padding: 3rem;
    border-radius: 1rem;
    width: 100%;
}
.login-form .ff-title{
    padding: 10px 0;
}
.login-form .ff-desc {
    padding-bottom: 0;
}
.login-form .ac-btn {
    margin: 1rem 0;
}
.form-lable {
    display: block;
    font-size: 0.8rem;
    text-align: left;
}
.form-input:focus {
    border: 1px solid #2d7cb2;
    outline: 0;
}
.form-input {
    width: 100%;
    max-width: 500px;
    min-height: 30px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin: 10px 0;
    padding: 10px 20px;
    transition: all 0.5s;
}