.image[data-offset-key="221o9-0-0"] {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    height: 85px;
    padding: 10px 0;
    display: block;
    z-index: 99999;
    border-bottom: 2px solid #333333;
}

.paperform__page--0.image[data-offset-key="221o9-0-0"] {
    display: none;
}

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

.paperform__page--1, ul[data-offset-key="8pu4v-0-0"] {
    max-width: 1200px !important;
}

.paperform__page--0 {
    max-width: 1050px !important;
    color: #ffffff !important;
}

figure[data-offset-key="4oshj-0-0"], figure[data-offset-key="8mhql-0-0"] {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1 !important;
    height: 100% !important;
} 

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

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

figure[data-offset-key="4oshj-0-0"] img, figure[data-offset-key="8mhql-0-0"] img {
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover !important;
}

figure[data-offset-key="4oshj-0-0"]::before, figure[data-offset-key="8mhql-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="4oshj-0-0"] {
        visibility: hidden;
    }
    
    figure[data-offset-key="8mhql-0-0"] {
        width: 100%;
        visibility: visible;
    }
    
    
    figure[data-offset-key="8mhql-0-0"] img {
        width: 100vw !important;
        height: 100vh !important;
    }
}

.tooltip-1 {
    position: absolute;
    z-index: 1;
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
    width: 500px; /* Set a fixed width */
    max-height: 300px; /* Set a maximum height for the tooltip */
    overflow-y: auto; /* Add vertical scrollbar if content exceeds max-height */
    top: 50%; /* Center vertically */
    left: 100%; /* Position to the right of the parent element */
    transform: translate(-5px, -50%); /* Adjust as needed */
}

.tooltip-label1, .tooltip-label2, .tooltip-label3 {
    position: absolute;
    z-index: 1;
    visibility: hidden;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    padding: 5px;
    width: 500px; /* Set a fixed width */
    max-height: 300px; /* Set a maximum height for the tooltip */
    overflow-y: auto; /* Add vertical scrollbar if content exceeds max-height */
    bottom: 0%; /* Center vertically */
    left: 0%; /* Position to the right of the parent element */
    transform: translate(-5px, 100%); /* Adjust as needed */
}

.LiveField__header:hover .tooltip-1 {
    visibility: visible;
}

.paperform__page--1:hover .tooltip-label1, .paperform__page--1:hover .tooltip-label2, .paperform__page--1:hover .tooltip-label3 {
    visibility: visible;
}

figure.customHTML[data-offset-key="987d6-0-0"] {
    max-width: 1200px !important;
    width: 100%;
    margin: 0 auto !important;
    padding: 1.5% 0;
    color: #fff;
}

figure.customHTML[data-offset-key="987d6-0-0"] .LiveHTML { 
    background: #333333;
}

figure[data-offset-key="57var-0-0"] .Select-menu-outer .Select-menu {
    max-height: 260px !important;
}

.col-3-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    max-width: 1400px;
}

.column {
    flex: 1;
    min-width: calc(33% - 20px); /* Adjust margin as needed */
    margin: 10px;
    box-sizing: border-box;
    padding: 20px;
    text-align: center;
}

.column img {
    height: 60px;
    width: 60px;
}

@media (max-width: 768px) { /* Adjust breakpoint as needed */
    .column {
        min-width: 100%;
    }
}

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