/* Mobile first */
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px;
  margin: 0px;
  font-family: "Roboto", Arial;
  font-weight: 400;
  color: #051039;
  background-color: #e7e7e7;
}

a.button:link,
a.button:visited,
a.button:hover,
a.button:active {
  color: white;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  background: #186dff;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  display: inline-flex;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.44px;
  vertical-align: middle;
}

.button-paragraph {
  margin: 40px 0px 40px 0px;
}

.paper {
  background-color: #fff;
  margin: 7px;
  border: none;
  border-radius: 3px;
  box-shadow: 0px 0px 2px 2px #c3c3c3;
  padding: 20px;
}

h1 {
  font-size: 34px;
  font-weight: 400;
}

h2 {
  font-size: 24px;
  font-weight: 400;
  margin: 24px 0px 20px 0px;
}

p,
ul,
ol {
  font-size: 16px;
  font-weight: 400;
  line-height: 25px;
}

a:link,
a:visited,
a:hover,
a:active {
  color: #186dff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.mobileHeader {
  display: block;
  min-height: 160px;
  background-image: url("gw-logo.svg");
  background-size: 150px 100px;
  background-repeat: no-repeat;
  background-position: center;
  text-align: center;
  width: 100%;
}

header {
  display: none;
}

.headerText {
  padding: 134px 0px 0px 0px;
  font-size: 20px;
  font-weight: 500;
}

main {
  flex: 1;
  width: 100%;
  padding: 0px;
  border: none;
}

.imageIcon {
  vertical-align: middle;
}

.footerText {
  width: 100%;
  text-align: left;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 500;
}

footer {
  padding: 0px;
  text-align: left;
  width: 100%;
}

.collaboratorBox {
  display: position;
  justify-content: normal;
}

.collaboratorBox a {
  padding: 20px 0px 20px 0px;
  display: block;
  margin: auto;
}

.textBox {
  background-color: rgba(88, 188, 237, 0.12);
  padding: 8px;
  border-style: solid;
  border-width: 0.8px;
  border-color: #58bced;
  margin-right: 1em;
  margin-bottom: 2.5em;
  border-radius: 5px;
}

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

/* Core styles/functionality */
.tab {
  position: relative;
}

.tab input {
  opacity: 0;
  z-index: -1;
  display: none;
}

.tab__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s;
}

.tab input:checked ~ .tab__content {
  max-height: 25rem;
}

/* Visual styles */
.accordion {
  overflow: hidden;
}

.tab__label,
.tab__close {
  display: flex;

  cursor: pointer;
  font-size: 24px;
  font-weight: 400;
}

.tab__label {
  justify-content: space-between;
}

.tab__label::after {
  content: "";
  background: url("icons-chevron-down.svg") no-repeat;
  width: 1em;
  height: 1em;
  text-align: center;
  transform: rotate(0deg);
  transition: all 0.35s;
}

.tab input:checked + .tab__label::after {
  transform: rotate(180deg);
}

.tab__content p {
  margin: 0;
  padding: 1rem 0rem;
}

.tab__close {
  justify-content: flex-end;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
}

@media only screen and (min-width: 1160px) {
  /* For desktop */

  .mobileHeader {
    display: none;
  }

  .paper {
    margin: 0px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0px;
  }

  body {
    min-height: 100vh;
    background-image: url("baground-about-us.svg");
    background-size: cover;
    padding: 0px;
    margin: 0px;
    font-weight: 400;
  }

  header {
    display: block;
    background-color: #d4d9dc;
    min-height: 208px;
    background-image: url("header.png"), url("header2.png");
    background-size: contain;
    background-repeat: no-repeat, repeat-x;
    background-position: left;
    text-align: center;
    width: 100%;
    box-shadow: 2px 0px 2px 2px #c3c3c3;
    z-index: 100;
  }

  main {
    flex: 1;
    padding: 20px;
    width: 70%;
    background-color: #fff;
  }

  footer {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    position: sticky;
    bottom: 0;
    width: 70%;
  }
  .mainContainer {
    width: 68%;
    padding-right: 20px;
    float: left;
  }
  .rightContainer {
    width: 30%;
    padding-left: 20px;
    float: left;
    border-left: 1px solid #374061;
  }

  footer {
    background-color: #fff;
    text-align: center;
    position: sticky;
    bottom: 0;
    width: 70%;
  }

  .collaboratorBox {
    display: flex;
    justify-content: space-between;
  }
}
