  .f-hero {
    display: grid;
/*     height: 100vh; */
/*     min-height: calc(100vh - 91.19px); */
    min-height: calc(100vh - 85px);
    justify-content: center;
    justify-items: stretch;
    align-content: stretch;
    grid-auto-columns: 1fr;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .hero-content {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
  }

  .content-inner {
    position: relative;
    display: flex;
    width: 100%;
    max-width: 645px; /* initially 670px, change this value if alignment not proper */
    padding-top: 100px;
    padding-bottom: 120px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    flex-grow: 1;
    flex-shrink: 1;
    flex-basis: 0%;
  }

  h1, h2, h3, h4{
    font-family: Inter;
    font-weight: 900;
/*     font-size: 48px; */
    margin-top: 0px;
    margin-bottom: 16px;
  }

  p{
    font-family: Inter;
    font-size: 16px;
    color: #595959;
  }

  .button_wrapper{
    margin-top: 24px;
  }

  .button_hero {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    border-style: none;
    padding:12px 15px;
    color: white;
    background-color: hsla(25.89211618257261, 97.57%, 51.57%, 1.00);
    font-family: Inter;
  }

  .Link:local-styles {}

  .hero-visual{
    position: relative;
    z-index: 1;
    margin-left: 100px;
    padding-right: 0px;
    padding-bottom: 0px;
  }

  .play-icon_wrapper {
    position: absolute;
    left: 0%;
    top: 0%;
    right: 0%;
    bottom: 0%;
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: start;
    align-items: end;
  }

/*   .play-pause-icon:hover { */
  .play-pause-icon {
    animation: breathe 1.5s ease-out infinite;
    cursor: pointer;
  }

  @keyframes breathe {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }

  .play-pause-icon .play-symbol {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  }

  .play-pause-icon.playing .play-symbol {
    opacity: 0;
    transform: translateX(-100%);
  }

  .play-pause-icon .pause-symbol {
    opacity: 0;
    transform: translateX(100%);
    transition: opacity 0.2s ease-out, transform 0.2s ease-out;
  }

  .play-pause-icon.playing .pause-symbol {
    opacity: 1;
    transform: translateX(0);
  }

  .visual-wrap {
    width: 100%;
    height: 100%;
/*     height: calc(100vh - 91.19px); */
    max-width: 100%;
/*     padding-left: 60px; Removed because for now it works withoug it */ 
  }

  .visual-wrap > .image{
    width:100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
  }

  @media screen and (max-width: 992px) {

    .f-hero {
      padding-left: 0px;
      grid-template-columns: 1fr;
      grid-template-rows: auto auto;
    }
    .hero-content {
      justify-content: center;
      order: 1;
      padding: 50px 20px;
    }

    .content-inner{
      align-items: flex-start;
      padding-top: 10px;
      padding-bottom: 10px;
    }

    .hero-visual{
      margin-left: 0px;
    }

    .visual-wrap {
      max-height: 350px;
    }
    
    .play-icon_wrapper {
       align-items: start;
      margin-top: 220px;
    }
  }

#overlay-hero {
    position: fixed;
    display: none;
    padding:90px;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.9);
    z-index: 2;
    cursor: pointer;
  }

  .popup-viewer {
    width: 50%;
    position: absolute;
    left: 50%;
    top:50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    height: 80%;
  }

  .popup-viewer > iframe,
  .popup-viewer > video {
    height: 100%;
    width: 100%;
    border: none;
  }

{# This should probably be deleted - 27/07/23 FM
.body-container-wrapper {
  margin-top: 0px;
} #}