/*
 * Copyright (c) 2021. OrangePix  All rights reserved.
 * DISCLAIMER
 * Do not edit, modify or copy this file.
 * If you wish to customize it, contact us at info@orangepix.it
 *
 * @author    Carlos Batista <carlos.batista@orangepix.it> , Samuele Cisaro <samuele.cisaro@orangepix.it>
 *  @copyright OrangePix Srl
 * @license   Do not edit, modify or copy this file
 */

#op_imagebanner_container .caption {
  position: relative;
  font-size: 1em;
  text-shadow: none;
  bottom: 120px;
  margin: 0;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-wrap: nowrap;
  align-content: center;
}

h2.op_banner_title.text-uppercase {
  font-size: 1rem;
}

@media screen and (min-width: 760px){
  h2.op_banner_title.text-uppercase {
    font-size: xx-large;
    }
}
.op_imageblocks_container{
  position: relative;
}

.op_imageblocks_image{
  object-fit: cover;
  filter: brightness(.6);
}

.op_imageblocks_caption{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  margin: 0 auto;
  width: 100%;
  color: white;
}

.op_imageblocks_caption_no_link{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
  margin: 0 auto;
  width: 100%;
  color: white;
}

.op_imageblocks_container:hover .op_imageblocks_caption h2{
  transition: .3s;
  margin-bottom: 0;
}

.op_imageblocks_btn{
  position: absolute;
  opacity: 0;
  color: #222 !important;
  background-color: #fff;
  padding: 10px 40px;
  margin: 5px 10px;
  max-width: 280px;
  border: none;
  margin: 0 auto;
  transition: .3s;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  
}

.op_imageblocks_btn:hover{
  color: #fff !important;
  background-color: #222;
}

.op_imageblocks_container:hover .op_imageblocks_btn{
  position: inherit;
  opacity: 1;
}

.op_imageblocks_container:hover .op_imageblocks_caption h2{
  display: none;
  opacity: 0;
}