body{
    font-size: 14px;
    color: #333;
    background-color: #fff;
    letter-spacing: 3px;
}

.overly{
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 3;
    background-color: rgba(0, 0, 0, 0.4);
}

.slides-navigation{
    z-index: 6;
}

.slides-navigation .next,
.slides-navigation .prev{
    width: 47px;
    height: 47px;
    background-size: cover;
    background-repeat: no-repeat;
}
.slides-navigation a.next{
    right: 20px;
    background-image: url(../icons/next1.png);

}
.slides-navigation a.prev{
    left: 20px;
    background-image: url(../icons/prev1.png);
}
.titleMessage{
    position: absolute;
    width: 100%;
    height: 250px;
    top: 50%;
    z-index: 5;
    text-align: center;
    margin-top: -125px;
}
.titleMessage .heading p{
    color: #fff;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
    font-weight: 100;
    letter-spacing: 7px;
}
.titleMessage .heading .main{
    font-size: 50px;

}
.titleMessage .heading .sub{
    font-size: 23px;

}
.section{
    padding: 100px 0;
}
.aboutImage{
    max-width: 100%;

}
.skillsSection,
.contactSection{
    background-color: #e74c3c;
    color: #fff;
}
.skills{
    text-align: center;
    margin-left: 10px;

}
.chart{
    position: relative;
    width: 152px;
    height: 152px;
    display: inline-block;
    /* margin-left: 25px; */
    text-align: center;


}
.chart canvas{
    position: absolute;
    left: 0;
    top: 0;
}
.chart .percent{
    color: #000;
    line-height: 152px;
    display: inline-block;
    font-size: 35px;
}
.chart .percent:after{
    content: '%';
}

.squreItems{
    margin-top:30px;
    position:relative
}

.squareInnerContainer{
    position: relative;
    padding: 50px 15px 35px;
    text-align: center;
    border: 2px solid #444;
    border-top: none;
}
.squareInnerContainer:before,
.squareInnerContainer:after{
    content:'';
    position:absolute;
    top:0px;
    width:30%;
    border-bottom: 2px solid #444;
}
.squareInnerContainer:before{

    right:0px;

}
.squareInnerContainer:after{
    left:0px;

}
.squareContent h2{
    font-size:56px;
    margin-bottom: 10px;
    font-weight:400;
    color:#e74c3c;

}
.squareContent h3{
    font-size:13px;
    font-weight:600;
    margin:0;
    
}
.squareIcon{
    position: absolute;
    left: 50%;
    top: -30px;
    width: 40%;
    height: 60px;
    font-size: 45px;
    margin-left: -20%;
}
.contactButton{
    color: #fff;
    padding: 15px 20px;
    display: inline-block;
    margin-top: 20px;
    border-radius: 2px;
}
.contactButton:hover{
    text-decoration: none;
    color: #e74c3c;
    background-color: #fff;
}

.filter a{
    color: #bdc3c7;
    border: 1px solid #bdc3c7;
    padding: 10px 18px;
    display:block
}
.filter li{
    display: inline-block;
    padding: 5px;

}
.filter .current{
    background-color: #e74c3c;
    border-color:  #e74c3c;
    color:#fff;
}
.filter{
    text-align: center;
    width:100%;
}
.section .heading{
    text-align: center;
    padding-bottom: 40px;
    width: 100%
}

.items li{
    display: inline-block;
    padding: 5px;
}
 .itemsContainer{
     width: 100%;
 }

 .items li img{
    width:100%;

    -webkit-transition: all 0.2s linear, 1s;
    -moz-transition: all 0.2s linear, 1s;
    -o-transition: all 0.2s linear, 1s;
    -webkit-transition: all 0.2s linear, 1s;
    -ms-transition: all 0.2s linear, 1s;
    -transition: all 0.2s linear, 1s;
}
.items .item{
   position:relative;
   display:block;
   overflow:hidden;

}
.items .icons{
    position: absolute;
    height: 90px;
    width: 50px;
    left: 50%;
    top: 50%;
    margin: -20px auto 0 -47px;
    text-align: center;
    z-index: 3;
}
.items .icons i{
    color: #fff;
    font-size: 20px;
    margin-top: 9px;
}
.items a{
    width: 40px;
    height: 40px;
    background-color: #e74c3c;
     position: relative;
    display: inline-block; 

    -webkit-transition: all 0.2s linear, 0.2s;
    -moz-transition: all 0.2s linear, 0.2s;
    -o-transition: all 0.2s linear, 0.2s;
    -webkit-transition: all 0.2s linear, 0.2s;
    -ms-transition: all 0.2s linear, 0.2s;
    -transition: all 0.2s linear, 0.2s;
}
.items .imageOverlay{
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0px;
    left: 0px;
    opacity: 0;

    -webkit-transition: all 0.2s linear, 0.2s;
    -moz-transition: all 0.2s linear, 0.2s;
    -o-transition: all 0.2s linear, 0.2s;
    -webkit-transition: all 0.2s linear, 0.2s;
    -ms-transition: all 0.2s linear, 0.2s;
    -transition: all 0.2s linear, 0.2s;
}
.items .item:hover .imageOverlay{
    opacity: 1;
}


.items .openButton{
    float: left;
    left: -200px;

}
.items .projectLink{
    float: right;
    right: -200px;

}
.items .item:hover .openButton{
    left:0px;
}
.items .item:hover .projectLink{
    right:0px;
}
.items .item:hover img{
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    -webkit-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -transform: scale(1.05, 1.05);

}
.items{
    padding: 0;
}

.items p{
    text-align: center;
}
.copyrightSection{
    background-color: #000;
    color: #fff;
    padding: 30px 5px;
}
.copyrightSection p{
    margin: 0;
}
#navigation{
    background-color: #e74c3c;
    padding: 20px 10px;
    z-index: 100;
    width: 100%;
}
#navigation li{
    padding: 0 10px;

}
#navigation li a{
    color: #fff;
}
.navbar-brand,
.navbar-brand:hover{
    color: #fff;
}
.navbar-toggler-icon{
    background: url(../icons/menu3.png);
    background-size: 100%;
}

.fixedNav #navigation{
    position: fixed;
    top: 0;
}
.loader{
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 10000;
}
.loader .inner{
    width: 100%;
    height: 100%;
    background: url(../img/739.gif) center center no-repeat;
}
    /*-----------------------------------------  */
    /* -------------------------------------------- */
    /* Cube-Skilss */

    /* *{
        margin: 0px;
        padding: 0px;
        font-family: sans-serif;
    }
    body{
        height: 100vh;
        background: radial-gradient(rgb(5, 221, 245),rgb(6, 150, 255));
        
    } */

    .myCubecontainer{
        height: 60vh;
        width: 30wh;
        /* position: absolute; */
        position: relative;
        /* top: 50vh; */
        top: 25vh;
        /* left: 50vw; */
        left: 85vw;
        transform: translate(-50%, -50%);
        perspective: 1000px;
    }
    
    .box{
        height: 250px;
        width: 250px;
        position: absolute;
        top: 75px;
        left: 100px;

     /******** transform: rotate(-90deg); **********/

        transform-style: preserve-3d;
        animation: animate 40s infinite;
    }

    @keyframes animate{
        0%{
            transform: rotateX(120deg) rotateY(-120deg);
        }
        25%{
            transform: rotateX(-120deg) rotateY(-120deg);
        }
        50%{
            transform: rotateX(120deg) rotateY(120deg);
        }
        75%{
            transform: rotateX(-120deg) rotateY(120deg);
        }
        100%{
            transform: rotateX(120deg) rotateY(-120deg);
        }
    }

    .card{
        height: 250px;
        width: 250px;
        text-align: center;
        padding: 0px 0px;  /*This padding was problem for fitting 12px is awesome!!! */
        color: black;
        background: white;
        border: 2px solid black;
        font-size: 32px;
        box-sizing: border-box;
        /* box-sizing: content-box; */
        position: absolute;
        transition: all 3s;
    
    }

    #front{
        transform: translateZ(125px);
        /* bottom: 100px; */
        
    }
    #back{
        transform: translateZ(-125px);
         /* bottom: 100px; 
         bottom: 15vh;  */
    }
    #left{
        right: 125px;
        transform: rotateY(-90deg);
         /* bottom: 100px;  */
    
    }
    #right{
        left: 125px;
        transform: rotateY(90deg);
        /* bottom: 200px; 
         bottom: 15vh; */
    
    }
    
    #top{
        bottom: 125px;
        transform: rotateX(90deg);
        /* bottom: 120px; */
       
       
    
    }
    
    #bottom{
        top: 125px;
        transform: rotateX(-90deg);
        /* bottom: 100px; */
    
    }

    input{
        height: 50px;
        width: 100px;
        background: pink;

    /********* border: none; **********/

        font-size: 22px;
        cursor: pointer;
        position: absolute;
        top: -100px;
        left: 175px;
    }

    input:focus~ .box #front{
        transform: translateZ(180px) rotateY(360deg);
    }
    input:focus~ .box #back{
        transform: translateZ(-180px) rotateY(360deg);
    }
    input:focus~ .box #left{
       right: 180px;
    }
    input:focus~ .box #right{
       left: 180px;
    }
    input:focus~ .box #top{
       bottom: 180px;
    }
    input:focus~ .box #bottom{
       top: 180px;
    }
    
    
