/* Base styles start */
:root {
    /* section bg colors */
    --zwc-section-bg-one:#E8F5FF;
    --zwc-section-bg-two:#E9FEF1;
    --zwc-section-bg-three:#182331;
    --zwc-section-bg-four:#FEE9E8;
    --zwc-section-bg-five:#FFF9E9;
    --zwc-section-bg-six:#FFF9E9;
    /* section gap  */
    --section-padding-top: clamp(40px, 9vw, 120px);
    --section-padding-bottom: clamp(40px, 9vw, 120px);
    /* font size  */
    --main-heading-font: clamp(30px, 4vw, 50px);
    --heading-font: clamp(23px, 5vw, 42px);
    --sub-heading-font: clamp(21px, 3vw, 27px);
    --card-heading-font: clamp(19px, 3vw, 23px);
    --btn-text-font: clamp(18px, 3vw, 16px);
    --inner-text-font: clamp(15px, 3vw, 17px);
    /* font color */
    --zwc-section-text-black: #000;
    --zwc-section-text-white: #fff;
    /* shadow */
    --zwc-box-shadow:2px 1px 7px #00000029;
    /* button */
    --zwc-btn-top-bottom: clamp(10px, 3vw, 16px);
    --zwc-btn-left-right: clamp(15px, 4vw, 39px);
  }

  .zwc-section-block{
    padding: var(--section-padding-top) 0;
  }
/* Base styles end*/

/* Banner styles start */
  .zwc-banner-section {
    color: var(--zwc-section-text);
  }
  .zwc-banner-section .zwc-banner-text {
    text-align: center;
    width: min(100%, 700px);
    flex: unset;
    margin-inline: auto;
    text-wrap-style: balance;
  }
  .zwc-banner-section .zwc-banner-text img.zwc-main-img{
    width: 150px;
    margin-bottom: 60px;
  }
  .zwc-banner-section .zwc-banner-text h1 {
    font-size: var(--main-heading-font);
  }
  .zwc-banner-section .zwc-banner-text p {
    font-size: var(--inner-text-font);
  }
  .zwc-banner-section .zwc-button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
  }
  .zwc-banner-section .zwc-button-group .zwc-rq-demo, .zwc-banner-section .zwc-button-group .zwc-start-migration {
    border: 1.5px solid var(--zwc-section-text);
    color: var(--zwc-section-text-white);
    background-color: var(--zwc-section-text-black);
    padding: var(--zwc-btn-top-bottom) var(--zwc-btn-left-right);
    font-family: var(--zf-primary-semibold), sans-serif;
    text-transform: uppercase;
    font-size: 15px;
  }
  .zwc-banner-section .zwc-button-group .zwc-rq-demo{
    position: relative;
    padding: var(--zwc-btn-top-bottom) 50px var(--zwc-btn-top-bottom) 20px;
  }
  .zwc-banner-section .zwc-button-group .zwc-rq-demo:after{
    content: "";
    position: absolute;
    right: 20px;
    top: 48%;
    transform: translate(-40%, -40%);
    transform-origin: center center;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
  }
  .zwc-banner-section .zwc-button-group .zwc-rq-demo:before{
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    opacity: 1;
    border-radius: 50%;
    transform: translateY(-50%);
    border: 2px solid #fff;
    top: 50%;
    right: 14px;
    transform-origin: center;
  }
/* Banner styles end*/



/* Why zoho notebook section start */
  .zwc-feature-section {
    background-color: var( --zwc-section-bg-one);
    color: var(--zwc-section-text);
    text-align: left;
    --link-color:#0000ff;
  }
  .zwc-feature-section .zwc-feature-sections-title {
    text-align: center;
    max-width: min(100%, 700px);
    margin-inline: auto;
    padding-block-end: clamp(16px, 3vw, 60px);
    text-wrap-style: balance;
  }
  .zwc-feature-section .zwc-feature-sections-title h2 {
    font-size: var(--heading-font);
  }
  .zwc-feature-section .zwc-feature-sections-list {
    display: flex;
    flex-wrap: wrap;
    --gap: clamp(9px, 9vw, 18px);
    --show-count: 3;
    gap: var(--gap);
    justify-content: space-between;
  }
  .zwc-feature-section .zwc-feature-sections-list li {
    display: flex;
    align-items: self-start;
    width: calc((100% - var(--gap, 0px) * (var(--show-count, 1) - 1)) / var(--show-count, 1));
    background-color: #fff;
    padding: 40px;
    border-radius: 15px;
    max-width: 420px;
    box-shadow: var(--zwc-box-shadow);
  }
  .zwc-feature-section .zwc-feature-sections-list li .zwc-feature-sections-list-text {
    text-align: left;
    max-width: 240px;
  }
  .zwc-feature-section .zwc-feature-sections-list li .zwc-feature-sections-list-text img {
    width: 40px;
    margin-bottom: 15px;
  }
  .zwc-feature-section .zwc-feature-sections-list li .zwc-feature-sections-list-text h3 {
    font-size: var(--card-heading-font);
  }
  .zwc-feature-section .zwc-feature-sections-list li .zwc-feature-sections-list-text p {
    font-size: var(--inner-text-font);
  }
  .zwc-feature-section .zwc-feature-sections-list li .zwc-feature-sections-list-text a {
    color: var(--link-color);
    font-family: var(--secondaryfont-semibold);
    position: relative;
  }
  .zwc-feature-section .zwc-feature-sections-list li .zwc-feature-sections-list-text a:before {
    content: "";
    position: absolute;
    border-bottom: 2px solid var(--link-color);
    width: 15px;
    height: 2px;
    top: 3px;
    bottom: 0;
    margin: auto;
    right: -20px;
  }
  .zwc-feature-section .zwc-feature-sections-list li .zwc-feature-sections-list-text a:after {
    content: "";
    position: absolute;
    border: 2px solid var(--link-color);
    border-left: none;
    border-bottom: none;
    width: 10px;
    height: 10px;
    top: 3px;
    bottom: 0;
    margin: auto;
    right: -20px;
    transform: rotate(45deg);
  }
  .zwc-feature-section .zwc-features-banner {
    line-height: 0;
    margin-top: 30px;
  }
  .zwc-feature-section .zwc-features-banner img {
    -o-object-fit: contain;
    object-fit: contain;
  }
  .zwc-feature-section .zwc-feature-icon{
    background: url(/sites/zweb/images/notebook/zwc-onenote-alternative/zwc-sprite-icon.png);
    background-size: 290px;
    background-repeat: no-repeat;
    background-position: 0;
    width: 55px;
    height: 55px;
    display: block;
    margin-bottom: 10px;
  }
  .zwc-feature-section .zwc-feature-icon-1{
    background-position: 0;
  }
  .zwc-feature-section .zwc-feature-icon-2{
    background-position: -55px;
    width: 52px;
  }
  .zwc-feature-section .zwc-feature-icon-3{
    background-position: -106px;
    width: 47px;
  }
  .zwc-feature-section .zwc-feature-icon-4{
    background-position: -153px;
    width: 45px;
  }
  .zwc-feature-section .zwc-feature-icon-5{
    background-position: -199px;
    width: 46px;
  }
  .zwc-feature-section .zwc-feature-icon-6{
    background-position: -247px;
    width: 43px;
  }
/* Why zoho notebook section end */

/* How to migrate section styles start */

.zwc-migrate-section{
    color: var(--zwc-section-text);
    text-align: left;
    --link-color:#0000ff;
}
.zwc-migrate-section .zwc-migration-sections-title{
    text-align: center;
    max-width: min(100%, 700px);
    margin-inline: auto;
    padding-block-end: clamp(16px, 3vw, 60px);
    text-wrap-style: balance;
}
.zwc-migrate-section .zwc-migration-sections-title h2{
    font-size: var(--heading-font);
}
.zwc-migrate-section .zwc-migration-steps{
   display: flex;
   gap: 30px;
}
.zwc-migrate-section .zwc-step{
    width: 20%;
    text-align: center;
    position: relative;
}
.zwc-migrate-section .zwc-step::after {
    content: '';
    position: absolute;
    top: 30px;
    left: calc(100% - 92px);
    width: calc(100% - 5px);
    height: 2px;
    background: var(--border-color);
    z-index: -1;
}
.zwc-migrate-section .zwc-step:last-child:after{
    display: none;
}
.zwc-migrate-section .zwc-step p{
    font-size: clamp(15px, 3vw, 16px);
}
.zwc-migrate-section .zwc-step-number{
    width: 60px;
    height: 60px;
    background: #0874B0;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0 auto 24px;
    box-shadow:var( --zwc-box-shadow) ;
}
.zwc-migrate-section .zwc-quotes{
    background: #ffd5d5;
    padding: 24px;
    border-radius: 8px;
    margin: 48px auto 0;
    border-left: 4px solid #F59E0B;
    max-width: 850px;
    text-align: center;
}
.zwc-migrate-section .zwc-quotes p{
  margin-bottom: 0;
}

/* How to migrate section styles end */

/* What get section styles start */  
    .zwc-what-get-section{
       background-color: var(--zwc-section-bg-two);
    } 
    .zwc-what-get-section .zwc-feature-sections-list {
        --gap: clamp(9px, 9vw, 18px);
        --show-count: 2;
     }
     .zwc-what-get-section .zwc-feature-sections-list li {
        max-width: 640px;
        line-height: 30px;
     }    
     .zwc-what-get-section .zwc-sub-list{
        padding-left: 30px;
     }
     .zwc-what-get-section .zwc-sub-list li{
        width: 100%;
        box-shadow: none;
        padding: 0;
        position: relative;
     }
     .zwc-what-get-section .zwc-sub-list li.zwc-check-icon:before{
        content: "";
        position: absolute;
        border: 1.5px solid #4caf50;
        border-top: 0;
        border-right: 0;
        width: 15px;
        height: 10px;
        left: -30px;
        transform: rotate(-45deg);
        top: 0;
        bottom: 0;
        margin: auto;
     }
     .zwc-what-get-section .zwc-sub-list li.zwc-cross-icon{      
        position: relative;
    }
    .zwc-what-get-section .zwc-sub-list li.zwc-cross-icon::before,
    .zwc-what-get-section .zwc-sub-list li.zwc-cross-icon::after {
        content: "";
        position: absolute;
        top: 50%;
        left: -23px;
        width: 16px;
        height: 2px;
        transform-origin: center;
    }
    .zwc-what-get-section .zwc-sub-list li.zwc-cross-icon::before { 
        transform: translate(-50%, -50%) rotate(45deg); 
        background-color: #ff0000;
    }
    .zwc-what-get-section .zwc-sub-list li.zwc-cross-icon::after  { 
        transform: translate(-50%, -50%) rotate(-45deg); 
        background-color: #ff0000;
    }
    .zwc-what-get-section .zwc-sub-list li.zwc-caution-icon{ 
        position: relative; 
    }
    .zwc-what-get-section .zwc-sub-list li.zwc-caution-icon:before{
        content: "i";
        content: "i";
        position: absolute;
        background-color: #0874B0;
        left: -31px;
        width: 20px;
        height: 20px;
        background-position: center;
        text-align: center;
        top: 0;
        bottom: 0;
        margin: auto;
        line-height: 20px;
        border-radius: 50%;
        font-size: 14px;
        color: #fff;
        font-weight: bold;
    }
     .zwc-what-get-section .zwc-feature-sections-list li .zwc-feature-sections-list-text {
        text-align: left;
        max-width: 100%;
     }
/* What get section styles end*/

/* Table section starts */
.zwc-table-section{
    color: var(--zwc-section-text);
}
.zwc-table-title{
    text-align: center;
    max-width: min(100%, 700px);
    margin-inline: auto;
    text-wrap-style: balance;
}
.zwc-table-section h2{
    font-size: var(--heading-font);
    margin-bottom: 80px;
}
.zwc-table-section .zwc-comparison-table {
    background: white;
    border-radius: 3px;
    margin-top: 48px;
}
.zwc-table-section .zwc-comparison-table table {
    width: 100%;
    border-collapse: unset;
filter: drop-shadow(2px 1px 47px #00000029);
}

.zwc-table-section .zwc-comparison-table th.zwc-notebook-header:before{
    position: absolute;
    content: "";
    background: #0243e0;
    width: 100%;
    top: -17px;
    height: 40px;
    left: 0;
    outline: 1px solid #0243e0;
    border-radius: 10px;
}
.zwc-table-section .zwc-comparison-table th {
    padding: 40px 25px;
    font-family: var(--primaryfont-semibold);
    text-align: center;
    vertical-align: middle;
    top: 59px;
    position: sticky;
    font-size: 22px;
    z-index: 1;
    border: .5px solid #bbbbbba3;
    background: #FBF8FC;
}
.zwc-table-section .zwc-comparison-table th.zwc-notebook-header {
       background: #0243E0;
      border: 0.5px solid #0243E0;
}
.zwc-text-notebook{
   background:#EEF1FF;
}
.zwc-text-center{
   text-align:center;
}
.zwc-table-section .zwc-comparison-table  td {
    padding: 25px;
    border: .5px solid #bbbbbba3;
    vertical-align: top;
    background: #fbf8fc;
}
.zwc-table-section span.zwc-check-icon{
    position: relative;
    display: inline-block;
}
.zwc-table-section span.zwc-check-icon:before{
    content: "";
    position: absolute;
    border: 2.5px solid #4caf50;
    border-top: 0;
    border-right: 0;
    width: 15px;
    height: 10px;
    left: 0;
    right: 0;
    transform: rotate(-45deg);
     top: -18px;
    bottom: 0;
    margin: auto;
 }
 .zwc-table-section span.zwc-cross-icon{      
    position: relative;
    margin-left: 12px;
    display: inline-block;
}
.zwc-table-section span.zwc-cross-icon::before,
.zwc-table-section span.zwc-cross-icon::after {
    content: "";
    position: absolute;
    top: -13px;
    bottom: 0;
    left: 0;
    margin: auto;
    right: 0;
    width: 16px;
    height: 2.5px;
    transform-origin: center;
}
.zwc-table-section span.zwc-cross-icon::before { 
    transform: translate(-50%, -50%) rotate(45deg); 
    background-color: #ff0000;
}
.zwc-table-section span.zwc-cross-icon::after  { 
    transform: translate(-50%, -50%) rotate(-45deg); 
    background-color: #ff0000;
}
.zwc-table-section .zwc-inner-text-table{
   display: block;
   margin-top: 20px;
   font-size: var(--inner-text-font);
}
.zwc-table-section .zwc-notebook-icon,.zwc-table-section .zwc-onenote-icon{
    background-size: 40px;
    background-position: center;
    width: 40px;
    height: 40px;
    display: block;
    position: absolute;
    margin-right: 20px;
}
.zwc-table-section .zwc-notebook-icon{
    background-image: url(/sites/zweb/images/productlogos/notebook-dark.svg);
    background-size: 190px;
    width: 190px;
    height: 50px;
    background-repeat: no-repeat;
    position: relative;
    margin: auto;
    top: -10px;
}
.zwc-table-section .zwc-onenote-icon{
    background-image:url(/sites/zweb/images/otherbrandlogos/onenote.svg) ;
     left: 60px;
}
.zwc-table-section .zwc-product-heading{
    margin-left: 33px;
    position: relative;
    top: 4px;
}
.zwc-table-section .zwc-comparison-table td.zwc-text-notebook {
    background: #EEF1FF;
    border: none;
    border-left: 0.5px solid blue;
    border-right: 0.5px solid blue;
    border-bottom: 0.5px solid #bbbbbb;
    border-top: 0.5px solid #bbbbbb;
}
.zwc-corner-radius-left-top{
   border-top-left-radius: 10px;
}
.zwc-corner-radius-right-top{
border-top-right-radius: 10px;
}
.zwc-corner-radius-left-bottom{
border-bottom-left-radius: 10px;
}
.zwc-corner-radius-right-bottom{
border-bottom-right-radius: 10px;
}
/* Table section end */


/* FAQ section styles start */
.zwc-faq-section {
    background-color: var( --zwc-section-bg-three);
    color: var(--zwc-section-text-white);
  }
  .zwc-faq-section .content-wrap {
    max-width: 830px;
    counter-reset: div;
  }
  .zwc-faq-section h2 {
    margin-block-end: clamp(16px, 2vw, 45px);
    font-size: var(--heading-font);
    text-align: center;
  }
  .zwc-faq-section .zwc-faq-wrapper .zwc-faq-wrap {
    padding: clamp(20px, 4vw, 26px);
    border-radius: 7px;
    border: 1px solid #374e6c;
    margin-bottom: 15px;
  }
.zwc-faq-section .zwc-faq-wrapper .zwc-faq-wrap.active {
    border: 1px solid #4a99ff;
     background: #06142596;
}
  .zwc-faq-section .zwc-faq-wrapper .zwc-faq-wrap p {
    margin-block: 10px 0;
  }
  .zwc-faq-section .zwc-faq-wrapper .zwc-faq-wrap button {
    font-size: var(--faq-button-font);
    font-family: var(--primaryfont-semibold);
    box-sizing: border-box;
    position: relative;
    padding-right: 30px;
    width: 100%;
    border: unset;
    background: unset;
    text-align: left;
    cursor: pointer;
    color: var(--zwc-section-text);
  }
  .zwc-faq-section .zwc-faq-wrapper .zwc-faq-wrap button::before {
    counter-increment: div;
    content: counter(div) ". ";
  }
  .zwc-faq-section .zwc-faq-wrapper .zwc-faq-wrap button::after {
    content: "";
    width: 8px;
    height: 8px;
    border-top: 1px solid var(--zwc-section-text-white);
    border-right: 1px solid var(--zwc-section-text-white);
    transform: rotate(133deg);
    -ms-transform: rotate(45deg);
    margin-inline: auto 10px;
    position: absolute;
    right: 0;
    top: 10px;
    transition: 0.3s all;
  }
  .zwc-faq-section .zwc-faq-wrapper .zwc-faq-wrap.active button::after {
    transform: rotate(313deg);
    border-top: 1px solid #4a99ff;
    border-right: 1px solid #4a99ff;
  }

/* FAQ section styles end */

/* Bottom CTA section start */

  .zwc-bottom-cta {
    color: var(--zwc-section-text);
  }
  .zwc-bottom-cta .content-wrap {
    width: min(90%, 900px);
    text-align: center;
    text-wrap-style: balance;
    border-radius: 12px;
    background-color: var(--zwc-section-bg);
  }
  .zwc-bottom-cta .content-wrap h2 {
    font-size: var(--heading-font);
  }
  .zwc-bottom-cta .content-wrap .zwc-button-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin-block-start: clamp(14px, 4vw, 30px);
  }
  .zwc-bottom-cta .zwc-button-group .zwc-rq-demo,  .zwc-bottom-cta .zwc-button-group .zwc-start-migration {
    border: 1.5px solid var(--zwc-section-text);
    color: var(--zwc-section-text-white);
    background-color: var(--zwc-section-text-black);
    padding: var(--zwc-btn-top-bottom) var(--zwc-btn-left-right);
    font-family: var(--zf-primary-semibold), sans-serif;
    text-transform: uppercase;
    font-size: 15px;
  }
  .zwc-bottom-cta .zwc-button-group .zwc-rq-demo{
    position: relative;
    padding: var(--zwc-btn-top-bottom) 50px var(--zwc-btn-top-bottom) 20px;
  }
  .zwc-bottom-cta .zwc-button-group .zwc-rq-demo:after{
    content: "";
    position: absolute;
    right: 20px;
    top: 48%;
    transform: translate(-40%, -40%);
    transform-origin: center center;
    width: 0;
    height: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 6px solid #fff;
  }
  .zwc-bottom-cta .zwc-button-group .zwc-rq-demo:before{
    content: "";
    position: absolute;
    width: 25px;
    height: 25px;
    opacity: 1;
    border-radius: 50%;
    transform: translateY(-50%);
    border: 2px solid #fff;
    top: 50%;
    right: 14px;
    transform-origin: center;
  }
/* Bottom CTA section end*/


/* Responsive styles start */
    @media only screen and (max-width: 1440px) {
     .zwc-table-section .zwc-onenote-icon {
       left: 20px;
     }
    }
    @media only screen and (max-width: 1199px) {
        .zwc-feature-section .zwc-feature-sections-list {
            --show-count: 2;
            max-width: 720px;
            margin: auto;
        }
        .zwc-what-get-section .zwc-feature-sections-list {
            max-width: 100%;
        }
       .zwc-table-section .zwc-product-heading {
           margin-left: 30px;
           font-size: 18px;
        }
    }

    @media only screen and (max-width: 1024px) {
        .zwc-migrate-section .zwc-step {
            width: 300px;
        }
        .zwc-migrate-section .zwc-migration-steps {
            max-width: 640px;
            flex-wrap: wrap;
            margin: auto;
            gap: 40px;
            justify-content: center;
        }
        .zwc-migrate-section .zwc-step::after{
            display: none;
        }
        .zwc-what-get-section .zwc-sub-list li.zwc-cross-icon::before, .zwc-what-get-section .zwc-sub-list li.zwc-cross-icon::after {
            top: 17px;
        }  
        .zwc-what-get-section .zwc-sub-list li.zwc-caution-icon:before {
            top: -24px;
        }      
        .zwc-what-get-section .zwc-sub-list li.zwc-check-icon:before {
            top: -34px;
        }
        .zwc-what-get-section .zwc-sub-list {
            max-width: 270px;
        }
     }
     @media only screen and (max-width: 991px) {
        .zwc-table-section .zwc-comparison-table table {
             width: 970px;
        }
        .zwc-table-section .zwc-comparison-table {
            overflow-x: scroll;
        }
      .zwc-table-section .zwc-comparison-table th {
         position: relative;
         top: 0;
    font-size: 19px;
        } 
   .zwc-table-section .zwc-onenote-icon {
       left: 14px;
    }
.zwc-table-section .zwc-notebook-icon {
    top: 0;
}
.zwc-table-section h2 {
    margin-bottom: 50px;
}
    }
    @media only screen and (max-width: 767px) {
    .zwc-feature-section .zwc-feature-sections-title {
      text-align: center;
      margin: auto;
    }
    .zwc-feature-section .zwc-feature-sections-list {
      --show-count: 1;
      flex-direction: column;
      align-items: center;
    }
    .zwc-feature-section .zwc-feature-sections-list li .zwc-feature-sections-list-text {
      text-align: center;
      max-width: 310px;
      margin: auto;
    }
    .zwc-feature-section .zwc-features-banner {
      max-width: 470px;
      margin: 30px auto 0;
    }
    .zwc-what-get-section .zwc-sub-list,.zwc-what-get-section .zwc-feature-sections-list li .zwc-feature-sections-list-text {
        text-align: left;
    }
    .zwc-feature-section .zwc-feature-icon {
        margin: 0 auto 10px;
    }
    .zwc-what-get-section .zwc-feature-sections-list li {
        max-width: 420px;
    }    
     .zwc-video-embed iframe{
       height: 370px;
    }
  }

/* Responsive styles end */