/*.prodimg figure img {
	-webkit-transform: scale(1);
	transform: scale(1);
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}
a:hover {
    background-color: aqua;
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}*/
html, body {
  margin: 0 !important;
  padding: 0 !important;
  min-height: 100%;
  min-width: 100%;
  overflow-x: hidden; 
}
.hdrtext {
    color: #4faaf9;
    -webkit-text-fill-color: #000067; /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #342e6d;
  }

  .submenu {
    color: #667888;
    -webkit-text-fill-color: #818b94; /* Will override color (regardless of order) */
    -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: #58588a;
  }

  .subtext{
    color: #ffffff;
    font-family: Calibri,Candara,Segoe,Segoe UI,Optima,Arial,sans-serif; font-size: 28px;
  }

  .carousel-item {
    width: 100%;
    height: auto;
    min-height: auto;
    background: no-repeat center center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    padding-left: 0;
    padding-right: 0;
  }

.img-box {
    position: relative;
    margin: auto;
    overflow: hidden;
    width: 540px;
}

.img-box img {
    max-width: 100%;
    transition: all 0.3s;
    display: block;
    width: 100%;
    height: auto;
    transform: scale(1);
}

.img-box:hover img {
    transform: scale(1.3);
     /* Add the blur effect */
    filter: blur(8px);
    -webkit-filter: blur(8px);

    /* Full height */
    height: 100%; 
}

.img-box:hover .overlay-text {
    visibility: visible;
}
.overlay-text{
    text-align: center;
    visibility: hidden;
}

.icon {
    font-size: 90px;
}

/* If the screen size is 601px wide or more, set the font-size of <div> to 80px */
@media screen and (min-width: 601px) {
    div.didisa {
      font-size: 280%;
    }
  }
  
  /* If the screen size is 600px wide or less, set the font-size of <div> to 30px */
  @media screen and (max-width: 600px) {
    div.didisa {
      font-size: 20px;
    }
  }