@charset "UTF-8";
body{
  width: 100%;
  background: #f0f0f0;
}
main{
  width: 100%;
  padding: 8rem 2rem 12rem;
}
section{
  width: min(100%, 1200px);
  margin-inline: auto;
  padding: 6rem 3.2rem 8rem;

  background: #fff;
  border-radius: 8px;
}
h2{
  position: relative;

  font-size: 4rem;
  font-weight: 700;

  margin-bottom: 6rem;
}
h2::before,
h2::after{
  content: '';
  position: absolute;

  top: 6rem;
  left: 0;

  display: inline-block;
  width: 10rem;
  height: .4rem;
}
h2::before{
  background: #f8e700;
  clip-path: polygon(0 0, 60% 0, 40% 100%, 0% 100%);
}
h2::after{
  background: #009725;
  clip-path: polygon(60% 0, 100% 0, 100% 100%, 40% 100%);
}

#page-introduction{
  position: relative;
  z-index: 1;

  width: 100%;
  padding: 13rem 0;
  margin-top: var(--header-height);

  text-align: center;

  background-image: url(../img/company.png);
  background-position: center;
  background-size: cover;
}
#page-introduction::before{
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background: #4f6960;
  opacity: 0.6;
}
#page-introduction::after{
  content: '';
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  background:url(
data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAECAYAAACtBE5DAAAAAXNSR0IArs4c6QAAAC1JREFUGFdjNLK38P326BkDl5wUw5+/fxlggBGnhJ6NqS9MFQszMwNMNyMuCQDz1hXJTbT7ugAAAABJRU5ErkJggg==
   ) repeat;
}
#page-introduction h1{
  position: relative;
  z-index: 10;

  color: #fff;
  font-size: 3.2rem;
  font-weight: 500;
  text-shadow: 2px 4px 3px rgba(0,0,0,0.3);

  padding-bottom: 4rem;
}
#page-introduction h1::before{
  content: attr(data-text);
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50% , 0);

  font-size: 2.4rem;
  font-weight: 400;

  white-space: nowrap
}

@media (max-width : 1024px){
}
@media (max-width : 599px){
  section{
    padding: calc(3.75rem + (1vw - 0.33rem) * 8.2117) 1.6rem calc(5rem + (1vw - 0.33rem) * 10.9489);
  }
  main{
    padding: 6rem 1rem 9rem;
  }
  h2{
    font-size: calc(2.5rem + (1vw - 0.33rem) * 5.4745);
    margin-bottom: calc(3.75rem + (1vw - 0.33rem) * 8.2117);
  }
  h2::before,
  h2::after{
    top: calc(3.75rem + (1vw - 0.33rem) * 8.2117);
  }
  #page-introduction{
    padding: 22vw 0;
  }
  #page-introduction h1{
    font-size: calc(2rem + (1vw - 0.33rem) * 4.3796);
    padding-bottom: calc(2.5rem + (1vw - 0.33rem) * 5.4745);
  }
  #page-introduction h1::before{
    font-size: calc(1.5rem + (1vw - 0.33rem) * 3.2847);
  }
}