      
/* box start */     

        
        
.boxsss {
	
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 500px;
	height: 400px;
	cursor: pointer;
	transform-style: preserve-3d;
	perspective: 2000px;
	transition: 0.5s;
}
.boxsss:hover {
	transform: translate(-50%,-50%) rotateY(-30deg) skewY(5deg);
}
.boxsss:before {
	content:'';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	border-top: 20px solid #fff;
	border-left: 20px solid #fff;
	box-sizing: border-box;
}
.boxsss:after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: transparent;
	border-bottom: 20px solid #fff;
	border-right: 20px solid #fff;
	box-sizing: border-box;
}
.boxsss .text {
	position: absolute;
	top: 30px;
	left: -30px;
	background: #262626;
	width: calc(100% + 60px);
	height: calc(100% - 60px);
	transition: 0.5s;
}
.boxsss:hover .text {
	transform:rotateY(30deg) skewY(-5deg);
}
.text div {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	transform:translateY(-50%);
	padding: 40px 80px;
	box-sizing: border-box;
	text-align: center;
}
.text div h1 {
	margin: 0 0 20px;
	padding: 0;
	color: #fff;		
}
.text div p {
	margin: 0 0 20px;
	padding: 0;
	color: #fff;
	font-size: 18px;
}
.fa {
	width: 80px;
	height: 80px;
	background: #fff;
	color: #262626;
	text-align: center;
	line-height: 80px !important;
	font-size: 40px !important;
}
.fa.fa1 {
	position: absolute;
	top: 0;
	left: 0;
}
.fa.fa2 {
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 1;
}
    
/* box end */    

    

/* nav menu dropdown start */  

.dropdown-menu
    {
        color: gray;
        
    }
.dropdown-menu li:hover
    {
        background-color: darkgray;
        color: #fff;
    }

.dropdown-menu li
    {
        font-size: 12px;
    }

        
/* nav menu dropdown end */       
        
    
/* hexagon shape boxes start */
.hexa, .hexa div {
  margin: 0 auto;
  transform-origin: 50% 50%;
  overflow: hidden;
  width: 300px;
  height: 300px;
}
.hexa {
  width: 325px;
  height: 230px;
}
.hexa div {
  width: 100%;
  height: 100%;
}
.hexa {
  transform: rotate(120deg);
}
.hex1 {
  transform: rotate(-60deg);
}
.hex2 {
  transform: rotate(-60deg);
  background-color: #81c040;
}

/* hexagon shape boxes end */
