/* ===================
 *
 * Custom Added Styles
 *
 * =================== */

/* ORGANIZATION */

* {
  font-family: "Roboto";
  color: #333;
}

body {
  padding-top: 50px;
}

.centered {
 	text-align: center;
}

.content-holder {
  margin-top: 20px;
}

.title-bar {
  height: 5px;
  width: 50%;
  background-color: #881600;
  margin-bottom: 15px;
}

.bar {
  height: 3px;
  width: 30%;
  margin: auto;
  background-color: #881600;
  margin-bottom: 15px;
}

.add-space {
  margin-top: 10px;
  margin-bottom: 10px;
}

/* ==============
 * COLOR CHANGING
 * ============== */

/*
  Color Scheme:
  	Dark Red/Brown:	#49010F
	  Shaded Red:		  #881600
	  Orange:			    #C16200
	  Yellow:			    #E3E36A
*/


/* ==============
 * CONTENT STYLES
 * ============== */

.content-title {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 3em;
  letter-spacing: .2em;
}

.content-desc {
  font-size: 1.6em;
  letter-spacing: .1em;
  line-height: 1.8em;
  margin-bottom: 50px;
  text-align: justify;
}

.content-img {
  max-width: 100%;
}

.mult-disp {
  padding: 10px;
}

.segment-title {
  margin-top: 40px;
  text-align: center;
  font-size: 1.6em;
  letter-spacing: .1em;
  font-weight: bold;
}

.item-desc {
  margin-top: 10px;
  font-size: 1.2em;
  letter-spacing: .1em;
  text-align: justify;
}

.item-desc > a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.item-desc > a:hover {
  text-decoration: underline;
  font-weight: bold;
}

.item-tag {
  height: 30px;
  /*width: 150px;*/
  margin-right: 15px;
  margin-bottom: 15px;
  padding-top: 3px;
  padding-right: 10px;
  padding-left: 10px;
  font-size: 1em;
  letter-spacing: .1em;
  color: #49010F;
  box-sizing: border-box;
  border: 2px solid #49010F;
  text-align: center;
  border-radius: 15px;
  float: left;
}

.item-link {
  height: 40px;
  border: none;
  border-radius: 20px;
  width: 100%;
  background-color: #881600;
  text-decoration: none;
  font-size: 1.2em;
  letter-spacing: .1em;
  color: #fff;
  padding-top: 9px;
  margin-bottom: 20px;
  transition: .5s all; 

}
.item-link:hover {
  background-color: #49010F;
  color: #fff;
}

.modeled {
  border-left: 3px solid #49010F;
  margin-left: 10px;
  padding-left: 10px;
  font-size: 1.1em;
}

/* CONTACT */

.contact-row {
  display: none;
}

@media (min-width: 992px) {

  .contact-row {
    display: block;
    background-color: #333;
    min-height: 300px;
    margin-top: 50px;
    color: #fff;
  }

  .contact-row h2 {
    margin-top: 80px;
    font-size: 2em;
    letter-spacing: .2em;
    color: #fff;
  }

  .contact-row p {
    font-size: 1.5em;
    letter-spacing: .1em;
    margin-top: 25px;
    color: #fff;
  }

  .contact-row a {
    color: #fff;
  }

  .contact-gap {
    margin-right: 20px;
  }
}










