/*=============== GOOGLE FONTS ===============*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/*=============== VARIABLES CSS ===============*/
:root {
  --header-height: 3.5rem; /*56px*/

  /*========== Colors ==========*/
  /*Color mode HSL(hue, saturation, lightness)*/
  --hue: 152;
  --first-color: #004258;
  --first-color-alt: #007d9a;
  --first-color-light: hsl(var(--hue), 24%, 66%);
  --first-color-lighten: hsl(var(--hue), 24%, 92%);
  --title-color: #004258;
  --text-color: black;
  --text-color-light: hsl(var(--hue), 4%, 55%);

  --container-color: #007d9a;

  /*========== Font and typography ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --body-font: 'Poppins', sans-serif;
  --big-font-size: 2rem;
  --h1-font-size: 1.5rem;
  --h2-font-size: 1.25rem;
  --h3-font-size: 1rem;
  --normal-font-size: .938rem;
  --small-font-size: .813rem;
  --smaller-font-size: .75rem;

  /*========== Font weight ==========*/
  --font-medium: 500;
  --font-semi-bold: 600;

  /*========== Margenes Bottom ==========*/
  /*.5rem = 8px | 1rem = 16px ...*/
  --mb-0-5: .5rem;
  --mb-0-75: .75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;

  /*========== z index ==========*/
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* Responsive typography */
@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 3.5rem;
    --h1-font-size: 2.25rem;
    --h2-font-size: 1.5rem;
    --h3-font-size: 1.25rem;
    --normal-font-size: 1rem;
    --small-font-size: .875rem;
    --smaller-font-size: .813rem;
  }
}

/*=============== BASE ===============*/
*{
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

html{
  scroll-behavior: smooth;
}

body,
button,
input,
textarea{
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
}

body{
  /* margin: var(--header-height) 0 0 0; */
  background-color:var(--body-color) ;
  color: var(--text-color);
  transition: .4s; /*For animation dark mode*/
}

button{
  cursor: pointer;
  border: none;
  outline: none;
}
.log{
  width: 120px;
  margin-top:20px;
}
h1,h2,h3{
  color: var(--title-color);
  font-weight: var(--font-semi-bold);
}

ul{
  list-style: none;
}

a{
  text-decoration: none;
}

img{
  max-width: 100%;
  height: auto;
}

/*=============== THEME ===============*/
/*========== Variables Dark theme ==========*/
body.dark-theme{
  --first-color-dark:#163e4b;
  --title-color: #0d6973;
  --text-color: black;
  --body-color: #FFFFFF;
  --container-color: white;
}

/*========== Button Dark/Light ==========*/
.change-theme{
  color: var(--title-color);
  font-size: 1.15rem;
  cursor: pointer;
}

.nav__btns{
  display: inline-flex;
  align-items: center;
  column-gap: 1rem;
}

/*========== 
Color changes in some parts of 
the website, in dark theme 
==========*/

.dark-theme .steps__bg,
.dark-theme .questions{
  background-color: rgb(239, 237, 237);
}
.dark-theme .main-exchange-container--title p{
  color: rgb(56, 56, 56);
}

.dark-theme .product__circle,
.dark-theme .footer__subscribe{
  background-color: rgb(239, 237, 237);
}

/*=============== REUSABLE CSS CLASSES ===============*/
.section{
  padding: 5.5rem 0 1rem;
}
.section__title3{
  position: relative;
  top: 30%;
  font-size: 35px; 
  margin-bottom: 20px;
}
.parrafo-3{
  position: relative;
  top: 30%;
  font-size: 20px;

}

.section__title,
.section__title-center{
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-2);
  line-height: 140%;
  
}

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

.container{
  max-width: 968px;
  margin-left: var(--mb-1-5);
  margin-right: var(--mb-1-5);
}

.grid{
  display: grid;
}

.main{
  overflow: hidden; /*For animation*/
}


@media screen and (max-width: 767px){
  .nav__menu{
    position: fixed;
    background-color: var(--container-color);
    width: 80%;
    height: 100%;
    top: 0;
    right: -100%;
    box-shadow: -2px 0 4px hsla(var(--hue), 24%, 15%, .1);
    padding: 4rem 0 0 3rem;
    border-radius: 1rem 0 0 1rem;
    transition: .3s;
    z-index: var(--z-fixed);
  }
}

.nav__close{
  font-size: 1.5rem;
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  cursor: pointer;
}

.nav__list{
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

.nav__link{
  color: var(--title-color);
  font-weight: var(--font-medium);
  transition: .3s;
}

.nav__link:hover{
  color: var(--first-color);
}

/* Show menu */
.show-menu{
  right: 0;
}



/* Active link */
.active-link{
  position: relative;
  color: var(--first-color);
}

.active-link::after{
  content: '';
  position: absolute;
  bottom: -.5rem;
  left: 0;
  width: 50%;
  height: 2px;
  background-color: var(--first-color);
}

/*=============== HOME ===============*/
.boton-container{
  margin-top: 100px;
  display: flex;
  justify-content: center;
}
.boton{
  color: #007d9a;
  border: 1px solid #004258;
  justify-content: center;
  padding: 15px 15px;
  font-size: 25px;
}
.home{
  padding: 3.5rem 0 2rem;

}

.home__container{
  position: relative;
  row-gap: 2rem;
 
}

.home__img{
  border-radius: 20px;
  width: 450px;
 
  justify-self: center;
}

.home__title{
  font-size: 28px;
  line-height: 140%;
  margin-bottom: var(--mb-1);
  text-align: justify;
  color: #0d6973;
}

.home__description{
  margin-bottom: var(--mb-2-5);
  text-align: justify;
  font-size: 20px;

  color: #3c3c3c;
  
}
.home__description span{
  color: #0d6973;
  font-weight: bold;
  font-size: 20px;
}

.home__social{
  position: absolute;
  top: 2rem;
  right: -1rem;
  display: grid;
  justify-items: center;
  row-gap: 3.5rem;
}

.home__social-follow{
  font-weight: var(--font-medium);
  font-size: var(--smaller-font-size);
  color: #cddb00;
  position: relative;
  transform: rotate(90deg);
}

.home__social-follow::after{
  content: '';
  position: absolute;
  width: 1rem;
  height: 2px;
  background-color: #cddb00;
  right: -45%;
  top: 50%;
}

.home__social-links{
  display: inline-flex;
  flex-direction: column;
  row-gap: .25rem;
}

.home__social-link{
  font-size: 1rem;
  color: #cddb00;
  transition: .3s;
}

.home__social-link:hover{
  transform: translateX(.25rem);
  color:#007d9a
}

/*=============== BUTTONS ===============*/
.button{
  display: inline-block;
  background-color: var(--first-color);
  color: #FFF;
  padding: 1rem 1.75rem;
  border-radius: .5rem;
  font-weight: var(--font-medium);
  transition: .3s;
}

.button:hover{
  background-color: var(--first-color-alt);
}

.button__icon{
  transition: .3s;
}

.button:hover .button__icon{
  transform: translateX(.25rem);
}

.button--flex{
  top: -30px;
  display: inline-flex;
  position: relative;
  left: 40%;
  align-items: center;
  column-gap: .5rem;
  text-decoration: underline;
  color: #007d9a;
}
.button--flex2{
  top: -10px;
  display: inline-flex;
  position: relative;
  left: 50%;
  align-items: center;
  column-gap: .5rem;
  text-decoration: underline;
  color: #007d9a;
  font-size: 20px;
}
.button--flex3{
  top: -10px;
  display: inline-flex;
  position: relative;
  left: 25%;
  align-items: center;
  column-gap: .5rem;
  text-decoration: underline;
  color: #007d9a;
  font-size: 20px;
}

.button--link{
  color: var(--first-color);
  font-weight: var(--font-medium);
}

.button--link:hover .button__icon{
  transform: translateX(.25rem);
}

/*=============== ABOUT ===============*/
.about__container{
  row-gap: 2rem;
}

.about__img{
  border-radius: 20px;
  width: 400px;

  justify-self: center;
}

.about__title{
  margin-bottom: var(--mb-1);
  text-align: justify;
  color: #0d6973;
}

.about__description{
  margin-bottom: var(--mb-2);
  text-align: justify;
}
.about__description span{
  color: #004258;
  font-size: 35px;
  font-weight: bold;
}
.about__description .span2{
  color: #004258;
  font-size: 18px;
  font-weight: 100;
}

.about__details{
  display: grid;
  row-gap: 1rem;
  margin-bottom: var(--mb-2-5);
}

.about__details-description{
  display: inline-flex;
  column-gap: .5rem;
  font-size: var(--small-font-size);
}

.about__details-icon{
  font-size: 1rem;
  color: var(--first-color);
  margin-top: .15rem;
}

/*=============== STEPS ===============*/
.steps__bg{
  background-color: rgb(239, 237, 237);
  padding: 3rem 2rem 2rem;
  border-radius: 1rem;
}

.steps__container{
  gap: 2rem;
  padding-top: 1rem;
}

.steps__title{
  color: #004258;
}

.steps__card{
  background-color: white;
  padding: 2.5rem 3rem 2rem 1.5rem;
  border-radius: 1rem;
}

.steps__card-number{
  display: inline-block;
  background-color: #007d9a;
  color: #FFF;
  padding: .5rem .75rem;
  border-radius: .25rem;
  font-size: var(--h2-font-size);
  margin-bottom: var(--mb-1-5);
  transition: .3s;
}

.steps__card-title{
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-0-5);
}

.steps__card-description{
  font-size: var(--small-font-size);
}

.steps__card:hover .steps__card-number{
  transform: translateY(-.25rem);
}

/*=============== PRODUCTS ===============*/
.product__description{
  text-align: center;
}

.product__container{
  padding: 3rem 0;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3rem;
}

.product__card{
  display: grid;
  position: relative;
}

.product__img{
  position: relative;
  width: 120px;
  justify-self: center;
  margin-bottom: var(--mb-0-75);
  transition: .3s;
}

.product__title,
.product__price{
  font-size: var(--small-font-size);
  font-weight: var(--font-semi-bold);
  color: var(--title-color);
}

.product__title{
  margin-bottom: .25rem;
}

.product__button{
  position: absolute;
  right: 0;
  bottom: 0;
  background-color: var(--first-color);
  color: #FFF;
  padding: .25rem;
  border-radius: .35rem;
  font-size: 1.15rem;
}

.product__button:hover{
  background-color: var(--first-color-alt);
}

.product__circle{
  width: 90px;
  height: 90px;
  background-color: var(--first-color-lighten);
  border-radius: 50%;
  position: absolute;
  top: 18%;
  left: 5%;
}

.product__card:hover .product__img{
  transform: translateY(-.5rem);
}

/*=============== QUESTIONS ===============*/


.questions__container{
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.questions__group{
  display: grid;
  row-gap: 1.5rem;
}

.questions__item{
  background-color: rgb(239, 237, 237);
  border-radius: .25rem;
}

.questions__item-title{
  font-size: var(--small-font-size);
  font-weight: var(--font-medium);
}

.questions__icon{
  font-size: 1.25rem;
  color: var(--title-color);
}

.questions__description{
  font-size: var(--smaller-font-size);
  padding: 0 1.25rem 1.25rem 2.5rem;
}

.questions__header{
  display: flex;
  align-items: center;
  column-gap: .5rem;
  padding: .75rem .5rem;
  cursor: pointer;
}

.questions__content{
  overflow: hidden;
  height: 0;
}

.questions__item,
.questions__header,
.questions__item-title,
.questions__icon,
.questions__description,
.questions__content{
  transition: .3s;
}

.questions__item:hover{
  box-shadow: 0 2px 8px hsla(var(--hue), 4%, 15%, .15);
}

/*Rotate icon, change color of titles and background*/
.accordion-open .questions__header,
.accordion-open .questions__content{
  background-color: var(--first-color);
}

.accordion-open .questions__item-title,
.accordion-open .questions__description,
.accordion-open .questions__icon{
  color: #FFF;
}

.accordion-open .questions__icon{
  transform: rotate(45deg);
}

/*=============== CONTACT ===============*/
.contact__container{
  row-gap: 3.5rem;
}

.contact__data{
  display: grid;
  row-gap: 2rem;
}

.contact__subtitle{
  font-size: var(--normal-font-size);
  font-weight: var(--font-medium);
  color: var(--text-color);
  margin-bottom: var(--mb-0-5);
}

.contact__description{
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--title-color);
  font-weight: var(--font-medium);
}

.contact__icon{
  font-size: 1.25rem;
}

.contact__inputs{
  display: grid;
  row-gap: 2rem;
  margin-bottom: var(--mb-2-5);
}

.contact__content{
  position: relative;
  height: 3rem;
  border-bottom: 1px solid var(--text-color-light);
}

.contact__input{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 1rem 0;
  background: none;

  color: var(--text-color);

  
  border: none;
  outline: none;
  z-index: 1;
}

.contact__label{
  position: absolute;
  top: .75rem;
  width: 100%;
  font-size: var(--small-font-size);
  color: var(--text-color-light);
  transition: .3s;
}

.contact__area{
  height: 7rem;
}

.contact__area textarea{
  resize: none;
}

/*Input focus move up label*/
.contact__input:focus + .contact__label{
  top: -.75rem;
  left: 0;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

/*Input focus sticky top label*/
.contact__input:not(:placeholder-shown).contact__input:not(:focus) + .contact__label{
  top: -.75rem;
  font-size: var(--smaller-font-size);
  z-index: 10;
}

/*=============== FOOTER ===============*/
.footer__container{
  row-gap: 3rem;
}

.footer__logo{
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
  color: var(--title-color);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: var(--mb-2-5);
  transition: .3s;
}

.footer__logo-icon{
  font-size: 1.15rem;
  color: var(--first-color);
}

.footer__logo:hover{
  color: var(--first-color);
}

.footer__title{
  font-size: var(--h3-font-size);
  margin-bottom: var(--mb-1-5);
}
.iconos{
  position: relative;
  margin-top: -60px;
}

.footer__subscribe{
  background-color: var(--first-color-lighten);
  padding: .75rem;
  display: flex;
  justify-content: space-between;
  border-radius: .5rem;
}

.footer__input{
  width: 70%;
  padding: 0 .5rem;
  background: none;
  color: var(--text-color);
  border: none;
  outline: none;
}

.footer__button{
  padding: 1rem;
}

.footer__data{
  display: grid;
  row-gap: .75rem;
}

.footer__information{
  font-size: var(--small-font-size);
}

.footer__social{
  display: inline-flex;
  column-gap: .75rem;
}

.footer__social-link{
  font-size: 1rem;
  color: var(--text-color);
  transition: .3s;
}

.footer__social-link:hover{
  transform: translateY(-.25rem);
}

.footer__cards{
  display: inline-flex;
  align-items: center;
  column-gap: .5rem;
}
.footer__card{
  width: 35px;
}

.footer__copy{
  text-align: center;
  font-size: var(--smaller-font-size);
  color: var(--text-color-light);
  margin: 5rem 0 1rem;
}

/*=============== SCROLL UP ===============*/
.scrollup{
  position: fixed;
  background-color: var(--first-color);
  right: 1rem;
  bottom: -30%;
  display: inline-flex;
  padding: .5rem;
  border-radius: .25rem;
  z-index: var(--z-tooltip);
  opacity: .8;
  transition: .4s;
}

.scrollup__icon{
  font-size: 1rem;
  color: #FFF;
}

.scrollup:hover{
  background-color: var(--first-color-alt);
  opacity: 1;
}

/* Show Scroll Up*/
.show-scroll{
  bottom: 3rem;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar{
  width: .6rem;
  background: hsl(var(--hue), 4%, 53%);
}

::-webkit-scrollbar-thumb{
  background: hsl(var(--hue), 4%, 29%);
  border-radius: .5rem;
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px){
  .container{
    margin-left: var(--mb-1);
    margin-right: var(--mb-1);
  }

  .home__img{
    width: 180px;
  }
  .home__title{
    font-size: var(--h1-font-size);
  }

  .steps__bg{
    padding: 2rem 1rem;
  }
  .steps__card{
    padding: 1.5rem;
  }

  .product__container{
    grid-template-columns: .6fr;
    justify-content: center;
  }
}

/* For medium devices */
@media screen and (min-width: 576px){
  .steps__container{
    grid-template-columns: repeat(2, 1fr);
  }

  .product__description{
    padding: 0 4rem;
  }
  .product__container{
    grid-template-columns: repeat(2, 170px);
    justify-content: center;
    column-gap: 5rem;
  }

  .footer__subscribe{
    width: 400px;
  }
}

@media screen and (min-width: 767px){
  body{
    margin: 0;
  }

  .home__container,
  .about__container,
  .questions__container,
  .contact__container,
  .footer__container{
    grid-template-columns: repeat(2, 1fr);
  }
  
  .home{
    padding: 10rem 0 5rem;
  }
  .home__container{
    align-items: center;
  }
  .home__img{
    width: 280px;
    order: 1;
  }
  .home__social{
    top: 30%;
  }

  .questions__container{
    align-items: flex-start;
  }

  .footer__container{
    column-gap: 3rem;
  }
  .footer__subscribe{
    width: initial;
  }
}

/* For large devices */
@media screen and (min-width: 992px){
  .container{
    margin-left: auto;
    margin-right: auto;
  }

  .section{
    padding: 8rem 0 1rem;
  }
  .section__title,
  .section__title-center{
    font-size: var(--h1-font-size);
  }

  .home{
    padding: 13rem 0 5rem;
  }
  .home__img{
    width: 1000px;
  }
  .home__description{
    padding-right: 7rem;
  }

  .about__img{
    width: 880px; 
    margin-right: 120px;
  }

  .steps__container{
    grid-template-columns: repeat(3, 1fr);
  }
  .steps__bg{
    padding: 3.5rem 2.5rem;
  }
  .steps__card-title{
    font-size: var(--normal-font-size);
  }

  .product__description{
    padding: 0 16rem;
  }
  .product__container{
    padding: 4rem 0;
    grid-template-columns: repeat(3, 185px);
    gap: 4rem 6rem;
  }
  .product__img{
    width: 160px;
  }
  .product__circle{
    width: 110px;
    height: 110px;
  }
  .product__title,
  .product__price{
    font-size: var(--normal-font-size);
  }

  .questions__container{
    padding: 1rem 0 4rem;
  }
  .questions__title{
    text-align: initial;
  }
  .questions__group{
    row-gap: 2rem;
  }
  .questions__header{
    padding: 1rem;
  }
  .questions__description{
    padding: 0 3.5rem 2.25rem 2.75rem;
  }

  .footer__logo{
    font-size: var(--h3-font-size);
  }
  .footer__container{
    grid-template-columns: 1fr .5fr .5fr .5fr;
  }
  .footer__copy{
    margin: 7rem 0 2rem;
  }
}

@media screen and (min-width: 1200px){
  .home__social{
    right: -3rem;
    row-gap: 4.5rem;
  }
  .home__social-follow{
    font-size: var(--small-font-size);
  }
  .home__social-follow::after{
    width: 1.5rem;
    right: -60%;
  }
  .home__social-link{
    font-size: 1.15rem;
  }

  .about__container{
    column-gap: 7rem;
  }

  .scrollup{
    right: 3rem;
  }
}



footer .contacto{
  height:500px;
  
  background-image:  url('../img/') ;
  background-image: unset;
  
  background-position:center;
  padding:60px 0;
  /* background-image: linear-gradient(180deg, #fbfbf9 0, #d0dad0 16.67%, #8ba190 33.33%, #a3ada5 50%, #6da172 66.67%, #6d9552 83.33%, #5d9e4b 100%); */
}

footer .footer-textos{
  text-align:center;
  color: #f5f8f9;
  font-size:25px;
  margin-top: -60px;
}

footer .footer-textos p{
  font-size: 14px;
  margin:15px 0 30px 0;
  color: #00ADE8;

}
form{
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 50%;
  
  
}
footer .contacto  input[type="text"], footer .contacto  input[type="email"],
footer .contacto  textarea{
  width: 100%;
  margin: 5px 0;
  padding: 15px ;
  background: none;
  border-radius: 5px;
  color:#00ADE8;
  border: 2px solid #00ADE8;
  font-family: 'lato';
  font-weight: 300;
  font-size: 16px;
  z-index: 99;
  background-color: white;
  opacity: 0.8;
}

footer .contacto  textarea{
  height:150px;
  max-height: 150px;
  max-width: 100%;
  min-width: 100%;
  min-height: 150px;
}
.derecha{
 display: flex;
 justify-content: flex-end;
}
footer .contacto  input[type="submit"]{
  display:block;
  width: 100px;
  margin:10px 0;
  padding: 10px 15px;
  background: none;
  border:2px solid #00ADE8;
  border-radius: 5px;
  color:#00ADE8;
  cursor: pointer;
  float:right;
  z-index: 99;
  background-color: white;
  opacity: 0.7;

}
footer .contacto  input[type="submit"]:hover{
  background: #14b9fa;
  color: #fff;
}




/* .fondo {
  height: 600px;
  position: relative;
  background-image: url('../img/DTI/banner.png');
  opacity: 0.2  black;
  overflow: hidden;
  background-attachment: fixed;
  background-position: center;
  padding-top: 130px;
  z-index: 99;
} */


@media (max-width:600px){
  .hero__title{
      font-size: 2rem;
  }

  .hero__paragraph{
      font-size: 1rem;
  }

  .subtitle{
      font-size: 1.8rem;
  }

  .price__element{
      width: 90%;
  }

  .price__element--best{
      width: 90%;
      /* padding: 40px; */
  }

  .price__price{
      font-size: 2rem;
  }

  .testimony{
      --padding-container: 60px 0;
  }

  .testimony__container{
      grid-template-columns: 28px 1fr 28px;
      gap: .9em;
  }

  .testimony__arrow{
      width: 100%;
  }

  .testimony__course{
      margin-top: 15px;
  }

  .questions__title{
      font-size: 1rem;
  }
}
 
.footer__title{
  justify-self: end;
  margin-bottom: 15px;
  
}

.nav--footer{
  padding-bottom: 60px;
}

.nav__link--footer{
  justify-content: space-between;
}

.footer__inputs{
  flex-wrap: wrap;
}

.footer__input{
  flex-basis: 100%;
  margin: 0;
  margin-bottom: 16px;
}

.footer__submit{
  margin-right: auto;
  margin-left: 0;
  

  /* 
  margin:0;
  width: 100%;
  */
}




footer .row {
display: flex;
justify-content: space-between;
color: rgb(250, 250, 250);
padding: 1rem 0;
}

.redes p{
  color: #00ADE8;
  margin-top: 120px;
}





main {
  width: 100%;
  height: auto;

  margin: auto;
}
.main-exchange-container {
  width: 100%;
  height: auto;
  padding-top: 80px;
  padding-bottom: 30px;
  text-align: center;
}
.main-exchange-container--title {
  width: 90%;
  min-width: 288px;
  max-width: 900px;
  margin: 0 auto;
  text-align: justify;
  color: rgb(56, 56, 56);
}
.main-exchange-container .h2{
  color: #004258;
  margin-bottom: 100px;
}
.main-exchange-container--title h3{
  text-align: center;
  margin-bottom: 30px;
}
.main-exchange-container--title .texto{
  text-align: justify;
  margin-bottom: 30px;
  color: rgb(56, 56, 56);
}

/* .main-exchange-container .backgroundImg {
  width: 250px;
  height: 250px;
  margin: 0 auto;
  margin-bottom: 50px;
  background-image: url("../img/mpgd.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */
.main-exchange-container h2 {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 2.6rem;
  color: var(--black);
}
.main-exchange-container p {
  margin-bottom: 30px;
 font-size: 1.4rem;
  color: white;
}
.main-currency-table,
.main-commissions-table {
  width: 70%;
  min-width: 235px;
  max-width: 500px;
  height: 360px;
  margin: 0 auto;

  font-family: "Inter", sans-serif;
}
.main-currency-table .currency-table--title {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.3rem;
  color: var(--bitcoin-orange);
}
.main-commissions-table .commissions-table--title {
  margin-bottom: 15px;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 2.3rem;
  color: var(--secondary-blue);
}





.showcase{
  background-image: url("../img/DTI/banner.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  min-width: 320px;
  height: 100vh;
  padding:40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.5s;
  z-index: 2;
}


.showcase.active{
  right: 300px;
}


.imagenes{
  display: flex;
  justify-content: center;
  width: 60%;
}
.overlay img{
  position: relative;
  width: 500px;
  justify-content: center;
}
.text{
  right: -20px;
  position: relative;
  z-index: 10;
  width: 55%;
  top: 50px;
}
.text .text-logo{
  position: relative;
  bottom: 50px;
  width: 180px;
}

.text #cuenta {
	display: flex;
	justify-content:start;
  
	margin-bottom: 20px;
  position: relative;
}
.text .mensaje {
  text-align:start;
	font-size: 18px;
	font-weight: 600;
  position: relative;
  top: 0px;
  text-transform:none;
  color: #14b9fa;
}
.text h1{
  text-align:start;
  font-size: 2.7em;
  font-weight: 800;
  color: #fff;
  line-height: 1em;
  text-transform: uppercase;
  margin-bottom: 30px;
}

.text h3{
  text-align: center;
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 1.6em;
  font-size: 700;
  color: #04ADBF;
  line-height: 1em;
  text-transform: uppercase;
}



.text a{
  position: relative;
  left: 0%;
  display: inline-block;
  font-size: 1em;
  background: #ccdb00cf;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top:-40px;
  color: white;
  letter-spacing: 2px;
  transition: 0.2s;
}

.text a:hover{
  letter-spacing: 4px;
}




@media (max-width: 991px){
  .showcase, .showcase {
      padding: 40px;
  }
  .text h2{
      font-size: 3em;
  }
  .text h3{
      font-size: 2em;
  }
}

.h3{
  text-align: center;
  position: relative;
  top: 60px;
  font-size: 36px;
}
.h4{
  margin-top: 100px;
  text-align: center;
  position: relative;
  top: 10px;
  font-size: 36px;
  
}


@media (max-width: 600px){
  
  .showcase{
    min-width: 320px;
    height: 650px;
    padding: 10px;
    background-image: url("../img/DTI/banner.png");
    background-repeat: no-repeat;
    background-position:left;
    background-size:contain;
    width: 100%;
    position: relative;
    top: -195px;
    z-index: 99;
  }
  .text{
    left: 0px;
    top: 350px;
    position: relative;
    z-index: 10;
    width: 100%;
  }
  .text .text-logo{
    position: none;
   width: 0px;
  }
  .text h1{
    text-align: start;
    font-size: 1.8em;
    font-weight: 800;
    color: #0d6973;
    line-height: 1em;
    text-transform: uppercase;
 
  }
  
  .text h3{
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 1.6em;
    font-size: 700;
    color: #04ADBF;
    line-height: 1em;
    text-transform: uppercase;
  }
  .text a{
    position: relative;
    left: 5%;
    display: inline-block;
    font-size: 0.7em;
    background: #af254a;
    padding: 10px 30px;
    text-transform: uppercase;
    text-decoration: none;
    font-weight: 500;
    margin-top:-40px;
    color: white;
    letter-spacing: 2px;
    transition: 0.2s;
  }

.button--flex{
  top: -30px;
  display: inline-flex;
  position: relative;
  left: 50%;
  align-items: center;
  column-gap: .5rem;
  text-decoration: underline;
  color: #007d9a;
}
.button--flex2{
  top: -10px;
  display: inline-flex;
  position: relative;
  left: 50%;
  align-items: center;
  column-gap: .5rem;
  text-decoration: underline;
  color: #007d9a;
}

}



/* ? ----- PORTADA ----- */
.portada {
	width: 100%;
	background: #EFEFEF;

	min-height: 100vh;
	position: relative;
	top: 0;
	left: 0;
	right: 0;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	transition: .5s ease-out all;
}

.portada.oculta {
	transform: translateY(100%);
}

.portada .header2 {
	margin-bottom: 100px;
	text-transform: uppercase;
	letter-spacing: 3px;
}

.portada .header2 .logotipo {
	font-size: 50px;
	font-size: 900;
	margin-bottom: 20px;
}


 .mensaje2 {
	font-size: 30px;
	font-weight: 600;
  position: relative;
  top: -50px;
}


/* ? ----- Cuenta Regresiva ----- */


.simply-section {
	background: transparent;
	width: 60px;
	height: 60px;
	margin: 0 20px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.simply-amount {
	display: block;
	font-size: 15px;
	font-weight: 700;
  text-align: center;
  color: #EFEFEF;
}

.simply-word {
	font-weight: 300;
	font-size: 10px;
  color: #EFEFEF;
}

.button{
  display: flex;
  align-items: center;

}

.button2 a{
  position: relative;
  left: 0%;
  display: inline-block;
  font-size: 1em;
  background: #af254a;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top:-40px;
  color: white;
  letter-spacing: 2px;
  transition: 0.2s;

}

.button2 a:hover{
  background-color: #0d6973;
  color: #af254a;
}


@media (max-width: 600px){
  .simply-amount {
    display: block;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    color: #2b505c;
  }
  
  .simply-word {
    font-weight: 300;
    font-size: 10px;
    color: #0d6973;
  }

.button2 a{
  bottom: -20px;
  position: relative;
  left: 0%;
  display: inline-block;
  font-size: 0.6em;
  background: #af254a;
  padding: 10px 30px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  margin-top:-40px;
  color: white;
  letter-spacing: 2px;
  transition: 0.2s;

}
}


/* ? ----- Cuenta Regresiva 2 ----- */
.new{
  display: flex;
  justify-content: center;
  align-items: center;
}

#cuenta2 {
	display: flex;
	justify-content:center;
  
	margin-bottom: 20px;
  position: relative;
}
.mensaje3 {
  margin-top: 50px;
	font-size: 25px;
	font-weight: 600;
  position: relative;
  top: 0px;
  margin-bottom: 50px;
  color: #007d9a;
}

.simply-section2 {
	background: rgb(236, 234, 234);
	width: 160px;
	height: 160px;
	margin: 0 20px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.simply-amount2 {
	display: block;
	font-size: 35px;
	font-weight: 700;
  text-align: center;
  color: #cddb00;
}

.simply-word2 {
	font-weight: 300;
	font-size: 25px;
  color: #ccdb00f0;
}
@media (max-width: 600px){
  #cuenta2 {
    flex-direction: column;
    margin: 80px  ;
    gap: 20px;
  }
  .mensaje3 {
    margin-top: 50px;
    font-size: 20px;
    font-weight: 600;
    left: 0px;
    position: relative;
    top: 0px;
    margin-bottom: 50px;
    text-align: center;
  }
}