@charset "UTF-8";
@import url(fonts/fonts-style.css);
@import url(reset.css);
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap");
/** ESTILOS GENERALES **/
h1 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 3em;
  font-weight: 400;
  line-height: 1em;
  color: #282E2A;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.3rem;
  }
}

h2 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  h2 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
  }
}

h3 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 1.1rem;
  }
}

h4 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  h4 {
    font-size: 1.2rem;
  }
}

h5 {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 2rem;
  text-transform: uppercase;
  color: #8F8D86;
}
@media screen and (max-width: 768px) {
  h5 {
    font-size: 0.9rem;
  }
}

p, span {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1em;
  font-weight: 300;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  p, span {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}

b {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  b {
    font-size: 0.9rem;
  }
}

.bold {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .bold {
    font-size: 0.9rem;
  }
}

.italic {
  font-style: italic;
}

a.link {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1em;
  font-weight: 300;
  color: #282E2A;
  opacity: 1;
  transition: all 0.8s ease;
  position: relative;
}
a.link:before, a.link.header_button::after {
  content: " ";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 20%;
  bottom: 0;
  background: #8F8D86;
  height: 1px;
  transition: right 0.3s ease-out;
  -webkit-transition: right 0.3s ease-out;
}
a.link:hover {
  opacity: 0.5;
}
a.link:hover:before, a.link.header_button:hover::after {
  right: 0;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  a.link {
    font-size: 0.9rem;
  }
}

a.btn {
  background-color: #292826;
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 8px 16px;
  border-radius: 4px;
}
a.btn:hover {
  background-color: #8F8D86;
}

.btn__outer {
  margin-top: 24px;
}

.color {
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1em;
  font-weight: 400;
  color: #8F8D86;
}

.screens {
  padding-left: 24px;
}

.text-center {
  text-align: center;
}

.overlay {
  position: relative;
  overflow: hidden;
}
.overlay_inside {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.8);
  transition: all 0.5s ease;
  pointer-events: none;
}
.overlay_h5 {
  color: #ffffff;
  margin-bottom: 10px;
}
.overlay_p {
  font-size: 0.7rem;
  color: #ffffff;
  text-transform: uppercase;
}
.overlay_img {
  height: 2rem;
  margin-bottom: 1rem;
  fill: #ffffff;
}
.overlay:hover .overlay_inside {
  opacity: 1;
}

/** ANIMACIONES **/
/** ANIMACIÓN ITEMS MENÚ **/
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translate(0%);
  }
}
/** ANIMACIÓN SLIDES HERO */
@keyframes heroSlides {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  34% {
    opacity: 0;
  }
  88% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.main {
  margin-top: 4.5em;
}

/*** MAQUETACIÓN ***/
.container {
  width: 100%;
  padding: 4rem 5%;
}
.container-fluid {
  padding: 3rem 0;
}
.container-fluid.cover {
  padding: 0;
}
.container.cover {
  padding: 0 5%;
}

.row {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: top;
  gap: 56px;
}
@media screen and (max-width: 768px) {
  .row {
    flex-direction: column;
    gap: 0;
  }
}

.col {
  flex: 1;
}
.col-6 {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .col-6 {
    width: 100%;
  }
}
.col-5 {
  width: 40%;
}
@media screen and (max-width: 768px) {
  .col-5 {
    width: 100%;
  }
}
.col-4 {
  width: 33.3%;
}
@media screen and (max-width: 768px) {
  .col-4 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .col {
    padding: 1rem 0;
  }
}

/** HOME **/
.transition__div {
  position: fixed;
  top: 4.5rem;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 101;
  background-color: #DBD9CE;
  opacity: 0;
  pointer-events: none;
  transition: 1s ease;
}
.transition__div.is-active {
  pointer-events: all;
  opacity: 1;
}

.header {
  width: 100%;
  padding: 1em 5%;
  position: fixed;
  top: 0;
  background: #ffffff;
  z-index: 99;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #DBD9CE;
}
.header_img {
  max-width: 24px;
}
.header_ul {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  list-style: none;
}
@media screen and (max-width: 768px) {
  .header_ul {
    flex-direction: column;
  }
}
.header_li {
  margin: 0 1rem;
}
.header_li a {
  opacity: 1;
  transition: all 0.8s ease;
  position: relative;
}
.header_li a:before, .header_li a.header_button::after {
  content: " ";
  position: absolute;
  z-index: -1;
  left: 0;
  right: 100%;
  bottom: 0;
  background: #DBD9CE;
  height: 2px;
  transition-property: right;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.header_li a:hover {
  opacity: 0.8;
}
.header_li a:hover:before, .header_li a.header_button:hover::after {
  right: 0;
  text-decoration: none !important;
}
@media screen and (max-width: 768px) {
  .header_li {
    margin: 1rem 0;
  }
}
.header_button {
  cursor: pointer;
  background: #282E2A;
  display: none;
  height: 2px;
  position: relative;
  width: 24px;
}
@media screen and (max-width: 768px) {
  .header_button {
    display: block;
  }
}
.header_button::before, .header_button::after {
  background: #282E2A;
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  transition: all 0.2s ease-out;
  width: 100%;
  top: 5px;
}
.header_button::after {
  top: -5px;
}
.header_button.active {
  background: transparent;
}
.header_button.active::before, .header_button.active::after {
  transform: rotate(-45deg);
  top: 0;
}
.header_button.active::after {
  transform: rotate(45deg);
  top: 0;
}
@media screen and (max-width: 768px) {
  .header > a {
    width: 50%;
  }
  .header_nav {
    width: 100%;
    opacity: 0;
    height: 0vh;
    overflow: hidden;
    transition: all 0.5s ease;
  }
  .header_nav.active {
    opacity: 1;
    min-height: 30vh;
    height: 100%;
  }
  .header_nav.active .header_li {
    opacity: 0;
    animation: fadeIn 1s forwards;
  }
  .header_nav.active .header_li:nth-child(1) {
    animation-delay: 0ms;
  }
  .header_nav.active .header_li:nth-child(2) {
    animation-delay: 100ms;
  }
  .header_nav.active .header_li:nth-child(3) {
    animation-delay: 200ms;
  }
  .header_nav.active .header_li:nth-child(4) {
    animation-delay: 300ms;
  }
  .header_rrss {
    display: none;
    width: 100%;
    justify-content: center;
    margin: 1rem 0;
  }
  .header_rrss.active {
    display: flex;
  }
}

.hero {
  background-color: #ffffff;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.hero_homePage::-webkit-scrollbar {
  display: none;
}
.hero_menu {
  display: none;
}
.hero_left {
  padding: 0 5%;
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: calc(67% + 1.5rem);
}
@media screen and (max-width: 768px) {
  .hero_left {
    width: 100%;
    justify-content: center;
  }
}
.hero_left_header {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
@media screen and (max-width: 768px) {
  .hero_left_header {
    display: none;
  }
}
.hero_left_content {
  width: 80%;
}
@media screen and (max-width: 768px) {
  .hero_left_content {
    width: 100%;
    padding: 2rem 0;
  }
}
.hero_left_btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .hero_left_btn {
    display: block;
  }
}
.hero_right {
  width: calc(30% + 1.5rem);
  height: 100vh;
  overflow: scroll;
  position: relative;
}
.hero_right::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .hero_right {
    width: 100%;
    height: 360px;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    margin-right: 16px;
  }
}
.hero_img {
  width: 100%;
  margin-bottom: 16px;
  display: block;
}
@media screen and (max-width: 768px) {
  .hero_img {
    width: 75%;
    float: none;
    margin: 0 0 0.25%;
    display: inline-block;
    height: 100%;
    zoom: 1;
  }
}
.hero_pretitle {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 1rem;
  color: #8F8D86;
}
.hero_title {
  margin-bottom: 1.2rem;
  line-height: 1.2;
  font-weight: 300;
}
.hero_text {
  width: 60%;
  font-weight: 300;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .hero_text {
    width: 100%;
  }
}
.hero_hr {
  color: #8F8D86;
  background-color: #8F8D86;
  width: 10%;
  height: 3px;
  border: none;
  margin: 2rem 0;
}
@media screen and (max-width: 768px) {
  .hero {
    flex-direction: column;
  }
  .hero_left {
    width: 100%;
    padding: 20% 5% 10%;
  }
  .hero_right {
    width: 100%;
  }
  .hero_menu {
    display: flex;
  }
}

.credit {
  padding: 5rem 0;
}

.footer {
  background-color: #292826;
  padding: 2em 5%;
  text-align: center;
  border-top: 2px solid #8F8D86;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}
.footer_text {
  color: #DBD9CE;
  font-size: 0.8rem;
}
.footer_rrss {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: center;
  flex: 1;
}
.footer_rrss_img {
  width: 20px;
  height: 20px;
  margin: 0 0.8em;
  color: #8F8D86;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.footer_rrss_img:hover {
  color: #DBD9CE;
}

/** PÁGINA DE TRABAJOS **/
.title {
  padding: 3rem 5%;
  text-align: center;
}
.title__pretitle {
  padding-bottom: 1rem;
}

.trabajos {
  padding: 0 5% 1rem;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1em;
  grid-auto-flow: dense;
  margin: 2rem auto;
}
@media screen and (max-width: 768px) {
  .trabajos {
    grid-template-columns: 1fr;
    gap: 1em 0;
  }
}
.trabajos__a {
  position: relative;
  height: 470px;
}
@media screen and (max-width: 480px) {
  .trabajos__a {
    height: 250px;
  }
}
.trabajos__a > img {
  height: 100%;
}
.trabajos__citrixOnAzure {
  background-image: url("./src/citrix-home.png");
  background-size: cover;
}
.trabajos__cc {
  background-image: url("./src/cc-home.png");
  background-size: cover;
}
.trabajos__cicla {
  background-image: url("./src/cicla-home.png");
  background-size: cover;
}
.trabajos__sfera {
  background-image: url("./src/sfera-home.png");
  background-size: cover;
}
.trabajos__kideats {
  background-image: url("./src/kidEats-home.png");
  background-size: cover;
}

/** Páginas trabajos **/
.heroIndiv {
  width: 100%;
  height: auto;
}
.heroIndiv_cicla {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .heroIndiv {
    height: 20vh;
  }
}

.inicio {
  width: 100%;
  padding: 5rem 5%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .inicio {
    padding: 3.5rem 5%;
  }
}

.intro {
  width: 100%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: top;
}
.intro__left {
  width: 75%;
  padding-right: 10%;
}
@media screen and (max-width: 768px) {
  .intro__left {
    width: 100%;
    margin-bottom: 2rem;
    padding-right: 1rem;
  }
}
.intro__right {
  width: 25%;
}
.intro__right__block {
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .intro__right {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .intro {
    flex-direction: column;
    padding: 3.5rem 5%;
  }
}

/** KIDEATS **/
.kidEats-cover {
  max-height: 500px;
}
.kidEats-cover__imgLeft {
  height: 500px;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .kidEats-cover__imgLeft {
    height: auto;
  }
}
.kidEats-cover video {
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .kidEats-cover {
    max-height: none;
  }
}

.value {
  background-color: #00A082;
  color: #ffffff !important;
}
.value h5 {
  color: #DBD9CE;
}
.value__img {
  width: 80%;
  margin: 2rem auto;
}
@media screen and (max-width: 768px) {
  .value__img {
    width: 100%;
  }
}

.mockups {
  align-items: center;
  padding-bottom: 104px;
}
.mockups:nth-last-child(1) {
  padding-bottom: 0;
}

.prototype-video > video {
  width: 75%;
}
@media screen and (max-width: 768px) {
  .prototype-video > video {
    width: 100%;
  }
}

/** SFERA **/
.process {
  margin: 2rem 0 3rem;
  background-color: #F5F5F5;
}
.process__cicla {
  background-color: #FFF8F2;
}
.process__kidEats {
  background-color: #E9F8F5;
}

.ideation__imgs {
  margin-bottom: 3rem;
}

/** CICLA EXCLUSIVE **/
.briefing__left {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .briefing__left {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.briefing__right__block {
  margin-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .briefing__right {
    width: 100%;
  }
}
.briefing__video {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .briefing {
    flex-direction: column;
    padding: 3.5rem 5%;
  }
}

.competitor {
  margin-top: 2rem;
}
.competitor__img {
  width: 65%;
  padding-top: 4rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .competitor__img {
    width: 100%;
  }
}

.insights {
  background: url("src/cicla-bg-insights.png");
  background-size: cover;
  background-position: center;
}
.insights__h5 {
  margin-bottom: 2rem;
}
.insights__block > h3 {
  min-height: 100px;
}
@media screen and (max-width: 768px) {
  .insights__block > h3 {
    min-height: 0;
  }
}
@media screen and (max-width: 768px) {
  .insights__block {
    margin-bottom: 1.5rem;
  }
}

.learnings__img {
  margin-top: 3.5rem;
}
.learnings__img.col {
  flex: auto;
}
@media screen and (max-width: 768px) {
  .learnings__img {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .creation iframe {
    height: 500px;
  }
}

.gaps {
  background-color: #FFF8F2;
  padding: 2rem;
  border-radius: 8px;
}
.gaps__icon {
  width: 40px;
  margin: 0 auto;
  padding-top: 2rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .gaps__icon {
    padding: 0;
  }
}

/** CLOUD CHAMPION **/
.bg-cc {
  background-color: #F2F9FF;
}

.process__h5 {
  margin-bottom: 1.5rem;
}
.process__icon {
  margin-bottom: 24px;
}

/** CITRIX **/
.parts__block {
  border: 1px solid #1D3A58;
  border-radius: 8px;
  padding: 8px 16px;
}
.parts__block.bg {
  background-color: #1D3A58;
  color: #ffffff;
}
.parts__block.bg > h5 {
  color: #ffffff;
}
.parts__h5 {
  letter-spacing: 2px;
  margin-bottom: 16px;
}

/** carousel **/
/* Slideshow container */
.slideshow-container {
  position: relative;
  margin: auto;
  background-color: #f7f7f7;
}
.slideshow-container__img {
  width: 80%;
  margin: 0 auto;
}
.slideshow-container__link {
  font-weight: 500 !important;
}
.slideshow-container__h5 {
  margin-bottom: 2rem;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: #292826;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 8px;
  border-radius: 4px;
}

.prev {
  left: 8px;
  border-radius: 4px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: #8F8D86;
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
  .prev, .next, .text {
    font-size: 11px;
  }
}
.screens > video {
  width: 70%;
  margin: 0 auto;
}

.designSystem {
  background-color: #f7f7f7;
}

/** Página sobre mí **/
.about {
  width: 65%;
  margin: 0 auto;
}
.about__intro {
  width: 65%;
  margin: 0 auto;
  padding-top: 5rem;
}
@media screen and (max-width: 768px) {
  .about {
    width: 90%;
  }
}

.skills {
  border-top: 1px solid #DBD9CE;
  border-bottom: 1px solid #DBD9CE;
  background-color: #f7f7f7;
  margin: 3rem 0;
}
.skills h5 {
  margin-bottom: 2rem;
}

.contacto {
  width: 60%;
  margin: 0 auto;
  padding: 2rem 5%;
  min-height: 100vh;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}
.contacto__h1, .contacto__h4 {
  padding-bottom: 2rem;
}
.contacto__left {
  position: relative;
  width: 100%;
  height: 100%;
}
.contacto__img {
  width: 70%;
  margin: auto;
}
.contacto__icons a {
  font-weight: 400;
}
.contacto__icons svg {
  color: #8F8D86;
}
.contacto__icons-icons {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .contacto {
    width: 100%;
  }
}

/** Transitions **/
.reveal, section {
  opacity: 1;
  transform: translateY(0);
  transition: all 1s ease;
}

.hidden {
  opacity: 0;
  transform: translateY(100px);
}/*# sourceMappingURL=style.css.map */