
/*
*
* Thumbnails
* 
*/
.thumbnail-type-1 {
  display: inline-block;
  position: relative;
  box-shadow: 20px 20px 40px 0 rgba(0, 0, 0, 0.12);
  transition: .3s;
}
.thumbnail-type-1:hover {
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.1);
}
.thumbnail-type-1:hover .caption {
  opacity: 1;
}
.thumbnail-type-1:hover .caption .caption-inner {
  opacity: 1;
  transform: translateY(0);
}
.thumbnail-type-1 .label {
  top: -10px;
  right: -5px;
  line-height: 1.4;
  padding-top: .5em;
  position: absolute;
  z-index: 1;
  box-shadow: 1px 4px 15px 0 rgba(0, 0, 0, 0.35);
}
.thumbnail-type-1 .caption {
  opacity: 0;
  transition: .5s;
}
.thumbnail-type-1 .caption {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-left: 8px;
  padding-right: 8px;
  background-color: #fff;
  color: #888;
}
.thumbnail-type-1 .caption * + p {
  margin-top: 8px;
}
@media (min-width: 1600px) {
  .thumbnail-type-1 .caption * + p {
    margin-top: 20px;
  }
}
.thumbnail-type-1 .caption-inner {
  opacity: 0;
  transition: .4s ease-in-out;
  transform: translateY(-10px);
}
.thumbnail-type-1 .caption-title {
  color: #000;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 700;
}
html.mobile .thumbnail-type-1 .caption,
html.tablet .thumbnail-type-1 .caption {
  padding-top: 10px;
  padding-bottom: 10px;
  position: static;
  border: 1px solid #e4e4e4;
}
html.mobile .thumbnail-type-1 .caption p,
html.tablet .thumbnail-type-1 .caption p {
  margin-top: 3px;
  font-size: 16px;
}
html.mobile .thumbnail-type-1 .caption,
html.mobile .thumbnail-type-1 .caption-inner,
html.tablet .thumbnail-type-1 .caption,
html.tablet .thumbnail-type-1 .caption-inner {
  opacity: 1;
  transform: none;
}
.thumbnail-type-2 {
  position: relative;
  display: inline-block;
  padding-left: 15px;
  padding-right: 15px;
}
.thumbnail-type-2 .label {
  top: -10px;
  right: 10px;
  line-height: 1.4;
  padding-top: .5em;
  position: absolute;
  z-index: 1;
  box-shadow: 1px 4px 15px 0 rgba(0, 0, 0, 0.35);
}
@media (min-width: 576px) {
  .thumbnail-type-2 {
    padding-left: 35px;
    padding-right: 35px;
  }
  .thumbnail-type-2 .label {
    right: 30px;
  }
}
.thumbnail-type-2 figure {
  transition: box-shadow 0.3s ease;
  box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0.1);
}
.thumbnail-type-2 figure img {
  transform: scale(1);
  transition: .4s all ease-in-out;
}
.thumbnail-type-2 figure:hover {
  box-shadow: 10px 10px 74px -15px rgba(0, 0, 0, 0.3);
}
.thumbnail-type-2 figure:hover img {
  transform: scale(1.03);
}
.thumbnail-type-2 .caption {
  margin-top: 20px;
}
.thumbnail-type-2 .caption-title {
  color: #000;
  font-size: 18px;
  line-height: 1.3;
  text-transform: capitalize;
}
.thumb {
  position: relative;
  display: inline-block;
}
.thumb:before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(46, 211, 174, 0.4);
  z-index: 1;
  content: '';
  will-change: opacity;
}
.thumb:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-family: FontAwesome;
  font-size: 34px;
  content: "\f065";
  z-index: 1;
  will-change: transform, opacity;
}
.thumb:before,
.thumb:after {
  transition: .3s ease;
  opacity: 0;
}
.thumb:hover:before,
.thumb:hover:after {
  opacity: 1;
}

/*
*
* Tooltip Custom
* --------------------------------------------------
*/
.tooltip-custom {
  color: #2ed3ae;
}
.tooltip-custom .tooltip {
  font-family: "Libre Franklin", Helvetica, Arial, sans-serif;
}
.tooltip-custom .tooltip.in {
  opacity: 1;
}
.tooltip-custom .tooltip-inner {
  max-width: 253px;
  padding: 4px 8px;
  font-size: 14px;
  border-radius: 0;
  background: #2ed3ae;
}
.tooltip-custom .tooltip.left .tooltip-arrow {
  border-left-color: #2ed3ae;
}
.tooltip-custom .tooltip.right .tooltip-arrow {
  border-right-color: #2ed3ae;
}
.tooltip-custom .tooltip.top .tooltip-arrow {
  border-top-color: #2ed3ae;
}
.tooltip-custom .tooltip.bottom .tooltip-arrow {
  border-bottom-color: #2ed3ae;
}

/*
*
* Box
* --------------------------------------------------
*/
.box {
border: 1px solid #d2d2d2;
box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.12);
}

/*
*
* Label
* --------------------------------------------------
*/
.label {
padding: .4em .7em .6em;
border-radius: .5em;
font-weight: 700;
background-color: #2ed3ae;
color: #fff;
font-size: 10px;
}
@media (min-width: 992px) {
.label {
    letter-spacing: 0.04em;
    font-size: 14px;
}
}
h2 .label {
margin-left: 10px;
vertical-align: top;
}
