@charset "UTF-8";

#bgimg{
  background-image: url(img/forests.jpg);
  position: fixed;
  width: 120vw;
  height:120vh;
  z-index: -20;
  animation-name: anim_h;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 6s;
}
 @keyframes anim_h {
   0% {
     transform: translate(0, -1000);
   }
   100% {
     transform: translate(0, -80px);
   }
 }
#report {
  width: max(70%, 768px);
  margin: 0 auto;
  padding-top: 200px;
  font-family: var(--font-sans);
}
#report_top{
display: flex;
flex-direction: row;
justify-content: space-between;
width: 100%;
margin: 0 auto;
gap:50px;
}
#report_top img{
  width: 400px;
  height: auto;
  filter: drop-shadow(10px 10px 5px var(--clr-shadow));
}
#direction {
  display: flex;
  flex-direction: column;
  width: 500px;
    margin: 0;
}
#direction h2 {
  font-size: 30px;
  margin:auto 0 0 0;
  position: relative;
  overflow: hidden;
  padding: 1.5rem 2rem 1.5rem 130px;
  border-top: 3px solid var(--clr-lightwh);
  text-align: center;
}
#direction h2:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 200px;
  height: 300%;
  content: '';
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: var(--clr-lightwh);
}

#direction h2 span {
  line-height: 300%;
  font-size: 20px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  padding-top: 3px;
  padding-left: 16px;
  color: #008000;
}
#direction ul {
  list-style: disc;
  line-height: 2rem;
  padding-left: 10px;
}
#direction li{
  display: list-item;
}

.btn {
  position: relative;
  display: inline-block;
  margin: auto ;
  line-height: 80px;
  width: 100%;
  height: 80px;
  background-color: transparent;
  outline: none;
  border: 3px solid var(--clr-wh);
  transition: color 0.5s ease;
  text-align: center;
  z-index:1;
}
  
.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.btn::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--clr-wh);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.7s ease;
  transition-property: transform;
  z-index: -1;
}
.btn:hover {
  color: var(--clr-deepgreen);
}

.btn2 {
  position: relative;
  display: inline-block;
  line-height: 50px;
  width: 100%;
  height: 50px;
  background-color: transparent;
  outline: none;
  border: 2px solid var(--clr-lightwh);
  transition: color 0.5s ease;
  text-align: center;
  font-size: 16px;
  z-index: 1;
}

.btn2:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn2::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--clr-lightwh);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.7s ease;
  transition-property: transform;
  z-index: -1;
}

.btn2:hover {
  color: #006451;
}
#archive_container{
  display: flex;
  flex-direction:row;
  flex-wrap:wrap;
  justify-content: space-between;
  padding:100px 0;
  width: 100%;
}
.archive{
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  width: 350px;
  padding-top: 15vh;
  margin:0 auto;
}
.archive img{
  width: 100%;
  height: auto;
  filter: drop-shadow(10px 10px 5px var(--clr-shadow));
  padding: 30px 0;
}
.archive h2{
  font-size: 22px;
  font-weight: 100;
  margin:0;
  position: relative;
  overflow: hidden;
  padding: 1.5rem 2rem 1.5rem 130px;
  border-top: 3px solid var(--clr-lightwh);
  text-align: right;
  vertical-align: bottom;
}
.archive h2:before {
  position: absolute;
  top: -150%;
  left: -100px;
  width: 200px;
  height: 300%;
  content: '';
  -webkit-transform: rotate(25deg);
  transform: rotate(25deg);
  background: var(--clr-lightwh);
}
.archive h2 span {
  line-height: 300%;
  font-weight: 600;
  font-size: 18px;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: block;
  padding-top: 3px;
  padding-left: 16px;
  color: #006451;
}
@media (max-width: 767px){
#report {
  width: max(90%, 300px);
  padding-top: 100px;
}
#report_top {
  flex-direction: column;
}

#report_top img {
  width:100%;}
  #direction {
  flex-direction: column;
  width: 100%;
}
#direction h2 {
  font-size: 18px;
  margin: 0;
}
#direction li {
  margin: 0 auto;
  width:90%;
  font-size: 16px;
}
.btn {
  line-height:50px;
  height:50px;
  border: 1px solid var(--clr-wh);
  font-size: 14px;
}
.btn2 {
  height: 50px;
  line-height: 50px;
  border: 1px solid var(--clr-wh);
  font-size: 14px;
}
#archive_container {
  width: max(100%, 300px);
  padding: 0 0 100px 0;
}
.archive {
  margin: 0 auto;
  padding-top:50px; 
  width: 100%;
}
}