
/* general styling for all the hovers */
	
.hover {
  width: 100%;
  height: 100%;
  float: left;
  position: relative;
  text-align: center;
  cursor: default;
    display: block;
    overflow: hidden;
}

.hover .overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: -20px;
  left: 0;
}

.hover img {
  display: block;
  position: relative;
    width: 100%;
}

.hover h2 {
    background: url("../images/hoverh2.png") no-repeat;
    text-align: left;
    height: 200px;
    font-size: 26px;
    padding-top: 20px;
    padding-left: 20px;
    font-weight: bold;
    padding-right: 82px;
}

.h-180 h2 {
    background: url("../images/hoverh2-2.png") no-repeat;
    text-align: left;
    height: 200px;
    font-size: 26px;
    padding-top: 20px;
    padding-left: 20px;
    font-weight: bold;
}
.ehover1 a{
    text-decoration: none !important;
    color: #333333 !important;
}

.hover button.info {
  display: inline-block;
  text-decoration: none;
  padding: 7px 14px;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  margin: 50px 0 0 0;
  border-radius: 0px;
  background-color: transparent;
}

.hover button.info:hover {
  box-shadow: 0 0 5px #fff;
}

/* styling to remove box shadow and border from buttons for last few effects */

.hover button.nullbutton {
  border: none;
  padding: 0px;
  margin: 0px;
}

.hover button.nullbutton:hover {
  box-shadow: none;
}

/* remove the blue line that shows on modal buttons after you have open and close a modal */

.modal-open .modal, button:focus {
    outline:none!important
}

/* styling so when hovering over a div that opens a modal the cursor changes to a pointer */
.point {
cursor: pointer;
}

 /* effect hover 3 */

.ehover3 img {
  transition: all 0.4s ease-in;
}

.ehover3 button.info, .ehover3 h2 {
  transform: scale(1);
  transition: all 0.4s ease-in;
}

.ehover3:hover img {
  filter: grayscale(1) blur(3px);
  -webkit-filter: grayscale(1) blur(3px);
  transform: scale(1);
}

.ehover3:hover button.info, .ehover3:hover h2 {
  opacity: 1;
  transform: scale(1);
}



/* effect hover 1 */

.ehover1 img {
    transition: all 0.4s linear;
    -moz-transition: all 0.4s linear;
    -o-transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    transition: all 0.4s linear;
}



.ehover1:hover img {
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.ehover1:hover .overlay {
    opacity: 1;
}

.ehover1:hover h2, .ehover1:hover button.info {
    opacity: 1;
    -moz-transform: translatey(0);
    -ms-transform: translatey(0);
    -o-transform: translatey(0);
    -webkit-transform: translatey(0);
    transform: translatey(0);
}

.ehover1:hover button.info {
    -moz-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}
