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

Primary style

-------------------------------- */
html * {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

*, *:after, *:before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

Modules - reusable parts of our design

-------------------------------- */
.cd-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
.cd-container::after {
  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

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

Main components 

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


@media only screen and (min-width: 1170px) {
  body.new-color-1::before {
    background-color: #b2b2b2;
  }

  #part-3 .inner.new-color-2::before {
    background-color: #bf69c0;
  }

  #part-3 .inner.new-color-3::before {
    background-color: #699ec0;
  }
}
#part-3 .inner::before, #part-3 .inner::after {
  /* the 2 underneath colored sections */
  content: '';
  position: fixed;
  /* trick to remove some annoying flickering on webkit browsers */
  width: 50%;
  max-width: 1170px;
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
  height: 50%;
  z-index: -1;
}

#part-3 .inner::before {
  top: 0;
  background-color: #b2b2b2;
  -webkit-transition: all 0.8s;
  -moz-transition: all 0.8s;
  transition: all 0.8s;
}

#part-3 .inner::after {
  top: 50%;
  background-color: #71495b;
}


.cd-service {
  position: relative;
  z-index: 2;
  min-height: 10px;
}
.cd-service .titre{
  content: '';
  z-index: 2;
  top: 0;
  min-height: 30px;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.cd-service.cd-service-1 .titre{
	background-image: url(../img/svg/cd-icon-1-large.svg);
}
.cd-service.cd-service-2 .titre{
	background-image: url(../img/svg/cd-icon-2-large.svg);
}
.cd-service.cd-service-3 .titre{
	background-image: url(../img/svg/cd-icon-3-large.svg);
}

.cd-service.trait .bloc {
	min-height: 10px;	
}
.cd-service.trait .titre {
	min-height: 10px;
	background-image: url(../img/svg/trait.svg);
  top: 0;
}

.cd-service h2 {
  text-transform: uppercase;
  color: white;
  margin-bottom: 1em;
}
.cd-service p {
  color: rgba(255, 255, 255, 0.5);
  font-family: 'euclid_flexlight';
}
@media only screen and (min-width: 1170px) {
  .cd-service {
    margin-left:0;
  }

  .cd-service.cd-service-divider:first-child, .cd-service.cd-service-divider:last-child {
    min-height: 50px;
    padding: 0;
  }

  .cd-service h2, .cd-service p {
    color: #053c5f;
    -webkit-transition: color, 0.5s;
    -moz-transition: color, 0.5s;
    transition: color, 0.5s;
  }
  .cd-service h2 {
    font-size: 30px;
  }
  .cd-service p {
   
  }
  .cd-service.focus h2 {
    color: white;
  }
  .cd-service.focus p {
    color: white;
  }
}
@media only screen and (max-width: 1023px) {
	#part-3 .inner::before, #part-3 .inner::after{
		-webkit-transform: translateX(0%);
	    -moz-transform: translateX(0%);
	    -ms-transform: translateX(0%);
	    -o-transform: translateX(0%);
	    transform: translateX(0%); 
	    left: 60px;
	}
}
@media only screen and (max-width: 600px) {
	#part-3 .inner::before, #part-3 .inner::after{
	    left: 30px;
	}
}