.strong {
	font-weight: 700;
}

/*acordeon.............................*/

.acc-container {
  width:100%;
  margin:10px auto 0 auto;
  /*-webkit-border-radius:8px;
  -moz-border-radius:8px;
  -o-border-radius:8px;
  border-radius:8px;*/
  overflow:hidden;
}

.acc-btn { 
  width:100%;
  margin:0 auto;
  /*padding:20px 25px;*/
  cursor:pointer;
  /*background:#34495E;
  border-bottom:1px solid #2C3E50;*/
}

.acc-content {
  height:0;
  width:100%;
  margin:0 auto;
  overflow:hidden;
  /*background:#017d8a;*/
}

.acc-content-inner {
  padding:5px 0 15px 0;
  overflow:hidden;
}

.open {
  height:auto;
  overflow:hidden;
}

h1 {
  font-family: 'oswaldregular';
  font-weight: 100;
  color:rgba(51,152,163,0.85);
  font-size:1em;
  display:block;
  float:left;
}

.acc-btn span {
	display:block;
	float:right;
	margin:5px 0 0 15px;
}

.selected {
	font-family: 'oswaldregular';
	font-weight: 100;
	font-size: 1em;
	float: left;
	position:relative;
	color:#008c9b;
	padding:0px 0 15px 0;
	width: 100%;
	border-bottom: solid 1px #008c9b;
	margin-bottom: 15px;
	height:auto;
	overflow:hidden;
}

.selected span {
	font-size:0.9em;
	margin: 0 0 0 15px;
	display:none;
	float:left;

}

/*fin acordeon.........................*/

.contLogo {
	width:100%;
	margin:30px auto;
	position:relative;
	overflow:hidden;
}

.logo_h {
	width:20%;
	float:left;
}

.logo_v {
	width:10%;
	float:left;
}

.logo_v_oc {
	display:none;
}

.logo_h img, .logo_v img {
	width:100%;
}

/* -------------------------------- 

Primary style

-------------------------------- */
*, *::after, *::before {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  /*font-size: 1.6rem;*/
  /*font-family: "PT Sans", sans-serif;*/
  color: #ffffff;
  background-color: #000;
}

a {
  color: #9e1c51;
  text-decoration: none;
}

/* -------------------------------- 

Main Components 

-------------------------------- */
.projects-container {
  margin-top: 60px;
  height: calc(100vh - 60px);
  width: 100vw;
  position: relative;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}
.projects-container::before {
  /* never visible - this is used in jQuery to check the current MQ */
  content: 'mobile';
  display: none;
}
.projects-container .cd-single-project {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 36%;
  overflow: hidden;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.4s;
  -moz-transition: -moz-transform 0.4s;
  transition: transform 0.4s;
  /* on mobile -  move items outside the viewport */
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.projects-container .cd-single-project::after {
  /* background image */
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 33vh;
  width: 100%;
  background-image: url("../img/img-1-small.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: opacity 0.5s, height 0.4s;
  -moz-transition: opacity 0.5s, height 0.4s;
  transition: opacity 0.5s, height 0.4s;
}
.projects-container .cd-single-project::before {
  /* never visible - this is used in jQuery to detect if the background image has been loaded  */
  content: 'img/img-1-small.jpg';
  display: none;
}
.projects-container .cd-single-project:nth-of-type(2) {
  top: 33vh;
}
.projects-container .cd-single-project:nth-of-type(2)::after {
  background-image: url("../img/img-2-small.jpg");
}
.projects-container .cd-single-project:nth-of-type(2)::before {
  content: 'img/img-2-small.jpg';
}
.projects-container .cd-single-project:nth-of-type(3) {
  top: 66vh;
}
.projects-container .cd-single-project:nth-of-type(3)::after {
  background-image: url("../img/img-3-small.jpg");
}
.projects-container .cd-single-project:nth-of-type(3)::before {
  content: 'img/img-3-small.jpg';
}
.projects-container .cd-single-project:nth-of-type(4) {
  top: 75vh;
}
.projects-container .cd-single-project:nth-of-type(4)::after {
  background-image: url("../img/img-4-small.jpg");
}
.projects-container .cd-single-project:nth-of-type(4)::before {
  content: 'img/img-4-small.jpg';
}
.projects-container .cd-single-project.is-loaded {
  /* move items in the viewport when background images have been loaded */
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.projects-container .cd-single-project.is-full-width {
  /* selected item */
  top: 0;
  height: auto;
  z-index: 1;
  cursor: auto;
  background:#fff;
  -webkit-transition: z-index 0s 0s, top 0.4s 0s;
  -moz-transition: z-index 0s 0s, top 0.4s 0s;
  transition: z-index 0s 0s, top 0.4s 0s;
}
.projects-container .cd-single-project.is-full-width::after {
  height: 100vh;
}
@media only screen and (min-width: 1024px) {
  .projects-container::before {
    /* never visible - this is used in jQuery to check the current MQ */
    content: 'desktop';
  }
  .projects-container .cd-single-project {
    width: 33vw;
    height: 100%;
    opacity: 0;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transition: width 0s;
    -moz-transition: width 0s;
    transition: width 0s;
  }
  .projects-container .cd-single-project:first-of-type::before {
    content: 'img/img-1-large.jpg';
  }
  .projects-container .cd-single-project:first-of-type::after {
    background-image: url("../img/img-1-large.jpg");
  }
  .projects-container .cd-single-project:nth-of-type(2) {
    top: 0;
    left: 33vw;
  }
  .projects-container .cd-single-project:nth-of-type(2)::before {
    content: 'img/img-2-large.jpg';
  }
  .projects-container .cd-single-project:nth-of-type(2)::after {
    background-image: url("../img/img-2-large.jpg");
  }
  .projects-container .cd-single-project:nth-of-type(3) {
    top: 0;
    left: 66vw;
  }
  .projects-container .cd-single-project:nth-of-type(3)::before {
    content: 'img/img-3-large.jpg';
  }
  .projects-container .cd-single-project:nth-of-type(3)::after {
    background-image: url("../img/img-3-large.jpg");
  }
  .projects-container .cd-single-project:nth-of-type(4) {
    top: 0;
    left: 75vw;
  }
  .projects-container .cd-single-project:nth-of-type(4)::before {
    content: 'img/img-4-large.jpg';
  }
  .projects-container .cd-single-project:nth-of-type(4)::after {
    background-image: url("../img/img-4-large.jpg");
  }
  .projects-container .cd-single-project::after {
    height: 100vh;
    width: 100%;
    opacity: 0;
  }
  .projects-container .cd-single-project.is-loaded {
    /* show items when background images have been loaded */
    opacity: 1;
  }
  .projects-container .cd-single-project.is-loaded::after {
    opacity: 1;
  }
  .projects-container .cd-single-project.is-full-width {
    /* selected item */
    left: 0vw;
    width: 100vw;
    -webkit-transition: width 0.4s 0s, z-index 0s 0s, left 0.4s 0s;
    -moz-transition: width 0.4s 0s, z-index 0s 0s, left 0.4s 0s;
    transition: width 0.4s 0s, z-index 0s 0s, left 0.4s 0s;
  }
}
@media only screen and (min-width: 1170px) {
  .projects-container .cd-single-project::after {
    background-attachment: fixed;
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: -webkit-transform 0.8s, opacity 0.5s;
    -moz-transition: -moz-transform 0.8s, opacity 0.5s;
    transition: transform 0.8s, opacity 0.5s;
  }
  .projects-container .cd-single-project.is-loaded::after {
    opacity: 0;
  }
  .no-touch .projects-container .cd-single-project:hover::after, .projects-container .cd-single-project.is-full-width.is-loaded::after {
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}

.cd-title {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 12.5vh;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  text-align: center;
}
.is-full-width .cd-title {
  top: 50vh;
  -webkit-transition: opacity 0s, top 0.4s;
  -moz-transition: opacity 0s, top 0.4s;
  transition: opacity 0s, top 0.4s;
}
.cd-title > * {
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-title h2 {

	  font-family: 'oswaldlight';
    font-size: 1.7em;
  line-height: 1.5;
  font-weight: 700;
}
.cd-title p {
  font-size: 1em;
  font-family: 'oxygenregular';
  /*font-style: italic;*/
  line-height: 1.2;
  padding: .4em 2em;
  display: block;
  opacity: 1;
}

.open {
  height:auto;
  overflow:hidden;
}


.selected {
  font-family: 'oswaldregular';
  font-weight: 100;
	font-size: 1em;
	float: left;
	position:relative;
	color:#008c9b;
	padding:0px 0 15px 0;
	width: 100%;
	border-bottom: solid 1px #008c9b;
	margin-bottom: 15px;
	overflow:hidden;
}

@media only screen and (min-width: 1024px) {
  .cd-title {
    top: 50vh;
    width: 33vw;
    opacity: 0;
    -webkit-transform: translateY(-50%) translateX(-20px);
    -moz-transform: translateY(-50%) translateX(-20px);
    -ms-transform: translateY(-50%) translateX(-20px);
    -o-transform: translateY(-50%) translateX(-20px);
    transform: translateY(-50%) translateX(-20px);
  }
  .is-loaded .cd-title {
    opacity: 1;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: -webkit-transform 0.6s, opacity 0.6s, left 0.4s;
    -moz-transition: -moz-transform 0.6s, opacity 0.6s, left 0.4s;
    transition: transform 0.6s, opacity 0.6s, left 0.4s;
  }
  .is-loaded.is-full-width .cd-title {
    left: 33vw;
    -webkit-transition: -webkit-transform 0.6s, opacity 0s, left 0.4s;
    -moz-transition: -moz-transform 0.6s, opacity 0s, left 0.4s;
    transition: transform 0.6s, opacity 0s, left 0.4s;
  }
  .cd-title p {
    display: block;
  }
}
@media only screen and (min-width: 1170px) {
  .cd-title h2 {
    font-size: 1.7em;
  }
}

.cd-project-info {
  clear: both;
  visibility: hidden;
  opacity: 0;
  margin: 100vh 0 81px 0;
  width:100%;
  position:relative;
  padding-top: 4em;
  padding-bottom:0;
  cursor: auto;
  background-color: #ffffff;
  color: #3f538e;
  -webkit-transition: opacity 0.4s 0s, visibility 0s 0.4s;
  -moz-transition: opacity 0.4s 0s, visibility 0s 0.4s;
  transition: opacity 0.4s 0s, visibility 0s 0.4s;
}

.proyectInfoColor {
	width:100%;
	margin-top: 40px;
	position:relative;
	background:#e7e7e7;
	overflow:hidden;
	padding-bottom:30px;
}

.infoajust {
	width:75%;
	max-width: 1200px;
	overflow:hidden;
	margin: 20px auto;
}

.infoajust_fin {
	width:75%;
	max-width: 1200px;
	overflow:hidden;
	margin: 20px auto;
	padding-bottom:40px;
}

.titularextMod {
  font-family: 'oswaldregular';
  padding-top:50px;
  padding-bottom:30px;
  color:#00454d;
  font-size: 1.5em;	
}

.titularextMod_wh {
  font-family: 'oswaldregular';
  padding-top:10px;
  padding-bottom:30px;
  color:#fff;
  font-size: 1.5em;	
}

.point-green {
	float:left;
	position:relative;
	margin: 0 0 10px 0;
	width:100%;
  color:#00454d;
}

.point-green span {
	margin: 23px 20px 0 0;
	float:left;
	display:block;
}

.pgreen {
	float:left;
	width:90%;
}

.wh {
	color:#fff;
	margin: 0 0 0 15px;
	font-family: 'oxygenregular';
	font-size: 1em;
	float: left;
	width:80%;
}

.subTituloInfo {
	font-family: 'oxygenbold';
	font-size: 1.2em;
	float: left;
	position:relative;
	color:#008c9b;
	padding:30px 0 15px 0;
	width: 100%;
	border-bottom: solid 1px #008c9b;
	margin-bottom: 30px;
}

.descriptInfo {
	position:relative;
	color:#00454d;
	font-size:1.1em;
	line-height: 1.9em;
	font-family: 'oxygenregular';
	float:left;
	width:100%;
}


.is-full-width .cd-project-info {
  visibility: visible;
  opacity: 1;

}

.descriptInfo span.fa-check {
	margin:10px 20px 0px 0px;
	float:left;
	padding-bottom:10px;
}
/*.cd-project-info p {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  line-height: 2;
}*/

.descriptInfo p {
	margin: 0 0 20px 10px;
	float:left;
	width:90%;
}

@media only screen and (min-width: 1024px) {
  .cd-project-info {
    position: relative;
    z-index: 1;
  }
}

.projects-container .cd-closer,
.projects-container .cd-scroll {
  display: block;
  z-index: 1;
  width: 44px;
  height: 44px;
  /* image replacement */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  visibility: hidden;
  -webkit-transition: -webkit-transform 1s 0s, visibility 0s 1s;
  -moz-transition: -moz-transform 1s 0s, visibility 0s 1s;
  transition: transform 1s 0s, visibility 0s 1s;
}

.projects-container .cd-closer {
  position: fixed;
  top: 110px;
  right: 5%;
  background: url("../img/cd-icon-close-mobile.png") no-repeat center center;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
}
@media only screen and (min-width: 1170px) {
  .projects-container .cd-closer {
    background-image: url("../img/cd-icon-close-desktop.png");
  }
}

.projects-container .cd-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0);
  -moz-transform: translateX(-50%) scale(0);
  -ms-transform: translateX(-50%) scale(0);
  -o-transform: translateX(-50%) scale(0);
  transform: translateX(-50%) scale(0);
  background: url("../img/cd-icon-arrow-mobile.png") no-repeat center center;
}
@media only screen and (min-width: 1170px) {
  .projects-container .cd-scroll {
    background-image: url("../img/cd-icon-arrow-desktop.png");
  }
}

.project-is-open .cd-closer,
.project-is-open .cd-scroll {
  visibility: visible;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 0.4s 0s, visibility 0s 0s;
  -moz-transition: -moz-transform 0.4s 0s, visibility 0s 0s;
  transition: transform 0.4s 0s, visibility 0s 0s;
}

.project-is-open .cd-scroll {
  -webkit-transform: translateX(-50%) scale(1);
  -moz-transform: translateX(-50%) scale(1);
  -ms-transform: translateX(-50%) scale(1);
  -o-transform: translateX(-50%) scale(1);
  transform: translateX(-50%) scale(1);
  -webkit-animation: cd-translate 1.2s 0.4s;
  -moz-animation: cd-translate 1.2s 0.4s;
  animation: cd-translate 1.2s 0.4s;
  -webkit-animation-iteration-count: 2;
  -moz-animation-iteration-count: 2;
  animation-iteration-count: 2;
}

.no-touch .project-is-open .cd-closer:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2);
  transform: scale(1.2);
}

.no-touch .project-is-open .cd-scroll:hover {
  -webkit-transform: translateX(-50%) scale(1.2);
  -moz-transform: translateX(-50%) scale(1.2);
  -ms-transform: translateX(-50%) scale(1.2);
  -o-transform: translateX(-50%) scale(1.2);
  transform: translateX(-50%) scale(1.2);
}

@-webkit-keyframes cd-translate {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(-50%) scale(1);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
  }
}
@-moz-keyframes cd-translate {
  0% {
    -moz-transform: translateX(-50%) scale(1);
  }
  50% {
    -moz-transform: translateY(10px) translateX(-50%) scale(1);
  }
  100% {
    -moz-transform: translateX(-50%) scale(1);
  }
}
@keyframes cd-translate {
  0% {
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
  50% {
    -webkit-transform: translateY(10px) translateX(-50%) scale(1);
    -moz-transform: translateY(10px) translateX(-50%) scale(1);
    -ms-transform: translateY(10px) translateX(-50%) scale(1);
    -o-transform: translateY(10px) translateX(-50%) scale(1);
    transform: translateY(10px) translateX(-50%) scale(1);
  }
  100% {
    -webkit-transform: translateX(-50%) scale(1);
    -moz-transform: translateX(-50%) scale(1);
    -ms-transform: translateX(-50%) scale(1);
    -o-transform: translateX(-50%) scale(1);
    transform: translateX(-50%) scale(1);
  }
}


@media only screen and (min-width:480px) and (max-width: 767px) {
	
.contLogo {
	width:100%;
	margin:30px auto;
	position:relative;
	overflow:hidden;
}

.logo_h {
	width:32.5%;
	float:left;
}

.logo_v {
	width:32.5%;
	float:left;
}

.logo_v_oc {
	display:block;
	float:left;
	width:32.5%;
}

.logo_h img, .logo_v img {
	width:100%;
}	

.descriptInfo p {
    margin: 0 0 20px 10px;
    float: left;
    width: 85%;
}
	
}

@media only screen and (min-width:300px) and (max-width: 479px) {

.contLogo {
	width:100%;
	margin:30px auto;
	position:relative;
	overflow:hidden;
}

.logo_h {
	width:32.5%;
	float:left;
}

.logo_v {
	width:32.5%;
	float:left;
}

.logo_v_oc {
	display:block;
	float:left;
	width:32.5%;
}

.logo_h img, .logo_v img {
	width:100%;
}	

.acc-btn span {
	display:block;
	float:left;
	margin:5px 15px 0 0;
	height:auto;
	width:100%;
}

.selected span {
	display:none;
}

.descriptInfo p {
    margin: 0 0 20px 0;
    float: left;
    width: 85%;
}

.descriptInfo span.fa-check {
    margin: 10px 10px 0 0;
    float: left;
    padding-bottom: 10px;
    font-size: 0.8em;
}

h1 {
    font-family: 'oswaldregular';
    font-weight: 100;
    color: rgba(51,152,163,0.85);
    font-size: 1em;
    display: block;
    float: left;
    line-height: 1.1em;
}

	
}
