@charset "UTF-8";
/* Common css */
.zwc-spriteimg {
  background: url(/sites/zweb/images/webinar/how-to-moderate-a-webinar/sprite.svg) no-repeat;
  vertical-align: middle;
  display: inline-block;
  transition: 1s all ease-in-out;
}
.zwc-s-ques {
  width: 3%;
  height: 11%;
  background-size: 560%;
}
.zwc-s-mic {
  width: 3%;
  height: 11%;
  background-position: 31% 0;
  background-size: 560%;
}
.zwc-s-chat {
  width: 3.6%;
  height: 11%;
  background-position: 66% 0;
  background-size: 470%;
}
.zwc-s-hand {
  width: 3%;
  height: 11%;
  background-position: 100% 0;
  background-size: 535%;
}
.zwc-subtext {
  font-family: var(--primaryfont-semibold);
}
.zwc-secmar {
  margin-block: 80px;
}
.zwc-bgblue {
  border: 1px solid #5e85da;
  background: #ecf2ff;
}
.zwc-bgpink {
  border: 1px solid #d85c64;
  background: #fff0f1;
}
.zwc-bluetext {
  color: #0047ff;
}
.zwc-dflex {
  display: flex;
}
.zwc-dgrid {
  display: grid;
}

.line-btn {
  color: #000;
  border-color: #000;
}

p a {
  display: inline-block;
}

/* Banner */
.zwc-banner {
  background-color: #fff9f2;
  padding-block: 100px 60px;
}
.zwc-banner-wrap {
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  margin-bottom: 70px;
}
.zwc-banner-leftcont {
  flex-basis: 40%;
}
.zwc-banner-rightcont {
  flex-basis: 45%;
}
.zwc-banner-rightcont p {
  margin-bottom: 30px;
}
.zwc-banner-imgwrap {
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  position: relative;
  padding-block: 40px;
}
.zwc-banner-imgwrap img:nth-child(5) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  border: 10px solid #fff;
  border-radius: 50%;
  width: 24%;
}
.zwc-banner-imgwrap .zwc-spriteimg {
  position: absolute;
  z-index: 1;
}
.zwc-banner-imgwrap .zwc-s-ques {
  top: 34%;
  left: -4%;
}
.zwc-banner-imgwrap .zwc-s-mic {
  left: 40%;
}
.zwc-banner-imgwrap .zwc-s-chat {
  bottom: 0;
  right: 35%;
}
.zwc-banner-imgwrap .zwc-s-hand {
  right: -2%;
  top: 25%;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.btn-wrap a:first-child {
  margin-right: 24px;
}

/* Intro section */
.zwc-introsec.zwc-secmar {
  margin-bottom: 60px;
}
.zwc-introsec-wrap {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1130px;
  gap: 70px;
  margin-inline: auto;
}
.zwc-introsec-contentbx {
  padding: 70px 60px;
  border-radius: 16px;
}

/* Vertical tab */
.zwc-vertab {
  padding-block: 80px;
  background: linear-gradient(0deg, #fafafa 16.1%, rgba(255, 255, 255, 0.1) 61.05%);
}
.zwc-vertab h2 {
  text-align: center;
  margin-bottom: 90px;
}
.zwc-vertab-wrap {
  align-items: center;
  justify-content: space-between;
}
.zwc-vertab-tablist {
  flex-basis: 35%;
}
.zwc-vertab-tablist button {
  padding-block: 25px;
  background-color: transparent;
  border: none;
  border-bottom: 2px solid #efefef;
  width: 100%;
  text-align: left;
  font-size: 28px;
  font-family: var(--zf-primary-semibold);
  cursor: pointer;
  position: relative;
  transition: 0.3s all ease-in-out;
  color: #c5c5c5;
}
.zwc-vertab-tablist button:hover::before {
  right: -5px;
}
.zwc-vertab-tablist button::after {
  content: "";
  position: absolute;
  height: 2px;
  left: 0;
  bottom: -2px;
  background-color: #0047ff;
  width: 100%;
  transition: 0.3s all ease-in-out;
  opacity: 0;
}
.zwc-vertab-tablist button::before {
  content: "";
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-right-style: solid;
  border-right-width: 3px;
  display: inline-block;
  height: 16px;
  position: absolute;
  width: 16px;
  border-color: #c5c5c5;
  right: 0;
  top: 34px;
  transform: rotate(-45deg);
  border-radius: 2px;
  transition: 0.3s all ease-in-out;
}
.zwc-vertab-tablist button.active {
  color: #0047ff;
}
.zwc-vertab-tablist button.active::after {
  opacity: 1;
}
.zwc-vertab-tablist button.active::before {
  border-color: #0047ff;
}
.zwc-vertab-tabcontent {
  flex-basis: 60%;
  height: 550px;
  background: url(/sites/zweb/images/webinar/how-to-moderate-a-webinar/hortab-bg.png) no-repeat;
  background-size: cover;
  padding: 100px 125px;
  border-radius: 8px;
  background-position: center;
}
.zwc-vertab-tabcontent h3 {
  display: none;
}
.zwc-vertab-contentbx {
  padding: 70px 50px;
  border-radius: 8px;
  background-color: #ffffff;
  grid-column-start: 1;
  grid-row-start: 1;
  margin: 0;
  visibility: hidden;
  opacity: 0;
}
.zwc-vertab-contentbx p {
  visibility: hidden;
  opacity: 0;
  transition: 0.8s all ease-in-out;
}
.zwc-vertab-contentbx.active {
  opacity: 1;
  visibility: visible;
}
.zwc-vertab-contentbx.active p {
  visibility: visible;
  opacity: 1;
}

/* Info section */
.zwc-infosec h2 {
  max-width: 590px;
  margin-bottom: 60px;
}
.zwc-infosec-wrap {
  gap: 80px;
  align-items: center;
}
.zwc-infosec-img {
  flex-basis: 50%;
}
.zwc-infosec-img img {
  border-radius: 8px;
}
.zwc-infosec-content {
  flex-basis: 50%;
}
.zwc-infosec-content li {
  position: relative;
  padding-left: 40px;
  line-height: 1.9;
  max-width: 550px;
}
.zwc-infosec-content li:not(:last-child) {
  margin-bottom: 40px;
}
.zwc-infosec-content li::before {
  content: "";
  border-bottom-style: solid;
  border-bottom-width: 3px;
  border-right-style: solid;
  border-right-width: 3px;
  display: inline-block;
  height: 16px;
  position: absolute;
  width: 16px;
  border-color: #ff8e12;
  left: 0px;
  top: 9px;
  transform: rotate(-45deg);
  border-radius: 2px;
}
.zwc-infosec-content li::after {
  content: "";
  height: 3px;
  position: absolute;
  transform-origin: bottom;
  width: 20px;
  background-color: #ff8e12;
  top: 16px;
  left: -4px;
  border-radius: 3px;
}

/* Horizontal tab */
.zwc-hortab h2 {
  text-align: center;
  max-width: 890px;
  margin: 0 auto 40px auto;
}
.zwc-hortab-tablist {
  display: flex;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid #b5b5b5;
  padding: 4px;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 1;
}
.zwc-hortab-tablist button {
  font-size: 16px;
  padding: 13px 24px;
  line-height: 1;
  cursor: pointer;
  transition: 0.6s all ease-in-out;
  font-family: var(--zf-primary-semibold);
  border: none;
  background-color: transparent;
  text-transform: capitalize;
}
.zwc-hortab-tablist button.active {
  color: #fff;
}
.zwc-hortab-tablist-pos {
  position: absolute;
  background-color: #233ee6;
  border-radius: 8px;
  z-index: -1;
  height: calc(100% - 8px);
  transition: 0.6s all ease-in-out;
}
.zwc-hortab-tabcontent {
  position: relative;
  max-width: 1180px;
  margin-inline: auto;
}
.zwc-hortab-tabcontent::after {
  content: "";
  background: url(/sites/zweb/images/webinar/how-to-moderate-a-webinar/3-stepbg.png) no-repeat;
  background-size: cover;
  width: 40%;
  height: 100%;
  position: absolute;
  right: 0;
  z-index: -1;
  border-radius: 0 8px 8px 0;
}
.zwc-hortab-tabwrap {
  flex-basis: 60%;
  background-color: #171717;
  color: #fff;
  padding: 50px;
  align-items: center;
  border-radius: 8px 0 0 8px;
}
.zwc-hortab-contentbx {
  grid-row-start: 1;
  grid-column-start: 1;
  transition: all 1s ease;
  visibility: hidden;
  opacity: 0;
}
.zwc-hortab-contentbx h3 {
  display: none;
}
.zwc-hortab-contentbx li {
  line-height: 1.9;
  position: relative;
  padding-left: 20px;
}
.zwc-hortab-contentbx li::before {
  content: "✓";
  position: absolute;
  left: 0;
}
.zwc-hortab-contentbx li:not(:last-child) {
  margin-bottom: 25px;
}
.zwc-hortab-contentbx.active {
  visibility: visible;
  opacity: 1;
}

/* FAQ */
.zwc-faq {
  background-color: #fff4ea;
  padding-block: 80px;
}
.zwc-faq h2 {
  text-align: center;
}

.zfaq-section {
  margin: 0 auto;
  text-align: center;
  padding: 0 80px 80px;
  border-radius: 7px;
}

.faq-section .content-wrap {
  padding: 40px 0 40px;
}

.faq-section,
.faq-section * {
  box-sizing: border-box;
}

.zfaq-section div {
  width: 970px;
  padding: 0 20px;
  margin: 0 auto;
  max-width: 100%;
}

.zfaq_wrapper {
  max-width: 1024px;
  margin: auto;
  width: 95%;
}

.zfaq_wrapper .zfaq-wrap:first-child {
  border-top: 0;
}
.zfaq_wrapper .zfaq-wrap:first-child .zfaq-content {
  display: block;
}

.zfaq_wrapper .zfaq-wrap {
  position: relative;
  padding: 0;
  border-bottom: 1px solid rgba(112, 112, 112, 0.2);
  border-top: 1px solid #fff;
}

.faq-heading {
  position: relative;
  padding: 0px 0 15px;
}

.faq-wrap1 {
  margin-top: 50px;
}

.zfaq_wrapper button {
  padding-top: 0;
}

.zfaq_wrapper button:not(.faq-heading) {
  color: #000;
  font-size: 19px;
  cursor: pointer;
  margin-bottom: 0;
  display: inline-block;
  vertical-align: text-top;
  width: 100%;
  padding: 20px 35px 20px 0;
  position: relative;
  z-index: 2;
  box-sizing: border-box;
  font-family: var(--zf-secondary-semibold);
  text-align: left;
  margin-top: 0;
  background-color: transparent;
  border: none;
}
.zfaq_wrapper button:not(.faq-heading)::after {
  content: "";
  position: absolute;
  border: solid black;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 0;
  transform: rotate(45deg);
  width: 10px;
  height: 10px;
  top: 23px;
  right: 15px;
  transition: 0.3s all ease-in-out;
}

.zfaq-wrap.active button::after {
  transform: rotate(-135deg) translate(-5px, -5px);
}

.zfaq_wrapper .zfaq-wrap .zfaq-content {
  display: none;
  padding: 0;
  text-align: left;
}

.zfaq-wrap p {
  font-size: 18px;
}

.zfaq-wrap ul {
  padding-left: 25px;
  list-style: disc;
  margin-bottom: 20px;
}

.zfaq_wrapper .zfaq-wrap .arrow {
  position: absolute;
  right: 22px;
  top: 34px;
  width: 8px;
  height: 8px;
  cursor: pointer;
  font-size: 16px;
}

/* Bottom cta */
.zwc-bottomcta {
  text-align: center;
}
.zwc-bottomcta h2 {
  max-width: 410px;
  margin: 0 auto 30px auto;
  font-family: var(--primaryfont-bold);
}

/* Responsive */
@media screen and (min-width: 1200px) {
  .act-btn {
    padding: 13px 30px;
  }
  .zwc-subtext {
    font-size: 32px;
  }
  .zwc-secmar {
    margin-block: 120px;
  }
  h1 {
    font-size: 64px;
    letter-spacing: -1.92px;
  }
  .zwc-csec h2 {
    font-size: 48px;
  }
  /* Banner */
  .zwc-banner-rightcont p {
    font-size: 20px;
  }
  .zwc-banner-imgwrap img:nth-child(2) {
    box-shadow: -10px 0 12px 5px #dddddd;
    transform: translateX(-100%);
    z-index: 1;
    transition: 2s all ease-in-out;
  }
  .zwc-banner-imgwrap img:nth-child(3) {
    box-shadow: 10px 0 12px 5px #dddddd;
    transform: translateX(100%);
    z-index: 1;
    transition: 2s all ease-in-out;
  }
  .zwc-banner-imgwrap .zwc-spriteimg {
    animation: rotate 5s linear infinite;
  }
  .zwc-banner-imgwrap .zwc-spriteimg:nth-child(even) {
    animation-delay: 2s;
  }
  .zwc-banner .content-wrap.animated img:nth-child(2), .zwc-banner .content-wrap.animated img:nth-child(3) {
    box-shadow: unset;
    transform: translateX(0);
  }
  /* Introsection */
  .zwc-introsec h2 {
    font-size: 40px;
    letter-spacing: -0.8px;
  }
  /* Vertical tab */
  .zwc-vertab {
    padding-block: 100px;
  }
  .zwc-vertab-contentbx p {
    font-size: 22px;
  }
  /* Infosection */
  .zwc-infosec {
    margin-bottom: 160px;
  }
  /* Faq */
  .zwc-faq {
    padding-block: 120px;
    border-radius: 8px;
  }
  /* Bottom Cta */
  .zwc-bottomcta h2 {
    max-width: 870px;
    font-size: 56px;
  }
}
@media (max-width: 1440px) {
  /* Banner */
  h1 {
    max-width: 550px;
  }
  .zwc-banner {
    padding-top: 80px;
  }
  .zwc-banner-leftcont, .zwc-banner-rightcont {
    flex-basis: 50%;
  }
  .zwc-vertab-tabcontent {
    padding: 80px;
  }
}
@media (max-width: 1199px) {
  .zwc-banner {
    padding-block: 60px;
  }
  .zwc-banner-wrap {
    flex-direction: column;
    text-align: center;
    max-width: 660px;
    margin-inline: auto;
    gap: 0;
    margin-bottom: 20px;
  }
  .zwc-banner-imgwrap {
    max-width: 96%;
    margin-inline: auto;
  }
  .zwc-banner-rightcont p {
    margin-bottom: 20px;
  }
  .zwc-hortab h2 {
    max-width: 510px;
    margin-inline: auto;
  }
  .zwc-vertab-tablist button {
    font-size: 20px;
  }
  .zwc-infosec h2 {
    max-width: 360px;
  }
}
@media (max-width: 991px) {
  .zwc-dflex {
    flex-direction: column;
  }
  /* Banner */
  .zwc-banner-wrap {
    max-width: 600px;
  }
  .zwc-banner-imgwrap {
    gap: 5px;
    padding-block: 20px;
  }
  .zwc-banner-imgwrap img:nth-child(5) {
    border-width: 5px;
  }
  /* Introsection */
  .zwc-introsec-wrap {
    gap: 40px;
    grid-template-columns: 1fr;
  }
  .zwc-introsec-contentbx {
    padding: 40px;
    max-width: 590px;
    margin-inline: auto;
    text-align: center;
  }
  /* Tab section */
  .zwc-vertab h2 {
    margin-bottom: 40px;
  }
  .zwc-vertab-tablist {
    display: none;
  }
  .zwc-vertab-tabcontent {
    padding: 0;
    background: transparent;
  }
  .zwc-vertab-contentbx {
    visibility: visible;
    opacity: 1;
    grid-column-start: unset;
    grid-row-start: unset;
    padding: 0;
    max-width: 500px;
    margin-inline: auto;
    text-align: center;
    background-color: transparent;
  }
  .zwc-vertab-contentbx:not(:last-child) {
    margin-bottom: 40px;
  }
  .zwc-vertab-contentbx h3 {
    display: block;
  }
  .zwc-vertab-contentbx p {
    visibility: visible;
    opacity: 1;
  }
  /* Info section */
  .zwc-infosec h2 {
    margin-bottom: 40px;
    margin-inline: auto;
    text-align: center;
  }
  .zwc-infosec .zwc-subtext {
    text-align: center;
    display: block;
  }
  .zwc-infosec-wrap {
    gap: 40px;
    max-width: 500px;
    margin-inline: auto;
  }
  /* Horizontal tab */
  .zwc-hortab-tablist {
    display: none;
  }
  .zwc-hortab-tabcontent::after {
    display: none;
  }
  .zwc-hortab-tabwrap {
    background-color: transparent;
    color: #000;
    padding: 0;
  }
  .zwc-hortab-contentbx {
    visibility: visible;
    opacity: 1;
    grid-column-start: unset;
    grid-row-start: unset;
    max-width: 500px;
    margin-inline: auto;
  }
  .zwc-hortab-contentbx:not(:last-child) {
    margin-bottom: 60px;
  }
  .zwc-hortab-contentbx li:not(:last-child) {
    margin-bottom: 15px;
  }
  .zwc-hortab-contentbx h3 {
    display: block;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .btn-wrap a.act-btn {
    margin: 10px 5px;
  }
  /* Introsection */
  .zwc-introsec-contentbx {
    max-width: 590px;
  }
  /* Faq */
  .zfaq-section {
    padding: 0 30px 60px;
  }
  .zfaq_wrapper button:not(.faq-heading) {
    line-height: 1.4;
  }
  .zfaq-wrap p,
  .zfaq-wrap ul {
    font-size: 16px;
  }
}
/* Header Bg */
.zw-product-header {
  background-color: #fff9f2;
}