/* ==================================
/////////// G E N E R A L /////////// 
================================== */

:root {
  --main-blue-color: #186ccc;
  --main-red-color: #b61915;
  --main-gray-color: #55565a;
  --main-green-color: #228b22;
}

* {
 overflow-x: hidden;
 margin: 0px;
 font-family: 'Poppins';
} /* ./General */


body {
  color: var(--main-gray-color);
  font-size: 1rem;
  overflow-y: auto;
  background-color: #FAFBFD;
}
/* Components */


.btn { /* Buttons */
  border: none;
  padding: 8px 32px;
  text-decoration: none;
  cursor: pointer;
  border-radius: 4px;
     /*  width: 120px; */
}

.btnForm {
    background: var(--main-blue-color);
    color: white;
    box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, .2);
    transition: all 0.3s ease-out;
}

.btnFormGreen {
    /*background: var(--main-green-color);*/
    color: white;
    /*box-shadow: 2px 2px 4px 1px rgba(0, 0, 0, .2);*/
    transition: all 0.3s ease-out;
}

.btn-anim {
  cursor: pointer;
  animation: mybtn 2s;
  animation-iteration-count: infinite;
  transition: all ease 0.3s;
  background: var(--main-green-color);
  border-radius: 100px;
  width: 13rem;
  height: 4rem;
  margin-top: 2rem;
  border: transparent;
}

.btn-anim a {
  text-decoration: none;
  color: white;
}

@keyframes mybtn {
  0%  {
      width: 13rem;
      height: 4rem;
  }
  50% {
      width: 15rem;
      height: 5rem;
  }

  100%  {
      width: 13rem;
      height: 4rem;
  }
}

.btn-anim:hover {
  background-color: black;
}

.getstarted{
  display: inline-block;
  border: 2px solid transparent;
  letter-spacing: .5px;
  line-height: inherit;
  margin-top: 2rem;
  border-radius: 0;
  transition-duration: 0.3s;
  transition-timing-function: ease-in-out;
  border-radius: 4px;

  
}
.btnPadding25{
  padding-left: 25%;
  padding-right: 25%;
}
.btnPadding5{
  padding-left: 1%;
  padding-right: 1%;
}
.btnWidth{
  width: 117px;
}
.getstarted:hover{
  background-color: rgba(34, 136, 252);
  border-color: rgba(34, 136, 252);
  box-shadow: 0 5px 15px rgba(34, 136, 252, 0.5);
}

.btnLink {
  color: white;
  padding-top: 10px;
  padding-bottom: 10px;
  box-shadow: -2px 2px 4px 1px rgba(0, 0, 0, .2);
  font-size: 0.8rem;
  transition: all 0.3s ease-out;
}

.btn-red {
  background-color: var(--main-red-color);
  padding-left: 2.5rem !important;
  padding-right: 2.5rem !important;
}

.btnForm a, .btnFormGreen a {
  text-decoration: none;
  color: inherit;
}
.getstarted a, .getstarted i{
  font-size: 1.2rem;
}
input::placeholder {
 /*  opacity: 0.5; */
}

.padding-section {
  padding-left: 2rem;
  padding-right: 2rem;
}

.mt-2{
  margin-top: 2rem;
  overflow-y: hidden;
}
.mb-5{
  margin-bottom: 5rem;
}
.pl-pr{
  padding-left: 3%;
  padding-right: 3%;
}
.pt-2{
 padding-top: 20px;
}
.mt-8{
      margin-top: 8rem;
}
.text-center{
    text-align:center
}
/***************************************************************/
/* =========================================================== */
/* ////////////////////// N A V  B A R /////////////////////// */
/* =========================================================== */
/***************************************************************/

.website-logo,
.website-logo-movil {
  position: fixed;
  top: 1rem;
  left: 1rem;
  /* width: 50px;
  height: 25px;
  background: var(--main-red-color); */
  transform: translateY(-15px);
  color: white;
  text-align: center;
  z-index: 999;
}

.website-logo img,
.website-logo-movil img {
  height: 50px;
}

.website-logo-movil {
  display: none;
}

.topnav {
  overflow: hidden;
  background-color: var(--main-blue-color);
  position: fixed;
  width: 100vw;

  /* box-shadow: inset 0 -7px 0 var(--main-red-color); */
  z-index: 999;
  transition: all 0.3s ease-out;

}

.topnav a {
  /*float: right;*/
  display: inline-block;

  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 14px;
  cursor: pointer;

  transition: all 0.3s ease-out;
}

.navBox {
  display: inline-block;
  float: right;
  height: 49px;
}

.topnav a:hover {
  background-color: var(--main-red-color);
  color: white
}

.topnav a.active {
  background-color: var(--main-gray-color);
  color: white;
}

.navBarIcon {
  display: none !important;
}

/* Drop Down */
.dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-content {
  display: none;
  position: fixed;
  width: 100vw;
  top: 49px;
  right: 0;
  background-color: #f1f1f1;
  min-width: 160px;
  overflow: auto;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: var(--main-gray-color);
  padding: 12px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  transition: all 0.3s ease-out;
}

.dropdown-content a:hover {
  background-color: var(--main-gray-color);
  color: white;
}

.show {display: block;}

@media screen and (max-width: 800px) {

  .website-logo {
    display: none;
  }

  .website-logo-movil {
    display: block;
  }


  .topnav a {display: none;}
 
  .topnav {
    height: 3.5rem;
    background-color: white;
  }

  .navBox {
    width: 100vw;
    height: auto
    
  }

  .navBarIcon {
    display: block !important;
    float: right;
  }

  .navBarIcon:hover {
    background-color: var(--main-blue-color) !important;
  }


  .dropdown-content {
    top: 295px;
    z-index: 999;
  }

  .topnav.responsive {
    display: grid;
    grid-template-rows: 1fr;
    width: 100vw;

    transition: all 0.3s ease-out;
  }
  .topnav.responsive .navBarIcon {
    position: absolute;
    right: 0;
    top: 0;
    z-index: 2;
  }

  .topnav.responsive a {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .topnav.responsive a.active {
    background-color: var(--main-blue-color) !important;
  }

  .topnav.responsive a:first-child {
   
    padding-top: 4rem;

  }

}



/***************************************************************/
/* =========================================================== */
/* /////////////////////// F O O T E R /////////////////////// */
/* =========================================================== */
/***************************************************************/


.section__info {
  display: grid;
/*   grid-template-columns: repeat(2, 1fr);
  column-gap: 2rem; */
  background: var(--main-blue-color);
  margin-top: 3rem;
  /* position: fixed;
  bottom: 0; 
  width: 100%;*/
  padding-left: 2rem;
  padding-right: 2rem;
}

.section__infoTwo{
  background: #f2f2f2;
  padding: 20px;
}

.section__info h1 {
  margin-bottom: 2rem;
  font-size: 1.3rem;
}
.section__info p {
  line-height: 1.5;
}
/* .section__infoTwo {
  display: flex;
}

.section__info-about_link {
  display: inline-block;
} */

.section__infoTwo .section__info-about_link a,
.section__infoTwo .section__info-about_link p
{
    color:  var(--main-gray-color);
    margin-left: 5px;
    margin-right: 5px;
    text-wrap: balance;
    font-size: .8rem;
}
.section__info-about, .section__info-health {
  padding-top: 2rem;
  padding-bottom: 2rem; 
  color: white;
}

.section__info-about {
  font-size: 1rem;
  width: 60vw;
}



.section__info-health a {
  color: white;
}


/* Small devices (portrait tablets and large phones, 600px and up) */
@media screen and (max-width: 800px)  {
  .section__info {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .section__info-about {
    width: 70%;
  }

  .section__info-health {
    padding-left: 2rem;
    padding-top: 2rem;
    padding-bottom: 2rem;  
  }

  .section__info-about_link {
    display: inline-block !important;
  }

  .section__info-about_link a {
    font-size: 0.6rem;
    margin-right: 0px !important;
  }
}

@media screen and (max-width: 600px)  {

  .section__info-health {
    padding: 1rem;
  }
    .section__info { 
          padding-left: 1rem;
          padding-right: 1rem;
    }
  .section__info-health {
    margin-bottom: 1rem;
  }

  .section__info-about {
    width: auto;
    padding: 0;
    margin-top: 2rem;
    margin-bottom: 2rem;
    font-size:.8rem;
    /*padding-left: 1rem;
    padding-right: 1rem;*/
  }
    .section__info-about p{
        
            text-wrap: balance;
    }
}
@media screen and (max-width: 375px)  {

  .section__info-about_link a {
    font-size: 0.8rem;
  }

}

/***************************************************************/
/* =========================================================== */
/* //////////////////// H O M E  P A G E ///////////////////// */
/* =========================================================== */
/***************************************************************/

/* ==================================
////////////// H E R O ////////////// 
================================== */

.section__hero {
  width: 100vw;
  background: center top no-repeat url(../img/img-hero.jpg);
  background-size: 100vw auto;
  height: 900px;
  display: grid;
  grid-template-columns: 2fr 300px 0.5fr;
}


/* Hero Form */
.section__hero-textbox {
  background: var(--main-red-color);
  height: auto;
  color: white;

  /* Center content */
  display: flex;
  align-items: center;
  justify-content: center;
}

.section__hero-textbox-content {
  padding-left: 1rem;
  padding-right: 1rem;

}

.section__hero-textbox-content h4 {
  font-size: 1rem;
  font-weight: 500;
  margin-top: 0rem;
  margin-bottom: 2rem;
}


.section__hero-textbox-content h4 small {
  display: none;
}
.section__hero-form {
  margin-top: 1rem;
}

.section__hero-form  input[type=text] {
  text-align: center;
  width: 100px;
 
}
/* ./Hero Form */

/* Hero Features*/
.section__hero-features {
  text-align: left;
  width: 200px;
  margin-top: 3rem;
}

.section__hero-features p {
  font-size: .89rem;
  margin-bottom: 0.6rem;
}


.section-textbanner {
  background: var(--main-blue-color);
  font-weight: 500;
  padding: 5px;
  color: white;
  width: 100vw;
  text-align: center;
  font-size: 1.2rem;
} /* ./Section Hero */

@media screen and (max-width: 800px) {
  .section__hero {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
  }

  .section__hero-textbox {
    height: auto;
    
  }
  .section__hero-textbox h4 {
    text-align: left;
    font-size: 0.8rem;
  }

  .section__hero-textbox form {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .section__hero-form {
    margin-top: 0;
    margin-bottom: 2rem;
  }
  .section__hero-form input[type=text] {
    width: 50%;
    margin-right: 1rem;
    margin-top: 1rem;

  }

  .section__hero-textbox-content h4 {
    padding-top: 2rem;
  }

  .section__hero-textbox-content h4 small {
    display: block;
    margin-top: 0.5rem;
    font-size: .7rem;
  }

  .section__hero-features {
    margin-top: 0px;
    margin-bottom: 10px;
  }
  .section__hero-features p {
    font-size: .7rem;
    margin-bottom: 0.3rem;
  }
  .section__hero-empty-bottom {
    display: none;
  }
}


/* 15" Desktop */
@media only screen and (min-width: 1920px) and (max-height: 1200px) {
  .section__hero {
    height: 1080px;
    
  }

  .section__steps-icon span {
    height: 150px;
    width: 150px;

    font-size: 4rem;
  }

  .section__steps-icon p {
    font-size: 1.5rem;
    margin-top: 1rem;
  } 

  .section__steps-description-text {
    font-size: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;  
  }

  .section-textbanner {
    font-size: 2rem;
  }

}

/* Full HD Desktop */
@media only screen and (min-width: 1920px) and (max-height: 1080px) {
  .section__hero {
    height: 1080px;
    
  }

  .section__steps-icon span {
    height: 150px;
    width: 150px;

    font-size: 4rem;
  }

  .section__steps-icon p {
    font-size: 1.5rem;
    margin-top: 1rem;
  } 

  .section__steps-description-text {
    font-size: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .section-textbanner {
    font-size: 2rem;
  }
}

/* 15" Desktop */
@media only screen and (min-width: 1440px) and (max-height: 900px) {
  .section__hero {
    height: 700px;
    
  }
}

/* 15" Desktop */
@media only screen and (min-width: 1366px) and (max-height: 768px) {
  .section__hero {
    height: 700px;
    background-size: auto 100vh;
  }
}

@media screen and (max-height: 1024px) {

  .section__hero {
    height: 570px;
    background-size: 100vw auto;
  }

}

/* Half window desktop */
@media screen and (max-width: 1067px) and (max-height: 1090px) {

  .section__hero {
    height: 485px;
    background-size: 100vw auto;
  }

}

/* Landscape Tablets */
@media only screen and (max-width: 1024px) and (min-height: 1300px) {
  .section__hero {
    height: 560px;
    background-size: 100vw auto;
  }
}

@media only screen and (max-width: 991px) and (min-height: 1280px) {
  .section__hero {
    height: 560px;
    background-size: 100vw auto;
  }
}


/* Surface Pro */
@media screen and (max-width: 912px) and (min-height: 1368px) {

  .section__hero {
    height: 485px;
    background-size: 100vw auto;
  }

}

/* Tablets */
@media screen and (max-width: 820px) {
  .section__hero {

    background: center top no-repeat url(../img/img-hero.jpg);
    background-size: 150%;

    height: 750px;
  }

  .section__hero-textbox-content h4 {
    margin-top: 0px;
    font-size: 1.1rem;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .section__hero-form  {
    display: block !important;
  }

  .section__hero-form input[type=text] {
    margin-right: 0rem;
    height: 2rem;
  }
}

@media screen and (max-width: 800px) and (max-height: 1280px) {
  .section__hero {

    background: center top no-repeat url(../img/img-hero.jpg);
    background-size: 150%;
    height: 750px;
  }
}

/* Phones */
@media screen and (max-width: 450px) {
  .section__hero {

    background: center top no-repeat url(../img/img-hero.jpg);
    background-size: 285%;

  }
}

@media screen and (max-width: 380px)  {
  .section__hero-textbox-content h4 {
    font-size: 1rem;
  }
}

/* Galaxy Fold */
@media screen and (max-width: 280px) {
  .section__hero {

    background: center top no-repeat url(../img/img-hero.jpg);
    background-size: 185%;

    height: 500px;

  }
}



/* ==================================
///////////// S T E P S ///////////// 
================================== */

.section__steps-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

/* Steps Description */
.section__steps-description {
  font-weight: 500;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.section__steps-description-text {
  font-size: 1.8rem;
  margin-top: 2rem;
}

.section__steps-icon span {
  background: var(--main-blue-color);
  color: white;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
}

.section__steps-icon p {
  font-size: 1rem;
  margin-top: 1rem;
  font-weight: 500;
}



/* 15" Desktop */
@media only screen and (min-width: 1366px) and (max-height: 768px) {
  .section__steps-icon span {
    height: 150px;
    width: 150px;
    font-size: 3rem;
  }
}

@media screen and (max-height: 1024px) {

  .section__steps-icon span {
    height: 100px;
    width: 100px;
    font-size: 2.5rem;
  }

}


@media screen and (max-width: 600px)  {
  .section__steps-box {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 2rem;
  }
}



/* Extra small devices (phones, 600px and down)
@media only screen and (max-width: 600px) {...}
/* Small devices (portrait tablets and large phones, 600px and up) */
/* @media only screen and (min-width: 600px) {...} */
/* Medium devices (landscape tablets, 768px and up) */
/* @media only screen and (min-width: 768px) {...} */
/* Large devices (laptops/desktops, 992px and up) */
/* @media only screen and (min-width: 992px) {...} */
/* Extra large devices (large laptops and desktops, 1200px and up) */
/* @media only screen and (min-width: 1200px) {...} */ 


/***************************************************************/
/* =========================================================== */
/* ////////////////// S T E P S  P A G E S /////////////////// */
/* =========================================================== */
/***************************************************************/

/* ==================================
////////// S T E P S  B A R ///////// 
================================== */

.section__stepsbar-box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 5rem;
}

.section__stepsbar-icon span {
 background: var(--main-gray-color);
  color: white;
  height: 70px;
  width: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 600;
}

.section__stepsbar-icon img {
  width: 2rem;
  height: auto;
}

.section__stepsbar-icon p {
  font-size: 1rem;
  margin-top: 1rem;
  font-weight: 500;
}

.step-completed {
  opacity: 0.5;
  
}

.step-completed span {
  background: var(--main-blue-color) !important; 
}

.current-step {
  background: var(--main-blue-color) !important; 
}

@media screen and (max-width: 600px) {
  .section__stepsbar-icon span {
    height: 65px;
    width: 65px;

    font-size: 1.8rem;
  }

  .section__stepsbar-icon img {
    width: 1.8rem;
    height: auto;
  }

  .section__stepsbar-icon p {
    font-size: 0.8rem;
  }
}

@media screen and (max-width: 400px) {
  .section__stepsbar-icon span {
    height: 60px;
    width: 60px;

    font-size: 1.6rem;
  }

  .section__stepsbar-icon img {
    width: 1.6rem;
    height: auto;
  }

  .section__stepsbar-icon p {
    font-size: 0.7rem;
  }
  .btnLink {
    padding-left: 3.2rem !important;
    padding-right: 3.2rem !important;
  }
  #btNext{
    margin-top: 20px;
  }
  .btnWidth {
    width: 160px;
  }
  .section__step-form input[type=text]{
    width: 95% !important;
  }
}

/* ==================================
////// P R O G R E S S  B A R /////// 
================================== */
.section__progressbar {
  display: block;
  align-items: center;
  justify-content: center;
  padding-left: 10%;
  padding-right: 10%;
  margin-top: 3rem;

}
.section__progressbar-box {
  height: 25px;
  width: 100%;
  border: 2px solid var(--main-blue-color);
  overflow-y: hidden;
  border-radius: 4px;
}

.section__progressbar-filled {
  background: var(--main-blue-color);
  height:25px;
  
  transform: translateY(-25px);
}

.section__progressbar-fill{
  background: var(--main-blue-color);
  height:25px;
  
  opacity: 0.5;
}

.section__progressbar p {
 text-align: center;
 color: var(--main-blue-color);
 margin-top: 0.4rem;
 font-size: .9rem;

}

/* ==================================
////// S T E P  F O R M /////// 
================================== */

.section__step-form {
  margin-top: 2rem;
}

.section__step-form  input[type=text],
.section__step-form  input[type=number] {
  text-align: center;
  width: 50%;
  font-size: 1rem;
}

.stepCheckbox {
  width: 40%; 
  height: 35px;
  overflow: hidden;
  text-align:left !important;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

input[type="checkbox"] {
  transform: translateY(1.5px);
}

@media screen and (max-width: 1024px) {

  .stepCheckbox {
    width: 70%; 
    overflow: hidden;
  }

}

@media screen and (max-width: 500px) {

  .stepCheckbox {
    font-size: 0.8rem;
    overflow: hidden;
  }

}

/* ==================================
//////////// T H A N K S //////////// 
================================== */

.section__thanks-features {
 /*  width: 50%; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.section__thanks-f {
  text-align: left;
}


/***************************************************************/
/* =========================================================== */
/* //////////////// R E F E R E A L  P A G E ///////////////// */
/* =========================================================== */
/***************************************************************/

.section__referral-share {
  display: flex;
  justify-content: center; /* para que los botones estén equidistantes */

}

.sr-text-in{
  margin-right: 3.5em;
}

/***************************************************************/
/* =========================================================== */
/* //////////////// R E J E C T E D  P A G E ///////////////// */
/* =========================================================== */
/***************************************************************/


/***************************************************************/
/* =========================================================== */
/* //////////////// R E G U L A R  P A G E S ///////////////// */
/* =========================================================== */
/***************************************************************/

.section__regular_page {
  margin-top: 4.5rem;
}
.section__regular_page_title {
  font-size: 1.3rem;
}
.section__regular_page_content {
  padding-top: 2rem;
  padding-bottom: 2rem; 
}
.section__regular_page_content p {
  padding: 0 0 1rem 0;
}


/***************************************************************/
/* =========================================================== */
/* ///////////////// L E G A L  P A G E S //////////////////// */
/* =========================================================== */
/***************************************************************/

.section__legal .container-header {
padding-bottom: 3rem;
}

.section__legal {
       margin-top: 6rem;
  padding-bottom: 8rem;
  overflow-y: auto;
}

/*******************************************************************/
/* =============================================================== */
/* ///////////////// L I S T I N G  P A G E S //////////////////// */
/* =============================================================== */
/*******************************************************************/
.section__listings h1 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.section__box {
  height: 65vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.section__box a {
  text-decoration: none;
  color: inherit;
}

@media screen and (max-width: 500px) {

  .section__listings h1 {
    font-size: 2rem;
  }

  .section__box {
    height: 65vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  

}

/*******************************************************************/
/* =============================================================== */
/* //////////////////// G I F T   C A R D //////////////////////// */
/* =============================================================== */
/*******************************************************************/

.giftcard-img {
  width: 500px;
}

@media screen and (max-width: 1024px) {

  .giftcard-img {
    width: 40vw;

  }

}

@media screen and (max-width: 800px) {

  .giftcard-img {
    width: 70vw;
  }

}

@media screen and (max-width: 500px) {

  .giftcard-img {
    width: 80vw;
  }

}


/*******************************************************************/
/* =============================================================== */
/* ///////////////// DOT //////////////////// */
/* =============================================================== */
/*******************************************************************/
.time{
  align-items: center;
  display: flex;
  justify-content: center;
}
.dot {
  height: 20px;
  width: 20px;
  background-color: green;
  border-radius: 50%;
  display: inline-block;
  animation: blink 1s infinite;
  margin-right: 10px;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}