@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, -100px); 
  }
   100% {
     transform: translate(0, -80px); 
  }
}

.download{
  width:fit-content;
  margin: 0 auto;
  padding-top:15vh;
  font-family: var(--font-sans);
}
.download h2{
  width: 100%;
  padding-left:10px ;
  border-left: 3px solid var(--clr-lightwh);
}
.download p{
  margin-left: 15px ;
}
.download_container{
  display: flex;
  flex-direction: column;
}
.file_container{
  display: flex;
  flex-direction:row;
  padding:50px 0 200px 0;
  gap:50px;
  font-size: 40px;
  font-weight: 800;
}
.file {
  display: flex;
  flex-direction: column;
  
}
.file dt{
  position: relative;
  text-align: center;
  line-height: 90px;
  font-size:30px;
}
.file dd{
  margin: 0;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 100;
}
.file_x{
  position: relative;
  display:inline-block;
  line-height: 100px;
  width:100px;
  height: 100PX;
  background-color: transparent;
  color: var(--clr-lightgreen);
  outline:none;
  border:5px solid var(--clr-lightgreen);
  transition:color 0.5s ease;
}
.file_x:hover {
  color: var(--clr-lightwh);
}
.file_x:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.file_x::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--clr-lightgreen);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

.file_p {
  position: relative;
  display: inline-block;
  line-height: 100px;
  width: 100px;
  height: 100PX;
  background-color: transparent;
  color: var(--clr-red);
  outline: none;
  border: 5px solid var(--clr-red);
  transition: color 0.5s ease;
}

.file_p:hover {
  color:var(--clr-wh);
}

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

.file_p::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--clr-red);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}
@media (max-width: 767px){
.download {
    width: max(50%, 300px);
    padding-top: 100px;
  }

.file_container {
  display: flex;
  flex-direction: row;
  padding: 50px 0 150px 0;
  gap: 50px;
  font-size: 40px;
  font-weight: 800;
}
}