

.container{
    margin: 10px;
    padding: 10px;
    position: relative;
    width: 95%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(210px,1fr)) ;
    grid-template-rows: auto;
    grid-gap: 0 30px;
}

.container .box{
    position: relative;
    padding: 10px;
    height: 550px;
    /*background: #0f205edc;*/
    background: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border: 0px solid rgb(255, 255, 255);
}
.container .box:before{
    content: '';
    position: absolute;
    top: -10px;
    left: -4px;
    right: -5px;
    bottom: -5px;
    background: rgb(255, 255, 255);
    transform: skew(1deg, 2deg);
    z-index: -1;
}
.container .box:nth-child(1):before{
    background: linear-gradient(#1b30f0,hsl(133, 95%, 47%));
}
.container .box:nth-child(2):before{
    background: linear-gradient(#1b30f0,hsl(295, 95%, 47%));
}
.container .box:nth-child(3):before{
     background: linear-gradient(#1b30f0,hsl(69, 95%, 47%));
}
.container .box:nth-child(4):before{
     background: linear-gradient(#1b30f0,hsl(180, 95%, 47%));
}
.container .box:nth-child(5):before{
     background: linear-gradient(#1b30f0,hsl(69, 89%, 7%));
}
.container .box:nth-child(6):before{
     background: linear-gradient(#1b30f0,hsl(73, 83%, 60%));
}


.content .box:after{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 60%;
    background: rgb(255, 255, 255,0.05);
    pointer-events: none;
}

.content{
    position: relative;
    padding: 0px;
    transform: translateY(40px);
}

.box .content h2{
    position: absolute;
    top: -60px;
    right: 20px;
    margin:0;
    padding: 0;
    font-size: 1.5em;
    color: rgb(228, 228, 228);
   
    transition: 0.5s;
}

.box:focus .content h2,
.box:hover .content h2{

    top: -40px;

}

.box .content h3{
    margin: 0 0 10px;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    color: rgb(252, 252, 252);
    
}

.box .content p{
    margin: 60px 0 0;
    padding: 10px 5px;
    text-decoration: none;
    border: 1px solid rgb(0, 0, 0);
    display:inline-block;
    color: #fff;
    text-shadow: 0.1em 0.1em 0.1em rgb(0, 0, 0);
    transition: 0.5s;
    transform: translateY(-60px);
    opacity: 1;
    visibility: visible;

}

.box:focus .content p,
.box:hover .content p{
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.box .content p:focus,
.box .content p:hover{
    color: rgb(255, 255, 255);
    text-shadow: 0.0em 0.0em 0.0em rgb(0, 0, 0);
    background: rgb(0, 0, 0) ;

}

/*Mobile S-320XP - 425PX */
@media only screen and (min-width:320px)and (max-width:425px) {

   
}
/*Mobile L-426PX   -  500XP */
@media only screen and (min-width:426px) and (max-width:500px){
	
}

/*Mobile L-501PX   -  Tablet 767XP */
@media only screen and (min-width:501px) and (max-width:768px){


}

/*Tablet 767XP   - Laptope 1024*/
@media only screen and (min-width:769px) and (max-width:1024px){
	

}

/*Laptope 1024  - 1440*/
@media only screen and (min-width:1025px){
    		
	
}



