/*** COLORS ****/
.steel-blue {
  color: #1a2c3d !important;
}
.steel-blue-bg {
  background-color: #1a2c3d !important;
}
.ben-green {
  color: #087612 !important;
}
.ben-green-bg {
  background-color: #087612 !important;
}
.par-bg-blue {
  background-color: #1a2c3dba;
}
.priceHeader {
  border: 1px solid white;
}
.price {
  border: 1px solid black;
}
.price ul{
  /*list-style-position: inside;*/
  padding-left: 0.5em;
}
.row-flex {
  display: flex !important;
}
.row-flex .col {
  min-height: 100% !important;
}
.mid-txt {
  font-size: 31px;
}
nav ul a,
nav .brand-logo {
  color: #444;
}
.blue-trans-bg {
  background-color: #1a2c3db3;
}
.grey-trans-bg {
  background-color: #313131d9;
}
.brand-logo img {
  height: 62px;
}
.marg-top5 {
  margin-top: 5vh;
}
.marg-top9 {
  margin-top: 9vh;
}
p {
  line-height: 1.6rem;
}

.footer-img {
  height: 100px;
  margin-top: 14px;
}
.sidenav-trigger {
  color: #26a69a;
}
.headshot-circle {
  background-image: url("../img/ben-holt-headshot.jpg");
  height: 255px;
  width: 255px;
  border-radius: 50%;
  background-size: cover;
  border: 1px solid #0d1321;
}
#index-banner {
  height: 64vh;
}

#download-button {
  margin-top: 4vh;
}
.parallax-container {
  min-height: 380px;
  line-height: 0;
  height: auto;
  color: rgba(255,255,255,.9);
}
  .parallax-container .section {
    width: 100%;
  }

@media only screen and (max-width : 992px) {
  .parallax-container .section {
    position: absolute;
    top: 40%;
  }
  #index-banner .section {
    top: 10%;
  }
}

@media only screen and (max-width : 600px) {
  #index-banner .section {
    top: 0;
  }
}

.icon-block {
  padding: 0 15px;
}
.list-icon {
  height: 100px;
}
.icon-block .material-icons {
  font-size: inherit;
}

footer.page-footer {
  margin: 0;
}

/*Animations*/

[data-animate-in] {
  opacity: 0;
  transition: transform 0.8s ease, opacity 0.8s ease
}

[data-animate-in="up"] {
  transform: translate3d(0, 24px, 0)
}

[data-animate-in="left"] {
  transform: translate3d(-25%, 0, 0)
}

[data-animate-in="right"] {
  transform: translate3d(25%, 0, 0)
}

[data-animate-in="down"] {
  transform: translate3d(0, -24px, 0)
}

[data-animate-in="fadeIn"] {
  transform: translate3d(0, 0, 0)
}

[data-animate-in].in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transition: transform 0.6s ease, opacity 0.6s ease
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease
}

.page-loaded .fade-in,.page-loaded.fade-in {
  opacity: 1
}

.isSafari.isTouch [data-animate-in],.isSafari.isTouch [data-animate-in="up"] {
  opacity: 1;
  transition: none;
  transform: none
}