/* CSS Document */

.containerProfile {
    font-family:Verdana;
  position: static;
  width: 180px;
  top: 180px;
   left: 10px;
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2), 0 6px 12px 0 rgba(0, 0, 0, 0.19);
}

.image {
  opacity: 1;
  display: block;
  width: 100%;
  height: auto;
  transition: .5s ease;
  backface-visibility: hidden;
    
}
.containerProfile:hover .image {
  opacity: 0.3;  
}

.middlePopup {
    font-family:Verdana;
  transition: .10s ease;
  opacity: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  text-align: center;
}

.containerProfile:hover .middlePopup {
  opacity: 1;
  left: 114px;
  top: 325px;
}

.containerProfile:hover{
color: #FF9900;
font-size: 14px;
width: 180px;
 box-shadow: 0 6px 9px 0 rgba(0, 0, 0, 0.9), 0 9px 15px 0 rgba(0, 0, 0, 0.29);
}

.text {
    font-family:Verdana;
  background-color: #FF9900;
  color: white;
  font-size: 14px;
  padding: 14px 20px;
  width:180px;
}
  

  /**{
        box-sizing: border-box;      //Don't use box-sizing code it changes the main menu width
    }*/


    /* Set additional styling options for the columns */
    .column {
    float: left;
     display: table-column;    
    }

    /* Set width length for the left, right and middle columns */
    .left {
    width: 20%;
    }

    .middle {
    width: 35%;
    padding-left:30px;
    position:relative;
    }
    
    .right {
    width: 35%;
   padding-left:30px;
      position:relative;
    }

    .row:after {
    content: "";
    display: table;    
    clear: both;
    }