/* Hero */

section.hero-templates-v2 {
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
  }
  
  section.hero-templates-v2 .background-overlay {
    z-index: 2;
    position: absolute;
    top: 50%;
    width: auto;
    height: auto;
    max-width: none;
    max-height: 100%;
  }
  
  .hero-templates-v2-content {
    padding: 50px 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  
  .hero-templates-v2-title {
    font-size: 56px;
    font-weight: bold;
    font-family: "Geist", sans-serif !important;
    max-width: 650px;
    line-height: 62px;
    word-break: auto-phrase;
  }
  
  .hero-templates-v2-description {
    font-weight: normal;
    font-size: 22px;
    font-family: "Avenir", sans-serif !important;
    max-width: 650px;
    line-height: 28px;
  }
  
  .hero-templates-v2-button {
    padding: 15px 40px;
    font-size: 16px;
    font-weight: bold;
    font-family: "Geist", sans-serif !important;
    border-radius: 50px;
  }
  
  .hero-templates-v2-most-popular-wrapper {
    padding: 30px 0;
    /* fix for mobile */
    padding: 10px 0;
    /* fix for mobile */
  }
  
  .hero-templates-v2-most-popular-wrapper,
  .hero-templates-v2-wrapper {
    z-index: 3;
    position: relative;
  }
  
  .hero-templates-v2-most-popular {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 10px;
    /* fix for mobile */
    justify-content: left;
    flex-wrap: nowrap;
    white-space: nowrap;
    max-width: 100%;
    overflow-x: auto;
    padding: 20px 20px;
    /* fix for mobile */
  }
  
  .hero-templates-v2-most-popular a {
    font-weight: normal;
    font-size: 16px;
    font-family: "Avenir", sans-serif !important;
    padding: 16px 40px;
    border: 1px solid;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  /* fix for mobile */
  .hero-templates-v2-most-popular a:first-of-type {
    margin-left: auto;
  }

  .hero-templates-v2-most-popular a:last-of-type {
    margin-right: auto;
  }
  /* fix for mobile */
  
  .hero-templates-v2-most-popular p {
    font-weight: normal;
    font-size: 20px;
    font-family: "Avenir", sans-serif !important;
    margin-right: 10px;
  }
  
  