:root {
  --main-bg-color: #f4f4f4;
  --aux-bg-color: #27d390;
  --main-placeholder-color: hsl(0% 0% 0% / 50%);
  --main-text-color: #131313;
  --main-text-color-hover: #0e0e0e;
  --main-link-color: #27d390;
  --main-link-hover-color: #68e0b1;

  --font-title-menus: 24px;
  --font-footer-menus: 14px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: var(--main-text-color);
  background-color: hsl(157 69% 44% / 1);

}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: var(--main-link-hover-color);
}
.main-home, .main-method {
  display: flex;
  width: 100vw;
  height: 100vh;
  max-width: 100vw;
  max-height: 100%;
  position: relative;
  align-items: center;
  overflow: hidden;
}
h1 {
  font-size: 2.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 1rem;
}

h2 {
  font-size: 2rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 1rem;
}
h3 {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 1rem;
}
h4 {
  font-size: 1.2rem;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 1rem;
}
ul {
  list-style: none;
}
li {
  /* margin-bottom: 0.5rem; */
}
p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.fs-small {
  font-size: 0.8rem;
}
.fs-medium {
  font-size: 1rem;
}
.fs-large {
  font-size: 1.6rem;
}
.fs-xlarge {
  font-size: 2rem;
}
.fw-300 {
  font-weight: 300;
}
.fw-400 {
  font-weight: 400;
}
.fw-500 {
  font-weight: 500;
}
.fw-600 {
  font-weight: 600;
}
.fw-700 {
  font-weight: 700;
}
.fw-800 {
  font-weight: 800;
}
.fw-900 {
  font-weight: 900;
}
hr {
  border: 0;
  height: 2px;
  background:var(--main-text-color);
  margin-bottom: 1em;
}
.hr-primary {
  height: 2px;
  background: var(--main-link-hover-color);
  opacity: 0.4;
}
.dl-h1 {
  font-size: 2.3em;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 1rem;
  
}
.dl-h2 {
  font-size: 2em;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.dl-display-1 {
  font-size: 6.5em;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.dl-display-2 {
  font-size: 5.5em;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.dl-text-center {
  text-align: center;
}

.dl-py-5 {
  padding-top: 5em;
  padding-bottom: 5em;
}
.dl-px-5 {
  padding-left: 5em;
  padding-right: 5em;
}
.dl-px-4 {
  padding-left: 4em;
  padding-right: 4em;
}
.dl-px-3 {
  padding-left: 3em;
  padding-right: 3em;
}
.dl-px-2 {
  padding-left: 2em;
  padding-right: 2em;
}
.dl-px-1 {
  padding-left: 1em;
  padding-right: 1em;
}
.dl-mb-5 {
  margin-bottom: 5em;
}
.dl-mb-4 {
  margin-bottom: 4em;
}
.dl-mb-3 {
  margin-bottom: 3em;
}
.dl-mb-2 {
  margin-bottom: 2em;
}
.dl-mb-1 {
  margin-bottom: 1em;
}
.dl-mt-5 {
  margin-top: 5em;
}
.dl-mt-3 {
  margin-top: 3em;
}
.dl-mt-2 {
  margin-top: 2em;
}
.dl-pb-5 {
  padding-bottom: 5em;
}
.dl-ml-5 {
  margin-left: 5em;
}
.dl-ml-4 {
  margin-left: 4em;
}
.dl-ml-3 {
  margin-left: 3em;
}
.dl-ml-2 {
  margin-left: 2em;
}
.dl-ml-1 {
  margin-left: 1em;
}
.dl-mr-5 {
  margin-right: 5em;
}
.dl-mr-4 {
  margin-right: 4em;
}
.dl-mr-3 {
  margin-right: 3em;
}
.dl-mr-2 {
  margin-right: 2em;
}
.dl-mr-1 {
  margin-right: 1em;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.dl-container{
  width: 100%;
  max-width: 860px /* Check */;
  position: relative;
  display: block;
}

.dl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
  padding: 2rem;
  width: 100%;
  max-width: 860px;
}
.dl-grid-2{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 1rem;
}

.card{
  color: var(--main-bg-color);
  background-color: rgba(0, 0, 0, 1.0);
  border-radius: 0rem;
  padding-top: 2em;
  padding-bottom: 2em;
  padding-left: 2em;
  padding-right: 2em;
  transition: all 0.3s ease;
}
.card:hover{
  cursor: pointer;
}

.card-hover{
  color: var(--main-bg-color);
  background-color: rgba(0, 0, 0, 1.0);
  border-radius: 0rem;
  padding-top: 2em;
  padding-bottom: 2em;
  padding-left: 2em;
  padding-right: 2em;
  transition: all 0.3s ease;
}

.dl-row {
  width: 100%;
  display: flex;
  flex-flow: row;
}
.dl-column{
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
.dl-justify-content-center {
  display: flex;
  justify-content: center;
}
.dl-align-items-center {
  display: flex;
  align-items: center;
}
.dl-col{
  width: 100%;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
.dl-col-6{
  width: 50%;
  display: flex;
  flex-flow: column;
}
.dl-main-titles {
  font-size: 70px;
  font-weight: 900;
  width: 600px;
  color: var(--main-text-color);
  text-transform: uppercase;
  text-align: left;
  opacity: 0;
}

.dl-super-number {
  font-size: 9em;
  font-weight: 900;
  line-height: 1em;
}
.dl-super-title{
  font-size: 7em;
  font-weight: 900;
  line-height: 1em;
}

.dl-main-titles .line-break {
  display: block; /* Obliga a un salto de línea */
}

.dl-get-your-tickets {
  font-size: 2.6em;
  width: 440px;
  font-weight: 900;
  text-decoration: none;
  color: var(--main-text-color-hover);
  text-transform: uppercase;
  text-align: left;
  background-color: var(--main-bg-color);
  padding-left: 1.6em;
  padding-right: 1.6em;
  padding-top: 1em;
  padding-bottom: 1em;
  margin-bottom: 1em;
  transition: all 0.3s ease;
}
.dl-get-your-tickets:hover {
  background-color: var(--main-text-color-hover);
}
.dl-get-your-tickets:hover #dl-next-svg{
  fill: var(--main-link-color);
}
.dl-text-white {
  color: #fff;
/*   font-size: 18px; */
}
.dl-text-primary {
  color: var(--main-text-color);
}
.dl-text-secondary {
  color: var(--main-link-color);
}

.next{
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  cursor: pointer;
  width: 6vw;
  font-size: 30px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--main-text-color);
  border-left: 2px solid var(--main-text-color);
  transition: all .3s ease-in-out;
}
.next:hover{
  background-color: rgba(0, 0, 0, 0.2);
}
.next a{
  font-size: 2em;
  padding-right: .4em;
  padding-left: .4em;
  text-decoration: none;
  color: var(--main-text-color);
}
.next .dl-next-button{
  font-size: 2em;
  padding-right: .4em;
  padding-left: .4em;
  text-decoration: none;
  color: var(--main-text-color);
}
#dl-next-svg{
  width: 1em;
  transform: rotate(180deg);
  transition: all 0.3s ease-in-out;
}

.dl-get-now{
  font-size: 1em;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    color: var(--main-text-color);
    padding-left: 1.6em;
    padding-right: 1.6em;
    border: 2px solid;
    padding-top: 1em;
    padding-bottom: 1em;
    margin-bottom: 1em;
    transition: all 0.3s ease-in-out;
}
.dl-get-now:hover{
  background-color: var(--main-text-color);
  color: var(--main-link-color);
  border: 2px solid var(--main-link-color);
}

.dl-uppercase{
  text-transform: uppercase;
}

.dl-list-check{
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.dl-list-check svg{
  width: 16px;
  margin-right: 6px;
  fill: var(--main-link-hover-color);
}
 .dl-list-icon{
    display: flex;
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
 }



/* Media Queries for smaller devices */
@media only screen and (max-width: 600px) {

  .dl-container .dl-container{
    padding-left: 2em;
    padding-right: 2em;
  }
  .dl-row {
    flex-flow: column;
  }
  .dl-col-6{
    width: 100%;
  }
  .dl-h1 {
    font-size: 18px;
  }
  .dl-main-titles {
    width: 100%;
    font-size: 41px;
    display: flex;
    justify-content: center;
    padding-right: 0px;
  }
  .next{
    width: 50px;
    font-size: 20px;
  }

  .dl-text-white {
    color: #fff;
    font-size: 18px;
  }
  .dl-list-check {
    font-size: 14px;
  }
  .dl-rs-title p:nth-child(2) {
    margin-bottom: 0;
    font-size: 12px;
  }

}



@media (max-width: 376px){
  .dl-text-white {
    color: #fff;
    font-size: 16px;
  }
 }