.zw-template-inner h1 {
  font-size: 55px;
}

.zw-template-inner h2 {
  font-size: 30px;
}

.zw-template-inner h3 {
  font-size: 21px;
}

.zwrapper {
  color: #fff;
}

.zoho-market-bg {
  background: #001228;
  text-align: center;
}

.zoho-market-bg header {
  padding: 120px 0 50px;
}

.zoho-market-bg header>p {
  max-width: 820px;
  margin: 0 auto 20px;
}

/*zoho-market-videos*/

.zoho-market-videos {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 35px 55px;
}

.zoho-market-videos>div {
  width: 48%;
  border-radius: 20px;
  padding: 20px 20px 10px;
  border: 1px solid #6D6D6D;
  overflow: hidden;
  margin: 0 0 40px;
}

.inner-banner-sec {
  position: relative;
  max-width: 550px;
  margin: 0 auto;
  border-radius: 16px;
}
.inner-banner-sec img{border-radius: 15px;}

.zoho-market-videos h3 {
  margin: 20px 0 10px;
}

.zoho-market-videos .inner-banner-sec .play-icon {
  content: "";
  position: absolute;
  background: url(/sites/zweb/images/marketplace/play-icon.png) no-repeat;
  width: 43px;
  height: 43px;
  background-size: contain;
  right: 4%;
  bottom: 8%;
  cursor: pointer;
}

.hover-play {
  font-size: 12px;
  font-family: var(--primaryfont-semibold);
  border-radius: 30px;
  padding: 5px 3px 0px 15px;
  background: #fff;
  display: flex;
  align-items: center;
  position: absolute;
  color: black;
  right: 4%;
  bottom: 8%;
  visibility: hidden;
  cursor: pointer;
  transform: translateX(20px);
}

.hover-play-icon {
  max-width: 36px;
  margin-left: 8px;
}

.zoho-market-videos>div:hover picture {
  opacity: 0.5;
  z-index: -1;
  transition: all 0.5s ease;
}

.zoho-market-videos>div:hover .hover-play {
  visibility: visible;
  z-index: 1;
  transform: translateX(0);
  transition: all .5s ease;
}

.zoho-market-videos>div:hover .play-icon {
  display: none;
}

/*zoho-mail*/

.zoho-market-mail {
  padding: 55px 0px 105px;
}

.mail-wrap {
  background: #2A4381;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 120px 40px 150px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  border-radius: 4px;
  position: relative;
}

.mail-content {
  width: 65%;
}

.mail-content h2 {
  margin: 0;
}

.mail-content h2:first-child {
  margin-bottom: 5px;
}

.mail-wrap .mail-box {
  font-size: 16px;
  position: relative;
  max-height: 60px;
  font-family: var(--primaryfont-semibold);
  border-radius: 3px;
  cursor: pointer;
  background: #fff;
  display: flex;
  align-items: center;
}

.mail-wrap .mail-box::before {
  content: "";
  background: url(/sites/zweb/images/marketplace/mail-icon.png) no-repeat;
  width: 21px;
  height: 21px;
  background-size: contain;
  display: inline-block;
  position: absolute;
  left: 20%;
  transform: translateX(-50%);
}

.mail-wrap .mail-box .mail-btn {
  color: #2A4381;
  padding: 20px 35px 20px 80px;
}

.mail-wrap .mail-box a:hover {
  text-decoration: none;
}

.mail-wrap::before {
  background: url(/sites/zweb/images/marketplace/gliter-icon1.png) no-repeat;
  content: "";
  width: 134px;
  height: 164px;
  position: absolute;
  background-size: contain;
  left: 10px;
  animation: floating 3s infinite linear;
}

.mail-wrap::after {
  background: url(/sites/zweb/images/marketplace/gliter-icon2.png) no-repeat;
  content: "";
  width: 87px;
  height: 149px;
  position: absolute;
  background-size: contain;
  right: 10px;
  animation: floating 3s infinite linear;
}

.zoho-market-logo {
  max-width: 330px;
  margin: 0 auto 50px;
}

.pad-top-20 {
  padding-top: 20px;
}

/*floating-aimation*/

@keyframes floating {
  from {
      transform: translate(0, 0px);
  }
  65% {
      transform: translate(0, 10px);
  }
  to {
      transform: translate(0, -0px);
  }
}

/*default-animations*/

@media all and (min-width:1200px) {
  .inup1,
  .inup2,
  .inup3 {
      -webkit-transform: translateY(60px);
      transform: translateY(60px);
      -webkit-transition: all 1300ms cubic-bezier(0.11, 0.16, 0.43, 0.86);
      transition: all 1300ms cubic-bezier(0.11, 0.16, 0.43, 0.86)
  }
  .fadeinup3 {
      -webkit-transform: translateY(70px);
      transform: translateY(70px);
      opacity: 0;
      -ms-filter: "alpha(opacity=0)";
      -webkit-transition: all 1300ms cubic-bezier(0.11, 0.16, 0.43, 0.86);
      transition: all 1300ms cubic-bezier(0.11, 0.16, 0.43, 0.86)
  }
  .in-view .inup1,
  .in-view .inup2,
  .in-view .inup3 {
      -webkit-transform: translateY(0);
      transform: translateY(0)
  }
  .in-view .fadeinup3 {
      -webkit-transform: translateY(0);
      transform: translateY(0);
      opacity: 1;
      -ms-filter: "alpha(opacity=100)"
  }
  .inup1 {
      -webkit-transition-delay: 200ms;
      transition-delay: 200ms
  }
  .inup2 {
      -webkit-transition-delay: 400ms;
      transition-delay: 400ms
  }
  .inup3 {
      -webkit-transition-delay: 600ms;
      transition-delay: 600ms
  }
  .fadeinup3 {
      -webkit-transition-delay: 600ms;
      transition-delay: 600ms
  }
}

/*media queries*/

@media only screen and (max-width:1024px) {
  .mail-wrap {
      padding: 40px 60px 40px 100px;
  }
}

@media only screen and (max-width:992px) {
  .zoho-market-bg header {
      padding: 100px 0 40px;
  }
  .zw-template-inner h1 {
      font-size: 50px;
  }
  .zoho-market-videos {
      padding: 40px 55px;
  }
  .zoho-market-logo {
      margin: 0 auto 30px;
  }
  .mail-wrap {
      flex-direction: column;
      text-align: center;
  }
  .mail-wrap .mail-box {
      margin-top: 20px;
  }
  .mail-content {
    width: 75%;
}
}

@media only screen and (max-width:767px) {
  .zoho-market-logo {
      display: none;
  }
  .main-container-wrapper #mini-panel-product_menu {
      display: block;
  }
  .zoho-market-videos>div {
      padding: 15px 15px 5px;
  }
  .zoho-market-videos>div {
      width: 100%;
      margin-bottom: 25px;
  }

  .zoho-market-videos {
      flex-direction: column;
      align-items: center;
  }
  .zw-template-inner h1 {
      font-size: 40px;
  }
  .mail-wrap .mail-box .mail-btn {
      padding: 15px 40px 15px 65px;
  }
  .zoho-market-mail {
      padding: 35px 0px 40px;
  }
  .zoho-market-mail .mail-wrap {
      padding: 40px 0;
  }
  .mail-content {
    width: 100%;
}
}

@media only screen and (max-width:580px) {
  .zw-template-inner h1 {
      font-size: 35px;
  }
  .zoho-market-bg header {
      padding: 60px 0 20px;
  }
  .zw-template-inner h2 {
      font-size: 21px;
  }
  .zoho-market-mail .mail-wrap {
      padding: 20px 0;
  }
  .mail-wrap .mail-box {
      font-size: 14px;
  }
  .zoho-market-videos {
      padding: 20px 30px;
  }
}