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

Primary style

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

Patterns - reusable parts of our design

-------------------------------- */
@media only screen and (min-width: 1170px) {
  .cd-is-hidden {
    visibility: hidden;
  }
}

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

Resource style

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

.cd-timeline {
  overflow: hidden;
  margin: 0 auto;
}

.cd-timeline__container {
  position: relative;
  width: 90%;
  max-width: 100%;
  margin: 0 auto;
  padding: 6em 0
}

.cd-timeline__container::before {
  /* this is the vertical line */
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  height: 100%;
  width: 10px;
  background: #1EA9DD
}

@media only screen and (min-width: 1170px) {
  .cd-timeline__container::before {
    left: 50%;
    margin-left: -7px;
  }
}

.cd-timeline__block {
  position: relative;
  margin: 2em 0;
}

.cd-timeline__block:after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}

.cd-timeline__block:first-child {
  margin-top: 0;
}

.cd-timeline__block:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 1170px) {
  .cd-timeline__block {
    margin: 4em 0;
    min-height: 300px;
  }
}

.cd-timeline__img {
	width: 240px;
	/* height: 157px; */
	left: 50%;
	margin-left: -128px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	position:absolute;
}

.cd-timeline__img img {
	display: block;
	width: 250px;
	/* height: 147.5px; */
	position: relative;
	left: 8%;
	top: 8%;
	margin-left: -12px;
	margin-top: -12px;
	border-radius: 200px;
	border:7px solid #1EA9DD;
}

@media only screen and (min-width: 1170px) {
  .cd-timeline__img {
	width: 240px;
	/* height: 157px; */
	left: 50%;
	margin-left: -128px;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}
  .cd-timeline__img.cd-timeline__img--bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-1 0.6s;
            animation: cd-bounce-1 0.6s;
  }
}

@-webkit-keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes cd-bounce-1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.5);
            transform: scale(0.5);
  }
  60% {
    opacity: 1;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.cd-timeline__content {
  position: relative;
  margin-left: 90px;
  background: #fff;
  border-radius: 2px;
  padding: 1em;
  -webkit-box-shadow: 0 3px 0 #d7e4ed;
          box-shadow: 0 3px 0 #d7e4ed;
}

.cd-timeline__content:after {
  /* clearfix */
  content: "";
  display: table;
  clear: both;
}

.cd-timeline__content::before {
  /* triangle next to content block */
  content: '';
  position: absolute;
  top: 16px;
  right: 100%;
  height: 0;
  width: 0;
  border: 15px solid transparent;
  border-right: 15px solid #fff;
}

.cd-timeline__content p, .cd-timeline__content div {
	margin: 1em 0;
	line-height: 1.6;
	color: #000;
	font-weight: 300 !important;
	letter-spacing: 0.6px;
	font-size: 16px;
}
.cd-timeline__content h3 {
	color: #000;
	font-size: 28px;
	font-weight: 500 !important;
}
.cd-timeline__read-more,
.cd-timeline__date {
  display: inline-block;
}

.cd-timeline__read-more {
  float: right;
  padding: .8em 1em;
  background: #acb7c0;
  border-radius: 0.25em;
}

.cd-timeline__read-more:hover {
  background-color: #bac4cb;
}

.cd-timeline__date {
  float: left;
  padding: .8em 0;
  opacity: .7;
}

@media only screen and (max-width: 1169px) {
.cd-timeline__img {
	width: 70px;
	/* height: 157px; */
	left: 19px;
	margin-left: auto;
}
.cd-timeline__img img {
	width: 70px;
}
}
@media only screen and (min-width: 1024px) and (max-width:1169px) {
   .cd-timeline__img {
	width: 70px;
	/* height: 157px; */
	left: -5px;
	margin-left: auto;
}
}

@media only screen and (min-width: 1170px) {
  .cd-timeline__content {
    margin-left: 0;
    padding: 1.2em;
    width: 41%;
    /* Force Hardware Acceleration */
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  .cd-timeline__content::before {
    top: 24px;
    left: 100%;
    border-color: transparent;
    border-left-color: #fff;
  }
  .cd-timeline__read-more {
    float: left;
  }
  .cd-timeline__date {
    position: absolute;
    width: 100%;
    left: 122%;
    top: 6px;
  }
   .cd-timeline__block:nth-child(odd) .cd-timeline__content {
        position:relative;
        left:-46px;
      }
  .cd-timeline__block:nth-child(even) .cd-timeline__content {
    float: right;
    position: relative;
right: -46px !important;
  }
  .cd-timeline__block:nth-child(even) .cd-timeline__content::before {
    top: 24px;
    left: auto;
    right: 100%;
    border-color: transparent;
    border-right-color: #fff;
  }
  .cd-timeline__block:nth-child(even) .cd-timeline__read-more {
    float: right;
  }
  .cd-timeline__block:nth-child(even) .cd-timeline__date {
    left: auto;
    right: 122%;
    text-align: right;
  }
  .cd-timeline__content.cd-timeline__content--bounce-in {
    visibility: visible;
    -webkit-animation: cd-bounce-2 0.6s;
            animation: cd-bounce-2 0.6s;
  }
}

@media only screen and (min-width: 1170px) {
  /* inverse bounce effect on even content blocks */
  .cd-timeline__block:nth-child(even) .cd-timeline__content.cd-timeline__content--bounce-in {
    -webkit-animation: cd-bounce-2-inverse 0.6s;
            animation: cd-bounce-2-inverse 0.6s;
  }
}

@-webkit-keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes cd-bounce-2 {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(20px);
            transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes cd-bounce-2-inverse {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.cd-timeline__block:nth-child(2n) .cd-timeline__content{
    float:right;
}
.our-process .vc_custom_heading {
	background: #1EA9DD;
	margin-bottom: 0;
	padding: 10px 0;
	width: 70%;
	margin: 0 auto;
	border-radius: 20px;
}
@media only screen and (max-width:1024px){
.our-process .vc_custom_heading {
	width: 100%;
	border-radius: 0px;
}
.cd-timeline__container {
	width: 100%;
}
.cd-timeline__container::before {
	left: 43px;
}
}

.parallax100{
    background: url(http://build-my-home.com.au/wp-content/uploads/istockprocessbg1.jpg);
    background-size:100%;
}
.parallax100 .site-inner, .parallax100 .entry {
	background-color: transparent;
}
.parallax-window .site-inner, .parallax-window .entry {
	background-color: transparent;
}
.parallax-window {
    min-height: 50px;
    /*background: #1EA9DD33*/
}


.responsiveGallery-wrapper li {
	margin-top: -92px !important
}
.w-gallery {
	height: 165px !important
}

#side_popup img {
	position:relative;
	top:-10px;
	width:100px
}
#side_popup {
	background: rgba(255, 255, 255, 0.7);
	position: fixed;
	left: -450px;
	width: 320px;
	display: block;
	transition: left 0.3s;
	bottom: 0;
	height: 220px;
	z-index: 99999;
	border-radius: 5px;
	border: 5px solid #77A126E6;
	box-shadow: 0 0 11px -5px #000;
}

#side_popup a {
	display: block;
	color: #fff;
	text-align: center;
	padding: 7px;
	text-decoration: none;
	font-size: 14px;
	background: #8EB73DCC;
	display: block !important;
	height: 100%;
}

	/*
  	Flaticon icon font: Flaticon
  	Creation date: 10/08/2018 19:13
  	*/

@font-face {
  font-family: "Flaticon";
  src: url("./Flaticon.eot");
  src: url("./Flaticon.eot?#iefix") format("embedded-opentype"),
       url("./Flaticon.woff") format("woff"),
       url("./Flaticon.ttf") format("truetype"),
       url("./Flaticon.svg#Flaticon") format("svg");
  font-weight: normal;
  font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
  @font-face {
    font-family: "Flaticon";
    src: url("./Flaticon.svg#Flaticon") format("svg");
  }
}

[class^="flaticon-"]:before, [class*=" flaticon-"]:before,
[class^="flaticon-"]:after, [class*=" flaticon-"]:after {
  font-family: Flaticon;
        font-size: 20px;
font-style: normal;
margin-left: 20px;
}

.flaticon-copy:before { content: "\f100"; }
