.Paperform__Container {
    padding-top: 100px !important;
}

div[data-key="3ada7"] .LiveField__container {
    display: none;
}

.image[data-offset-key="1jma6-0-0"] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #333333;
    height: 85px;
    padding: 10px 0;
    z-index: 99999;
    display: none;
}

.image[data-offset-key="84b0h-0-0"] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 85px;
    padding: 10px 0;
    background: #ffffff;
    z-index: 99999;
    border-bottom: 2px solid #ccc;
    display: none;
}

figure[data-offset-key="3g468-0-0"], figure[data-offset-key="5fkrf-0-0"] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1 !important;
    height: 100% !important;
} 

figure[data-offset-key="3g468-0-0"] {
    visibility: visible;
}

figure[data-offset-key="5fkrf-0-0"] {
    visibility: hidden;   
}

figure[data-offset-key="3g468-0-0"] img, figure[data-offset-key="5fkrf-0-0"] img {
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover !important;
}

figure[data-offset-key="3g468-0-0"]::before, figure[data-offset-key="5fkrf-0-0"]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

@media (max-width: 960px) { 
    figure[data-offset-key="3g468-0-0"] {
        visibility: hidden;
    }
    
    figure[data-offset-key="5fkrf-0-0"] {
        width: 100%;
        visibility: visible;
    }
    
    
    figure[data-offset-key="5fkrf-0-0"] img {
        width: 100vw !important;
        height: 100vh !important;
    }
}

.accordion {
    display: flex;
    flex-direction: column;
  }
  .accordion-item {
    border: 1px solid #ddd;
    margin-bottom: 10px;
    overflow: hidden;
  }
  .accordion-header {
    background-color: #f1f1f1;
    padding: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }
  .accordion-item.open .accordion-header {
    background-color: #d3d3d3;
  }
  .accordion-item.open .accordion-content {
    max-height: 500px;
  }