/* Custom CSS */

.border {
	padding: 20px;
	border: solid 2px black;
	background-color: #f5f5f5;
}
.btnnew {

  background-color: #282828;
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
	justify-self: 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: #2F2F2F;
  color: white; 
cursor: pointer;
}

.nav-phone-2
{
    display: grid;
    align-self: center;
    justify-content: center;
	grid-gap: 8px;
}

@media( min-width: 768px)
{
	.nav-phone-2
	{
		justify-self: end;
		grid-row: 1;
		grid-column: 1;	
		z-index: 2;
	}
}

.nav-phone-2 a:hover
{
    opacity: 0.4;
}

.nav-social
{
	grid-row: 2!important;
}

.nav-phone-2 a
{
    display: grid;
    grid-template-columns: max-content auto;
    grid-gap: 8px;
	
    transition: opacity ease .5s;	
}

@media( min-width: 768px )
{
	.nav-phone-2 a
	{
		display: grid;
		grid-template-columns: max-content auto;
		grid-gap: 8px;
		grid-row: 1;
	}
}




/* - */

.nav-phone-2 h2
{
    color: #fff;
    letter-spacing: 2px;
    line-height: 25px;
    font-weight: 200;
    font-size: 18px;
    
}

ul {
    font-weight: 400;
    font-size: 1.3em;
    line-height: 24px;
    margin: 0;
    color: #444;
}

.cent {
	justify-self: center;
	text-align: center;
}