body{
  color: white;
  font-size: 18px;
}
a{
  text-decoration: none;
  color: white;
}
main{
  position: relative;
}
h1{
  font-size: clamp(24px, 5vw, 50px);
  position: absolute;
  left: 200px;
  bottom: 100px;
}
.bcg_docs{
  width: 100%;
  height: 400px;
  object-fit: cover;
}

/* DOC_ITEM */
.cont_docs{
  max-width: 1280px;
  padding: 20px;
  margin: auto;
  display: flex;
  gap: 40px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.doc_item{
  cursor: pointer;
  max-width: 400px;
  min-width: 250px;
  height: 100px;
  display: flex;
  padding: 0px 21px 0px 21px;
  align-items: center;
  gap: 20px;
  background-color: #01609A;
}
.doc_item p{
  max-width: 250px;
}
.rec_arrow{
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  background-color: transparent;
  border: 2px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1em;
  margin-left: auto;
  cursor: pointer;
  transition: all 0.8s;
}

.doc_item:hover > .rec_arrow{
  transition: all 0.8s;
  background-color: white;
  color: #01609A;
}
@media screen and (max-width: 850px){
  h1{
    left: 20px;
  }
}