.framewrapper {
  width: 100%; /* Desired width of the visible area */
  height: 330px; /* Desired height of the visible area */
  overflow: hidden; /* Clips anything outside the wrapper's dimensions */
  position: relative; /* Establishes positioning context for the iframe */
}

.framewrapper iframe {
  position: absolute; /* Allows precise positioning relative to the wrapper */
  top: -350px; /* Moves the iframe 100px up (hiding the top part) */
  width: 100%; /* Full width of the content inside the iframe */
  height: 800px; /* Full height of the content inside the iframe */
  border: none; /* Optional: remove default iframe border */
}
