body {
  background-color: #d88c24;
  color: #f0a725;
  font-family: "Segoe UI", Helvetica, sans-serif;
}

h3 {
  padding-left: 10px;
  padding-right: 5px;
}

.exp.collapsed {
  height: 50px;
  border: none;
  padding: none;
  overflow: hidden;
}

.exp.expanded{
  height: auto;
  background-color: #37261b;
  padding-top: 5px;
  padding-bottom: 10px;

}

.expanded p{
  padding-left: 15px;
  padding-right: 10px;
}

.btn {
  color: #170d04;
  background-color: #f0a725;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #d88c24;
}

.exp.hidden {
  display: none;
}

.boxtextlink{
  color: #170d04;
}

.maintextlink {
  color: #f0a725;
}

.container {
  display: grid;
  grid-template-columns: 1fr 10fr 1fr;
  grid-template-rows: 1fr;
  grid-auto-columns: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: ". body .";

}

.body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 6fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas:
    "header_banner"
    "main_body_background";
  grid-area: body;
  max-width: 1000px;
margin: auto;
}

.header_banner {
  grid-area: header_banner;
  text-align: center;
  background-color: #170d04;
}

.main_body_background {
  display: grid;
  grid-template-columns: 1fr 8fr 1fr;
  grid-template-rows: 0fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: ". main_body_foreground .";
  grid-area: main_body_background;
  background-color: #170d04;
}

.main_body_foreground {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows:  0fr 0fr 0fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-area: main_body_foreground;
}

.header_title {
  grid-area: 1 / 1 / 2 / 2;
}

.main_body_fg {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: "main_side_section main_main_aroo";
  grid-area: 2 / 1 / 2 / 2;
  height: 350px;
}

.main_side_section {
  grid-area: main_side_section;
  padding-right: 40px;
}

.main_main_aroo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px 20px;
  grid-area: main_main_aroo;
  justify-content: end;
  max-width: 350px;
}

.bx_1 {
  grid-area: 1 / 1 / 2 / 2;
  background-color: #f0a725;
  position: relative;
  text-align: center;
}

.bx_2 {
  grid-area: 1 / 2 / 2 / 3;
  background-color: #f0a725;
  position: relative;
  text-align: center;
}

.bx3 {
  grid-area: 2 / 1 / 3 / 2;
  background-color: #f0a725;
  position: relative;
  text-align: center;
}

.bx_4 {
  grid-area: 2 / 2 / 3 / 3;
  background-color: #f0a725;
  position: relative;
  text-align: center;
}

.boxes {
  grid-area: 1 / 1 / 3 / 3;
}

.box {
  font-weight: bold;
}

.footer {
  grid-area: 2 / 2 / 2 / 2;
}

.footer_top {
  grid-area: 3 / 1 / 4 / 2;
}

.main_lower {
  display: grid;
  grid-template-rows: 1fr 1fr;
  grid-auto-columns: 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-area: 3 / 1 / 4 / 2;
}

.main_lower_top {
  grid-area: 1 / 1 / 2 / 2;
}

.main_lower_footer {
  grid-area: 2 / 1 / 3 / 2;
}

html,
body,
.container {
  height: 100%;
  margin: 0;
}


img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

#logo_alpha {
  opacity: 0.2;
}


/* Centered text */
.centered {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #170d04;
  transform: translate(-50%, -50%);
}

/* For presentation only, no need to copy the code below 

.container * {
  border: 1px solid red;
  position: relative;
}

.container *:after {
  content: attr(class);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: grid;
  align-items: center;
  justify-content: center;
}
*/