body {
  font-family: 'Open Sans', Helvetica, Arial, "Lucida Grande", sans-serif; 
  font-weight: 300;
  background: #efefef;
  background-image: url("assets/img/bg.png");
  background-repeat: repeat;
}

h1, h2, h3, h4, h5 h6 {
  font-family: 'Playfair Display', Georgia, serif;
}

p {
  font-size: 1.75rem;
  line-height: 1.8;
}
b, strong {
    font-weight: 600;
}


.site-header {
  background-color: rgba(230,230,230, .85);
}
.site-header a {
  color: #999;
  transition: ease-in-out color .15s;
}
.site-header a:hover {
  color: #fff;
  text-decoration: none;
}

.container {
  max-width: 1400px;
}
.bg-primary {
  background: #4A521F !important;
}
.text-primary {
  color: #4A521F !important;
}

.bg-hero {
    background-image: url("assets/img/expensive-baby.jpg");
    min-height: 75vh;
    background-size:     cover; 
    background-repeat:   no-repeat;
    background-position: center center; 
    overflow:auto;
}
.bg-cta {
    background-image: url("assets/img/three-babies.jpg");
    min-height: 75vh;
    background-size:     cover; 
    background-repeat:   no-repeat;
    background-position: center center; 
    overflow:auto;
}

.bg-hero .wrap, .bg-cta .wrap {}
.bg-hero .wrap {
  background: rgba(255, 255, 255, .5);
  width: 60%;
  margin: 40% auto 20% ;
  padding: 4rem 4rem;
}
.bg-cta .wrap {
  background: rgba(0, 0, 0, .5);
  margin: 40% auto ;
  padding: 2rem 2rem;
}

.social-links a,
.social-links a:visited {
  color: #ededed;
}
.social-links a:hover {
  color: #fff;
}

@media only screen and (max-width: 575px) {
    .bg-hero .wrap {
      padding: 1rem;
      width: 98%;
      margin: 80px auto;
    }
    .bg-cta .wrap {
      padding: 1rem;
      width: 98%;
      margin: 200px auto;
    }
    .bg-hero .wrap .display-4, .bg-cta .wrap .display-4 {
      font-size: 2.8rem;
    }
}

.box-img img {  
    height: 50vh;
    width: 100vw;
    background-color: #ddd;
    object-fit: cover;
}

.bar-img img {  
    height: 35vh;
    width: 100vw;
    background-color: #ddd;
    object-fit: cover;
    border: 1px solid #efefef;
}


[aos="fade"] {
  opacity: 0;
  transition-property: opacity;
}

[aos="fade"].aos-animate {
  opacity: 1;
} 


/*
 * Extra utilities
 */

.border-top { border-top: 1px solid #e5e5e5; }
.border-bottom { border-bottom: 1px solid #e5e5e5; }

.box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }

.flex-equal > * {
  -ms-flex: 1;
  flex: 1;
}
@media (min-width: 768px) {
  .flex-md-equal > * {
    -ms-flex: 1;
    flex: 1;
  }
}

.overflow-hidden { overflow: hidden; }
