/*News & Media Page */

.mediasection
{
padding-bottom: 60px;
}

.textcolor{
  color:#0858a6;
}


.mediasection p
{
 width:80%;
 margin-bottom: 5px;;
}

.mediacontainer
{
  display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-top: 50px;
    flex-wrap: wrap;
}

.mediabox 
{
  flex: 1 1 32%;

  display: none;
}

.mediabox h5
{
  color:#878787;
}

.mediabox p
{
  margin-top: 15px;
    margin-bottom: 15px;
    width: 100%;

}

.mediabox h4
{
  font-family: 'optima-bold';
  text-transform: uppercase;
  font-size: 19px;
  margin-bottom: 10px;
  margin-top: 10px;
}

#loadMore{
  border: 1px solid #aa863f;
  padding: 7px 30px;
  color:#aa863f;
  text-decoration: none;
  display: table;
  margin-bottom: 5px;
  display: block; 
  text-align: center;
  margin: 0 auto;
  width: fit-content; 
  margin-top: 55px;
 
}

.mediabox a
{
  border: 1px solid #aa863f;
  padding: 7px 30px;
  color:#aa863f;
  text-decoration: none;
  display: table;
  margin-bottom: 5px;
}

@media (max-width: 768px) {

#loadMore{
  display: none;
}

  .mediabox 
  {
    flex: 1 1 50%;
  }

  .mediasection p {
    width: 100%;
    margin-bottom: 5px;
}

  .mediacontainer .slick-list
  {
    padding-bottom: 20px !important;
  }

  .mediabox h4
  {
    font-size: 20px;
  }

  .mediabox a {
      margin: 0px auto;
      display: block;
      width: 160px;
        text-align: center;
  }

  .mdPrev img, .mdNext img {
    width: 20px;
  }

  .mdPrev, .mdNext {
      position: absolute;
      top: 101%;
      /* transform: translateY(220px); */
      /* transform: translateY(-50%); */
      z-index: 9;
      cursor: pointer;
      border: 0px solid #fff;
      background-color: #ffffff73;
      padding: 10px;
      height: 40px;
  }

  .mdNext {
  left: auto;
  right: 35%;
  }

  .mdPrev {
  left: 35%;
  right: auto;
  }

}