.img-fluid 
    {  display: block;
    margin-left: auto;
    margin-right: auto;
}

.responsive {
  padding: 10px;
  float: left;
  width: 33.33%;  
}

@media only screen and (max-width: 700px){
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px){
  .responsive {
    width: 50%;
  }
}

.navbar {
  text-transform: uppercase;
  font-family: 'Dosis', sans-serif;
  letter-spacing: 3px;
  font-size:17px;
}

h1 {
  text-align: center;
  text-transform: uppercase;
  color: #D4A373;
  font-family: transat, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:45px;
  letter-spacing: 1px;
}

h2 {
  text-align: center;
  text-transform: uppercase;
  color: #D4A373;
  font-family: transat, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:45px;
  letter-spacing: 1px;
}

h4 {
  text-align: center;
  text-transform: uppercase;
  color: #D4A373;
  font-family: transat, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size:18px;
  letter-spacing: 3px;
}

.list {
  text-align: center;
  text-transform: uppercase;
  color: #788844;
  font-family: transat, sans-serif;
  list-style: none;
}

.center {
  display: block;  
  margin-left: auto;
  margin-right: auto;
  border-radius: 20%;
  width:25%;
  height:auto;
}

  body {
    text-align: center;
    color: black;
    font-family: transat, sans-serif;
    font-style: normal;
    font-size:20px;
    letter-spacing: 1px;
  }

  .fa {
    padding: 20px;
    font-size: 30px;
    width: 50px;
    text-align: center;
    text-decoration: none;
    margin: 10px 2px;
  }
  
  .fa:hover {
      opacity: 0.9;
      color:#D4A373;
      text-decoration:overline;
  }
  
  .fa-facebook {
    color: black;
  }
  
  .fa-twitter {
    color: black;
  }
  
  .fa-linkedin {
    color: black;
  }
  
  .fa-instagram {
    color: black;
  }
  
  .fa-pinterest {
    color: black;
  }


  /* Image Grid on work pages */
    
  .row {
    margin: 8px -16px;
  }
  
  /* Add padding BETWEEN each column (if you want) */
  .row,
  .row > .column {
    padding: 8px;
  }
  
  /* Create four equal columns that floats next to each other */
  .column {
    float: left;
    width: 33%;
  }
  
  /* Clear floats after rows */
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  
  /* Content */
  .content {
    padding: 10px;
  }
  
  /* Responsive layout - makes a two column-layout instead of four columns */
  @media screen and (max-width: 900px) {
    .column {
      width: 50%;
    }
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
    .column {
      width: 100%;
    }
  }

  /* Contact form */

  /* Style inputs, select elements and textareas */
input[type=text], select, textarea{
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  resize: vertical;
  text-transform: uppercase;
  color: black;
  font-family: transat, sans-serif;
  font-style: normal;
  font-size:14px;
  letter-spacing: 1px;
}

/* Style the label to display next to the inputs */
label {
  padding: 12px 12px 12px 0;
  text-transform: uppercase;
  color: black;
  font-family: transat, sans-serif;
  font-style: normal;
  font-size:14px;
  letter-spacing: 1px;
  display: inline-block;
}

/* Style the submit button */
input[type=submit] {
  background-color: #D4A373;
  color: white;
  font-family: transat, sans-serif;
  font-size:20px;
  letter-spacing: 1px;
  padding: 8px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* Style the container */
.container {
  border-radius: 5px;
  padding: 20px;
  width: 60%;
}

/* Floating column for labels: 25% width */
.col-25 {
  float: left;
  width: 25%;
  margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
  float: left;
  width: 75%;
  margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - when the screen is less than 600px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}

