header.top {
  padding: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header.top .logo img {
  height: 32px;
}

header.top .logos-top {
  display: none;
}

header.top nav a {
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
}

header.top nav a:not(.pined) {
  display: none;
}

header.top nav a.pined {
  transition: background 0.3s ease-in-out;
  padding: 0.8125rem 1.25rem;
  border: solid 2px #75bd43;
  border-radius: 5px;
  background: transparent;
}

header.top nav a.pined:hover {
  background: #75bd43;
}

@media (min-width: 768px) {
  header.top {
    display: grid;
    grid-template-columns: auto auto;
    grid-gap: 80px;
    padding: 48px;
  }

  header.top .logo img {
    height: 48px;
  }

  header.top nav {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 32px;
    align-items: center;
  }

  header.top nav a:not(.pined) {
    display: inline;
  }
}

@media (min-width: 1280px) {
  header.top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-gap: 80px;
  }

  header.top .logos-top {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 32px;
    justify-content: start;
  }
}

body {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100vh;
}

main {
  flex: 1;
  overflow: auto;
}

.header2 {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-auto-flow: column;
  grid-auto-rows: auto;
  align-items: center;
  grid-gap: 24px;
  height: 88px;
  padding: 0 16px;
  transition: box-shadow 250ms;
  z-index: 100;
  font-family: Roboto, 'proxima-nova', sans-serif;
  background: #fff;
}

.header2.emphatic {
  height: 64px;
  box-shadow: 0px 6px 10px rgba(54, 65, 84, 0.03), 0px 1px 6px rgba(54, 65, 84, 0.04),
    0px 3px 6px rgba(54, 65, 84, 0.06);
}

.header2 .logos {
  display: none;
}

.header2 nav {
  display: none;
}

.header2 .login {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0 24px;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  color: #6cb61e;
  text-decoration: none;
  border: 2px solid #76b929;
  box-sizing: border-box;
  border-radius: 4px;
}

.header2 .menu {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

@media (min-width: 1280px) {
  .header2 {
    grid-template-columns: auto 1fr auto;
    padding-left: 56px;
    padding-right: 48px;
  }

  .header2 .logo img {
    height: 48px;
    transition: height 250ms;
  }

  .header2 .logos {
    margin-left: 16px;
    display: grid;
    grid-auto-flow: column;
    /*grid-gap: 24px;*/
    justify-content: start;
    align-items: center;
  }

  .header2 .logos div {
    padding: 0 16px;
  }

  .header2 .logos div:not(:last-child) {
    border-right: 1px solid #dde3ed;
  }

  .header2 .logos img {
    height: 40px;
    transition: height 250ms;
  }

  .header2 nav {
    display: grid;
    grid-auto-flow: column;
    grid-auto-rows: auto;
    grid-gap: 56px;
    margin-right: 32px;
  }

  .header2 nav a {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: 1.25px;
    color: rgba(24, 37, 58, 0.6);
    text-decoration: none;
    text-transform: uppercase;
  }

  .header2 nav a.active {
    color: #6cb61e;
  }

  .header2 .menu {
    display: none;
  }
@media (min-width: 1280px) {
    .header2 {
        grid-template-columns: auto 1fr auto;
        padding-left: 48px;
        padding-right: 48px;
    }

    .header2 .logo img {
        height: 48px;
        transition: height 250ms;
    }

    .header2 .logos {
        margin-left: 16px;
        display: grid;
        grid-auto-flow: column;
        justify-content: start;
        align-items: center;
    }

    .header2 .logos div {
        padding: 0 16px;
    }

    .header2 .logos div:not(:last-child) {
        border-right: 1px solid #DDE3ED;
    }

    .header2 .logos img {
        height: 30px;
        transition: height 250ms;
    }

    .header2 nav {
        display: grid;
        grid-auto-flow: column;
        grid-auto-rows: auto;
        grid-gap: 40px;
        margin-right: 12px;
        align-items: center;
    }

    .header2 nav a {
        font-weight: 500;
        font-size: 14px;
        line-height: 16px;
        letter-spacing: 1.25px;
        color: rgba(24, 37, 58, 0.6);
        text-decoration: none;
        text-transform: uppercase;
    }

    .header2 nav a.active {
        color: #6CB61E;
    }

    .header2 .menu {
        display: none;
    }

    .header2.emphatic .logo img {
        height: 40px;
    }

    .header2.emphatic .logos img {
        height: 32px;
    }
}

  .header2.emphatic .logo img {
    height: 40px;
  }

  .header2.emphatic .logos img {
    height: 32px;
  }
}

.backdrop {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #000;
  opacity: 0;
  transition: opacity 250ms;
  z-index: 1000;
}

.backdrop.visible {
  opacity: 0.5;
}

.drawer {
  position: fixed;
  top: 0;
  bottom: 0;
  right: -292px;
  width: 236px;
  background: #fff;
  padding: 16px 24px 24px 32px;
  transition: right 250ms;
  z-index: 1001;
  overflow: auto;
}

.drawer .content {
  font-family: Roboto, 'proxima-nova', sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 650px;
  height: 100%;
}

.drawer.open {
  right: 0;
}

.drawer.pricing {
  width: 292px;
}

.drawer .top-bar {
  display: flex;
  justify-content: flex-end;
  box-sizing: border-box;
  padding: 8px 0;
}

.drawer .top-bar .close {
  width: 24px;
  height: 24px;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.drawer .auth-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 16px;
  padding: 8px 0;
}

.drawer .auth-bar .login {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  color: #6cb61e;
  text-decoration: none;
  border: 2px solid #76b929;
  box-sizing: border-box;
  border-radius: 4px;
}

.drawer .auth-bar .signup {
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: #76b929;
  box-sizing: border-box;
  border-radius: 4px;
}

.drawer .menu {
  padding: 0;
  list-style: none;
}

.drawer .menu li {
  padding: 24px 0;
  border-top: 1px solid #dde3ed;
  margin-right: -24px;
}

.drawer .menu li:last-child {
  border-bottom: 1px solid #dde3ed;
}

.drawer .menu li a {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  letter-spacing: 0.15px;
  color: rgba(24, 37, 58, 0.6);
  text-decoration: none;
  text-transform: uppercase;
}

.drawer .menu li a.active {
  color: #6cb61e;
}

.drawer .logos {
  display: flex;
  flex-wrap: wrap;
  margin-top: 16px;
  gap: 16px;
}

.drawer .logos img {
  height: 40px;
}

.drawer .logos .logo {
  margin: 8px 0;
}

.drawer .logos .logo:nth-child(1),
.drawer .logos .logo:nth-child(3) {
  border-right: 1px solid #dde3ed;
  padding-right: 16px;
}

.drawer .logos .logo:nth-child(4) img {
  max-width: 110px;
}

.drawer .contacts {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.drawer .contacts p {
  margin: 0 0 16px;
}

.drawer .contacts a {
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #76b929;
  text-decoration: none;
}

@media (min-width: 1750px) {
  .header2 .logos img {
    height: 45px;
  }
}
html,
body {
  margin: 0;
}

body {
  font-family: 'proxima-nova', sans-serif;
  min-height: 100vh;
}

#detach-button-host {
  display: none !important;
}

em {
  color: #00ac45;
  font-family: Poppins, sans-serif;
  font-style: normal;
}

.hero {
  position: relative;
  overflow: hidden;
}

.video-preload {
  background-image: url(../jpg/a0a607cb870ddbea0151.jpg);
  background-size: cover;
}

#videoBG,
.video-preload {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  min-width: 100%;
  pointer-events: none;
}

#videoBG {
  display: none;
  pointer-events: none;
}

video::-webkit-media-controls {
  display: none !important;
  opacity: 0;
}

video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

.analysis-evening {
  padding: 32px 16px 40px 16px;
  color: #f9f8f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
}

.analysis-evening h1 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  text-align: center;
  margin: 0 0 20px 0;
}

.features-list-container {
  width: 100%;
  max-width: 100%;
  margin: 0 0 20px;
}

.analysis-evening ul {
  font-size: 14px;
  line-height: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
  align-self: flex-start;
  width: 100%;
}

.analysis-evening li {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  display: grid;
  grid-template-columns: 28px 1fr;
  grid-gap: 10px;
  align-items: start;
  margin-bottom: 12px;
}

.analysis-evening li img {
  width: 28px;
  height: 28px;
}

.analysis-evening > p {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  margin: 0 0 36px 0;
  max-width: 272px;
}

.analysis-evening .signup-form {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.analysis-evening .input {
  position: relative;
  width: 100%;
}

.analysis-evening .website-example {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #ffffff;
  margin: 12px 0 28px 0;
}

.analysis-evening .primary-button {
  width: 100%;
  max-width: 280px;
  font-size: 24px;
  font-weight: 700;
  line-height: 20px;
  align-self: center;
}

.testimonial-evening {
  display: none;
}

.testimonial-mobile {
  padding: 32px 16px;
}

.testimonial-mobile p {
  font-family: Poppins, sans-serif;
  font-size: 18px;
  line-height: 28px;
  color: #262626;
  margin-bottom: 16px;
}

.testimonial-mobile .author {
  display: grid;
  grid-template-columns: 65px auto;
  grid-gap: 11px;
  align-items: center;
}

.testimonial-mobile .author img {
  width: 65px;
  height: 65px;
  border-radius: 3px;
}

.testimonial-mobile .author .author-name {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #000000;
  margin-bottom: 4px;
}

.testimonial-mobile .author .author-position {
  font-family: Poppins, sans-serif;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  color: #595959;
}

.about-diib {
  background: #fafafa;
  padding: 44px 16px 40px 16px;
}

.about-diib > h3 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  margin: 0 0 16px 0;
  text-align: center;
}

.about-diib > p {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #595959;
  margin-bottom: 30px;
}

.about-diib .grid {
  display: grid;
  justify-items: center;
  grid-gap: 28px;
}

.about-diib .grid img {
  max-width: 100%;
  max-height: 300px;
}

.about-diib .grid h4 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  margin: 0 0 12px 0;
}

.about-diib .grid p {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #595959;
  margin-bottom: 0;
}

.contact-us {
  border-top: 1px solid #d9d9d9;
}

.contact-us .contact-details {
  padding: 40px 16px;
}

.contact-us .contact-details h3 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  margin: 0 0 16px 0;
}

.contact-us .contact-details > p {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #262626;
  margin-bottom: 24px;
}

.contact-us .office-map {
  overflow: hidden;
  height: 100vw;
  background-image: url(../jpg/9ddaee681bb1a4d57715.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.contact-us .office-address {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  margin-top: 22px;
}

.analysis {
  background: #fafafa;
  border-top: 1px solid #d9d9d9;
  padding: 40px 16px 76px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.analysis img {
  max-width: 100%;
}

.analysis h3 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #000000;
  margin: 20px 0 16px 0;
}

.analysis > p {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #262626;
  margin: 0 0 24px 0;
}

.analysis form input {
  width: 100%;
}

.analysis form {
  max-width: 540px;
  width: 100%;
}

.analysis form button {
  max-width: 340px;
  width: 100%;
  margin: 0 auto;
  font-weight: 700;
  font-size: 24px;
}

.analysis .website-example {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  color: #262626;
  margin: 10px 0 32px 0;
}

.clients {
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.clients h3 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #000000;
  margin: 40px 16px 37px 16px;
}

.clients-grid {
  display: grid;
  width: 100%;
}

.clients-grid .clients-grid-item {
  border-color: #f5f5f5;
  border-style: solid;
  border-width: 1px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 124px;
  padding: 0 14px;
}

.clients-grid .clients-grid-item > div {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 12px;
  height: 50%;
}

.clients-grid .clients-grid-item:last-child {
  border-width: 1px 0;
}

.clients-grid .clients-grid-item img {
  max-width: 100%;
}

.clients-grid .clients-grid-item span {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 22px;
  text-align: center;
  color: #262626;
}

.professional-help {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #fafafa;
  padding-bottom: 40px;
}

.professional-help .about-professional-help {
  width: 100%;
  margin-bottom: 28px;
}

.professional-help .about-professional-help .title-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 16px;
  padding: 40px 16px 16px 16px;
}

.professional-help .about-professional-help .title-grid h3 {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
}

.professional-help .about-professional-help .title-grid p {
  margin: 0;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #595959;
}

.professional-help .unordered-list-wrapper {
  padding: 0 16px 40px 16px;
}

.user-testimonial {
  padding: 0 16px;
}

.user-testimonial p {
  font-family: Poppins, sans-serif;
  font-style: italic;
  font-size: 16px;
  line-height: 26px;
  color: #262626;
  margin-bottom: 0;
  margin-top: 0;
}

.user-testimonial .author {
  order: 3;
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 72px auto;
  align-items: center;
  margin-bottom: 20px;
}

.user-testimonial .author img {
  max-width: 100%;
  border-radius: 3px;
}

.user-testimonial .author-details .name {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #000000;
  margin-bottom: 2px;
}

.user-testimonial .author-details .position {
  font-family: Poppins, sans-serif;
  font-size: 14px;
  line-height: 22px;
  color: #595959;
}

.user-testimonial .testimonial-text .author-details {
  display: none;
}

.content-block {
  display: grid;
  align-items: center;
  padding: 0 16px 40px 16px;
}

#growth-plan {
  padding-top: 40px;
}

.content-block h3 {
  font-family: Poppins, sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 32px;
  color: #000000;
  margin: 0 0 12px 0;
}

.content-block p {
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 26px;
  color: #595959;
  margin: 0 0 16px 0;
}

.content-block img {
  max-width: 100%;
  max-height: 360px;
  order: 3;
  justify-self: center;
}

.content-block .unordered-list.tablet {
  display: none;
}

.content-block .unordered-list {
  margin-bottom: 28px;
}

.statistics {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 8px 56px 8px;
}

.statistics .statistics-grid {
  display: grid;
  grid-gap: 28px;
}

.statistics .primary-button {
  margin-top: 32px;
  width: 100%;
  max-width: 305px;
}

.statistics-grid .statistics-grid-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.statistics-grid-item {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #000;
}

.statistics-grid-item img {
  margin-bottom: 16px;
}

.testimonials-block {
  padding-bottom: 56px;
  display: grid;
  grid-gap: 3px;
}

.testimonials-block .testimonial-item {
  background: #f8f8f9;
  padding: 32px 16px 28px 16px;
}

.testimonial-item p {
  font-family: Poppins, sans-serif;
  font-style: italic;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  color: #262626;
  margin: 0;
}

.testimonial-item .author,
.testimonial-item .logo {
  margin-bottom: 20px;
}

.testimonial-item .logo {
  display: flex;
  align-items: center;
}

.testimonial-item .author {
  display: grid;
  grid-template-columns: 72px auto;
  align-items: center;
  grid-gap: 16px;
}

.testimonial-item .author img {
  border-radius: 3px;
  max-width: 100%;
}

.testimonial-item .author-details .name {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #000000;
  margin-bottom: 2px;
}

.testimonial-item .author-details .position {
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  color: #595959;
}

.testimonial-item .author-details.desktop {
  display: none;
}

.contact-us .contact-details .help-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

@media (min-width: 375px) {
  .analysis-evening h1 {
    font-size: 28px;
    line-height: 36px;
    margin: 0 0 24px 0;
  }

  .analysis-evening {
    padding: 40px 16px 50px 16px;
  }

  .analysis-evening ul {
    font-size: 15px;
    line-height: 21px;
  }

  .analysis-evening li {
    font-size: 15px;
    line-height: 21px;
    grid-template-columns: 30px 1fr;
    grid-gap: 11px;
    margin-bottom: 14px;
  }

  .analysis-evening li img {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 768px) {
  .container-evening {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
  }

  .video-preload {
    background-image: url(../jpg/e7bb8801026d727bfcfe.jpg);
  }

  #videoBG {
    display: block;
  }

  .analysis-evening {
    padding: 74px 30px 58px 30px;
  }

  .analysis-evening h1 {
    font-size: 44px;
    line-height: 55px;
    margin: 0 0 20px 0;
  }

  .analysis-evening > p {
    font-size: 18px;
    line-height: 24px;
    margin: 0 0 52px 0;
    max-width: unset;
  }

  .features-list-container {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 16px auto 32px;
  }

  .feature-list-item-highlight {
    color: #A0E7BC;
  }

  .analysis-evening ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    font-size: 18px;
    line-height: 24px;
  }

  .analysis-evening li {
    flex: 0 1 300px;
    display: grid;
    grid-template-columns: 40px 1fr;
    grid-gap: 12px;
    align-items: start;
    margin-bottom: 0;
  }

  .analysis-evening li img {
    width: 40px;
    height: 40px;
  }

  .analysis-evening .signup-form {
    display: grid;
    grid-template-columns: auto 214px;
    align-items: start;
    max-width: 752px;
  }

  .analysis-evening .input {
    border-radius: 5px 0 0 5px;
    height: 55px;
  }

  .analysis-evening .primary-button {
    border-radius: 0 5px 5px 0;
    height: 55px;
  }

  .analysis-evening .website-example {
    padding-left: 20px;
    margin: 6px 0 0 0;
    grid-column: span 2;
    order: 4;
  }

  .testimonial-evening {
    display: flex;
    justify-content: center;
    padding-bottom: 80px;
  }

  .testimonial-evening .apple-devices {
    width: 100%;
  }

  .testimonial-evening .testimonial-top-content {
    font-family: Poppins, sans-serif;
    display: flex;
    color: #ffffff;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 550px;
    flex-direction: column;
    border-radius: 0 10px 10px 10px;
  }

  .testimonial-evening .testimonial-top-content .quote {
    font-size: 20px;
    line-height: 28px;
  }

  .testimonial-evening .testimonial-top-content .author {
    font-size: 15px;
    line-height: 20px;
    margin: 0;
    position: relative;
    text-align: left;
    color: #fff;
  }

  .testimonial-evening .author::before {
    content: '';
    background-image: url(../jpg/a7c5f197f1fd4b2d9869.jpg);
    background-position: 0 0;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 50%;
    position: absolute;
    left: -30%;
    height: 42px;
    width: 42px;
  }

  .testimonial-mobile {
    display: none;
  }

  .about-diib {
    padding: 48px 20px;
  }

  .about-diib > h3 {
    font-size: 34px;
    line-height: 44px;
    margin: 0 0 20px 0;
  }

  .about-diib > p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 40px;
  }

  .about-diib .grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
  }

  .about-diib .grid img {
    order: 2;
    max-height: unset;
    align-self: center;
  }

  .about-diib .grid h4 {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 18px;
  }

  .about-diib .grid p {
    font-size: 18px;
    line-height: 28px;
  }

  .contact-us {
    display: grid;
    grid-template-columns: 3fr 2fr;
  }

  .contact-us .contact-details {
    padding: 60px 20px;
  }

  .contact-us .office-map {
    height: 100%;
  }

  .analysis {
    padding: 54px 60px;
  }

  .analysis img {
    width: 332px;
  }

  .analysis h3 {
    font-size: 34px;
    line-height: 44px;
    margin: 20px 0 12px 0;
  }

  .analysis > p {
    font-size: 18px;
    line-height: 28px;
    margin: 0 0 22px 0;
  }

  .clients h3 {
    font-size: 34px;
    line-height: 44px;
    margin: 48px 20px 28px 20px;
  }

  .clients-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .clients-grid .clients-grid-item {
    border-width: 1px 1px 0 0;
    height: 149px;
  }

  .clients-grid .clients-grid-item:last-child {
    border-width: 1px 0 0 0;
  }

  .clients-grid .clients-grid-item > div {
    height: 30%;
  }

  .professional-help {
    padding-bottom: 48px;
  }

  .professional-help .about-professional-help {
    margin-bottom: 40px;
  }

  .professional-help .about-professional-help .title-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 22px;
    padding: 48px 20px 24px 20px;
  }

  .professional-help .about-professional-help .title-grid h3 {
    font-size: 28px;
    line-height: 36px;
    margin: 0 auto;
  }

  .professional-help .about-professional-help .title-grid p {
    font-size: 18px;
    line-height: 28px;
    max-width: 400px;
    margin: 0 auto;
  }

  .unordered-list-wrapper .unordered-list,
  .content-block .unordered-list {
    grid-template-columns: repeat(2, 1fr);
    border: 1px solid #e8e8e8;
    padding: 26px 24px;
    margin: 0 20px 40px 20px;
    grid-row-gap: 16px;
    grid-column-gap: 47px;
  }

  .professional-help .unordered-list-wrapper {
    padding: 0;
  }

  .user-testimonial {
    padding: 0 38px;
    display: grid;
    grid-template-columns: 100px auto;
    grid-gap: 20px;
    max-width: 903px;
    margin: auto;
  }

  .user-testimonial p {
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 20px;
  }

  .user-testimonial .author {
    order: initial;
    display: inline-block;
    margin-bottom: 0;
  }

  .user-testimonial .author .author-details {
    display: none;
  }

  .user-testimonial .testimonial-text .author-details {
    display: block;
  }

  .content-block {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: min-content;
    grid-gap: 22px;
    padding: 0 20px 48px 20px;
  }

  #growth-plan {
    padding-top: 48px;
  }

  .content-block h3 {
    font-size: 28px;
    line-height: 36px;
    margin: 0 0 24px 0;
  }

  .content-block p {
    font-size: 18px;
    line-height: 28px;
    margin: 0;
  }

  .content-block .content-block-description {
    max-width: 400px;
    margin: auto;
  }

  .content-block:not(.reversed) img {
    order: 0;
    justify-self: end;
  }

  .content-block.reversed .content-block-column {
    order: 1;
  }

  .content-block.reversed img {
    order: 2;
  }

  .content-block.reversed .unordered-list.tablet {
    order: 3;
  }

  .content-block img {
    max-height: 300px;
    justify-self: initial;
  }

  .content-block-column ul {
    display: none;
  }

  .content-block .unordered-list {
    margin-bottom: 0;
  }

  .content-block .unordered-list.tablet {
    display: grid;
    grid-column: span 2;
    margin: 0;
  }

  .statistics {
    padding: 0 20px 48px 20px;
  }

  .statistics .statistics-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: baseline;
    width: 100%;
  }

  .statistics .primary-button {
    margin-top: 40px;
    max-width: 305px;
  }

  .statistics-grid-item {
    font-size: 18px;
    line-height: 28px;
    font-weight: normal;
    color: #262626;
  }

  .statistics-grid-item .value {
    display: grid;
    grid-gap: 8px;
    align-items: center;
  }

  .statistics-grid-item .illustration {
    display: inline-flex;
    height: 105px;
    justify-content: flex-end;
  }

  .statistics-grid-item .value em {
    font-size: 34px;
    line-height: 44px;
    font-weight: 600;
  }

  .testimonials-block {
    padding: 0 20px 48px 20px;
    grid-gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-item {
    padding: 24px 26px;
  }

  .testimonial-item .author,
  .testimonial-item .logo {
    margin-bottom: 16px;
    height: 72px;
  }
}

@media (min-width: 1200px) {
  .analysis-evening {
    padding-top: 116px;
    padding-bottom: 70px;
  }

  .analysis-evening h1 {
    font-size: 50px;
    line-height: 55px;
  }

  .analysis-evening > p {
    margin: 0 0 40px 0;
  }

  .about-diib {
    padding: 64px 44px 0 44px;
  }

  .about-diib .grid {
    grid-gap: 64px;
    padding: 0 88px;
  }

  .about-diib .grid img {
    align-self: end;
  }

  .about-diib .grid p {
    margin-bottom: 64px;
  }

  .contact-us {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-us .contact-details {
    padding: 60px 40px;
  }

  .contact-us .contact-details h3 {
    font-size: 34px;
    line-height: 44px;
    margin: 0 0 12px 0;
  }

  .contact-us .contact-details > p {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 16px;
  }

  .clients h3 {
    margin: 64px auto 32px auto;
    max-width: 991px;
  }

  .clients-grid .clients-grid-item {
    height: 250px;
  }

  .clients-grid .clients-grid-item > div {
    height: 25%;
  }

  .professional-help {
    padding: 64px 0;
  }

  .professional-help .about-professional-help {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 120px;
    margin-bottom: 54px;
  }

  .professional-help .about-professional-help .title-grid {
    grid-template-columns: 1fr;
    grid-gap: 26px;
    padding: 0;
  }

  .professional-help .about-professional-help .title-grid p {
    max-width: unset;
    margin: 0 0 20px 0;
  }

  .professional-help .about-professional-help .title-grid h3 {
    margin: 0;
  }

  .unordered-list-wrapper .unordered-list,
  .content-block .unordered-list {
    grid-template-columns: 1fr;
    border: none;
    padding: 0;
    margin: 0;
  }

  .professional-help .about-professional-help .column {
    max-width: 540px;
    justify-self: self-end;
  }

  .user-testimonial {
    padding: 0;
    grid-template-columns: 1fr;
    grid-gap: 0;
    max-width: unset;
    margin: 0;
  }

  .user-testimonial p {
    margin-bottom: 32px;
    max-width: 450px;
  }

  .user-testimonial .author {
    order: 3;
    display: grid;
  }

  .user-testimonial .author .author-details {
    display: inline-block;
  }

  .user-testimonial .testimonial-text .author-details {
    display: none;
  }

  .content-block {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 110px;
    padding: 0 120px 64px 120px;
  }

  #growth-plan {
    padding-top: 0;
  }

  .content-block,
  .examples,
  .about-professional-help {
    max-width: 1320px;
    margin: 0 auto;
  }

  .content-block p {
    margin: 0 0 20px 0;
  }

  .content-block img {
    max-height: unset;
  }

  .content-block .content-block-description {
    max-width: unset;
    margin: 0;
  }

  .content-block .unordered-list.tablet {
    display: none;
  }

  .content-block-column ul {
    display: grid;
  }

  .statistics {
    padding: 0 120px 64px 120px;
  }

  .statistics-grid {
    max-width: 1186px;
  }

  .statistics-grid .statistics-grid-item {
    flex-direction: row;
    align-items: center;
  }

  .statistics-grid-item .value {
    justify-items: start;
    text-align: left;
    margin-left: 16px;
    grid-gap: 10px;
  }

  .testimonials-block {
    padding: 0 64px 64px 64px;
    grid-gap: 16px;
  }
}

@media (min-width: 1440px) {
  .about-diib {
    padding: 64px 120px 0 120px;
  }

  .about-diib .grid {
    grid-gap: 122px;
    padding: 0;
    max-width: 1240px;
    margin: 0 auto;
  }

  .about-diib .grid > div {
    max-width: 416px;
  }

  .contact-us .contact-details {
    padding: 60px 0;
    max-width: 624px;
    justify-self: center;
  }

  .professional-help .about-professional-help {
    grid-gap: 165px;
  }

  .professional-help .about-professional-help .column {
    max-width: unset;
  }

  .user-testimonial p {
    padding-right: 120px;
    max-width: unset;
  }

  .content-block img {
    max-height: 400px;
  }

  .testimonials-block {
    grid-template-columns: 3fr 2fr;
    max-width: 1400px;
    margin: 0 auto;
  }

  .testimonials-block .testimonial-item {
    padding: 32px 50px 32px 32px;
    display: grid;
    grid-auto-flow: column;
    align-items: start;
    grid-gap: 20px;
  }

  .testimonial-item .author,
  .testimonial-item .logo {
    height: auto;
  }

  .testimonial-item .author .author-details {
    display: none;
  }

  .testimonial-item .author-details.desktop {
    display: block;
    margin-top: 12px;
  }

  .testimonial-item p {
    font-size: 18px;
    line-height: 28px;
  }
}

footer {
  background: #333940;
  color: white;
  padding: 8px 32px 20px 32px;
  font-size: 20px;
  line-height: 24px;
}

footer .logo img {
  width: 96px;
}

footer a {
  color: #75bd43;
  text-decoration: none;
}

footer p {
  margin: 0 0 16px;
}

footer h5 {
  font-weight: 300;
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  margin: 0 0 24px;
}

footer .social-media {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 24px;
  justify-content: start;
  align-items: center;
}

footer .social-media a {
  width: 46px;
}

footer .social-media a img {
  display: block;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(171deg) brightness(103%) contrast(101%);
}

.youtube-logo {
  max-width: 132px;
}

footer .social-media a:hover img {
  filter: invert(42%) sepia(7%) saturate(198%) hue-rotate(211deg) brightness(96%) contrast(92%);
}

footer .menu {
  padding: 0;
  letter-spacing: 0.15px;
  text-transform: uppercase;
  list-style: none;
  margin: 48px 0;
}

footer .bottom-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
}

footer .bottom-links li {
  margin-bottom: 32px;
}

footer .bottom-links a:hover {
  color: white;
}

footer .bottom-links a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 20px;
  line-height: 20px;
  letter-spacing: 0.15px;
}

footer .rights {
  margin-top: 36px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: normal;
  font-size: 16px;
  line-height: 20px;
  color: rgba(255, 255, 255, 0.74);
  margin-top: 68px;
}

footer .menu a {
  color: #90ce4d;
}

footer .menu a:hover {
  color: white;
}

footer .menu a.new-link {
  padding-right: 46px;
  position: relative;
  display: inline-block;
}

footer .menu a.new-link:after {
  display: inline-block;
  content: 'NEW';
  background: #eaff8f;
  border-radius: 4px;
  font-family: Poppins;
  font-weight: 500;
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  color: #262626;
  padding: 0 6px;
  margin-left: 6px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

footer .customer-service p,
footer .billing p {
  line-height: 20px;
  font-size: 16px;
}

footer .footer-contacts h6 {
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 0.15px;
  color: #fff;
  font-weight: normal;
  margin: 0;
  padding: 0 0 8px;
}

footer .customer-service p:nth-of-type(1),
footer .billing p:nth-of-type(1) {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.74);
}

footer .billing p:nth-of-type(1) {
  margin-top: 48px;
}

footer .customer-service p:nth-of-type(2),
footer .billing p:nth-of-type(2) {
  color: rgba(255, 255, 255, 0.74);
}

footer .billing span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.74);
  padding-top: 4px;
  display: block;
}

footer .menu li {
  margin: 0 0 32px;
}

.footer-columns {
  display: flex;
  flex-direction: column;
}

footer .footer-contacts .footer-contact-title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
}

footer .footer-contacts .footer-contact-text {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
}

@media (min-width: 1280px) {
  .footer-columns {
    flex-direction: row;
    justify-content: center;
    padding: 80px;
    font-size: 16px;
    line-height: 20px;
  }

  footer .logo {
    display: block;
    margin-top: -40px;
    margin-right: 56px;
  }

  footer .menu {
    margin: 0 96px;
    min-width: 105px;
  }

  footer .menu li {
    margin: 0 0 16px;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 80px;
    margin-top: 0;
  }

  footer .bottom-links {
    flex-direction: row;
  }

  footer .bottom-links li {
    margin-right: 40px;
    margin-bottom: 0;
  }

  footer .bottom-links a {
    font-size: 15px;
  }

  footer .rights {
    margin-top: 0;
  }

  footer .billing p:nth-of-type(1) {
    margin-top: 0;
  }

  footer .footer-contacts {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  footer .footer-contact {
    max-width: 468px;
  }
}

.platforms {
  display: flex;
  flex-direction: column;
  padding-top: 56px;
  background: #fff;
}

.platforms .platforms-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

.platforms .platforms-title h3 {
  font-family: Poppins;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  color: #000000;
  margin: 0 16px;
  text-align: center;
}

.platforms .platforms-title .languages-supported {
  display: inline-grid;
  grid-template-columns: 24px auto;
  grid-gap: 8px;
  align-items: center;
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #00ac45;
  margin-top: 18px;
  cursor: pointer;
}

.carousel .content {
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.carousel .content::-webkit-scrollbar {
  display: none;
}

.carousel .scrollable {
  box-sizing: content-box;
  padding: 28px 24px 36px 24px;
  display: grid;
  grid-gap: 24px;
  grid-auto-flow: column;
}

.carousel .scrollable img {
  height: 48px;
}

@media (min-width: 768px) {
  .platforms {
    padding-top: 46px;
  }

  .platforms .platforms-title h3 {
    font-size: 34px;
    line-height: 44px;
  }

  .platforms .platforms-title .languages-supported {
    margin-top: 30px;
  }

  .carousel {
    position: relative;
  }

  .carousel .content {
    overflow-x: hidden;
  }

  .carousel .scrollable {
    grid-template-rows: auto;
    padding: 44px 32px 60px 32px;
    grid-gap: 32px;
  }
}

@media (min-width: 1024px) {
  .platforms {
    padding-top: 80px;
  }

  .carousel .scrollable {
    padding: 48px 32px 76px 32px;
  }
}

@media (min-width: 1200px) {
  .platforms .platforms-title {
    width: 1170px;
    justify-content: space-between;
    flex-direction: row;
  }

  .platforms .platforms-title h3 {
    text-align: left;
  }

  .platforms .platforms-title .languages-supported {
    margin-top: 0;
  }
}

.analysis1 {
  background: #75bd43;
  padding: 64px 32px;
  color: white;
  text-align: center;
  font-family: Roboto, 'proxima-nova', sans-serif;
}

.analysis1 h3 {
  font-weight: normal;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 0.15px;
  text-transform: uppercase;
}

.analysis1 h1 {
  font-weight: bold;
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.01em;
}

.analysis1 .description {
  font-size: 18px;
  line-height: 22px;
}

.analysis1 button {
  background: #afd46f;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: 18px;
  line-height: 16px;
  letter-spacing: 1.25px;
  text-transform: uppercase;
  color: #ffffff;
  border: none;
  width: 100%;
  border-radius: 4px;
  margin-top: 8px;
}

@media (min-width: 768px) {
  .analysis1 form {
    display: grid;
    grid-auto-flow: column;
    grid-gap: 24px;
  }

  .analysis1 form > * {
    margin: 0;
  }
}

@media (min-width: 1280px) {
  .analysis1 {
    padding: 96px calc(50% - 432px);
  }
}

.primary-button {
  height: 50px;
  background: #00ac45;
  border-radius: 4px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  width: 216px;
  border: none;
  outline: none;
  -webkit-appearance: none;
  user-select: none;
  color: #fff;
  transition: all 0.1s ease-in;
  text-decoration: none;
  box-sizing: border-box;
}

.primary-button[disabled] {
  background: #d9d9d9;
  pointer-events: none;
}

.primary-button.is-loading {
  background: #00ac45;
  opacity: 0.9;
  pointer-events: none;
  overflow: hidden;
  position: relative;
}

.primary-button.is-loading::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.25) 50%,
    transparent 60%
  );
  animation: btn-shimmer 1.4s ease-in-out infinite;
  will-change: transform;
}

@keyframes btn-shimmer {
  from { transform: translateX(-100%); }
  to   { transform: translateX(200%); }
}

.btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btn-spin 0.7s linear infinite;
  flex-shrink: 0;
  margin-right: 8px;
}

@keyframes btn-spin {
  to { transform: rotate(360deg); }
}

.primary-button:not([disabled]):hover {
  cursor: pointer;
  background: #006c2b;
  text-decoration: none;
}

.blue-whale-link .blue-whale-link__button {
    border: none;
    background: linear-gradient(0deg, #00ac45 0%, #00ac45 100%);
    overflow: hidden;
    position: relative;
    box-shadow: 6px -1px 15px 0px rgba(0, 0, 0, 0.70);
}
  
.blue-whale-link .blue-whale-link__button:hover {
    cursor: pointer;
    background: linear-gradient(0deg, #00ac45 0%, #00ac45 100%);
}
  
  
.blue-whale-link .blue-whale-link__button:before {
    position: absolute;
    content: '';
    display: inline-block;
    top: -180px;
    left: 0;
    width: 30px;
    height: 100%;
    background-color: #fff;
    animation: shiny-button 2s ease-in-out infinite;
}

.blue-whale-link .blue-whale-link__input {
  box-shadow: -1px 0px 15px 0px rgba(0, 0, 0, 0.70);
}

.secondary-button {
    border-radius: 4px;
    background: transparent;
    border: 1px solid white;
    height: 50px;
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    width: 216px;
    outline: none;
    -webkit-appearance: none;
    user-select: none;
    color: #fff;
    transition: all 0.1s ease-in;
    text-decoration: none;
    box-sizing: border-box;
}

.secondary-button:not([disabled]):hover {
    cursor: pointer;
    background: #00ac45;
    text-decoration: none;
    border: none;
}
  
@keyframes shiny-button {
  0% { -webkit-transform: scale(0) rotate(45deg); opacity: 0; }
  80% { -webkit-transform: scale(0) rotate(45deg); opacity: 0.5; }
  81% { -webkit-transform: scale(4) rotate(45deg); opacity: 1; }
  100% { -webkit-transform: scale(50) rotate(45deg); opacity: 0; }
}


.input {
  font-family: Poppins;
  border: 1px solid #bfbfbf;
  box-sizing: border-box;
  border-radius: 4px;
  padding: 12px;
  outline: none;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
}

.input:hover,
.input:focus {
  border: 1px solid #595959;
}

.input:disabled {
  border: 1px solid #bfbfbf;
  opacity: 0.6;
}

.input::placeholder {
  color: #595959;
}

.input.invalid,
.input-container.invalid .input {
  background: rgb(255, 241, 240);
  border: 1px solid #cf1322;
}

.input-container {
  position: relative;
}

.tooltip {
  font-family: Poppins, sans-serif;
  display: none;
  border: 1px solid #cf1322;
  color: rgba(24, 37, 58, 0.87);
  padding: 8px;
  width: 70%;
  position: absolute;
  top: 44px;
  right: -8px;
  background: white;
  font-size: 14px;
  line-height: 20px;
  border-radius: 4px;
  box-shadow: 0px 6px 5px rgba(0, 0, 0, 0.03);
}

.tooltip::before,
.tooltip::after {
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  right: 20px;
  transform: rotate(45deg);
}

.tooltip::before {
  background: #cf1322;
  top: -8px;
}

.tooltip::after {
  background: white;
  top: -7px;
}

.tooltip a {
  color: #00ac45;
}

.unordered-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-gap: 16px;
}

.unordered-list li {
  display: grid;
  grid-template-columns: 16px auto;
  grid-gap: 10px;
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
}

.unordered-list li:before {
  content: url(../svg/e03b0dd93a1717a08301.svg);
  display: inline-block;
}

.unordered-list li.icon-plus:before {
  content: url(../svg/61c99de2e1d349efce57.svg);
}

@media (min-width: 1200px) {
  .unordered-list {
    grid-gap: 12px;
  }
}

.primary-link {
  display: grid;
  grid-auto-flow: column;
  justify-content: start;
  align-items: center;
  grid-gap: 2px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  color: #00ac45;
  cursor: pointer;
}

.primary-link::after {
  display: inline-block;
  content: url(../svg/5c3b7dab28314c271e8d.svg);
  width: 20px;
  height: 20px;
}

.primary-link:hover {
  filter: brightness(87%);
}

.home-nav {
  display: none;
}

.home-nav:not(.home-nav-sticky) .home-nav-dropdown {
  display: none;
}

.home-nav.home-nav-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  display: none;
}

.home-nav.home-nav-sticky.visible {
  display: block;
}

.home-nav.home-nav-sticky ul {
  display: none;
}

.home-nav.home-nav-sticky .home-nav-dropdown {
  background: #262626;
  padding: 4px 18px;
  display: flex;
  align-items: center;
  color: #fff;
  cursor: pointer;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  box-sizing: border-box;
  min-height: 40px;
}

.home-nav.home-nav-sticky input[type='checkbox']:checked ~ ul {
  display: block;
}

#home-nav-toggle {
  display: none;
}

.home-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-nav ul li a {
  display: grid;
  grid-auto-flow: column;
  grid-gap: 12px;
  align-items: center;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 18px;
  text-decoration: none;
}

.home-nav.home-nav-sticky ul li a,
.home-nav.home-nav-sticky .home-nav-dropdown {
  padding: 4px 18px;
  display: grid;
  grid-gap: 10px;
  grid-template-columns: 16px auto 20px;
}

.home-nav.home-nav-sticky ul li a {
  color: #000000;
  height: 55px;
  box-sizing: border-box;
}

.home-nav.home-nav-sticky ul li a img,
.home-nav.home-nav-sticky .home-nav-dropdown img {
  max-width: 100%;
}

.home-nav.home-nav-sticky .home-nav-dropdown .arrow {
  transform: rotate(90deg);
  transition: transform 150ms ease-in;
}

.home-nav.home-nav-sticky input[type='checkbox']:checked ~ label .arrow {
  transform: rotate(-90deg);
}

.home-nav.home-nav-sticky ul li a .arrow {
  margin-left: auto;
  filter: grayscale(1) brightness(0.5);
}

.home-nav.home-nav-sticky ul li:not(:last-child) a {
  border-bottom: 1px solid #f5f5f5;
}

.home-nav.home-nav-sticky ul li.active {
  display: none;
}

.nav-overlay {
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.35);
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
}

@media (min-width: 768px) {
  .home-nav ul {
    display: flex;
    flex-wrap: nowrap;
  }

  .home-nav.home-nav-sticky {
    overflow-y: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    background: #262626;
  }

  .home-nav.home-nav-sticky .home-nav-dropdown {
    display: none;
  }

  .home-nav.home-nav-sticky::-webkit-scrollbar {
    display: none;
  }

  .home-nav.home-nav-sticky ul {
    min-width: 1280px;
    display: flex !important;
  }

  .home-nav.home-nav-sticky ul li.active {
    display: block;
  }

  .home-nav.home-nav-sticky ul li.active a {
    color: #fff;
  }

  .home-nav.home-nav-sticky ul li a {
    color: #8c8c8c;
    padding: 16px 20px;
    min-width: 210px;
    height: auto;
    box-sizing: border-box;
    border-left: 2px solid rgba(250, 250, 250, 0.1);
  }

  .home-nav.home-nav-sticky ul li:not(.active) a img {
    filter: grayscale(1);
  }

  .home-nav.home-nav-sticky ul li a .arrow {
    display: none;
  }

  .home-nav ul li a,
  .home-nav.home-nav-sticky ul li a {
    display: grid;
    grid-auto-flow: column;
    grid-template-columns: initial;
    grid-gap: 12px;
    align-items: center;
    font-family: Poppins;
    font-style: normal;
    font-weight: 600;
    font-size: 13px;
    line-height: 18px;
    padding: 16px 8px;
  }

  .home-nav.home-nav-sticky ul li:first-child a {
    border-left: none;
  }

  .home-nav.home-nav-sticky ul li:not(:last-child) a {
    border-bottom: none;
  }

  .home-nav:not(.home-nav-sticky) ul li a {
    color: #000;
  }

  .nav-overlay {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .home-nav {
    display: block;
  }

  .home-nav:not(.home-nav-sticky) {
    margin: 0 32px 64px 32px;
    border-bottom: 1px solid #e8e8e8;
    padding: 16px 0;
  }

  .home-nav.home-nav-sticky ul {
    min-width: unset;
  }

  .home-nav.home-nav-sticky ul li a {
    padding: 16px 8px;
    border: none;
  }

  .home-nav.home-nav-sticky ul li:first-child a {
    padding: 16px 8px 16px 16px;
  }

  .home-nav.home-nav-sticky ul li:last-child a {
    padding: 16px 16px 16px 8px;
  }
}

@media (min-width: 1440px) {
  .home-nav {
    display: block;
  }

  .home-nav ul {
    justify-content: space-around;
  }

  .home-nav ul li {
    max-width: 200px;
  }

  .home-nav.home-nav-sticky ul {
    min-width: unset;
  }

  .home-nav:not(.home-nav-sticky) {
    margin: 0 auto 64px auto;
  }

  .home-nav.home-nav-sticky ul li:first-child a {
    padding: 16px 8px 16px 16px;
  }

  .home-nav.home-nav-sticky ul li:last-child a {
    padding: 16px 16px 16px 8px;
  }
}

.examples-container {
  background: #fafafa;
}

.examples {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.examples h3 {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 28px;
  text-align: center;
  color: #000000;
  margin: 0 16px;
}

.examples > p {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 26px;
  text-align: center;
  color: #262626;
  margin: 16px 16px 24px 16px;
}

.examples .examples-list {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.examples-list::-webkit-scrollbar {
  display: none;
}

.examples-list-wrapper {
  width: 100%;
  pointer-events: none;
}

.examples > .primary-button {
  margin: 26px 16px 0 16px;
  width: 305px;
  max-width: calc(100% - 32px);
}

.examples-list .examples-list-item {
  min-width: 100%;
  scroll-snap-align: center;
}

.primary-button.next-btn {
  display: none;
}

.primary-link.next-btn {
  font-size: 13px;
  line-height: 18px;
  margin-top: 24px;
}

.examples-list-item .use-case {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 28px 16px 32px 16px;
}

.examples-list-item .improvements {
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  padding: 28px 10px 24px 10px;
}

.use-case .about-user {
  display: grid;
  grid-template-columns: 59px auto;
  grid-gap: 16px;
  margin-bottom: 16px;
}

.use-case .about-user .name {
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 8px;
}

.use-case .about-user .headline {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  color: #262626;
}

.use-case .about-user img {
  max-width: 100%;
}

.use-case p {
  font-family: Poppins;
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 22px;
  color: #262626;
  margin-bottom: 20px;
}

.use-case .goal {
  margin-bottom: 8px;
}

.use-case p:last-child {
  margin-bottom: 0;
}

.use-case .kpi-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 10px;
}

.kpi-list .kpi-list-item {
  background: #f5f5f5;
  border-radius: 3px;
  padding: 6px 16px;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  color: #000000;
  margin-right: 6px;
  margin-top: 6px;
}

.kpi-list .kpi-list-item:last-child {
  margin-right: auto;
}

.improvements p {
  margin: 0 0 20px 0;
}

.improvements ul li em {
  color: #2f54eb;
}

.improvements .improvements-list,
.improvements-list .column {
  display: grid;
  grid-gap: 4px;
}

.improvements .improvements-list {
  margin-bottom: 28px;
  align-items: start;
}

.improvements-list .improvement-card {
  background: #ffffff;
  border: 1px solid #ebeff5;
  box-shadow: 0 2px 5px rgba(125, 125, 146, 0.2);
  border-radius: 6px;
  display: grid;
  grid-gap: 16px;
  grid-template-columns: 35px auto;
  font-family: Poppins;
  font-style: normal;
  font-weight: 600;
  font-size: 15px;
  line-height: 20px;
  color: #262626;
  padding: 20px 16px;
  align-items: center;
}

.improvement-card .target {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e7f6ec;
  border-radius: 4px;
  width: 35px;
  height: 35px;
}

@media (min-width: 768px) {
  .examples {
    padding: 48px 20px;
    margin-bottom: 48px;
  }

  .examples h3 {
    font-size: 34px;
    line-height: 44px;
    margin: 0;
  }

  .examples > p {
    font-size: 18px;
    line-height: 28px;
    margin: 16px 0 28px 0;
  }

  .examples > .primary-button {
    margin-top: 32px;
  }

  .signup-btn {
    display: none;
  }

  .primary-button.next-btn {
    display: flex;
  }

  .primary-link.next-btn {
    display: none;
  }

  .use-case .about-user {
    grid-template-columns: 65px auto;
    grid-gap: 20px;
    margin-bottom: 20px;
  }

  .use-case .about-user .name {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 3px;
  }

  .use-case p {
    margin-bottom: 16px;
  }

  .use-case .goal {
    margin-bottom: 16px;
  }

  .use-case .kpi-list {
    margin-top: 14px;
  }

  .kpi-list .kpi-list-item {
    margin-right: 8px;
  }

  .examples-list-item .improvements {
    padding: 36px 32px;
  }

  .improvements .improvements-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 38px;
  }

  .improvements-list .column {
    grid-gap: 16px;
  }

  .improvements .improvements-list {
    margin-bottom: 24px;
  }
}

@media (min-width: 1200px) {
  .examples {
    padding: 64px;
    margin-bottom: 64px;
  }

  .examples h3 {
    font-size: 34px;
    line-height: 44px;
  }

  .examples > p {
    font-size: 18px;
    line-height: 28px;
    margin: 16px 0 32px 0;
  }

  .examples > .primary-button {
    margin-top: 28px;
  }

  .examples-list .examples-list-item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .use-case .about-user {
    grid-gap: 22px;
    margin-bottom: 16px;
  }

  .use-case .goal {
    margin-bottom: 8px;
  }

  .examples-list-item .improvements {
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .improvements p {
    margin: 0 0 16px 0;
  }

  .improvements-list .column {
    grid-gap: 14px;
    align-items: center;
  }

  .improvements .improvements-list {
    margin-bottom: 28px;
    align-items: center;
  }
}

/**************************\
  Basic Modal Styles
\**************************/

.modal {
  font-family: Poppins, sans-serif;
  z-index: 9999;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  outline: none;
}

.modal__container {
  background-color: #fff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  min-width: 100%;
  min-height: 100%;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}

.modal__title {
}

.modal__close {
  display: inline-flex;
  align-items: center;
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: #75bd43;
  border: none;
  background: transparent;
  padding: 0;
  outline: none;
  cursor: pointer;
}

.modal__close .close-desktop {
  display: none;
}

.modal__close:hover {
  filter: brightness(87%);
}

.modal__close img {
  margin-left: 10px;
}

.modal__content {
  padding: 36px 20px;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden='false'] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden='false'] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden='true'] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide[aria-hidden='true'] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

@media (min-width: 768px) {
  .modal__container {
    max-width: 670px;
    max-height: 100vh;
    min-width: unset;
    min-height: unset;
  }

  .modal__content {
    padding: 12px 50px 58px 50px;
  }

  .modal__header {
    box-shadow: none;
    padding: 16px 16px 0 16px;
  }

  .modal__close {
    margin-left: auto;
  }

  .modal__close span {
    display: none;
  }

  .modal__logo {
    display: none;
  }

  .modal__close .close-desktop {
    display: inline-block;
  }

  .modal__close .close-mobile {
    display: none;
  }
}

/**************************\
  Custom Modal Styles
\**************************/

.modal__content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal__content h3 {
  margin: 16px 0;
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  color: #000000;
}

.modal__content p {
  margin: 0 0 20px 0;
  font-size: 14px;
  line-height: 22px;
  color: #262626;
}

.modal__content p:last-child {
  margin-bottom: 0;
}

.modal__content img {
  max-width: 100%;
}

@media (min-width: 768px) {
  .modal__content h3 {
    margin: 26px 0;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
  }

  .modal__content p {
    text-align: center;
  }
}

main .faq {
  padding: 30px 16px;
  background: #fff;
}

main .faq .faq-title {
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  color: #000000;
  font-family: Poppins, sans-serif;
  font-size: 24px;
  line-height: 28px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

main .faq .faq-arrow {
  position: relative;
  width: 24px;
  height: 24px;
  margin-left: 5px;
}

main .faq .faq-arrow::before {
  position: absolute;
  width: 24px;
  height: 24px;
  background-image: url(../svg/3b6c0886f92627e51e41.svg);
  background-size: contain;
  content: '';
}

main .faq.expanded .faq-arrow::before {
  background-image: url(../svg/86de0765fefca2bd3078.svg);
}

main .faq .list {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 15px;
  overflow: hidden;
  max-height: 0;
  box-sizing: content-box;
  width: 100%;
  margin: 0 -15px;
}

main .faq .list .column-1 {
  margin-bottom: 8px;
}

main .faq .list .column-1,
main .faq .list .column-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px 20px;
  width: 100%;
}

main .faq.expanded .list {
  padding: 15px;
}

main .faq .item {
  width: 100%;
  text-align: left;
  background-color: #ffffff;
  box-shadow: 0 1px 10px rgba(125, 125, 146, 0.5);
  border-radius: 5px;
  height: fit-content;
}

main .faq .title {
  position: relative;
  padding: 15px;
  margin: 0;
  color: #000000;
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 22px;
  cursor: pointer;
}

main .faq .title::before {
  position: absolute;
  right: 32px;
  width: 24px;
  height: 24px;
  content: '';
  background-image: url(../svg/3b6c0886f92627e51e41.svg);
  background-size: contain;
}

main .faq .item.expanded .title::before {
  background-image: url(../svg/86de0765fefca2bd3078.svg);
}

main .faq .body {
  overflow: hidden;
  padding: 0 15px;
  margin: 0;
  color: #000000;
  font-family: Poppins, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.25px;
  max-height: 0;
  transition: all 250ms;
  box-sizing: content-box;
}

main .faq .item.expanded .body {
  padding-bottom: 15px;
}

@media (min-width: 1200px) {
  .faq {
    max-width: 1320px;
    margin: 0 auto;
  }

  main .faq .list {
    flex-direction: row;
    align-items: flex-start;
    gap: 20px;
  }

  main .faq .list .column-1 {
    margin-bottom: 0;
  }

  main .faq .list .column-1,
  main .faq .list .column-2 {
    width: 49%;
  }

  main .faq {
    padding: 65px 40px;
  }

  main .faq .faq-title {
    padding: 0;
    font-size: 34px;
    line-height: 44px;
  }

  main .faq.expanded .list {
    padding: 30px 15px;
  }

  main .faq .title {
    padding: 30px;
  }

  main .faq .body {
    padding: 0 30px;
  }

  main .faq .item.expanded .body {
    padding-bottom: 30px;
  }
}

