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

body {
  background-image: url("/images/background.jpg");
  background-size: cover;
  overflow-y: hidden;
}

#wrapper {
  max-width: 1440px;
  min-height: 100vh;
  margin: 0 auto;
  position: relative;
  background-color: rgba(255, 255, 255, 0.5);
}

header {
  background-color: rgba(255, 255, 255, 0.5);
}
header img {
  width: 209px;
  height: 120px;
}

footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.5);
}

main {
  display: flex;
  flex-direction: column;
}

.sectionBox {
  width: 800px;
  margin: 20px auto;
}
.sectionBox-topPanel {
  display: flex;
}
.sectionBox-topPanel-item {
  width: 200px;
  text-align: center;
  border-radius: 5px 5px 0 0;
  padding: 5px;
  text-transform: uppercase;
  color: white;
  font-weight: bold;
  cursor: pointer;
}
.sectionBox-topPanel-item:not(:last-child) {
  margin-right: 3px;
}
.sectionBox-closePanel {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
.sectionBox-closePanel-button {
  padding: 2px;
}
.sectionBox-closePanel-button:hover {
  opacity: 0.75;
}
.sectionBox-infoPanel {
  height: 0;
  visibility: hidden;
  border-radius: 0 0 5px 5px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-grow: 0;
  align-items: center;
  gap: 20px;
}
.sectionBox-infoPanel.open {
  visibility: visible;
  min-height: 450px;
}

.home {
  background-color: #07693b;
}
.home.open {
  background-color: #008046;
}

.insurance {
  background-color: #764270;
}
.insurance.open {
  background-color: #854283;
}

.finance {
  background-color: #1d7776;
}
.finance.open {
  background-color: #008a6c;
}

.improve {
  background-color: #7d1c49;
}
.improve.open {
  background-color: #931a51;
}

.button {
  cursor: pointer;
}/*# sourceMappingURL=styles.css.map */