/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
  color: #1B1B1B;
}

body {
  color: #1B1B1B;
  font-family: roboto, sans-serif;
  font-size: 18px;
  line-height: 22px;
  background-color: #eee;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  min-height: calc(100vh - 220px);
}
@media (max-width: 768px) {
  main {
    padding: 0 20px;
  }
}

strong {
  font-weight: 700;
}

p {
  margin-bottom: 30px;
}

picture {
  display: flex;
}
picture img {
  max-width: 100%;
}

section {
  margin-bottom: 50px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  text-decoration: underline;
}

summary {
  cursor: pointer;
}

header.main-header {
  border-bottom: 1px solid #1B1B1B;
  margin-bottom: 76px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: #eee;
  z-index: 1;
}
header.main-header .main-logo {
  width: 120px;
  height: 60px;
  object-fit: cover;
}
header.main-header .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.main-header .wrapper nav ul {
  display: flex;
}
header.main-header .wrapper nav ul li {
  padding: 23px 29px;
}
header.main-header .wrapper nav ul li:last-child {
  padding-right: 0;
}

footer.main-footer {
  border-top: 1px solid #1B1B1B;
}
footer.main-footer .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer.main-footer .left-container ul {
  display: flex;
}
footer.main-footer .left-container ul li {
  padding: 31px 17px;
}
footer.main-footer .left-container ul li:first-child {
  padding-left: 0;
}
footer.main-footer .right-container ul {
  display: flex;
}
footer.main-footer .right-container ul li {
  padding: 31px 17px;
}
footer.main-footer .right-container ul li:last-child {
  padding-left: 0;
}

section.text-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 200px;
}
section.text-highlight .main-text {
  font-size: 40px;
  text-align: left;
  line-height: 46px;
  padding: 0 60px;
  font-weight: 500;
}
section.text-highlight.w-img figcaption {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
section.text-highlight.w-img picture, section.text-highlight.w-img img, section.text-highlight.w-img figure {
  width: 100%;
}
section.text-highlight.w-img figure {
  position: relative;
}

section.text-image {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: grid;
  grid-template-columns: 1fr 500px;
  grid-gap: 122px;
  align-items: center;
}
section.text-image.right-align {
  grid-template-columns: 500px 1fr;
}
section.text-image.right-align figure {
  order: -1;
}
section.text-image p {
  font-size: 30px;
  line-height: 35px;
}
section.text-image img {
  border: 1px solid;
}
section.text-image figcaption {
  margin-top: 10px;
  font-size: 18px;
  font-style: italic;
  text-align: right;
}

section.hero {
  max-width: 1200px;
  margin: 0 auto 50px;
}
section.hero picture img {
  border: 1px solid;
}
section.hero picture {
  margin-bottom: 10px;
}
section.hero figcaption {
  font-style: italic;
  text-align: right;
}
section.hero figure {
  padding-bottom: 30px;
  border-bottom: 1px solid;
  margin-bottom: 35px;
}
section.hero footer {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
section.hero footer .hero-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 0;
  line-height: 42px;
}
section.hero footer .hero-subtitle {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 0;
  line-height: 36px;
}
section.hero footer .title-wrapper {
  width: 500px;
  max-width: 50%;
}
section.hero footer .info-container {
  border-left: 1px solid;
  display: flex;
  align-items: center;
  padding-left: 11px;
  margin-right: 35px;
}
section.hero footer .info-container:last-child {
  margin-right: 0;
}
section.hero footer .info-container p {
  margin-bottom: 0;
}

section.image {
  max-width: 1200px;
  margin: 0 auto 150px;
  display: flex;
}
section.image picture {
  margin: 0 auto 10px;
}
section.image figcaption {
  font-style: italic;
  text-align: right;
}

section.double-image .wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 992px;
  margin: 0 auto 50px;
  grid-gap: 24px;
}
section.double-image .wrapper img {
  border: 1px solid;
  margin-bottom: 5px;
}
section.double-image .wrapper figcaption {
  text-align: right;
  font-style: italic;
}

section.text .wrapper {
  max-width: 890px;
  margin: 0 auto 50px;
}

.text-text {
  font-size: 40px;
  line-height: 46px;
  max-width: 1200px;
  margin: 0 auto 86px;
  padding: 150px 0 0;
  display: grid;
  grid-template-columns: 4fr 6fr;
}
@media (max-width: 768px) {
  .text-text {
    grid-template-columns: 1fr;
    padding: 0;
  }
  .text-text aside {
    margin-bottom: 40px;
  }
}
.text-text aside {
  font-weight: 500;
  text-decoration: underline;
}
.text-text article {
  font-weight: 600;
}

section.quote .wrapper {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 30px;
  line-height: 36px;
  display: flex;
}
section.quote .wrapper blockquote {
  font-weight: 700;
}
section.quote .wrapper cite {
  margin-top: 36px;
}

section.main-hero {
  padding-top: 50px;
  min-height: calc(100vh - 220px);
}
section.main-hero .wrapper {
  max-width: 1200px;
  margin: 85px auto 0;
}
section.main-hero .about-content {
  padding: 225px 0;
  display: flex;
  align-items: center;
  justify-content: left;
  margin-left: 120px;
  font-size: 110px;
  font-weight: 700;
  position: relative;
}
@media (max-width: 768px) {
  section.main-hero .about-content {
    font-size: 8vw;
    margin-left: 50px;
  }
}
section.main-hero .about-content p {
  position: relative;
}
section.main-hero .about-content span {
  position: absolute;
  transform: rotateX(-90deg);
  transition: 0.2s all;
  transform-origin: 0 50px;
  left: calc(100% + 30px);
}
@media (max-width: 768px) {
  section.main-hero .about-content span {
    left: calc(100% + 10px);
  }
}
section.main-hero .about-content span.is-active {
  opacity: 1;
  transition-delay: 0.2s;
  transform: translateZ(0);
}
section.main-hero .about-content span:nth-child(4n-3) {
  color: #E7BD35;
}
section.main-hero .about-content span:nth-child(4n-2) {
  color: #E85E25;
}
section.main-hero .about-content span:nth-child(4n-1) {
  color: #4CAA8D;
}
section.main-hero .about-content span:nth-child(4n) {
  color: #6256A5;
}
section.main-hero .about-content span:first-child {
  color: #1B1B1B;
}

section.accordion .wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
section.accordion .wrapper summary::-webkit-details-marker {
  display: none;
}
section.accordion .wrapper summary {
  font-size: 40px;
  line-height: 46px;
  font-weight: 500;
  display: flex;
  justify-content: flex-end;
  border-bottom: 2px solid;
  padding-bottom: 9px;
  position: relative;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  section.accordion .wrapper summary {
    font-size: 30px;
  }
}
section.accordion .wrapper summary::before {
  content: "+";
  position: relative;
  left: -5px;
  top: 3px;
}
section.accordion .wrapper details {
  margin-bottom: 51px;
  font-size: 40px;
  text-align: right;
  line-height: 46px;
  padding: 0 20px;
}
section.accordion .wrapper details[open] summary::before {
  content: "-";
}
section.accordion .wrapper details:nth-child(4n-3) summary::before {
  color: #E7BD35;
}
section.accordion .wrapper details:nth-child(4n-2) summary::before {
  color: #E85E25;
}
section.accordion .wrapper details:nth-child(4n-1) summary::before {
  color: #4CAA8D;
}
section.accordion .wrapper details:nth-child(4n) summary::before {
  color: #6256A5;
}
section.accordion .section-title {
  margin-bottom: 100px;
  margin-left: 20px;
}

section.text-bira .wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}
section.text-bira .wrapper .content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
section.text-bira .wrapper .content .rte {
  max-width: 500px;
  font-size: 30px;
  line-height: 35px;
  margin-left: 25px;
}
section.text-bira .wrapper .bira-list {
  margin-right: 125px;
}
section.text-bira .wrapper .bira-list ul li {
  font-size: 36px;
  line-height: 42px;
  margin-bottom: 19px;
  position: relative;
}
section.text-bira .wrapper .bira-list ul li::before {
  content: "";
  position: absolute;
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-size: cover;
}
section.text-bira .wrapper .bira-list ul li:nth-child(4n-3) {
  color: #4CAA8D;
}
section.text-bira .wrapper .bira-list ul li:nth-child(4n-3)::before {
  background-image: url(../assets/images/bira-logo1.svg);
}
section.text-bira .wrapper .bira-list ul li:nth-child(4n-2) {
  color: #E85E25;
}
section.text-bira .wrapper .bira-list ul li:nth-child(4n-2)::before {
  background-image: url(../assets/images/bira-logo2.svg);
}
section.text-bira .wrapper .bira-list ul li:nth-child(4n-1) {
  color: #6256A5;
}
section.text-bira .wrapper .bira-list ul li:nth-child(4n-1)::before {
  background-image: url(../assets/images/bira-logo3.svg);
}
section.text-bira .wrapper .bira-list ul li:nth-child(4n) {
  color: #E7BD35;
}
section.text-bira .wrapper .bira-list ul li:nth-child(4n)::before {
  background-image: url(../assets/images/bira-logo4.svg);
}
section.text-bira .wrapper .section-title {
  margin-bottom: 150px;
}

section.article-accordion .wrapper {
  max-width: 1200px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
section.article-accordion .section-title {
  margin-bottom: 120px;
}
section.article-accordion .list-header {
  padding-left: 50px;
  padding-bottom: 16px;
  border-bottom: 2px solid;
  display: grid;
  grid-template-columns: 3fr 3fr 1fr 2fr;
}
section.article-accordion details {
  border-bottom: 1px solid;
  margin-top: 12px;
}
section.article-accordion details summary {
  padding-left: 50px;
  padding-bottom: 12px;
  cursor: pointer;
  display: grid;
  grid-template-columns: 3fr 3fr 1fr 2fr;
}
section.article-accordion details article {
  display: grid;
  margin-left: 50px;
  grid-template-columns: 4fr 5fr;
  grid-gap: 93px;
  align-items: center;
  margin-bottom: 32px;
}
section.article-accordion details article figcaption {
  text-align: right;
  margin-top: 4px;
  font-size: 18px;
  font-style: italic;
}
section.article-accordion details article picture {
  border: 1px solid;
}
section.article-accordion details article picture img {
  width: 100%;
}
section.article-accordion details article aside {
  font-size: 24px;
  line-height: 28px;
  text-align: right;
}
section.article-accordion details article aside p {
  max-width: 500px;
  margin-bottom: 29px;
  text-align: left;
}
section.article-accordion details article aside a {
  margin-left: auto;
  font-weight: 400;
  text-decoration: underline;
}

@keyframes intro1 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(50px, 0);
  }
  40% {
    transform: translate(50px, 55px);
  }
  60% {
    transform: translate(0, 55px);
  }
  80% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(25px, 27.5px);
    opacity: 0;
  }
}
@keyframes intro2 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(0, 55px);
  }
  40% {
    transform: translate(-50px, 55px);
  }
  60% {
    transform: translate(-50px, 0);
  }
  80% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-25px, 27.5px);
    opacity: 0;
  }
}
@keyframes intro3 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(0, -55px);
  }
  40% {
    transform: translate(50px, -55px);
  }
  60% {
    transform: translate(50px, 0);
  }
  80% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(25px, -27.5px);
    opacity: 0;
  }
}
@keyframes intro4 {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-50px, 0);
  }
  40% {
    transform: translate(-50px, -55px);
  }
  60% {
    transform: translate(0, -55px);
  }
  80% {
    transform: translate(0, 0);
    opacity: 1;
  }
  100% {
    transform: translate(-25px, -27.5px);
    opacity: 0;
  }
}
@keyframes reveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes hide {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    pointer-events: none;
  }
}
@keyframes squareOpen {
  from {
    width: 146px;
    height: 158px;
  }
  to {
    width: 100vw;
    height: 100vh;
  }
}
.intro-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 100;
  background: #FFF;
  animation-name: hide;
  animation-fill-mode: forwards;
  animation-duration: 1s;
  animation-delay: 6s;
}
.intro-wrapper .intro-square {
  position: absolute;
  animation: squareOpen 2s 5s forwards;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 15px;
  border: 10px #2C2F31 solid;
}
.intro-wrapper .intro-square .symbol {
  position: relative;
}
.intro-wrapper .intro-square .symbol img {
  animation-fill-mode: forwards;
  animation-duration: 4s;
  animation-delay: 1s;
}
.intro-wrapper .intro-square .symbol:first-child img {
  animation-name: intro1;
}
.intro-wrapper .intro-square .symbol:nth-child(2) img {
  animation-name: intro2;
}
.intro-wrapper .intro-square .symbol:nth-child(3) img {
  animation-name: intro3;
}
.intro-wrapper .intro-square .symbol:nth-child(4) img {
  animation-name: intro4;
}
.intro-wrapper .intro-square .symbol span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  animation: 2s 8s reveal forwards;
  font-size: 40px;
  font-weight: 700;
}

section.form .wrapper {
  max-width: 1200px;
  margin: 85px auto 0;
}
section.form form {
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 36px;
}
section.form form label {
  font-size: 28px;
  line-height: 35px;
}
section.form form input {
  border: none;
  font-size: 28px;
  line-height: 35px;
  background: #4CAA8D;
  color: #fff;
  margin-bottom: 5px;
  outline: none;
  display: inline-block;
}
section.form form input.name-input {
  background: #E7BD35;
}
section.form form input.email-input {
  background: #6256A5;
}
section.form form input::placeholder {
  color: #fff;
}
section.form form button {
  margin: 104px auto 0;
  display: block;
  font-size: 24px;
  padding: 13px 70px;
  text-transform: lowercase;
  text-decoration: underline;
  border: 2px solid #000;
  border-radius: 0;
}
section.form .right-content {
  text-align: right;
  font-size: 24px;
  line-height: 28px;
}
section.form .right-content p {
  margin-bottom: 0;
}