@import url('https://fonts.googleapis.com/css2?family=Gentium+Plus:wght@700&display=swap');

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}


*{
    margin: 0;
    padding: 0;
}

body {
	background: #ECECEC;
    font-family: 'Gentium Plus', serif;
	box-sizing: border-box;
}

.container {
	width: 100%;
}

.logo{
	display: flex;
    justify-content: center;
    border-bottom: 1px solid #ddd;
    margin: 10px 0;
}

.logo img {
    max-width: 100%;
}


.row{
    text-align: center;
}
.tdimension {
	width: 300px;
	height: 300px;
	margin: 0px 40px 0px 40px;
	perspective: 1000px;
    display: inline-block;
    position: relative;
}
.tdimension a {
	display: block;
	width: 100%;
	height: 100%;
	transform-style: preserve-3d;
	transform: rotateX(50deg);
	transition: all 0.8s;	
}
.tdimension:hover a {
	transform: rotateX(0deg); 	
}	
.tdimension a:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1));    
   	transform: rotateX(90deg);
    transform-origin: bottom;
}

.tdimension span{
    opacity: 1;
    width: 300px;
    transition: all 0.8s;
    font-size: 18px;
    font-weight: bold;
    position: absolute;
    left: 50%;
    bottom: 14px;
    transform: translate(-50%, 0);    
}

.tdimension:hover span{
    opacity: 0;
    transition: all 0.8s;
}


/* social-share */
#social-share {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 20;
}

#social-share div.social-open-menu .btn-share, 
#social-share ul.social-itens .btn-share {
  position: relative;
  cursor: pointer;
  color: white;
  line-height: 1;
  outline: 0;
  border: 0;
  margin-top: 15px;
  background-color: transparent;
}

#social-share ul.social-itens {
  list-style: none;
  text-decoration: none;
  text-align: center;
  position: relative;
  display: block;
}

#social-share ul.social-itens .btn-share {
  width: 50px;
  height: 50px;
  transition: all 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s;
}

#social-share ul.social-itens.open .btn-share {
  transform: scale(1);
  opacity: 1;
}

#social-share ul.social-itens li {
  position: relative;
}

#social-share ul.social-itens li .btn-share {
  transform: scale(0);
  opacity: 0;
}

#social-share ul.social-itens li .text {
  position: absolute;
  bottom: 15px;
  right: 100%;
  margin-right: 10px;
  min-width: 75px;
  border-radius: 2px;
  padding: 3px 4px;
  text-align: center;
  font-weight: 300;
  background: rgba(20, 20, 20, 0.7);
  color: #fff;
  display: block;
  opacity: 0;
  transition: all 500ms ease-in-out  0.5s;
}
#social-share ul.social-itens li:hover .text {
  opacity: 1;
}

#social-share div.social-open-menu .btn-share {
  background-color: #F44336;
  border-radius: 50%;
  transition: all 500ms;
}

#social-share div.social-open-menu .btn-share:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: all 500ms;
}

#social-share div.social-open-menu .btn-share img{
  width: 65px;
  height: 65px;
  padding: 10px;
}

