/* CSS Document */

.box p{
    font-size:18px;
}

@media screen and (min-width: 980px) /* Desktop */ {
	.box {
    width:80%;
	background:#FFF;
    margin:20px auto;
	padding: 10px 10px 40px 10px;
}	
}

@media screen  and (max-width: 979px) /* Tablet */ {
  .box {
    width:99%;
    background:#FFF;
    margin:20px auto;
	padding: 10px;
}
}


/*==================================================
 * Effect 1
 * ===============================================*/
.effect1{
     box-shadow: 0 10px 6px -6px #777;
}

/*==================================================
 * Effect 6
 * ===============================================*/
.effect6
{
    position:relative;       
        box-shadow:0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}
.effect6:before, .effect6:after
{
    content:"";
    position:absolute; 
    z-index:-1;
    box-shadow:0 0 20px rgba(0,0,0,0.8);
    top:50%;
    bottom:0;
    left:10px;
    right:10px;
    border-radius:100px / 10px;
}