body {
  font-family: Arial, sans-serif;
  margin: 0;
}

header,
main,
aside,
footer {
  padding: 1em;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 50vh;
  max-width: 900px;
  margin: auto;
  width: 100%;
}

.main-overlay-wrapper {
  max-width: 900px;
  /* or your preferred width */
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}

.main-content {
  max-width: 900px;
  margin: auto;
  width: 100%;
  display: flex;
  gap: 0em;
  align-items: flex-start;
  margin-bottom: 0;
  padding-bottom: 0;
  flex: none;
}

.top-bar,
.main-content {
  box-sizing: border-box;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

aside {
  flex: 0 0 200px;
}

main {
  flex: 1;
}

.sidebar-menu-btn-wrapper {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  display: block;
}

#sidebar-menu-btn-wrapper>* {
  margin: 0 !important;
  padding: 0 !important;
  display: block;
  line-height: 1;
}

nav {
  background: #096299;
  color: #fff;
  display: flex;
  gap: 1em;
  justify-content: space-evenly;
  flex-direction: row;
  padding: 0.5em 1em;
  flex-wrap: wrap;
}

nav a {
  color: #fff;
  text-decoration: none;
}

nav a:hover {
  background: #1c5898;
}

.sidebar-nav {
  background: #fff;
  border-radius: 6px;
  padding: 1em 0.5em;
  max-width: 220px;
  margin: 1em auto;
  box-shadow: 0 2px 8px #0001;
}

.sidebar-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-list li {
  margin-bottom: 0.3em;
}

.sidebar-list a {
  color: #000;
  text-decoration: none;
  font-size: 9pt;
  padding-left: 0.5em;
  display: block;
  border-radius: 3px;
  transition: background 0.2s;
}

.sidebar-list a:hover {
  background: #eee;
}

.sidebar-list .section-title {
  font-weight: bold;
  margin-left: 0.2em;
  margin-bottom: 0.2em;
  font-size: 9pt;
  color: #000;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  margin-top: 1em;
  margin-bottom: 0.5em;
}

.sidebar-logo img {
  width: 40px;
  height: auto;
  margin-right: 0.5em;
}

@media (max-width: 700px) {
  .main-content {
    flex-direction: column;
  }

  aside,
  .sidebar {
    flex: none;
    width: 100%;
  }

  .sidebar-nav {
    max-width: 100%;
    padding: 1em 0.2em;
  }

  .sidebar-logo img {
    width: 30px;
  }
}

.right-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
  width: 190px;
  max-width: 100%;
  justify-content: flex-start;
  height: auto;
  margin-bottom: 0;
  padding-bottom: 0;
  flex-shrink: 0;
  flex-grow: 0;
  background: none;
}

.sidebar-section {
  background: #999;
  color: #fff;
  width: 100%;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 0.5em;
  transition: background 0.2s;
  text-align: center;
}

.sidebar-section:hover {
  background: #666;
}

.sidebar-title {
  padding: 0.5em 0;
  font-size: 9pt;
  font-family: Arial, sans-serif;
  background: #096299;
}

.sidebar-img {
  background: #fff;
  padding: 0.5em 0;
}

.sidebar-img img {
  width: 170px;
  height: 65px;
  object-fit: cover;
}

.sidebar-menu-btn {
  display: none;
  background: none;
  border: none;
  padding: 0.5em;
  cursor: pointer;
  margin-bottom: 1em;
}

.sidebar-menu-btn img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 2px 8px #0002;
}

@media (max-width: 700px) {

  .sidebar-list,
  .sidebar-logo {
    display: none;
  }

  .sidebar-list2 {
    display: none !important;
  }

  .sidebar-menu-btn {
    display: block;
    margin: 0 auto 1em auto;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5em 1em;
  }

  .top-nav {
    width: 100%;
    justify-content: flex-end;
    gap: 1em;
    margin-top: 0.5em;
  }

  .logo-img {
    width: 204px;
    height: 31px;
    max-width: 204px;
    max-height: 31px;
    object-fit: contain;
  }

  #center-nav,
  .main-content {
    max-width: 900px;
    /* or your preferred width */
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
}

.info-section {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5em;
}

.info-section img {
  width: 66px;
  height: 66px;
  margin-right: 1em;
  vertical-align: middle;
}

.info-section-title {
  font-size: 1em;
  font-weight: bold;
}

.info-section-content {
  flex: 1;
}

.core-technology-overlay {
  display: none;
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: flex-start;
  align-items: flex-start;
}

.core-technology-overlay.active {
  display: flex;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #fff;
  color: #000;
  padding: 0.5em 1em;
  flex-direction: row;
  max-width: 900px;
  margin: auto;
}

.logo-link {
  display: flex;
  align-items: left;
}

.logo-img {
  width: 204px;
  height: 31px;
  max-width: 204px;
  max-height: 31px;
  object-fit: contain;
}

.top-nav {
  display: flex;
  gap: 1.5em;
  align-items: right;
  flex-direction: row;
}

.top-nav a {
  text-decoration: none;
  color: #000;
}

/* Overlay styles */
.sidebar-overlay {
  display: none;
  position: absolute;
  z-index: 5;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  justify-content: flex-start;
  align-items: flex-start;
}

.sidebar-overlay.active {
  display: flex;
}

.sidebar-overlay-content {
  background: #fff;
  border-radius: 0;
  padding: 2em 1.5em 1.5em 1.5em;
  min-width: 220px;
  max-width: 90vw;
  box-shadow: 0 4px 24px #0003;
  position: relative;
  margin-top: 0;
}

.sidebar-overlay-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-overlay-content li {
  margin-bottom: 0.7em;
}

.sidebar-overlay-content a {
  color: #000;
  text-decoration: none;
  font-size: 1.1em;
  display: block;
  padding: 0.3em 0.5em;
  border-radius: 3px;
  transition: background 0.2s;
}

.sidebar-overlay-content a:hover {
  background: #eee;
}

.sidebar-overlay-close {
  position: absolute;
  top: 0.5em;
  right: 0.7em;
  background: none;
  border: none;
  font-size: 2em;
  color: #888;
  cursor: pointer;
  line-height: 1;
}

@media (max-width: 700px) {
  .right-sidebar {
    flex: none;
    flex-wrap: nowrap;
    gap: 0.5em;
    justify-content: flex-start;
    align-items: center;
    display: none;
  }

  .sidebar-section {
    margin-bottom: 0.5em;
  }

  .sidebar-img img {
    height: auto;
  }

  /* Hamburger menu */
  .containerIcon {
    display: flexbox;
    cursor: pointer;
    justify-content: flex-end;
  }

  .bar1,
  .bar2,
  .bar3 {
    width: 35px;
    height: 5px;
    background-color: #333;
    margin: 6px 0;
    transition: 0.4s;
  }

  .change .bar1 {
    transform: translate(0, 11px) rotate(-45deg);
  }

  .change .bar2 {
    opacity: 0;
  }

  .change .bar3 {
    transform: translate(0, -11px) rotate(45deg);
  }
}

h1 {
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 14pt;
}

.box {
  max-width: 500px;
  display: flex;
}

.main-image {
  float: left;
  width: 181px;
  /* or your preferred width */
  height: 181px;
  margin-right: 1rem;
  /* space between image and text */
  /*margin-bottom: 1rem; /* space below image */
  /* shape-outside: circle(50%); */
}

#slider .slide {
  transition: opacity 0.7s;
  opacity: 0;
  z-index: 1;
}

#slider .slide[style*="display: block"] {
  opacity: 1;
  z-index: 2;
}

.g-recaptcha {
  min-width: 304px;
}