.navW{
    background: rgba(0, 0, 0, 0.7);
}
/* animated text typewriting */
.line-1{
    position: relative;
    top: 50%;  
    width: 9em;
    margin: 0 auto;
    border-right: 2px solid rgba(255,255,255,.75);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    margin-bottom: 0 !important;  
    /* transform: translateY(-50%);   */
}


/* Animation */
.anim-typewriter{
  animation: typewriter 4s steps(100) 1s 1 normal both,
             blinkTextCursor 500ms steps(100) infinite normal;
}
@keyframes typewriter{
  from{width: 0;}
  to{width: 9em;}
}
@keyframes blinkTextCursor{
  from{border-right-color: rgba(255,255,255,.75);}
  to{border-right-color: transparent;}
}
.mbw-header{
    margin-bottom: 50px;
}

/* Special Button with special effect */
.buttonW{
    position: relative;
    display: inline-block;
    padding: 17px 20px;
    text-decoration: none;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 1);
    background: rgba(0, 0, 0, 0.6) ;
    letter-spacing: 1px;
    transition: 0.5s;
}
a.buttonW:hover{
    color: rgba(255, 255, 255, 0.8) !important;
    background: rgba(0, 0, 0, 0.3) ;
    
}
a.buttonW span{
    display: block;
    position: absolute;
    background-color: #5386c5;


}
a.buttonW span:nth-child(1){
    left:0;
    bottom: 0;
    width: 2px;
    height:100%;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s;
}
a.buttonW:hover span:nth-child(1){

    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform 0.5s;
}
a.buttonW span:nth-child(2){
    left:0;
    bottom: 0;
    width: 100%;
    height:2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}
a.buttonW:hover span:nth-child(2){

    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.5s;
}
a.buttonW span:nth-child(3){
    right:0;
    bottom: 0;
    width: 2px;
    height:100%;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.5s;
}
a.buttonW:hover span:nth-child(3){

    transform: scaleY(1);
    transform-origin: bottom;
    transition: transform 0.5s;
}
a.buttonW span:nth-child(4){
    left:0;
    top: 0;
    width: 100%;
    height:2px;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.5s;
}
a.buttonW:hover span:nth-child(4){

    transform: scaleX(1);
    transform-origin: left;
    transition: transform 0.5s;
}

/* Icons of Perfect Cube */
.iconW{
    
    height: 30px;
    margin-right: 5px;
    vertical-align: top;
}
/* Clients section Home Page*/
.imgwbg{
    /* background: rgba(255,255,255, 0.1);
    border-radius: 5px;
    box-shadow: -1px -1px 12px 10px rgba(0, 0, 0, 0.5); */
}
.partnersw{
    margin-top: 10px;
    width: 30%;
    height: 30%;
}


