html {
  box-sizing: border-box;
}

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

html, body {
  margin: 0;
  padding: 0;
  font-family: "Atkinson Hyperlegible Next", sans-serif;
  scroll-behavior: smooth;
  font-size: 18px;
}

.container {
  position: relative;
  width: 1200px;
  max-width: 90%;
  margin: auto;
}

@font-face {
  font-family: "LineSeed";
  src: url("../_font/lineseed/LINESeedSans_W_Th.woff2") format("woff2"), url("../_font/lineseed/LINESeedSans_W_Th.woff") format("woff");
}
nav {
  position: fixed;
  z-index: 100;
  background-color: #272B44;
  height: 60px;
  left: 0;
  right: 0;
  top: 0;
  padding: 0;
}
nav figure {
  margin: 0;
  padding: 15px;
}
nav img {
  height: 30px;
}
nav menu {
  position: absolute;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  right: 10px;
  top: 0;
}
nav menu li a {
  color: #b3bed3;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding: 12px 0 6px 0;
  margin: 4px 0 0 20px;
  font-weight: 100;
  font-size: 20px;
  transition: color 0.2s ease-in-out;
}
nav menu li a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background-color: white;
  transition: right 0.2s ease-in-out;
  opacity: 0;
}
nav menu li a:before {
  content: "";
  position: absolute;
  left: -10px;
  bottom: 10px;
  top: 16px;
  width: 2px;
  border-radius: 2px;
  background-color: #545CC4;
}
nav menu li a:hover {
  color: white;
}
nav menu li a:hover:after {
  opacity: 1;
  right: 0;
}
nav menu li:first-child a:before {
  display: none;
}
nav menu ul {
  display: none;
}
nav details {
  position: absolute;
  right: 12px;
  top: 12px;
  color: #b3bed3;
}
nav details summary {
  list-style: none;
  position: absolute;
  right: 0;
  width: 32px;
  height: 32px;
  line-height: 32px;
  text-align: center;
  font-size: 16px;
  border: 1px solid #b3bed3;
}
nav details summary:hover {
  cursor: pointer;
}
nav details summary::-webkit-details-marker {
  display: none;
}
nav details ul {
  list-style: none;
  position: absolute;
  right: 0;
  top: 45px;
  margin: 0;
  padding: 0;
  background-color: white;
  border: 1px solid #545CC4;
}
nav details ul li {
  margin: 0;
  padding: 0;
}
nav details ul li a {
  color: #333;
  text-decoration: none;
  display: block;
  padding: 6px 12px;
}
nav details ul li a:hover {
  background-color: #545CC4;
  color: white;
}
nav button.hamburger {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 34px;
  height: 34px;
  background-color: transparent;
  border: none;
  cursor: pointer;
  background-image: url("../_img/hamburger.svg");
  background-size: 24px 24px;
  background-repeat: no-repeat;
  background-position: center;
  display: none;
  opacity: 0.8;
}
nav button.hamburger:hover {
  opacity: 1;
}
nav.sub {
  top: 60px;
  background-color: #3D4366;
  height: 40px;
  z-index: 90;
}
nav.sub menu li a {
  padding: 8px 0 6px 0;
  margin: 0 0 0 20px;
  font-size: 16px;
}

header {
  height: 100vh;
  background-image: url("../_img/hero.jpg");
  background-size: cover;
}
header h1 {
  margin: 0;
  padding: 0;
  color: transparent;
  text-align: center;
}
header img {
  display: block;
  width: 80%;
  max-width: 720px;
  margin: 60px auto 0 auto;
  height: calc(100% - 60px);
}
header:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  height: 40px;
  transform-origin: left bottom;
  background-color: white;
  transform: skewy(-1deg);
}

section {
  color: #333;
  position: relative;
}
section h1 {
  font-family: "LineSeed", sans-serif;
  font-weight: 100;
  font-style: normal;
  font-size: 64px;
  color: #888;
  margin: 50px 0;
  padding: 0;
  text-align: center;
}
section h2 {
  margin: 30px 0 10px 0;
  color: #545CC4;
  font-weight: 100;
  font-size: 32px;
  font-family: "LineSeed", sans-serif;
  text-transform: uppercase;
}
section h3 {
  margin: 30px 0 10px 0;
  color: #545CC4;
  font-weight: 200;
  font-size: 20px;
  font-family: "LineSeed", sans-serif;
  text-transform: uppercase;
}
section h4 {
  color: #545CC4;
  margin: 10px 0 0 0;
}
section h4 + p {
  margin: 4px 10px;
  padding: 0;
}
section details summary {
  display: inline-block;
  min-width: 200px;
  border-radius: 5px;
  text-align: center;
  list-style: none;
  padding: 6px;
  margin: 4px 0;
  border: 1px solid #545CC4;
  color: #272B44;
}
section details summary::-webkit-details-marker {
  display: none;
}
section details summary:hover {
  color: #545CC4;
  cursor: pointer;
}
section details[open] summary {
  background-color: #545CC4;
  color: white;
}
section details[open] > div {
  max-height: 0;
  animation: accordion 0.3s ease-in-out forwards;
}
section details > div {
  max-height: 0;
  padding: 0 0 0 60px;
  overflow: hidden;
  background-image: url("../_img/arrow_right.svg");
  background-repeat: no-repeat;
  background-size: 50px 50px;
}
section details a.hoverline {
  text-decoration: none;
}
section details a.hoverline:hover, section details a.hoverline:active {
  text-decoration: underline;
  color: #545CC4;
}
section details em {
  font-size: 28px;
  font-style: normal;
  color: #545CC4;
}
section details em span {
  font-size: 15px;
  display: inline-block;
  border: 1px solid #545CC4;
  padding: 1px 5px;
  border-radius: 5px;
  transform: translateY(-8px);
}
section:after {
  content: "";
  display: block;
  height: 1px;
  background-color: #272B44;
  margin: 90px auto;
  transform-origin: left bottom;
  transform: skewY(-1deg);
}
section > a {
  margin-top: -80px;
  display: block;
  position: absolute;
  left: 50%;
  /*&:before{
    content: "";
    display: block;
    height: 60px;
    width: 60px;
    transform: translate(-50%, -80%);
    position: absolute;
    background-color: white;
    border: 1px solid $grey-light;
    border-radius: 50%;
  }*/
}
section:last-child {
  padding-bottom: 80px;
}
section:last-child:after {
  display: none;
}
section main {
  padding-right: 250px;
  min-height: 200px;
}
section aside {
  position: absolute;
  right: 0;
}
section aside figure {
  margin: 0;
  padding: 60px;
  width: 200px;
  height: 200px;
  /*border: 1px solid $purple;
  border-radius: 50%;*/
  display: flex;
  font-family: "LineSeed", sans-serif;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 28px;
  background-size: contain;
}
section aside figure.we {
  background-image: url("../_img/we.svg");
}
section aside figure.service {
  background-image: url("../_img/service.svg");
}
section aside figure.talks {
  background-image: url("../_img/talks.svg");
}
section aside figure.team {
  background-image: url("../_img/team.svg");
}
section .build details summary {
  width: 340px;
  max-width: 90%;
}
section .build details div {
  padding: 0;
  background-image: none;
}
section .columns {
  display: flex;
  justify-content: space-between;
  margin: 0 0 40px 0;
  gap: 10px;
}
section .columns > div {
  width: 100%;
}
section .columns details summary {
  min-width: 300px;
}
section .columns details div {
  padding: 0;
  background-image: none;
}

strong {
  color: #272B44;
}

.contact {
  margin-top: 40px;
}
.contact em {
  font-size: 28px;
  font-style: normal;
  color: #545CC4;
}
.contact a {
  display: inline-block;
  text-decoration: none;
  color: white;
  background-color: #545CC4;
  padding: 10px 20px;
  margin: 10px 10px 10px 0;
  border-radius: 5px;
  transition: background-color 0.2s ease-in-out;
}
.contact a:hover {
  background-color: #272B44;
}

body.hassub section > a {
  margin-top: -120px;
}

@keyframes accordion {
  0% {
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    max-height: 0;
  }
  100% {
    padding-top: 13px;
    padding-bottom: 10px;
    opacity: 1;
    max-height: 440px;
  }
}
.cascade {
  margin-bottom: 40px;
}
.cascade details:before {
  content: "";
  display: block;
  margin: 5px 0;
  height: 50px;
  background-image: url("../_img/arrow_down_mid.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
.cascade details:nth-child(1):before {
  background-image: url("../_img/arrow_down_top.svg");
}
.cascade details:nth-child(2) {
  margin-left: 50px;
}
.cascade details:nth-child(3) {
  margin-left: 100px;
}

ul.partners {
  list-style: none;
  display: flex;
  gap: 10px;
  padding: 0;
}
ul.partners li {
  display: block;
  width: 20%;
  border: 1px solid #ccc;
  border-radius: 10px;
  height: 100px;
  overflow: hidden;
  padding: 5px;
}
ul.partners li.p12 {
  padding: 12px;
}
ul.partners li a {
  display: block;
  position: relative;
  background-color: white;
}
ul.partners li a:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 1px;
  background-color: #545CC4;
  mix-blend-mode: overlay;
  transition: opacity 0.3s ease-in-out;
}
ul.partners li a img {
  width: 100%;
  height: 100%;
  filter: grayscale(100%) opacity(0.6);
  transition: filter 0.3s ease-in-out;
  object-fit: contain;
}
ul.partners li a:hover:after {
  opacity: 0;
}
ul.partners li a:hover img {
  filter: grayscale(0%) opacity(1);
}

footer {
  background-color: #272B44;
  min-height: 240px;
  margin-top: 50px;
  color: #b3bed3;
  padding: 100px 0 40px;
}
footer ul {
  display: none;
}
footer aside {
  float: right;
  margin-top: -10px;
}
footer aside a.button {
  display: inline-block;
  text-decoration: none;
  color: #b3bed3;
  padding: 8px 16px;
  border: 1px solid #b3bed3;
  border-radius: 5px;
  margin-left: 8px;
}
footer aside a.button:hover {
  background-color: #b3bed3;
  color: #272B44;
}

@media screen and (max-width: 1200px) {
  section .columns details summary {
    min-width: 240px;
  }
}
@media screen and (max-width: 1100px) {
  nav .container {
    width: 100%;
    max-width: 100%;
  }
  nav menu {
    position: absolute;
    right: -60px;
    height: calc(100vh - 60px);
    background-color: #272B44;
    top: 60px;
    padding: 0 20px 0 10px;
    opacity: 0;
    pointer-events: none;
    display: block;
    transition: opacity 0.3s ease-in-out, right 0.3s ease-in-out;
  }
  nav menu li a:before {
    display: none;
  }
  nav menu.open {
    right: 0;
    opacity: 1;
    pointer-events: auto;
  }
  nav menu ul {
    display: block;
    position: absolute;
    left: 10px;
    bottom: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  nav button.hamburger {
    display: block;
  }
  nav details {
    display: none;
  }
  section .columns {
    display: block;
  }
  section .columns details summary {
    width: 400px;
    max-width: 100%;
  }
  ul.partners {
    flex-wrap: wrap;
    justify-content: center;
  }
  ul.partners li {
    width: 300px;
  }
}
@media screen and (max-width: 800px) {
  .contact a {
    display: block;
    margin-right: 0;
    width: 300px;
    max-width: 100%;
  }
  section h1 {
    font-size: 48px;
  }
  @keyframes accordion {
    0% {
      padding-top: 0;
      padding-bottom: 0;
      opacity: 0;
      max-height: 0;
    }
    100% {
      padding-top: 13px;
      padding-bottom: 10px;
      opacity: 1;
      max-height: 600px;
    }
  }
}
@media screen and (max-width: 640px) {
  section main {
    padding-right: 150px;
  }
  section aside figure {
    width: 150px;
    height: 150px;
  }
  footer {
    text-align: center;
    padding: 60px 0;
  }
  footer ul {
    display: block;
    padding: 0;
    margin: 30px 0 40px 0;
  }
  footer ul li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  footer ul li a {
    color: #b3bed3;
    text-decoration: none;
    display: block;
    padding: 6px 0;
    font-weight: 100;
    font-size: 20px;
  }
  footer ul li a:hover {
    color: white;
  }
  footer aside {
    float: none;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 500px) {
  section main {
    padding-right: 0;
  }
  section aside {
    position: relative;
  }
  section aside figure {
    width: 200px;
    height: 200px;
    padding: 30px;
  }
}
@media screen and (max-width: 440px) {
  section details > div {
    padding-left: 40px;
    background-size: 40px 40px;
    background-position: -7px 5px;
  }
  .cascade details:before {
    background-position: -10px 0;
  }
  .cascade details:nth-child(2) {
    margin-left: 30px;
  }
  .cascade details:nth-child(3) {
    margin-left: 60px;
  }
}

/*# sourceMappingURL=main.css.map */
