

.hovereffect {
  
  height: 100%;
  float: left;
  overflow: hidden;
  position: relative;
  text-align: center;
  cursor: default; float:left;
}

.hovereffect .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  overflow: hidden;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  border:solid 1px rgba(255, 255, 255, 0.6);
}

.hovereffect:hover .overlay {
  background-color: rgba(170,170,170,0.4);
}

.hovereffect h2, .hovereffect img {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.hovereffect img {
  display: block;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
/*
.hovereffect:hover img {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}*/

.hovereffect h2 {
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  position: relative;
  font-size: 17px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.6);
}

.hovereffect a.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.33);
  margin: 50px 0 0 0;
  background-color: transparent;
  opacity: 0;
  filter: alpha(opacity=0);
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  font-weight:bold;
  letter-spacing:1px;
  height: 85%;
  width: 85%;
  position: absolute;
  top: -13%;
  left: 7%;
  padding: 97px 20px;
}

.hovereffect:hover a.info {
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  background-color: rgba(0,0,0,0.5);
}

.hovereffect{}
.hovereffect:last-child{ margin-right:0;}
.overlay a.info.pop_broch{ /*font-family: 'Swis721-Md-BT-Medium';*/ font-size:15px; color:#fff; font-weight:bold; letter-spacing:1px;}


.box {
  width: 40%;
  margin: 0 auto;
  background: rgba(255,255,255,0.2);
  padding: 35px;
  border: 2px solid #fff;
  border-radius: 20px/50px;
  background-clip: padding-box;
  text-align: center;
}

.pop_broch {
  font-size: 1em;
  padding: 10px;
  color: #fff;
  border: 2px solid #06D85F;
  /*border-radius: 20px/50px;*/
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.pop_broch:hover {
  background: #06D85F;
}

.out_cover {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
  z-index:999;
}
.out_cover:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 120px auto 0;
  padding: 0px;
  padding-top:0px;
  background: #fff;
  border-radius: 5px;
  max-width: 600px;
  width:100%;
  position: relative;
  transition: all 5s ease-in-out; display:table;
  top:5% !important;
  border:solid 3px #000;
}

.popup .form-control{ margin-bottom:16px;}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}
.popup .close {
  position: absolute;
  top: -10px;
  right: 0px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
   margin-right:0; opacity:1;
}

.form-check{ float:left; text-align:left; color:#58595b;}
.btn-primary{ border-color:#ff0000;
background: rgba(246,0,0,1);
background: -moz-linear-gradient(left, rgba(246,0,0,1) 0%, rgba(151,3,3,1) 100%);
background: -webkit-gradient(left top, right top, color-stop(0%, rgba(246,0,0,1)), color-stop(100%, rgba(151,3,3,1)));
background: -webkit-linear-gradient(left, rgba(246,0,0,1) 0%, rgba(151,3,3,1) 100%);
background: -o-linear-gradient(left, rgba(246,0,0,1) 0%, rgba(151,3,3,1) 100%);
background: -ms-linear-gradient(left, rgba(246,0,0,1) 0%, rgba(151,3,3,1) 100%);
background: linear-gradient(to right, rgba(246,0,0,1) 0%, rgba(151,3,3,1) 100%);
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f60000', endColorstr='#970303', GradientType=1 );
}
.btn-primary:hover{ background:#ff0000; border-color:#ff0000;}
.popup .close:hover {
  color: #b99c5d;
}
.popup .content {
  max-height: 30%;
  overflow: auto;
}

@media screen and (max-width: 700px){
  .box{
    width: 70%;
  }
  .popup{
    width: 70%;
  }
}


