/* Put your custom css here */
/*  
    ----------------------------------
    46. Info icons
    ----------------------------------
*/
.info-icons {
    padding: 60px 0;
    background-color: #eeeeee;
}

    .info-icons.info-icons-frontpage {
        margin-top: -100px;
        padding: 0;
    }

    .info-icons.info-icons-inverted {
        background-color: #ffbb00;
        color: white;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
    }

    .info-icons figure {
        border: 1px solid #dddddd;
        background-color: white;
    }

        .info-icons figure figcaption {
            text-align: center;
        }

            .info-icons figure figcaption .icon {
                font-size: 40px;
            }

            .info-icons figure figcaption > span {
                display: block;
            }

                .info-icons figure figcaption > span,
                .info-icons figure figcaption > span > * {
                    white-space: nowrap;
                    text-overflow: ellipsis;
                    overflow: hidden;
                    padding: 0 5px;
                }

                    .info-icons figure figcaption > span:nth-child(1) {
                        padding-top: 40px;
                        padding-bottom: 15px;
                    }

                    .info-icons figure figcaption > span:nth-child(2) {
                        padding-bottom: 40px;
                    }

                    .info-icons figure figcaption > span > strong {
                        display: block;
                    }

@media (max-width: 991px) {
    .info-icons figure {
        margin-bottom: 20px;
    }
}


/*.wow {
   visibility:hidden; }*/

article figure::after, article figure .image, article figure .lighting, article .item-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

article .item-wrapper, article .item-content {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

article .item-wrapper, article figure, article .item-content {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

article {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: calc(33.33% - 4%);
  height: 24vw;
  margin: 1.8%;
  -webkit-perspective: 1600px;
          perspective: 1600px;
  cursor: pointer;
}
article .item-wrapper {
  width: 100%;
  height: 100%;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
article .item-wrapper::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  box-shadow: 0 8px 38px rgba(0, 0, 0, 0.86);
}
article .item-wrapper:hover::before {
  box-shadow: 0 14px 64px rgba(0, 0, 0, 0.92);
}
article .item-wrapper.enter.ease, article .item-wrapper.leave {
  -webkit-transition: all .1s ease-in;
  transition: all .1s ease-in;
}
article figure {
  width: 100%;
  height: 100%;
}
article figure::after {
  content: '';
  background-color: rgba(0, 0, 0, 0.06);
}
article figure .image {
  background-position: center;
  background-size: cover;
}
article figure .lighting {
  background: -webkit-linear-gradient(315deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 100%);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.24) 0%, rgba(255, 255, 255, 0) 100%);
}
article .item-content {
  pointer-events: none;
  padding: 20% 20px 20px;
  color: #fff;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.76);
}
article .item-content h1 {
  margin-bottom: 5%;
  -webkit-transform: translateZ(100px);
          transform: translateZ(100px);
}
article .item-content p {
  font-size: 13px;
  margin-bottom: 5%;
  -webkit-transform: translateZ(50px);
          transform: translateZ(50px);
}
article .item-content .author {
  -webkit-transform: translateZ(70px);
          transform: translateZ(70px);
}

@media (max-width: 860px) {
  article {
    width: calc(50vw - 3.9vw);
    height: 38vw;
  }
}
@media (max-width: 667px) {
  article {
    width: calc(100vw - 3.9vw);
    height: 60vw;
  }
}

.miracle{
    background-image:url("../images/hydroworldr.jpg");
	background-color: transparent;
	/*background-position: center center;*/
	/*background-attachment:fixed ;*/
    background-repeat: no-repeat;
    
    background-size: 100%;
    
}

.miraclemax{
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    margin-left:5px;
    background-color: white;
    border: 5px solid #28A0C2;
    padding: 5px;
    max-width: 50%;
    height: 150px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.column{
    float: left;
    width: 50%;
    padding-top: 30px;
}

.responsiveimage{
	  max-width: 1920px;   /* Máximo da largura da imagem */
        width: 100%;
        max-height: 1080px;  /* Máximo da altura da imagem */
        min-height: auto;      /* Mínimo da altura, por padrão “auto” */
        background-size:cover;
        background-repeat: no-repeat;
}

/*  
    ----------------------------------
    48. Not found
    ----------------------------------
*/
.not-found {
    background-image:url("../images/vimapur.jpg");
   
    background-repeat:no-repeat;
    max-width: 1920px;   /* Máximo da largura da imagem */
          width: 100%;
          max-height: 800px;  /* Máximo da altura da imagem */
          min-height: auto;      /* Mínimo da altura, por padrão “auto” */
          background-size:cover;
}

    .not-found .title {
        position: relative;
        color:#28a0c2;
        font-size: 80px;
       
        line-height: 0.8;
        z-index: 2;
        background-color: transparent;
    }

        .not-found .title:before {
            content: attr(data-title);
            position: absolute;
            left: 50%;
           
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            -moz-transform: translate(-50%, -50%) scale(2);
            -ms-transform: translate(-50%, -50%) scale(2);
            -o-transform: translate(-50%, -50%) scale(2);
            -webkit-transform: translate(-50%, -50%) scale(2);
            transform: translate(-50%, -50%) scale(2);
            color: #b1d3df;
            opacity: 0.6;
            font-size: 40px;
            z-index: 2;
        }

@media (min-width: 992px) {
    .not-found {
        padding: 320px 0;
    }

        .not-found .title {
            font-size: 250px;
        }

            .not-found .title:before {
                font-size: 100px;
            }
}

.not-found .subtitle {
    color: white;
    text-align: center;
}

.not-found a {
    color: #b1d3df;
    text-decoration: underline;
}

    .not-found a:hover {
        color: white;
    }

.not-found p {
    margin-bottom: 0;
}

.btn-size{
    font-size: 12px;
}

/* Video */
#video-landing {
    color: #fff;
    padding-left: 40px;
}


 .bg-video {
    position: relative;
    top: 0;
    left: 0;
    z-index: 0; /*apenas um -1 é necessário quando se trabalha com relative + absolute, sendo pai e filho*/
    width: 100%;
    height:100%;
    overflow: hidden; /* evita do video passar a altura desejada do .wrap */
}
.bg-video > video {
    width: 100%;
    filter:brightness(100%);
}
.videodiv{
    z-index: 4;
    position: absolute;
    top: 4%;
    left: 125px;
    width: 62%;
    margin-top: 6%;
    line-height: 1.5em;
}

.videodiv > img{
    height: 45px;
}

.videodiv > h1, h2, h3, p{
    margin-top: 10px;
}

.intro_p{
    color:#fff; 
    background-color:transparent;
    margin: 0;
    font-size: 25px;
}

@media screen and (min-width: 1600px) {
    .miracle{
        padding-bottom: 240px;
        font-size: 16px;
    }
    .page-header.bigHeader, .page-header.bigHeader h1, .page-header.bigHeader h2{
        padding-bottom: 130px;
    }
  }

  

  @media only screen and (max-width: 500px) {
    .videodiv{
        top: -3%;
        left: 15px;
        width: 80%;
    }
    .bg-video{
        width: 100%;
        height: 190px;
        transform: scale(1.2);
        left: -9%;
        top: 9%;
        
    }
    .flexslider h1{
        padding-top: 0.25em;
        padding-left: 0;
    }
    .intro_p{
        font-size: 17px;
    }
    .flexslider h2{
        font-size: 15px;
    }
    .imgWrapper {
        visibility: hidden;
        display: none;
        clear: both;
      }
      .miracle{
        background-image:none;
      }
      .page-header.bigHeader, .page-header.bigHeader h1, .page-header.bigHeader h2 {
        background-image: none;
      }
      .hidden-phone{~
        visibility: hidden;
        display: none;
        clear: both;}
}