/* Custom CSS */

.overflow {
  overflow-wrap: anywhere;
}

.desktop-img
{
    display: none;
}

@media( min-width:768px)
{
    .desktop-img
    {
        display: block;
    }
    
    .mobile-img
    {
        display: none;
    }
}

.btnnew {

  background-color: #0089bf;
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  font-size: 16px;
  margin: 4px 2px;
  transition: 0.3s;

  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05), 
              0 2px 2px rgba(0,0,0,0.05), 
              0 4px 4px rgba(0,0,0,0.05), 
              0 8px 8px rgba(0,0,0,0.05),
              0 16px 16px rgba(0,0,0,0.05);

}


.btnnew:hover {
  background-color: #1cb9f7;
  color: white; 
cursor: pointer;
}



#page-content-2 {
  display: grid;
 width: 100%;
 grid-gap: 32px;
 padding: 32px 0 0px;
}

/*
hr { 
   background: url("../img/logo2.png") no-repeat top center;
   background-size: contain;
   display: block;
   height: 50px;
   border: 0;
   position: relative;
}
hr:before,
hr:after {
   content: '';
   display: block;
   position: absolute;
   background: #00B7EB;
   height: 1px;
   top: 22px;
}
hr:before {
   left: 0;
   right: 60%;
   margin-right: 10px;
   margin-left: 70px;
}
hr:after {
   right: 0;
   left: 60%;
   margin-left: 10px;
   margin-right: 70px;
} 
*/