/*fuente mías*/
@font-face {
    font-family: "Jeanne";
    font-style: normal;
    font-weight: normal;
    src:  url("fonts/steve_mehallo_-_jeannemodernoot-roman-webfont.eot?#iefix") format("embedded-opentype"),
          url("fonts/steve_mehallo_-_jeannemodernoot-roman-webfont.svg#jeanne_moderno_ot_romanroman") format("svg"),
          url("fonts/steve_mehallo_-_jeannemodernoot-roman-webfont.woff") format("woff2"),
          url("fonts/steve_mehallo_-_jeannemodernoot-roman-webfont.woff") format("woff");
}
@font-face {
    font-family: "Timberline";
    font-style: normal;
    font-weight: normal;
    src:  url("fonts/Timberline-Regular.eot") format("embedded-opentype"),
          url("fonts/Timberline-Regular.woff2") format("woff2"),
          url("fonts/Timberline-Regular.woff") format("woff");
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {display: block;}
body {line-height: 1;}
ol, ul {list-style: none;}
blockquote, q {quotes: none;}
blockquote:before, blockquote:after, q:before, q:after {content: '';content: none;}
table {border-collapse: collapse;border-spacing: 0;}
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;
}

body {
  font-size: 100%;
  font-family: "Lato", sans-serif;
  color: #333333;
  background-color: #f90c50;
  /* prevent ie from showing the horizontal scrollbar */
  overflow-x: hidden;
}
body.overflow-hidden {
  /* when author bio is visible, the out-of-focus content won't scroll */
  overflow: hidden;
}

a {
  color: #f25f5c;
  text-decoration: none;
}
a[href^="#"] {color: #007abc;text-decoration:none;}
a[href^="#"]:hover {color: #007abc;text-decoration:none;}
a[name], a[name]:hover {text-decoration: none;color:#007abc;}
a[href^="mailto:"] {color: #f90c50;}
a[href^="mailto:"]:hover {color: #000000;text-decoration: none;text-shadow: 2px 1px 6px rgba(0,0,0,0.6);}
a[href^="http:"], p a[href$=".htm"], p a[href$=".html"] {
  background-position: 0 91%;
  background-repeat: no-repeat;
  background-size: 100% 1px;
  color: #f90c50;
  outline: medium none;
  text-decoration: none;
}
a[href^="http:"]:hover {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(-35%,#fff), color-stop(50%,#444), color-stop(160%,#fff));
  background-image: -webkit-linear-gradient(left, #fff -35%,#444 50%,#fff 160%);
  background-image: -moz-linear-gradient(left, #fff -35%, #444 50%, #fff 160%);
  background-image: -ms-linear-gradient(left, #fff -35%,#444 50%,#fff 160%);
  background-image: -o-linear-gradient(left, #fff -35%,#444 50%,#fff 160%);
  background-image: linear-gradient(left, #fff -35%,#444 50%,#fff 160%);
  color: #f90c50;
  text-decoration: none;
}
a[href$=".pdf"] {
  background: transparent url("doc-pdf.png") no-repeat scroll 40px 0 / 30px auto;
  cursor: help;
  display: inline-block;
  height: 40px;
  width: 70px;
}
a[href$=".pdf"]:hover {
  background: transparent url("doc-pdf.png") no-repeat scroll 30px 0 / 30px auto;
}
img {max-width: 100%;}
h1, h2, h3, h4, h5, h6 {
  font-family: "Jeanne",serif;
  line-height: 1em;
}

/*Modules - reusable parts of our design*/
.cd-container {
  /* this class is used to give a max-width to the element it is applied to, and center it horizontally when it reaches that max-width */
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.cd-container::after {  /* clearfix */
  content: '';
  display: table;
  clear: both;
}

/*-----------------------Main components*/
main {
  position: relative;
  z-index: 2;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
main.slide-out {
  /* the main element slides to the left when the author bio is visible */
  -webkit-transform: translateX(-270px);
  -moz-transform: translateX(-270px);
  -ms-transform: translateX(-270px);
  -o-transform: translateX(-270px);
  transform: translateX(-270px);
}
main.slide-out .cd-overlay {
  /* the overlay layer gets visible when the author bio slides in */
  display: block;
  -webkit-animation: cd-fade-in 0.3s;
  -moz-animation: cd-fade-in 0.3s;
  animation: cd-fade-in 0.3s;
}

.cd-section {
  padding: 2em 0;
  text-align: center;
}
.cd-section .cd-container {
  /* this modifies the .cd-container default max-width */
  max-width: 768px;
}
.cd-section h2 {
  font-family: "Timberline",sans-serif;
  font-size: 300%;
  font-weight: 700;
}
.cd-container h3 {
  color: #007abc;
  font-family: georgia,serif;
  font-size: 130%;
  font-style: italic;
  margin: 30px;
}
.cd-section .slogan {
  color: #000;
  font-size: 150%;
  font-weight: 300;
  line-height: 1;
  margin-top: 10px;
  text-align: right;
}
.cd-section p {
  color: #000;
  font-size: 160%;
  font-weight: 300;
  line-height: 30px;
  text-align: left;
}
header {background: #f90c50;}
header h1 {
  color: #ffa0d0;
  font-size:12vw;
  text-shadow: 2px 1px 0 #fff, -1px -1px 80px #5f0c50, -1px -1px 0 #000;
  text-align: left;
}
header p {color: #93861d;}

.cd-placeholder-1 {
  background: #fff;
  color: #f90c50;
}
.cd-placeholder-2 {background: #FFF;}
#cd-team {background: #ffecff;}
#cd-team .cd-container {max-width: 1200px;}
#cd-team h2 {color: #FFF;}
#cd-team li {
  margin-bottom: 2em;
  border-radius: 0.25em;
  box-shadow: 0 0 10px rgba(92, 75, 81, 0);
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}
.no-touch #cd-team li:hover {
  box-shadow: 0 0 10px rgba(92, 75, 81, 0.4);
}
.no-touch #cd-team li:hover .cd-img-overlay {
  border-radius: 50%;
  opacity: 1;
}
#cd-team figure {
  position: relative;
}
#cd-team img {
  display: block;
  width: 100%;
  border-radius: .25em .25em 0 0;
}
#cd-team .cd-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(200,15,80, 0.7);
  opacity: 0;
  border-radius: .25em .25em 0 0;
  -webkit-transition: opacity 0.3s;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#cd-team .cd-img-overlay span {
  position: absolute;
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  color: #FFF;
}
#cd-team .cd-member-info {
  background: #fff;
  border-radius: 0 0 5px 5px;
  color: #f90c50;
  font-size: 110%;
  font-style: italic;
  font-weight: 400;
  height: 70px;
  padding-top: 10px;
  text-align: center;
}
#cd-team .cd-member-info span {
  display: block;
  font-weight: normal;
  color: #999999;
  margin-top: .5em;
}

.cd-member-bio {
  position: fixed;
  top: 0;
  right: 0;
  width: 270px;
  height: 100%;
  overflow-y: auto;
  /* smooth scrolling on mobile phones and tablets */
  -webkit-overflow-scrolling: touch;
  background: #f9e0e7;
  z-index: 2;
  /* this how we move the author bio section off the canvas */
  -webkit-transform: translateX(270px);
  -moz-transform: translateX(270px);
  -ms-transform: translateX(270px);
  -o-transform: translateX(270px);
  transform: translateX(270px);
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.cd-member-bio.slide-in {
  /* the author bio section slides in when the user clicks on the team member picture */
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}
.cd-member-bio .cd-member-bio-pict {
  position: relative;
}
.cd-member-bio .cd-member-bio-pict::after {
  /* gradient at the bottom of the image - same color of the background of the section */
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: -webkit-linear-gradient( bottom , #5c4b51, rgba(92, 75, 81, 0));
  background: linear-gradient(to top, #5c4b51, rgba(92, 75, 81, 0));
}
.no-cssgradients .cd-member-bio .cd-member-bio-pict::after {display: none;}
.cd-member-bio img {
  width: 100%;
  display: block;
}
.cd-member-bio .cd-bio-content {
  padding: 1em;
  color: #5e5457;
}
.cd-member-bio .cd-bio-content h1 {
  color: #f90c50;
  font-size: 220%;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}
.cd-member-bio .cd-bio-content p {
  font-size: 104%;
  margin: 1em 0;
  line-height: 1.4;
}
.cd-member-bio-close {
  width: 32px;
  height: 32px;
  overflow: hidden;
  position: fixed;
  top: 10px;
  right: 10px;
  background: url("cd-icon-close.svg") no-repeat center center;
  text-indent: 100%;
  white-space: nowrap;
  z-index: 3;
  display: none;
}
.cd-member-bio-close.is-visible {
  display: block;
  -webkit-animation: cd-move-in 0.8s;
  -moz-animation: cd-move-in 0.8s;
  animation: cd-move-in 0.8s;
}
.cd-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(200, 15, 80, 0.8);
  cursor: pointer;
  display: none;
}

@media only screen and (min-width: 768px) {/************************TABLET********************/
  header h1 {font-size:7.5vw;}
  .cd-section .slogan {font-size: 185%;margin-top: 2px;}
  main.slide-out {
    /* change in size of the author bio section */
    -webkit-transform: translateX(-600px);
    -moz-transform: translateX(-600px);
    -ms-transform: translateX(-600px);
    -o-transform: translateX(-600px);
    transform: translateX(-600px);
  }
  .cd-section {padding: 4em;}
  .cd-section p {
  font-size: 180%;
  line-height: 1.1;
  text-align: justify;
  }
  .cd-container h3 {
  font-size: 160%;
  line-height: 1.1;
  }
  #cd-team li {
    width: 31%;
    float: left;
    margin-right: 3.5%;
  }
  #cd-team li:nth-child(3n) {margin-right: 0;}
  .cd-member-bio {
    width: 600px;
    -webkit-transform: translateX(600px);
    -moz-transform: translateX(600px);
    -ms-transform: translateX(600px);
    -o-transform: translateX(600px);
    transform: translateX(600px);
  }
  .cd-member-bio .cd-bio-content {padding: 2em;}
  .cd-member-bio .cd-bio-content p {line-height: 1.6;margin: 2em 0;}

}


@media only screen and (min-width: 1170px) {/************************DESKTOP********************/
  header h1 {font-size:5vw;}
  .cd-section .slogan {font-size: 160%;}
  main.slide-out {
    -webkit-transform: translateX(-800px);
    -moz-transform: translateX(-800px);
    -ms-transform: translateX(-800px);
    -o-transform: translateX(-800px);
    transform: translateX(-800px);
  }
  .cd-section {padding: 6em;}
  .cd-section h2 {margin-bottom:0;}
  .cd-container h3 {
   font-size: 160%;
   line-height: 1.3;
   margin: 10px 60px;
  }
  .cd-section p {
   font-size: 180%;
   line-height: 1.4;
   text-align: justify;
  }
  .cd-member-bio {
    width: 800px;
    -webkit-transform: translateX(800px);
    -moz-transform: translateX(800px);
    -ms-transform: translateX(800px);
    -o-transform: translateX(800px);
    transform: translateX(800px);
  }
  .cd-member-bio .cd-member-bio-pict::after {height: 150px;}
  .cd-member-bio .cd-bio-content {
    padding: 4em;
    /* we move the content up so the title is over the color gradient */
    -webkit-transform: translateY(-80px);
    -moz-transform: translateY(-80px);
    -ms-transform: translateY(-80px);
    -o-transform: translateY(-80px);
    transform: translateY(-80px);
  }
  .cd-member-bio .cd-bio-content h1 {font-size: 40px;}
  .cd-member-bio .cd-bio-content p {font-size: 16px;}
  .no-cssgradients .cd-member-bio .cd-bio-content {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .cd-member-bio-close {right: 20px;top: 20px;}
}
/*-------------------------------- */
@-webkit-keyframes cd-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-moz-keyframes cd-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes cd-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@-webkit-keyframes cd-move-in {
  0% {
    -webkit-transform: translateX(100px);
  }

  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes cd-move-in {
  0% {
    -moz-transform: translateX(100px);
  }

  100% {
    -moz-transform: translateX(0);
  }
}
@keyframes cd-move-in {
  0% {
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
    transform: translateX(100px);
  }

  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
