*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    font-family: Verdana;
}

.main {
    display: flex; 
     flex-wrap: wrap; 
}


.logo {
    position: fixed; 
    height: 100%;
    right: 0px; 
    top: 0px; 
    opacity: 0.6; 
}



/* text over image css start */
.container{
  
  float: left;
  width: 33.3333%;
}



.container .title{
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 10px;
}

.content {
  position: relative;
  width: 100%;
  margin-top: -3px;
  overflow: hidden;
}

/*.content .content-overlay {
  background: rgba(0,0,0,0.7);
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  opacity: 0;
  -webkit-transition: all 0.4s ease-in-out 0s;
  -moz-transition: all 0.4s ease-in-out 0s;
  transition: all 0.4s ease-in-out 0s;
}

.content:hover .content-overlay{
  opacity: 0.0; 
}*/

.content-image{
  width: 100%;
}

.content-details {
  position: absolute;
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;
  width: 100%;
  top: 95%;
  left: 50%;
  opacity: 0;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out 0s;*/
  -moz-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s; */
}

.content:hover .content-details{
  top: 95%;
  left: 50%;
  opacity: 1;
}

/*.content-details h3{
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}*/

.content-details p{
  color: #fff;
  font-size: 1vw;  /*  0.8em */
}



/*.fadeIn-top{
  top: 0%;
}

/* text over image css end */