body, html {
    height: 100%;
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
  }

  * {
    box-sizing: border-box;
  }
  .row{
        height:  100%;
  }
  .bg-image-men {
    /* The image used */
    background-image: url("../images/shop_men.jpg");

    /* Add the blur effect */
    /*filter: blur(8px);
    -webkit-filter: blur(8px);
    */
    filter: opacity(60%);
    -webkit-filter: opacity(60%);

    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .bg-image-women {
    /* The image used */
    background-image: url("../images/shop_women.jpg");

    /* Add the blur effect */
    /*filter: blur(8px);*/
    filter: opacity(60%);
    -webkit-filter: opacity(60%);
    /*-webkit-filter: blur(8px);*/

    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  /* Position text in the middle of the page/image */
  .bg-text {
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0, 0.4); /* Black w/opacity/see-through */

    position: absolute;
    color: white;
    font-weight: bold;
    border: 3px solid #f1f1f1;
    top: 25%;
    left: 25%;
    /*transform: translate(-50%, -50%);*/
    z-index: 2;
    width: 40%;
    padding: 20px;
    text-align: center;
  }
  .column {
    float: left;
    width: 50%;
    padding: 5px;
  }

  /* Clear floats after image containers */
  .row::after {
    content: "";
    clear: both;
    display: table;
  }
  .container{
    position:  relative;
    height: 100%;
  }