@charset "UTF-8";

.content-block-one {
  padding: 10px;
  margin-bottom: 1px;
  color: inherit;
  background-color: #eee; /* was #eee */
}

.dropdown-item:hover {
    background-color: #e3e3e4;
}
.navbar-brand {
    color: #21130d; /* was #ffcc00 */
}
.navbar-brand-image {
    max-height: 25px;
}
.nav-item a {
    color: #ffffff;
}
.dropdown-menu a {
    color: #15804f;
}

.container .content-block-one {
  border-radius: 6px;
}
.content-block-one .container {
  max-width: 100%;
}
.content-space-one {
  padding: 0px;
  margin-bottom: 0px;
  color: inherit;
  background:
  /* top, transparent, faked with gradient */
    linear-gradient( rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6) ),
    url(http://www.tools-n-gizmos.com/Griz44/About/About-1.jpg) no-repeat;
-webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
 background-size: cover;
 background-position: center;
 background-color: #15805f;
  padding-top: 100px;
  padding-bottom: 60px;
}
.basic-page-top {   /* Small screen */
    padding-top: 50px;
    padding-bottom: 5px;
}

    
@media (min-width: 768px) {
    .space-title-h1 {
        font-size: 2rem;
    }
    .space-title-h2 {
        font-size: 1.5rem;
    }
}

    @media (min-width: 992px) {
      .space-title-h1 {
        font-size: 3.9rem;
      }
      .space-title-h2 {
        font-size: 2.5rem;
      }
    }

    @media (min-width: 1200px) {    /* Big screen was 1200*/
      .basic-page-top {
        padding-top: 50px;
        padding-bottom: 20px;
      }
      .space-title-h1 {
        font-size: 4rem;
      }
      .space-title-h2 {
        font-size: 2.5rem;
      }
      .content-space-one {
        padding: 0px;
        margin-bottom: 0px;
        color: inherit;
        background:
        /* top, transparent, faked with gradient */
        linear-gradient( rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6) ),
        /* bottom, image url(http://www.tools-n-gizmos.com/Griz44/About/About-1.jpg) no-repeat fixed; url(http://www.tools-n-gizmos.com/Griz44/About/About-1.jpg) no-repeat fixed;*/
        url(http://www.tools-n-gizmos.com/Griz44/About/About-1.jpg) no-repeat fixed;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        -o-background-size: cover;
        background-size: 100% auto;
        background-color: #15805f;
        padding-top: 100px;
        padding-bottom: 80px;
      }
    }

    .my-txt-1 {
      font-family: "Times New Roman", Times, serif;
      font-style: italic;
      font-weight: 700;
      font-size: 1.5em;
      text-align: center;
    }

    .pic-txt-1 {
      font-family: "Times New Roman", Times, serif;
      font-size: 1.5em;
      text-align: center;
    } 
       
    .my-Margin-1 {
      margin-left: 0em;
      margin-Right: 0em;
    }
    
    .my-Margin-2 {
      margin-left: 4em;
      margin-Right: .5em;
    }

    .my-Margin-3 {
      margin-left: 4em;
      margin-Right: .5em;
    }
        
    .my-foot {
      background-color: #000000;
      font-size: 0.65em;
      color: #ffffff;
      margin: auto;
      text-align: center;
    }    


  .cards {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .card {
    flex: 0 0 200px;
    margin: 10px;
    border: 1px solid #ccc;
    box-shadow: 2px 2px 6px 0px  rgba(0,0,0,0.3); 
  } 
  .card img {
    max-width: 100%;
  }
  .card .text {
    padding: 0 0px 0px;
    text-align: center;
  }
  .card .text > button {
    background: gray;
    border: 0;
    color: white;
    padding: 10px;
    width: 100%;
    }    
 

.respons-img-1 {
  width: 100%;
  height: auto;
}

    /* your conditional / respons-img-1 CSS for screens > 500px */
@media (min-width:500px) {
  .respons-img-1 {
    width: 75%;
    height: auto;
}
  }

    /* your conditional / respons-img-1 CSS for screens > 800px */
@media (min-width:800px) {
  .respons-img-1 {
    width: 50%;
    height: auto;
  }
} 

.thickhr {
  color: black;
  border:0.1rem solid black;
  background: #000000;
  height:1rem;
  width: 75%;
  margin: 0 auto;
}


/* Create two equal columns that float next to each other */
* {
  box-sizing: border-box;
}
/* Create 3 columns */
.column3 {
  float: left;
  width: 33.33%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
} 

/* Responsive layout - when the screen is less than 600px wide, make the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column3 {
    width: 100%;
  }
} 