/* title section */
.title-page{
    text-align: center;
    padding: 150px 0 0;
}
.title-page h1{
    font-size: 64px;
    line-height: 1;
    margin-bottom: 30px;
    color: #F4F5F7;
    font-weight: 500;
}
.title-page p{
    font-size: 18px;
    color: #8B8F97;
    line-height: 1.44;
    max-width: 730px;
    margin: auto;
}
@media screen and (max-width: 1199px){
    .title-page{
        padding: 120px 0 0;
    }
    .title-page h1{
        font-size: 50px;
    }
}
@media screen and (max-width: 991px){
    .title-page h1{
        font-size: 40px;
    }
    .title-page p{
        font-size: 16px;
    }
}
@media screen and (max-width: 767px){

}
@media screen and (max-width: 479px){
    .title-page h1{
        font-size: 30px;
    }
}
/* -- title section */

/* items white papers */
.section-white-papers{
  margin-top: 40px;
}
.section-white-papers .container{
  max-width: 996px;
}
.section-white-papers .item{
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  border-top: 1px solid #232325;
  padding: 60px 0;
}
.section-white-papers .item .image{
  width: 216px;
}
.section-white-papers .item .image a:hover{
  opacity: .7;
}
.section-white-papers .item .image img{
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.09);
  display: block;
}
.section-white-papers .item .content{
  width: calc(100% - 276px);
}
.section-white-papers .item .content .date{
  text-transform: uppercase;
  color: #8B8F97;
  font-size: 10px;
  font-family: "Geist Mono", monospace;
  margin-bottom: 15px;
}
.section-white-papers .item .content h2{
  font-size: 30px;
  line-height: 1.27;
  font-weight: 500;
  color: #fff;
  margin: 10px 0 15px;
}
.section-white-papers .item .content h2 a{
  color: #fff;
}
.section-white-papers .item .content h2 a:hover{
  opacity: .7;
}
.section-white-papers .item .content p{
  color: #8B8F97;
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 20px;
}
/* -- items white papers */

/* navigation */
.navigation{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    gap: 15px;
}
.navigation span,
.navigation a{
    font-size: 12px;
    font-family: "Geist Mono", monospace;
    color: #8B8F97;
    line-height: 20px;
    text-align: center;
    min-width: 38px;
    padding: 9px 0;
    border-radius: 5px;
    background: #0E0E0E;
}
.navigation a.next,
.navigation a.prev{
    padding: 9px 15px;
}
.navigation a:hover,
.navigation span{
    color: #000;
    background: #fff;
}
/* -- navigation */
