:root {
  --pink: #f4b5cd;
  --black: #231f20;
  --darkPink: #860050;
  --mainDarkColor: #860050;
  --darkGrey:#343031;
  --grey:#5D5A5B;

  /* HP Colors */

  --hp-blue: #2897D0;
  --hp-yellow: #ffffd9;
  --hp-teal: #9C90D0;
  --hp-brown: #B46200;
  --mainFont: 'VIM SM';
  --mainGradient: linear-gradient(180deg, #f4b5cd 27.35%, #ff619d 84.4%);
  /* border-radius: 0px 0px 40px 40px; */

  --smooth: all 0.45s cubic-bezier(0.4, 0, 0, 1);

}

@font-face {
  font-family: 'Vim SM';
  src: url('fonts/VimSM-Heavy.woff2') format('woff2'), url('fonts/VimSM-Heavy.woff') format('woff');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}



p {
  font-size: 1em;
  font-family: 'Montserrat', sans-serif;;
}

.main-font {
  font-family: var(--mainFont);
}


@font-face {
  font-family: 'Faro';
  src: url('fonts/Faro-DisplayLucky.woff');
  /* font-weight: 900; */
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Lausanne';
  src: url('fonts/Lausanne-300.woff');
  /* font-weight: 900; */
  font-style: normal;
  font-display: swap;
}


h1, a p, h2, .faro {
  font-family: 'Faro' !important;
}


a p {
  text-transform: uppercase;
}

p, *::placeholder, input {
  font-family: 'Lausanne' !important;
}


.ugo-pink {
  color: var(--pink);
}

.ugo-black-bg {
  background-color: var(--black);
}

.ugo-pink-bg {
  background-color: var(--pink);
}

.ugo-dark-pink {
  color: var(--darkPink);
}

.ugo-dark-pink-bg {
  background-color: var(--darkPink);
}

.hp-dark-color-bg {
  background-color: var(--hp-blue);
}

.hp-light-color-bg {
  background-color: var(--hp-yellow);
}

.hp-teal-bg {
  background-color: var(--hp-teal);
}

.hp-brown {
  color: var(--hp-brown)
}

.hp-dark-brown-bg {
  background-color: #B46200;
}

.hp-teal {
  color: var(--hp-teal);
}


.hp-dark-color {
  color: var(--hp-blue);
}


.hp-dark-color-bg {
  background-color: var(--hp-blue);
}


.hp-light-color {
  color: var(--hp-yellow);
}


.bg-gradient {
  background: var(--mainGradient);
}

.bg-color-container {
  z-index: -2;
  width: 100vw;
  height: 100vh;
}

.bg-color-ball {
  background-color: var(--black);
  width: 100vw;
  height: 100vh;
  /* transition: all 0.8s cubic-bezier(0.55, 0.055, 0.675, 0.19); */
  transform: translateY(100%);
  bottom: 0%;
  left: 0%;
  position: absolute;
}

.bg-color-ball.active {
  transform: translateY(0%);
}

.main-cta.white-border {
  border-width: 2px;
}

.ugo-border {
  border: 2px solid var(--darkPink);
}

.main-cta {
  padding: 15px 28px;
}

/* Header & Footer Desktop */

header {
  transition: all 0.3s ease;
  /* background: linear-gradient(180deg, rgba(244, 181, 205, 0.69) 0%, rgba(255, 255, 255, 0) 76.39%); */
}

header.scrolled {
  /* background-color: #f3dcd6d5; */
  /* border-bottom: 1px solid var(--darkPink);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px); */
}

header.scrolled p,
header.scrolled a p {
  color: var(--hp-yellow) !important;
}

header.scrolled a p::after {
  background-color: var(--hp-yellow) !important;
}

header.scrolled svg path {
  fill: var(--hp-yellow);
}


.header-nav a{
  color: #fff;
}

img.icon {
  height: 60px !important;
  width: auto !important;
}

header.site-header {
  position: fixed;
  top: 0;
  left: 0;
}

.header-nav li:last-child {
  margin-left: 60px;
  border-radius: 100px;
  border: 1px solid var(--pink);
  padding: 10px 20px;
}

/* Home Desktop */

.home-starter {
  padding-top: 20vh;
  padding-bottom: 20vh;
  height: 90vh;
}

.home-starter > div > * {
  /* opacity: 0; */
  /* transform: translateY(60px); */
}

.home-starter > div:last-child {
  /* opacity: 0;
  transform: translateY(60px); */
}

.home-starter .main-cta,
.main-cta.animate,
.main-cta.reverse {
  transition: padding 0.3s, background-color 0.3s ease;
}

.home-starter .main-cta:hover,
.main-cta.animate:hover {
  background-color: var(--pink);
  padding-left: 40px;
  padding-right: 40px;
  border-color: var(--pink);
}

.home-starter .main-cta:hover p,
.main-cta.animate:hover p {
  color: #000;
}

.home-starter .main-cta:hover svg path,
.main-cta.animate:hover svg path {
  fill: #000;
}

.main-cta.reverse:hover {
  background-color: var(--pink);
  padding-left: 40px;
  padding-right: 40px;
  border-color: var(--pink);
}

.main-cta.reverse:hover p {
  color: white;
}

.main-cta.reverse:hover svg path {
  fill: white;
}

.bloque-text,
.bloque-text > div:last-child {
  background-color: var(--hp-yellow);
  z-index: 3;
  position: relative;
  /* border-radius: 20px; */
}

.bloque-text::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 4px solid var(--hp-yellow);
  top: 0;
  left: 0;
  z-index: 2;
  transition: transform 0.6s 0.7s ease;
  /* border-radius: 20px; */
}

.numero-bloque {
  transform: translateY(-50%);
  /* background-color: var(--black); */
}

.numero-bloque h1 {
  font-family: var(--mainFont);
  -webkit-text-stroke: 2px var(--black);
  color: #fff;
}

.bloque-text h1 {
  font-family: var(--mainFont);
}

.bloque-text p {
  color: #fff;
}

.bloque-shape {
  transform: translate(-30%, -30%);
}

.bloque-element img {
  height: 50px !important;
}

.landing-footer-ilust svg {
  width: 20vw;
  height: auto !important;
}

.bloque-text.has-background::after {
  background-color: var(--pink);
}

.bloques-home > div > div {
  opacity: 0;
  transform: translateY(60px);
  transition: all 1.2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.bloques-home > div.in-view > div {
  opacity: 1;
  transform: translateY(0);
}

.bloques-home > div.in-view .bloque-text::after {
  transform: translate(10px, 10px);
}

.marco-gallery > div {
  transition-delay: 0s !important;
}

.home-starter > div:last-child {
  background-position: bottom;
}

.bloques-home > div:first-child {
  margin-top: 40px;
}

.bloques-home > div:first-child > div {
  /* transition-delay: 3s !important; */
}

.cursor.is-scroll-h {
  width: 150px;
  height: 150px;
  background-image: url(/wp-content/uploads/2021/01/Group-16.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  background-color: unset !important;
  transition: none !important;
}

.ugo-timeline {
  background-color: #fff;
  border-radius: 20px;
}

.ugo-timeline .marco-timeline {
  border-color: var(--pink);
}

.timeline-item:before {
  background-color: var(--pink);
}

.marco-gallery {
  cursor: none;
}

/* Paseadores Desktop */

main.paseadores {
  background-color: #000;
}

.paseadores-form input {
  margin-bottom: 20px;
  width: 49%;
}

.paseadores-form button, .paseadores-form input {
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  padding: 15px 20px;
  outline: none;
  border: 0px;
}

.paseadores-form input.w-100, .paseadores-form button {
  width: 100%;
}

.items-timeline-inner {
  border-top: 2px solid var(--pink)
}

.card-item {
  background-color: var(--black);
  border-radius: 20px;
}

.card-item svg {
  margin: auto;
  transform: translateY(-50%);
  margin-bottom: -30px;
}

.step {
  border-radius: 8px;
  background-color: var(--black);
  padding: 20px 30px;
  border: 2px solid var(--pink);
  transition: all 0.3s ease;
}

.step:hover {
  border: 2px solid var(--pink) !important
}

.step.not-active {
  border: 2px solid var(--black);
}


.step *, .steps-image img {
  transition: all 0.3s ease;
}

.step.not-active p, .step.not-active h1, .step.not-active h2 {
  color: #fff;
  opacity: 0.3;
}



.steps-image > img:first-child {
/* padding: 0; */
}

.steps-image img.not-active {
  opacity: 0;
}

.steps-image > img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
}

/* Insta Desktop */

.landing-footer .main-cta {
  border-color: #fff;
}

.landing-footer svg:not(.logo) path {
  fill: #fff;
}

/* App Page */

.app-image-1 {
  top: 5%;
}


.app-image-2 {
  bottom: 5%;
}

.app-features > * {
  transform-origin: center;
  transform: scale(0);
  transition: all 0.45s ease;

}


.app-features > *.transform {
  transform: scale(1);
}

.round-image {
  width: 40vw;
  height:40vw;
  border-radius: 100%;
  overflow: hidden;
}

.round-item {
  flex: 1 1 0;
}

.round-item:last-child {
  margin-right: 0;;
}

.next-section-container {
  border-radius: 20px;
  overflow: hidden;
}

.next-section-gradient {
  background: linear-gradient(270deg, #F4B5CD 46.14%, rgba(244, 181, 205, 0) 107.96%);
border-radius: 20px;
}

/* Insta Desktop */

.instagram-feed-container a,
.hashtag-feed a {
  text-decoration: none;
  width: max-content;
}

.instagram-feed video {
  max-width: 300px;
}

#insta-name {
  width: 100%;
}

.insta-footer-icon {
  width: 30px;
}

.instagram-feed-container > a:last-child::after
/* ,.hashtag-feed > a:last-child::after  */ {
  position: absolute;
  top: 70%;
  left: -5%;
  width: 110%;
  height: 50%;
  content: '';
  background-color: #f7cdd3;
  z-index: -1;
  transition: all 0.3s ease;
}

.instagram-feed-container > a:last-child:hover:after
/* ,
.hashtag-feed > a:last-child:hover::after  */ {
  top: 60%;
  left: -20%;
  width: 140%;
  height: 60%;
  background-color: #ffebee;
}

.instagram-feed-container > a:last-child:hover,
.hashtag-feed > a:last-child:hover {
  color: #78bacc;
}

.instagram-feed > div {
  width: 19.5%;
}

.instagram-feed div a,
.hashtag-feed a {
  /* margin: 10px; */
  width: auto;
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.instagram-feed a:after {
  position: absolute;
  content: '';
  /* background-image: url('/wp-content/uploads/2020/02/insta-icon.svg'); */
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 30px;
  height: 30px;
  z-index: 5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.instagram-feed a:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  z-index: 4;
  background-color: rgba(0, 0, 0, 0.471);
  transition: all 0.3s ease;
}

.instagram-feed a:before,
.instagram-feed a:after {
  opacity: 0;
}

.instagram-feed a:hover::before,
.instagram-feed a:hover::after {
  opacity: 1;
}

.instagram-feed a > div {
  transition: all 0.3s ease;
}

.instagram-feed a:hover > div {
  transform: scale(1.05);
}

.ig-aob img {
  height: 10px !important;
}

.ig-aob p {
  color: #ccc;
}

/* Page main template */

@font-face {
  font-family: 'Faro';
  src: url('fonts/Faro-DisplayLucky.woff');
  /* font-weight: 900; */
  font-style: normal;
  font-display: swap;
}


@font-face {
  font-family: 'Lausanne';
  src: url('fonts/Lausanne-300.woff');
  /* font-weight: 900; */
  font-style: normal;
  font-display: swap;
}




.ugo-page-template {
  background-color: var(--black);
  color: #fff;
}

.ugo-page-template article {
  padding-top: 160px;
}

.ugo-page-template h1 {
  color: var(--pink);
  font-family: 'Faro';

  text-align: center;
}

.ugo-page-template p {
  font-family: "Lausanne";
  line-height: 1.65;
  margin-bottom: 10px;
}

@media (max-width: 768px) {
  .column-mobile {
    flex-direction: column;
  }

  header.scrolled p,
  header.scrolled a p {
    color: #fff !important;
  }

  .home-starter > div:first-child {
    width: unset;
    padding-top: 100px;
  }

  .home-starter > div:last-child {
    background-position: center;
  }

  .landing-footer-ilust:first-child {
    display: none;
  }

  .landing-footer {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .landing-footer-ilust {
    margin-top: 30px;
  }

  .landing-footer-ilust svg {
    width: 65vw;
  }

  .bloques-home > div.container {
    padding: 0 40px;
    padding-left: 25px;
  }

  .bloques-home > div:first-child > div {
    transition-delay: 0.65s !important;
  }

  .marco-gallery > div {
    margin-top: 0px !important;
    height: 45vh !important;
  }

  .marco-gallery > div img {
    margin: 0 10px;
  }

  .bloques-home > div > div {
    opacity: 1;
    transform: translateY(0);
  }

  .home-starter {
    padding-bottom: 10vh;
  }

  .marco-carrousel {
    margin-top: 6rem;
    padding-bottom: 6rem;
  }

  .bloque-shape {
    transform: translate(-6%, -30%);
  }

  .landing-footer h1 {
    font-size: 24px;
  }

  .landing-footer svg.logo,
  .landing-footer a {
    margin-left: 0;
    margin-right: 0;
  }

  .landing-footer svg.logo {
    width: 250px !important;
  }

  .ugo-timeline {
    margin-top: 20px;
    padding: 20px;
  }

  .home-starter * {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  header.site-header  {
    position: fixed;
    width: 100%;
    background-color: var(--black);
    border-bottom: 1px solid var(--pink);
    bottom: 0;
    left: 0;
    justify-content: space-between;
    padding: 20px;
    height: 80px;
  }

  /* Home Mobile */

  .home-starter {
    padding-top: 9vh;
  }

  /* App Mobile */


  .app-starter * {
    text-align: center;
  }

  .paseadores-starter-info h1 {
    margin: 30px 0px 10px 0px;
  }

  .app-download-cta a {
    width: 100%;
  }

  div.round-image {
    width: 70vw !important;
    height: 70vw !important;   
  
  }


  .round-item {
    display: flex;
    align-items: center;
  }


  .round-item img {
    width: 60px !important;
    height: auto !important;
  }


  .round-item > div {
    margin-left: 15px;
}



.breadcrumb{
  font-size:16px;
  color:#fff;
  font-weight:700;
  opacity:0.6
}
.input-text{
  background-color: var(--darkGrey);
  outline: none;
  border-radius: 8px;
  height: 55px;
  border: none;
  margin-bottom: 18px;
  width: 25%;
  margin-right: 20px;
  padding-left: 12px;
  color:#fff;
  font-weight: 600;
}
.form-owner{
  margin-top: 35px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.hp-title{
  color:#fff;
  font-weight:700;
  max-width:50%;
  margin-top:20px;
}
.summary-stay{
  background-color: #fff;
  border-radius: 8px;
  padding-left: 30px;
  padding-right: 30px;
margin: 64px auto;
}
.hr{
  height: 2px;
  width: 100%;
  background-color: #ccc;
  margin:30px 0
}
.step-hr{
  height: 3px;
 
  /* width: 11%; */
width: 90%;
  margin-top: 10px;
  background-color:var(--darkGrey);

}

.icon-step{
  width: 35px;
  height: 35px;
  background-color:var(--darkGrey);
border-radius: 30px;
margin-bottom: 10px;
padding-right: 20px;
}
.step-container{
  display: flex;
  flex-direction: row;

}
.summary-stay-container{
  background-color: var(--darkGrey);
}
.text-gray{
  color: var(--grey);
}
.circle-summary{
  background-color: var(--darkGrey);
  height: 50px;
  width: 50px;
  border-radius: 45px;
  margin-right: -2px;
}


  /* Insta Mobile */

  .instagram-feed > div {
    width: 100%;
  }


  .instagram-feed div a {
    display: flex;
    margin-bottom: 30px;
  }

  .instagram-feed video {
    margin: auto
  }
  /* Reusable mobile */

  .items-timeline-inner {
margin-left: 20px;
border-top: 0px;
border-left: 1px solid var(--pink)
  }


  .bloque-round-container .round-item > div {
    margin-left: 0px;
    margin-bottom: 15px;
  }

}


@media (max-width: 580px) {
  .column-mobile-reverse {
    flex-direction: column-reverse;;
  } 
  .hp-title{
    max-width: 100%;
  }
  .input-text{
 
    width: 100%;
  }
  .f1 {
    font-size: 2.3rem;
  }

  .instagram-feed {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    overflow: scroll;
    margin-top: 20px;
    
  }

  .instagram-feed > div {
    margin-right: 20px;
  }
}

main.portal .checkout-option[data-clicked="true"] div.checker{
  background-color: var(--pink);
}
