/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Feb 7, 2022, 12:58:35 PM
    Author     : Ani
*/
html {
  overflow-x: hidden;
}
body {
  font-family: 'Poppins', sans-serif;
  color: #2b2a35;
  font-size: 18px;
  background-color: #fff;
  min-height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
body:before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background: linear-gradient(180deg, #11b190 0%, #ffffff 100%);
  opacity: .2;
  z-index: -1;
}
h1,
.h1 {
  font-size: 64px;
  font-weight: bold;
  line-height: 80px;
}
h2,
.h2 {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2em;
}
h3,
.h3 {
  font-size: 36px;
  font-weight: 500;
}
h4,
.h4 {
  font-size: 24px;
  font-weight: 600;
  margin: 0;
}
h5,
.h5 {
  font-size: 17px;
  font-weight: 200;
  margin: 0;
}
ul {
  padding-left: 0;
  list-style: none;
}
a {
  display: inline-block;
}
a.underlined-link {
  position: relative;
  font-weight: 600;
  text-decoration: none;
  color: inherit;
  outline: none;
}
a.underlined-link:before {
  content: '';
  display: block;
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: #11b190;
  opacity: .4;
}
.underline-animation {
  transition: all 0.2s ease-in-out;
  position: relative;
}
.underline-animation:before,
.underline-animation:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 0px;
  height: 2px;
  margin: 2px 0 0;
  transition: all 0.2s ease-in-out;
  transition-duration: 0.4s;
  opacity: 0;
  background-image: linear-gradient(120deg, #11b190 0%, #5091cd 100%);
}
.underline-animation:hover:before,
.underline-animation:hover:after {
  width: 100%;
  opacity: 1;
}
.text-center {
  text-align: center;
}
.key-word {
  font-weight: 600;
}
.gradient-text.gradient-purple-red {
  background: -webkit-linear-gradient(-50deg, #854eaf 0%, #d8354d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text.gradient-yellow-orange {
  background: -webkit-linear-gradient(-50deg, #f7a13e 0%, #d8354d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gradient-text.gradient-green-blue {
  background: -webkit-linear-gradient(-50deg, #11b190 0%, #5091cd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.button {
  padding: 10px 60px;
  font-size: 24px;
  font-weight: 300;
  border-radius: 8px;
  text-decoration: none;
  cursor: pointer;
}
.button.button-raised {
  background-color: #11b190;
  border: 2px solid #11b190;
  color: #fff;
}
.button.button-raised.dark {
  background-color: #2d2d2d;
  border: 2px solid #2d2d2d;
}
.button.button-raised.yellow {
  background-color: #f7a13e;
  border: 2px solid #f7a13e;
}
.button.button-raised.blue {
  background-color: #5091cd;
  border: 2px solid #5091cd;
}
.button.button-raised.purple {
  background-color: #854eaf;
  border: 2px solid #854eaf;
}
.button.button-raised.gradient-purple-red {
  background: -webkit-linear-gradient(-50deg, #854eaf 0%, #d8354d 100%);
  border: none;
}
.button.button-stroked {
  background-color: transparent;
  border: 2px solid #11b190;
  color: #11b190;
}
.button.button-stroked.yellow {
  color: #f7a13e;
  border: 2px solid #f7a13e;
}
.button.button-stroked.dark {
  color: #2d2d2d;
  border: 2px solid #2d2d2d;
}
.button.button-stroked.white {
  color: #fff;
  border: 2px solid #fff;
}
.button.button-flat {
  background-color: transparent;
  border: 2px solid transparent;
  color: #11b190;
  font-weight: normal;
}
.button.button-flat.dark {
  color: #2d2d2d;
}
.button.button-flat:hover.dark {
  background: #d0d0d0;
}
.button:hover {
  text-decoration: none;
}
.width-wrapper {
  height: 100%;
  max-width: 1380px;
  margin: 0 auto;
}
.columns-container {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  place-content: flex-start space-between;
  justify-content: space-between;
  align-items: flex-start;
}
.columns-container.center {
  place-content: flex-start center;
  justify-content: center;
}
.cookie-overlay {
  position: fixed;
  bottom: 0;
  width: 100%;
  border-top: 1px solid #2d2d2d;
  z-index: 9999;
  background-color: rgba(255, 255, 255, 0.92);
}
.cookie-overlay .width-wrapper {
  position: relative;
}
.cookie-overlay p {
  text-align: center;
}
.cookie-overlay .button {
  margin: 18px 0 10px 40px;
  padding: 6px 40px;
  font-size: 18px;
}
.cookie-overlay .icon-button {
  position: absolute;
  top: 0;
  right: 0;
}
.navbar-container {
  position: fixed;
  top: 0px;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 72px;
}
.navbar-container .navbar-wrapper {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  place-content: center space-between;
  justify-content: space-between;
  align-items: center;
}
.navbar-container .logo {
  padding-top: 9px;
}
.navbar-container .nav-container {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  place-content: center flex-end;
  justify-content: flex-end;
  align-items: center;
}
.navbar-container .nav-menu-list {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
}
.navbar-container .nav-menu-list li {
  position: relative;
  padding: 0 10px;
}
.navbar-container .nav-menu-list a {
  padding: 10px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  color: #2b2a35;
}
.navbar-container .nav-menu-list a.submenu-link i {
  margin-left: 8px;
  font-size: 14px;
}
.navbar-container .button {
  margin-left: 20px;
  padding: 0 40px;
  font-size: 16px;
  line-height: 36px;
}
.navbar-container .menu-icon {
  display: none;
  background: none;
  border: #ffdead;
  font-size: 28px;
  padding: 10px;
}
.navbar-container .menu-item {
  color: #2b2a35;
  text-decoration: none;
  padding: 0 16px;
  font-size: 16px;
}
.navbar-container.white-header {
  background-color: #fff;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.35);
  -webkit-transition: background 0.12s linear;
  -moz-transition: background 0.12s linear;
  -o-transition: background 0.12s linear;
  -ms-transition: background 0.12s linear;
  transition: background 0.12s linear;
}
.hero-section {
  position: relative;
}
.hero-section .text-wrapper {
  height: auto;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  place-content: center space-around;
  justify-content: space-around;
  align-items: center;
}
.hero-section .text-wrapper .login-button {
  display: none;
}
.hero-section .hero-slogan {
  margin: 144px 0 72px;
  font-size: 88px;
  font-weight: 400;
  line-height: 1.3;
  background: -webkit-linear-gradient(-50deg, #854eaf 0%, #d8354d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-section .hero-subslogan {
  font-size: 36px;
  padding: 0 40px;
  margin: 0;
}
.hero-section .button {
  margin: 72px 0 144px;
}
.hero-section-illustrtion {
  margin-top: -600px;
}
.customers-list {
  padding: 4vw 0;
}
.customers-list ul {
  flex-flow: row wrap;
  display: flex;
  place-content: center center;
  justify-content: center;
  align-items: center;
}
.customers-list ul li {
  display: inline-block;
  margin: 0 24px;
}
.customers-list ul li img {
  opacity: .5;
  max-height: 80px;
}
.problem-solver-container {
  padding: 2vw 0;
  position: relative;
}
.problem-solver-container:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(#f6f6f6, rgba(246, 246, 246, 0));
  height: 6vw;
  content: "";
  z-index: 1;
}
.problem-solver-container .width-wrapper {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  place-content: center space-between;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}
.problem-solver-container .text-wrapper {
  width: calc(100% - 500px);
  text-align: left;
}
.problem-solver-container .text-wrapper p {
  padding-right: 100px;
}
.problem-solver-container .solver-screenshot-img {
  width: 500px;
  margin: 0 4vw;
}
.problem-solver-container.reverse-order-content .width-wrapper .text-wrapper {
  order: 2;
}
.problem-solver-container.reverse-order-content .width-wrapper .solver-screenshot-img {
  order: 1;
}
.benefits-wrapper {
  margin-top: 24px;
}
.benefits-wrapper .benefit-item {
  margin: 4px 0;
  z-index: 2;
}
.benefits-wrapper .benefit-item i {
  font-size: 24px;
  color: #11b190;
  margin-right: 8px;
}
.benefits-wrapper .benefit-item span {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 600;
}
.cta-container {
  position: relative;
  padding: 5rem 0;
  text-align: center;
  color: #fff;
  margin: 4vw 0;
}
.cta-container h2 {
  margin: 1vw 4vw 3vw;
}
.cta-container .cta-container-bg {
  width: 120%;
  height: 110%;
  position: absolute;
  top: 0;
  left: -40px;
  z-index: -1;
  background: -webkit-linear-gradient(-50deg, #854eaf 0%, #d8354d 100%);
  transform: rotate(6deg);
  overflow: hidden;
}
.cta-container .cta-container-bg:before {
  content: '';
  display: inline-block;
  width: 100%;
  height: 200%;
  position: absolute;
  top: -140px;
  left: 0;
  background-image: url(images/grid-pattern.svg);
  background-size: 250px 97px;
  transform: rotate(-6deg);
}
.cta-container + div {
  z-index: -2;
  padding-top: 3vw;
}
.resources-container {
  margin: 4vw auto;
  position: relative;
}
.resources-container .resources-list {
  display: flex;
  flex-flow: row wrap;
  box-sizing: border-box;
  place-content: flex-start space-between;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4vw;
}
.resources-container .resource-item {
  height: 100%;
  flex-direction: column;
  display: flex;
  place-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  flex: 1 1 32%;
  box-sizing: border-box;
  max-width: 32%;
  border-radius: 8px;
}
.resources-container .resource-item .resource-thumbnail {
  width: 100%;
  display: inline-block;
  height: 140px;
}
.resources-container .resource-item .resource-thumbnail img {
  width: 100%;
  height: 140px;
  border-radius: 8px;
  object-fit: cover;
}
.resources-container .resource-item h4 {
  margin: 1.4vw 0;
}
.resources-container .resource-item a {
  color: #11b190;
  text-decoration: none;
}
.resources-container .resource-item a i {
  margin-left: 4px;
}
.contact-form label,
._form_7 label,
.contact-form legend,
._form_7 legend {
  display: block;
  padding: 4px 0;
  font-size: 16px !important;
  font-weight: 300 !important;
  text-align: left;
  color: #bfbec2;
  margin-top: 20px;
  font-family: 'Poppins', sans-serif !important;
}
.contact-form input[type="text"],
._form_7 input[type="text"],
.contact-form input[type="email"],
._form_7 input[type="email"],
.contact-form input[type="search"],
._form_7 input[type="search"],
.contact-form select,
._form_7 select,
.contact-form textarea,
._form_7 textarea {
  height: 48px !important;
  border: 1px solid #5091cd !important;
  border-radius: 4px !important;
  box-sizing: border-box !important;
  font-family: 'Poppins', sans-serif !important;
  color: #2b2a35 !important;
  font-size: 18px !important;
}
.contact-form textarea,
._form_7 textarea {
  height: 140px !important;
}
.contact-form ._row._checkbox-radio label,
._form_7 ._row._checkbox-radio label {
  display: inline;
  color: #2b2a35 !important;
  font-size: 18px !important;
}
#contact-form-wrapper ._button-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  margin-right: -40px;
}
#contact-form-wrapper ._button-wrapper button {
  padding: 10px 60px !important;
  font-size: 24px !important;
  font-weight: 300 !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  cursor: pointer !important;
  background-color: #5091cd !important;
  border: 2px solid #5091cd !important;
}
.footer-container {
  width: 100%;
  background-color: #2d2d2d;
  color: #ececec;
  position: relative;
}
.footer-container .logo-copyright-container {
  max-width: 210px;
  flex: 1 1 100%;
  box-sizing: border-box;
  padding-top: 50px;
  padding-bottom: 40px;
}
.footer-container .logo-copyright-container .logo {
  margin-bottom: 20px;
}
.footer-container .logo-copyright-container h5 {
  line-height: 2em;
}
.footer-container .logo-copyright-container + div {
  width: 100%;
}
.footer-container .footer-menu-list {
  padding-top: 4px;
  display: inline-block;
  margin-right: 100px;
}
.footer-container .footer-menu-list li:first-child h3 {
  color: #aaa;
  font-weight: 500;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: .02em;
}
.footer-container .footer-menu-list li a {
  letter-spacing: .014em;
  font-size: 20px;
  font-weight: 400;
  line-height: 2em;
  margin: 0;
  color: #ececec;
  text-decoration: none;
}
.footer-container .footer-menu-list li i.fab {
  font-size: 30px;
}
.footer-container .footer-menu-list li.icon-container {
  display: inline-block;
  margin-right: 15px;
}
.footer-container form {
  width: calc(100% - 60px);
  position: absolute;
  bottom: -40px;
  right: 0;
}
.footer-container .terms-policy-container {
  height: 70px;
  border-top: 1px solid #11b190;
  margin-top: 66px;
}
.footer-container .terms-policy-container ul {
  display: flex;
  flex-direction: row;
  box-sizing: border-box;
  place-content: center flex-end;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  height: 100%;
}
.footer-container .terms-policy-container ul li {
  border-right: 1px solid #11b190;
}
.footer-container .terms-policy-container ul li:last-child {
  border-right: none;
}
.footer-container .terms-policy-container ul a {
  color: #ececec;
  text-decoration: none;
  padding: 0 30px;
}
@media (max-width: 1380px) {
  body {
    font-size: 16px;
  }
  .width-wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
  .hero-section .hero-slogan {
    font-size: calc(47px + (88 - 47) * ((100vw - 320px) / (1380 - 320)));
  }
  .hero-section .hero-subslogan {
    font-size: calc(20px + (36 - 20) * ((100vw - 320px) / (1380 - 320)));
    padding: 0;
  }
  .hero-section .button {
    font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1380 - 320)));
    margin-bottom: 40px;
  }
  .hero-section-illustrtion {
    margin-top: -480px;
  }
  .hero-section-illustrtion img {
    width: calc(100% + 160px);
    margin-left: -80px;
  }
  .publisher-explainer-video {
    width: calc(100% + 80px);
    margin-left: -40px;
  }
  h1 {
    font-size: calc(44px + (64 - 44) * ((100vw - 320px) / (1024 - 320)));
    line-height: calc(50px + (80 - 50) * ((100vw - 320px) / (1024 - 320)));
  }
  h2 {
    font-size: calc(32px + (48 - 32) * ((100vw - 320px) / (1024 - 320)));
  }
  h3 {
    font-size: calc(24px + (36 - 24) * ((100vw - 320px) / (1024 - 320)));
  }
  h4 {
    font-size: calc(18px + (24 - 18) * ((100vw - 320px) / (1024 - 320)));
  }
  #contact-form-wrapper ._button-wrapper button {
    font-size: calc(20px + (24 - 20) * ((100vw - 320px) / (1380 - 320))) !important;
  }
  .footer-container .logo-copyright-container + .columns-container {
    padding-left: 80px;
  }
  .footer-container .footer-menu-list h3 {
    font-size: 20px;
  }
  .footer-container .footer-menu-list h4 {
    font-size: 19px;
  }
  .footer-container form {
    width: calc(80% - 130px);
    bottom: 40px;
    right: 20px;
  }
  .footer-container form input {
    font-size: 19px;
  }
  .footer-container form .button {
    padding: 0 25px;
  }
  .footer-container #fanboosterIframe_green {
    display: none;
  }
}
@media (max-width: 1024px) {
  .button {
    padding: 10px 20px;
  }
  .navbar-container .width-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .navbar-container .logo img {
    width: 190px;
  }
  .navbar-container .button {
    padding: 6px 20px;
  }
  .navbar-container .menu-item {
    display: none;
  }
  .hero-section-illustrtion {
    margin-top: -360px;
  }
  .problem-solver-container .width-wrapper {
    flex-direction: column;
  }
  .problem-solver-container .text-wrapper {
    padding: 0 40px;
    width: 100%;
    text-align: center;
  }
  .problem-solver-container .text-wrapper p {
    padding-right: 0;
  }
  .problem-solver-container .solver-screenshot-img {
    max-width: 320px;
  }
  .problem-solver-container.reverse-order-content .width-wrapper .text-wrapper {
    order: 1;
  }
  .problem-solver-container.reverse-order-content .width-wrapper .solver-screenshot-img {
    order: 2;
  }
  .cta-container form.request-demo-form {
    width: 70%;
  }
  .tools-container .tools-list {
    padding: 0;
  }
  .footer-container #fanboosterIframe_green {
    display: none;
  }
}
@media (max-width: 768px) {
  .cookie-overlay .columns-container {
    flex-direction: column;
  }
  .cookie-overlay .button {
    margin: 10px auto;
  }
  .navbar-container .logo img {
    width: 170px;
  }
  .navbar-container .nav-container {
    flex-direction: column;
    place-content: stretch space-between;
    justify-content: space-between;
    align-items: stretch;
    position: absolute;
    top: 72px;
    right: 0;
    z-index: 9999;
    width: 100%;
    background-color: #fff;
    border-top: 1px solid #e8eaec;
    border-bottom: 1px solid #e8eaec;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
  }
  .navbar-container .nav-container.nav-container-display-nodisplay {
    display: none;
  }
  .navbar-container .nav-container .menu-item {
    display: block;
    width: 100%;
    margin: 0;
    width: -webkit-fill-available;
    padding: 22px 40px;
    border-bottom: 1px solid #e8eaec;
    font-weight: 500;
  }
  .navbar-container .nav-container .menu-item.underline-animation:hover:before,
  .navbar-container .nav-container .menu-item.underline-animation:hover:after {
    opacity: 0;
  }
  .navbar-container .nav-container .button {
    margin: 20px;
    text-align: center;
  }
  .navbar-container .nav-container .login-button {
    border: 2px solid #2d2d2d;
    margin-bottom: 0;
    font-weight: 0;
  }
  .navbar-container .menu-icon {
    display: inline-block;
  }
  .hero-section .hero-slogan {
    margin: 80px 0 40px;
    font-weight: 600;
  }
  .hero-section-illustrtion {
    margin-top: -220px;
  }
  .problem-solver-container {
    padding-top: 72px;
  }
  .feature-list-container h2 {
    margin-bottom: 0;
  }
  .feature-list-container .feature-item {
    flex: 1 1 50%;
    max-width: 50%;
  }
  .cta-container {
    margin: 4vw 0 16vw;
  }
  .cta-container h2 {
    margin: 1vw 4vw 6vw;
    font-weight: 600;
  }
  .cta-container .button {
    padding: 10px 20px;
  }
  .tools-container .tools-list {
    padding: 0;
  }
  .tools-container .tools-list .tool-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .resources-container .resource-item {
    flex: 1 1 100%;
    max-width: 100%;
    margin: 4vw 0;
  }
  .footer-container .columns-container {
    flex-direction: column;
    place-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .footer-container .fb-marketing-partner {
    padding: 0;
  }
  .footer-container .fb-marketing-partner + .columns-container {
    padding: 0 0 30px 0;
  }
  .footer-container .footer-menu-list {
    min-width: 50%;
    display: block;
    margin-right: 0;
  }
  .footer-container form {
    position: relative;
    width: 100%;
    margin-top: 40px;
  }
  .footer-container form input {
    min-width: 196px;
  }
  .footer-container form .button {
    padding: 0 20px;
  }
  .footer-container .terms-policy-container ul {
    place-content: center;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .hero-section .hero-section-btns-wrapper {
    width: 100%;
  }
  .hero-section .button {
    margin: 40px 0;
    padding: 10px 0;
    width: 100%;
  }
  .hero-section-illustrtion {
    margin-top: -180px;
  }
  .feature-list-container .feature-item {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .footer-container form {
    flex-direction: column;
    border: none;
  }
  .footer-container form input {
    width: 100%;
    border: 1px solid #11b190;
    border-radius: 60px;
    padding: 0 20px;
    line-height: 50px;
  }
  .footer-container form .button {
    width: 100%;
    margin-top: 14px;
  }
}
