.split-screen {
  margin: 0;
  padding-left: 0;
  display: flex;
}

.left-pane {
  flex: 1;
  width: 50%;
  margin-top: 0;
}

.right-pane {
  flex: 1;
  width: 50%;
}

.left-pane img {
  object-fit: contain;
  border-radius: 15px;
  order: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.right-pane {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 20px;
  display: flex;
}

.text-block {
  text-align: left;
  align-items: center;
  width: 90%;
  margin-bottom: 20px;
}

@media (width <= 768px) {
  .split-screen {
    flex-direction: column;
  }

  .left-pane, .right-pane {
    flex: none;
    width: 100%;
    height: auto;
  }

  .left-pane {
    order: 1;
  }

  .right-pane {
    order: 10;
  }

  .text-block {
    padding: 20px;
  }
}

.split-screen-right {
  display: flex;
}

.left-pane-ssr, .right-pane {
  flex: 1;
}

.left-pane-ssr {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  padding: 20px;
  display: flex;
}

.right-pane img {
  object-fit: contain;
  border-radius: 15px;
  width: 100%;
  height: 100%;
}

.right-pane {
  flex-direction: column;
  justify-content: center;
  max-height: 100%;
  padding: 20px;
  display: flex;
  overflow-y: auto;
}

.text-block {
  text-align: left;
  align-items: center;
  margin-bottom: 20px;
}

@media (width <= 768px) {
  .split-screen-right {
    flex-direction: column;
  }

  .left-pane-ssr, .right-pane {
    flex: none;
    width: 100%;
    height: auto;
  }

  .left-pane-ssr img, .right-pane img {
    width: 100%;
    height: auto;
  }

  .left-pane-ssr {
    order: 2;
  }

  .right-pane {
    order: 1;
  }

  .text-block {
    text-align: left;
    padding: 20px;
  }
}

.scroll-to-top {
  color: teal;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background-color: #0000;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: flex-start;
  width: 50px;
  height: 50px;
  font-size: 24px;
  transition: opacity .3s, visibility .3s;
  display: flex;
  position: fixed;
  top: 20px;
  left: 20px;
  box-shadow: 0 4px 8px #0003;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.arrow {
  margin-top: 5px;
}

.contact-menu {
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 80vw;
  margin: 16px auto;
  padding: 10px;
}

.form-group {
  flex-direction: column;
}

.form-group label {
  text-align: left;
  align-self: flex-start;
  margin-bottom: 0;
  font-weight: normal;
}

.form-group input {
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
  height: 24px;
  margin-bottom: 0;
  padding: 0;
}

.form-group textarea {
  resize: none;
  resize: vertical;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  height: 128px;
  margin-bottom: 0;
  padding: 16px;
  overflow: hidden;
}

button {
  color: #d6995d;
  cursor: pointer;
  background-color: #bcc5ce;
  border: none;
  border-radius: 4px;
  width: 100%;
  padding: 10px;
  font-size: 16px;
}

button:hover {
  background-color: #eeb656;
}

.container {
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.left {
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 1px;
  width: 50%;
  height: 100%;
  display: grid;
}

.right {
  align-items: left;
  border-left: none;
  justify-content: left;
  width: 50%;
  padding: 32px;
  display: flex;
}

.image {
  object-fit: contain;
  cursor: pointer;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
  border-radius: 15px;
  width: 100%;
  height: 100%;
}

.text-container {
  text-align: center;
}

.text-left {
  text-align: left;
}

.small-screen-container {
  box-sizing: border-box;
  justify-content: center;
  align-items: center;
  width: 100vw;
  margin-bottom: 32px;
  padding: 0;
  display: flex;
}

.image-grid {
  border-radius: 15px;
  grid-template-rows: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  width: 100%;
  height: 100%;
  display: inline-block;
}

.grid-image {
  cursor: pointer;
  border: 1px #000;
  border-radius: 15px;
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 1px;
  display: block;
}

.text-overlay {
  opacity: .98;
  color: #1e1d1d;
  text-align: center;
  cursor: pointer;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  display: flex;
}

@media (width <= 768px) {
  .text-overlay {
    font-size: 16px;
  }
}

@media (width <= 480px) {
  .text-overlay {
    font-size: 14px;
  }
}

.carousel {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 8px;
  display: flex;
}

.carousel-grid, .row-of-three {
  gap: 10px;
  display: grid;
}

.carousel-grid {
  grid-template-columns: repeat(7, 1fr);
}

.row-of-three {
  grid-template-columns: repeat(3, 1fr);
  justify-content: center;
  margin-top: 10px;
}

.carousel-item {
  justify-content: center;
  align-items: center;
  display: flex;
}

.carousel-item img {
  max-width: 100%;
  height: auto;
  padding: 8px;
}

@media (width <= 768px) {
  .carousel-grid, .row-of-three {
    grid-template-columns: 1fr;
  }

  .carousel-item {
    max-width: 150px;
  }

  .row-of-three {
    justify-content: center;
    margin-top: 0;
  }
}

.header {
  color: #0000;
  background-color: #0000;
  align-items: center;
  padding: 10px 20px;
  display: flex;
}

.hamburger {
  cursor: pointer;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 30px;
  margin-right: 20px;
  display: flex;
}

.line {
  background-color: #333;
  width: 100%;
  height: 4px;
  transition: transform .3s;
}

.spin {
  transform: rotate(90deg);
}

.menu {
  opacity: .98;
  color: #000;
  z-index: 1000;
  background-color: #3c88a3;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
}

.close-icon {
  cursor: pointer;
  font-size: 24px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.close-icon ul h2:hover {
  background-color: #f0f0f0;
}

.close-icon ul h2 {
  cursor: pointer;
}

.menu ul {
  text-align: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu li {
  cursor: pointer;
  padding: 20px;
}

.menu li:hover {
  background-color: #eeb656;
}

.menu ul h2 {
  cursor: pointer;
}

.menu ul h2:hover {
  background-color: #eeb656;
}

.page-break {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.page-break-text {
  margin: 20px 0;
  font-size: 3rem;
}

hr {
  border: none;
  border-top: .5px solid #121111;
  width: 100%;
  margin: 0;
}

.footer {
  color: #222;
  text-align: center;
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 32px;
  padding: 20px 0;
  display: flex;
}

.footer-content {
  text-align: center;
  flex-flow: column wrap;
  justify-content: center;
  display: flex;
}

.footer-section {
  text-align: center;
  margin: 10px;
}

.footer-section h2 {
  margin-bottom: 10px;
}

.footer-section p, .footer-section a {
  color: #333;
  margin: 5px 0;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.qr {
  max-width: 100px;
  max-height: auto;
  margin: 16px;
}

p, ul {
  font-size: 16px;
}

h4 {
  font-size: 22px;
}

h2, h5 {
  font-size: 24px;
}

p, h2, h3 {
  margin-bottom: 16px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

@font-face {
  font-family: OpenSans;
  src: url("OpenSans-Regular.87e1ba25.ttf");
  font-weight: 800;
}

@font-face {
  font-family: OpenSansSemiBold;
  src: url("OpenSans-SemiBold.b574765f.ttf");
}

body {
  text-align: center;
  font-family: OpenSans;
  font-size: 20px;
}

h1, h2, h3, h4, h5 {
  font-family: OpenSansSemiBold;
}
/*# sourceMappingURL=index.db9ed22c.css.map */
