/* global */

header .nav .social li a svg circle{
  stroke: #518EB4;
}
header .nav .social li a svg path{
  fill: #518EB4;
}

/* -- global */

.documents{
  padding: 130px calc(100vw / 21.33333333);
  background-image: url(../images/sky.jpg);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 80vh;
  position: relative;
}
.documents:after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20vh;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 7.07%, #FFFFFF 109.19%);
  z-index: 0;
}
.documents h1{
  text-align: center;
  font-size: calc(100vw / 27.42857143);
}
.documents .description{
  max-width: 855px;
  margin: 20px auto 0;
}
.documents .description p{
  text-align: center;
  font-size: 20px;
}
.items-documents{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1920px;
  margin: 40px auto 0;
  position: relative;
  z-index: 9;
}
.items-documents .item{
  position: relative;
  width: calc((100% - 120px) / 4);
}
.items-documents .item img{
  border-radius: 30px;
  aspect-ratio: 9 / 13;
  object-fit: cover;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  margin-bottom: 15px;
}
.items-documents .item p{
  color: #212121;
  font-size: 18px;
  font-weight: 500;
}
.items-documents .item a{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}
@media screen and (max-width: 1280px){
  .documents h1{
    font-size: 60px;
  }
  .documents .description p{
    font-size: 18px;
  }
  .items-documents .item p{
    font-size: 16px;
  }
}
@media screen and (max-width: 991px){

}
@media screen and (max-width: 599px){
  .documents{
    padding-top: 90px;
    padding-bottom: 60px;
  }
  .documents h1{
    font-size: 40px;
  }
  .documents .description p{
    font-size: 16px;
  }
  .items-documents{
    gap: 20px;
  }
  .items-documents .item{
    width: calc((100% - 20px) / 2);
  }
  .items-documents .item p{
    font-size: 14px;
  }
}
