/* ---------------------------------- grid-process-2 ----------------------------------*/
.grid-process-2 {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
  max-width: 996px;
  margin: 0 auto;
}

.box-process {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  transition: all .4s
}

.box-process:hover {
  transform: translateY(-10px);
  transition: all .4s
}

.box-process .pic-news {
  filter: brightness(.5);
}

.box-process .info-news {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px
}

.box-process .info-news .avatar {
  width: 100px;
  margin-bottom: 10px;
}

.box-process .info-news h3.name-news a {
  font-size: 32px;
  color: #fff;
}

.box-process .info-news h3.name-news a:hover {
  color: #EFBB22;
}

.box-process .info-news>a {
  font-size: 16px;
  transition: all .2s;
  color: #EFBB22;
}

.box-process .info-news>a i {
  margin-left: 5px;
  transition: margin-left .2s
}

.box-process .info-news>a:hover {
  color: #fff;
  transition: all .2s
}

.box-process .info-news>a:hover i {
  margin-left: 10px;
  transition: margin-left .2s
}

.box-process-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.box-process-list .pic-news {
  width: calc(50% - 10px);
  border-radius: 4px;
  overflow: hidden;
}

.box-process-list .info-news {
  width: calc(50% - 10px);
  padding: 50px 24px 24px;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
}

.box-process-list .info-news h3.name-news a {
  display: block;
  font-size: 20px;
  font-family: var(--font-title);
  background: var(--Gradient, linear-gradient(135deg, #27AAE1 0%, #2B3990 100%));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

.box-process-list .info-news .desc-news {
  width: 100%;
  margin-top: 10px;
  font-size: 16px;
  color: #19114A;
}

.box-process-list:nth-child(even) {
  flex-direction: row-reverse;
}

@media(max-width: 992px) {
  .box-process .info-news .avatar {
    width: 70px;
  }

  .box-process .info-news h3.name-news a {
    font-size: 28px;
    line-height: 1.2;
    text-align: center;
    display: block;
  }
}

@media(max-width: 768px) {
  .box-process {
    border-radius: 5px;
  }

  .box-process-list {
    display: block;
    background: #fff;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 3px 3px 10px #dcdcdc;
  }

  .grid-process-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
  }

  .box-process-list .info-news {
    padding: 20px 10px;
  }

  .name-news {
    font-size: 18px;
  }

  .box-process-list .pic-news,
  .box-process-list .info-news {
    width: 100%;
  }

  .grid-process-2 {
    grid-template-columns: repeat(1, 1fr);
  }

  .content-main.py-5 {
    padding: 20px 10px !important;
  }
}

@media(max-width: 400px) {
  .box-process .info-news .avatar {
    width: 50px;
  }

  .box-process .info-news h3.name-news a {
    font-size: 20px;
    line-height: 1;
  }

  .grid-process-list {
    grid-template-columns: repeat(1, 1fr);
  }
}