/* Text Elements */

h4.heading-1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 19px;
}

span.text-element#head1 {
  padding-top: 20px;
  color: #fff;
  text-align: center;
  font-weight: 600;
  font-size: 25px;
}

/* Interaction Elements */

a.link-button.btn {
  display: block;
  float: left;
  padding: 1rem;
  color: #672e12;
  font-weight: 600;
}

.container-grid#navbar {
  overflow: hidden;
}

.container-grid#header {
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: center;
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #d3caca;

  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}

.container-grid.content {
  padding: 16px;
}

.container-grid.container-2 {
  padding-top: 0;
  padding-bottom: 0;
  min-height: 200px;
  height: auto;
  background-image: url('../img/autumn-colours.jpg');
  background-attachment: scroll;
  background-position: left top;
  background-clip: border-box;
  background-origin: padding-box;
  background-size: auto auto;
  background-repeat: repeat-x;

  background-blend-mode: normal;
}

.container-grid.container-1 {
  background-color: #e77115;
}

.container-grid.pics {
  display: -webkit-box;
  display: -webkit-flex;
  display:    -moz-box;
  display: -ms-flexbox;
  display:         flex;
  -ms-flex-pack: center;
  margin-bottom: 30px;

  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
     -moz-box-pack: center;
          justify-content: center;
}

div.responsive-picture.connemara {
  margin: 2px;
  padding: 10px;
  max-width: 300px;
  border: .0625rem solid #672e12;
  border-radius: 4px;
}

@media screen and (min-width: 36rem) {
  /* Text Elements */

  p.paragraph.paragraph-1 {
    margin-top: -20px;
    margin-bottom: 30px;
    text-align: center;
    font-style: italic;
    font-size: 14px;
  }
}

@media screen and (min-width: 48rem) {
  /* Text Elements */

  span.text-element#head1 {
    font-size: 30px;
  }

  div.responsive-picture.connemara {
    max-width: 350px;
  }
}

@media screen and (min-width: 62rem) {
  /* Text Elements */

  span.text-element#head1 {
    font-size: 35px;
  }
}

@media screen and (min-width: 75rem) {
  /* Text Elements */

  span.text-element#head1 {
    font-size: 40px;
  }

  /* Interaction Elements */

  a.link-button.btn {
    font-weight: 600;
  }

  div.responsive-picture.connemara {
    position: relative;
    z-index: -10;
    padding: 8px;
    -webkit-transform: scaleX(1);
       -moz-transform: scaleX(1);
         -o-transform: scaleX(1);
            transform: scaleX(1);
  }

  div.responsive-picture.connemara:hover {
    position: relative;
    z-index: 10;
    -webkit-transition-duration: .3s;
       -moz-transition-duration: .3s;
         -o-transition-duration: .3s;
            transition-duration: .3s;
    -webkit-transform: scaleX(1.4) scaleY(1.4);
       -moz-transform: scaleX(1.4) scaleY(1.4);
         -o-transform: scaleX(1.4) scaleY(1.4);
            transform: scaleX(1.4) scaleY(1.4);
  }

  .container-grid.pics:hover {
    position: relative;
    z-index: 10;
  }
}