/* -------------------------------- 

Primary style

-------------------------------- */


html, body {
  height: 100%;
}


@media only screen and (min-width: 1048px) {
  body {
    /* hide horizontal scroll bar in IE */
    overflow-x: hidden;
  }
}



/* -------------------------------- 

Main Components 

-------------------------------- */

@media only screen and (min-width: 768px) {

}

.cd-fixed-background {
  position: relative;
  padding: 3em 5% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.cd-fixed-background h2, .cd-fixed-background p {
  color: #f2e6cd;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-fixed-background h2 {
  font-size: 2.4rem;
  margin-bottom: 1em;
}
.cd-fixed-background p {
  line-height: 1.6;
  font-family: "Merriweather", serif;
}
.cd-fixed-background .light-background h2, .cd-fixed-background .light-background p {
  color: #0f594d;
}
.cd-fixed-background .cd-content::after {
  /* phone image on small devices */
  content: '';
  display: block;
  width: 100%;
  padding: 60% 0;
  margin: 2em auto 0;
}

.cd-fixed-background.img-1 {
  background-color: #c1393a;
}
.cd-fixed-background.img-1 .cd-content::after {
  background: url("../img/img-mobile-1.png") no-repeat;
  background-size: 100% auto;
}
.cd-fixed-background.img-2 {
  background-color: #efd585;
}
.cd-fixed-background.img-2 .cd-content::after {
  background: url("../img/img-mobile-2.png") no-repeat;
  background-size: 100% auto;
}
.cd-fixed-background.img-3 {
  background-color: #aab845;
}
.cd-fixed-background.img-3 .cd-content::after {
  background: url("../img/img-mobile-3.png") no-repeat;
  background-size: 100% auto;
}
.cd-fixed-background.img-4 {
  background-color: #dc9248;
}
.cd-fixed-background.img-4 .cd-content::after {
  background: url("../img/img-mobile-4.png") no-repeat;
  background-size: 100% auto;
}
@media only screen and (min-width: 768px) {
  .cd-fixed-background {
    height: 100%;
    padding: 0;
  }
  .cd-fixed-background h2 {
    font-size: 3.6rem;
    font-weight: 300;
  }
  .cd-fixed-background p {
    font-size: 1.8rem;
    line-height: 1.8;
  }
  .cd-fixed-background .cd-content {
    width: 50%;
    position: absolute;
    left: 5%;
    top: 50%;
    bottom: auto;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .cd-fixed-background .cd-content::after {
    display: none !important;
  }
  
  .cd-fixed-background.img-1 {
    background-image: url("../img/img-1.jpg");
  }
  .cd-fixed-background.img-2 {
    background-image: url("../img/img-2.jpg");
  }
  .cd-fixed-background.img-3 {
    background-image: url("../img/img-3.jpg");
  }
  .cd-fixed-background.img-4 {
    background-image: url("../img/img-4.jpg");
  }
}
@media only screen and (min-width: 1048px) {
  .cd-fixed-background {
    background-attachment: fixed;
  }
  .cd-fixed-background .cd-content {
    width: 40%;
    left: 10%;
  }
}
@media only screen and (min-width: 1200px) {
 
}

