/* Common CSS */
.content-wrap {
  max-width: 1180px;
}
.zw-product-header {
  background-color: #ECF6FE;
}

/* Banner Section */
.zwc-banner-section {
  padding: 80px 0 100px;
  background-color: #ECF6FE;
}
.banner-cont {
  max-width: 840px;
}
.banner-cont h1 {
  font-size: 60px;
  margin-bottom: 25px;
}
.banner-cont p {
  font-size: 18px;
}
.banner-cont p:last-child {
  padding-bottom: 10px;
}
.banner-brands p {
  border-top: 1px solid #B7C1C8;
  padding-top: 30px;
  max-width: 500px;
}
.banner-brands {
  max-width: 700px;
}
.item1 { grid-area: one; }
.item2 { grid-area: two; }
.item3 { grid-area: three; }
.item4 { grid-area: four; }
.item5 { grid-area: five; }

.grid-container {
  display: grid;
  grid-template-areas:'one two three four five';
  align-items: center;
  gap: 30px;
}
.grid-container > div {
  max-width: 100px;
}

/* Compare Section */
.zwc-compare-table {
  padding: 120px 0;
}
.zwc-compare-table h2, .zwc-features-section h2 {
  font-family: var(--zf-primary-medium);
  font-size: 32px;
  text-align: center;
  padding-bottom: 40px;
}
.zme-logo
{
  text-align: left;
    margin: auto;
    max-width: 250px;
}
th, td {
  padding: 30px;
  border: 2px solid #236DB4;
  background-color: #EFF5FB;
}
th:nth-child(even), td:nth-child(even) {
  background-color: #E7F6F1;
  border: 2px solid #03140E;
}
td {
  padding: 20px 30px 35px 70px;
  border-top: none;
  border-bottom: none;
  border-right: none;
  position: relative;
}
td:nth-child(even) {
  border-top: none;
  border-bottom: none;
}
td::after {
  content: '';
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0px;
}
td:nth-child(odd)::after {
  background: linear-gradient(to left, rgba(216, 230, 243, 0.65) 0%,rgba(216, 230, 243, 0) 100%);
}
td:nth-child(even)::after {
  background: linear-gradient(to right, rgba(214, 230, 225, 0.65) 0%,rgba(214, 230, 225, 0) 100%);
}
tr:last-child td:first-child {
  border-bottom: 2px solid #236DB4;
}
tr:last-child td:last-child {
  border-bottom: 2px solid #03140E;
}
tr:last-child td:first-child::after, tr:last-child td:last-child::after {
  background-color: transparent;
}
tbody:first-child th:first-child{
  background-color: #236DB4;
}
tbody:first-child th:last-child{
  background-color: #03140E;
}
tbody:first-child th:first-child img {
  position: relative;
  top: -5px;
}
td::before {
  content: "";
  display: block;
  width: 8px;
  height: 16px;
  border-style: solid;
  border-image: initial;
  border-width: 0px 2px 2px 0px;
  transform: rotate(40deg);
  position: relative;
  top: 17px;
  left: -25px;
}
tr td:first-child::before {
  border-color: #236DB4;
}
tr td:last-child::before {
  border-color: #03140E;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 20px;
}
tr:last-child td:first-child { border-bottom-left-radius: 20px; }
tr:last-child td:last-child { border-bottom-right-radius: 20px; }  
tr th:nth-child(1) {
  border-radius: 20px 0 0 0;
  vertical-align: bottom;
}
tr th:nth-child(2) {
  border-radius: 0 20px 0 0;
}

/* Feature Section */
.zwc-features-section {
  padding: 20px 0 120px;
}
.zwc-features-section h2 {
  padding-bottom: 15px;
}
.zwc-features {
  display: flex;
  justify-content: space-between;
}
.zwc-features div {
  max-width: 340px;
}
.zwc-features div span {
  position: relative;
}
.zwc-features div span::after {
  content: '';
  display: block;
  width: 49px;
  height: 65px;
  background-image: url(/sites/zweb/images/vault/onpremise-password-manager/features-sprite.svg);
  background-position: 0 0;
  background-repeat: no-repeat;
  margin-bottom: 16px;
}
.zwc-features div:nth-child(2) span::after {
  background-position: -48px 0;
  width: 75px;
}
.zwc-features div:last-child span::after {
  background-position: -123px 0;
  width: 66px;
}
.zwc-features div p {
  font-size: 18px;
  line-height: 1.7;
}

/* Footer Section */
.zwc-footer-section {
  padding: 10px 0 120px 0;
}
.footer-section {
  background-color: #FDF4F5;
  text-align: center;
  padding: 60px 0 70px;
  border-radius: 20px;
}
.footer-section h2 {
  font-size: 42px;
  font-family: var(--zf-primary-bold);
  max-width: 900px;
  margin: 0 auto 25px;
}
.footer-section div {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.try-btn {
  padding: 10px 32px;
  font-size: 17px;
  background: #000000;
  color: #fff;
  display: inline-block;
  font-family: var(--zf-primary-semibold);
  border: 1px solid transparent;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  text-align: center;
}

/* Responsive */
@media screen and (max-width: 1399px) {
  .banner-cont h1 {
      font-size: 50px;
  }
  .zwc-compare-table {
      padding: 100px 0;
  }
  td {
      padding: 10px 30px 25px 70px;
  }
  .zwc-features-section {
      padding: 10px 0 90px;
  }
  .zwc-features div {
      max-width: 320px;
  }
}
@media screen and (max-width: 1199px) {
  .zwc-features div {
      max-width: 280px;
  }
  .zwc-features div p {
      font-size: 16px;
  }
  .zwc-features-section h2 {
      padding-bottom: 5px;
  }
  .footer-section h2 {
      font-size: 37px;
      max-width: 720px;
  }
  .zwc-footer-section {
      padding: 0 0 100px;
  }
}
@media screen and (max-width: 1099px) {
  .try-btn { font-size: 15px; padding: 8px 30px; }
}
@media screen and (max-width: 991px) {
  .banner-cont h1 {
      font-size: 40px;
  }
  .banner-cont {
      max-width: 700px;
  }
  .banner-brands p {
      font-size: 17px;
  }
  .zwc-compare-table h2, .zwc-features-section h2{
      font-size: 26px;
      padding-bottom: 20px;
  }
  .zwc-features-section h2 {
      padding-bottom: 0px;
  }
  td {
      padding: 10px 30px 25px 55px;
      font-size: 16px;
  }
  td::before {
      width: 7px;
      height: 13px;
      top: 15px;
      left: -22px;
  }
  th {
      padding: 20px;
  }
  th img {
      transform: scale(.9);
  }
  th .zme-logo > img {
    transform-origin: left;
}
th .zme-logo > img.me1 {
  transform-origin: left bottom;
}
  .zwc-features div {
      max-width: 260px;
  }
  .footer-section h2 {
      font-size: 31px;
      max-width: 540px;
      margin-bottom: 20px;
  }
  .footer-section {
      background-color: #FDF4F5;
      text-align: center;
      padding: 50px 0 60px;
  }
}
@media screen and (max-width: 890px) {
  .zwc-features {
      justify-content: center;
      gap: 0 50px;
      flex-wrap: wrap;
  }
  .zwc-features div { max-width: 320px; }
}
@media screen and (max-width: 767px) {
  .zwc-banner-section {
      text-align: center;
  }
  .banner-cont {
      max-width: 650px;
      text-align: center;
      margin: auto;
  }
  .banner-cont p {
      font-size: 16px;
  }
  .banner-cont h1 {
      font-size: 32px;
      max-width: 420px;
      margin: 0 auto 20px;
  }
  .banner-brands p {
      margin: 0 auto 25px;
  }
  .zwc-banner-section {
      padding: 60px 0 90px;
  }
  .grid-container {
      grid-template-areas:'one two three''four five six';
  }
  .banner-brands .grid-container {
      max-width: 350px;
      margin: auto;
  }
  .zwc-compare-table {
      padding: 90px 0;
  }
  .zwc-compare-table h2, .zwc-features-section h2 {
      max-width: 450px;
      margin: 0 auto 10px;
  }
  th img {
      transform: scale(.7);
  }
  tbody:first-child th:first-child img {
      top: 0px;
  }
  .zwc-compare-table .content-wrap div {
      overflow-x: auto;
  }
  table {
      width: 700px;
      overflow-x: scroll;
  }
  .zwc-features-section {
      padding: 10px 0 70px;
  }
  .zwc-features div {
      max-width: 420px;
  }
  .zwc-footer-section {
      padding: 0 0 80px;
  }
  .footer-section h2 {
      font-size: 27px;
      max-width: 500px;
  }
  .footer-section {
      padding-right: 20px;
      padding-left: 20px;
  }
  .footer-section div {
      flex-direction: column;
      align-items: normal;
      gap: 10px;
      max-width: 280px;
      margin: auto;
  }
  th {
      padding: 5px;
  }
}
@media screen and (max-width: 480px) {
  .zwc-banner-section {
      padding: 40px 0 80px;
  }
  .banner-cont h1 {
      font-size: 22px;
  }
  .banner-cont p {
      font-size: 14px;
  }
  .zwc-compare-table h2, .zwc-features-section h2, .footer-section h2 {
      font-size: 20px;
  }
  .banner-cont h1, .zwc-compare-table h2, .zwc-features-section h2, .footer-section h2, .zwc-features div{
      max-width: 350px;
  }
  .zwc-features h3 {
      font-size: 18px;
  }
  .zwc-features div p {
      font-size: 14px;
  }
  .zwc-features-section {
      padding: 0px 0 50px;
  }
  .act-btn.cta-btn, .try-btn {
      font-size: 13px;
  }
  .try-btn
  {
    padding: 8px 15px;
  }
  .footer-section div {
      max-width: 230px;
  }
  table {
      width: 590px;
  }
  td {
      padding: 10px 20px 25px 45px;
  }
  tbody:first-child th:first-child img {
      top: -4px;
  }   
}