/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Birthstone&family=Cormorant+Upright:wght@300;400;500;600;700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --txt-grey: #444950;
  --th-gd: #d9851e;
  /* --th-gd: #DA840F; */
  --th-bn: #a64005;
  /* --th-bn: #9f4b02; */
  --th-dgn: #394f43;
  /* --th-dgn: #42594c; */
  /* --th-dgn: #2e5931; */
  --th-lgn: #728c58;
  /* --th-lgn: #63814f; */
  --th-lbn: #ffeabb;
  --th-white: #f2f2f2;
  --cannoli-cream: #f1f0e2;
  --t-black: #1c1d20;
  --t-blue: #023047;
  --tb-dark: #1b263b;
  --grey: #f6f7f9;
  --success: #13ae8f;
  --error: #ff3333;

  /*===== Font and typography =====*/
  --pri-font: "Poppins", sans-serif;
  --int-font: "Inter", sans-serif;
  --bir-font: "Birthstone", cursive;
  --cor-font: "Cormorant Upright", serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --fs-9: 9rem;
  --fs-8-5: 8.5rem;
  --fs-8: 8rem;
  --fs-7-5: 7.5rem;
  --fs-7: 7rem;
  --fs-6-5: 6.5rem;
  --fs-6: 6rem;
  --fs-5-5: 5.5rem;
  --fs-5: 5rem;
  --fs-4-5: 4.5rem;
  --fs-4: 4rem;
  --fs-3-5: 3.5rem;
  --fs-3: 3rem;
  --fs-2-5: 2.5rem;
  --fs-2: 2rem;
  --fs-1-5: 1.5rem;
  --fs-1: 1rem;
  --fs-0-95: 0.95rem;
  --fs-0-85: 0.85rem;
  --fs-0-75: 0.75rem;
  --fs-0-65: 0.65rem;
  --fs-0-5: 0.5rem;
  --fs-0-25: 0.275rem;
  --fs-0-2: 0.2rem;
  /*===== Font weight =====*/
  --font-medium: 500;
  --font-semi-bold: 600;
  /*===== Margenes Bottom =====*/
  /* .25rem = 4px, .5rem = 8px, .75rem = 12px ... */
  --mb-0-25: 0.25rem;
  --mb-0-5: 0.5rem;
  --mb-0-75: 0.75rem;
  --mb-1: 1rem;
  --mb-1-5: 1.5rem;
  --mb-2: 2rem;
  --mb-2-5: 2.5rem;
  --mb-3: 3rem;
  --mb-3-5: 3rem;
  --mb-4: 4rem;
  --mb-4-5: 4.5rem;
  --mb-5: 5rem;
  --mb-5-5: 5.5rem;
  --mb-6: 6rem;
  --mb-6-5: 6.5rem;
  --mb-7: 7rem;
  --mb-7-5: 7.5rem;
  --mb-8: 8rem;
  --mb-8-5: 8.5rem;
  --mb-9: 9rem;
  --mb-9-5: 9.5rem;
  --mb-10: 10rem;
}

/* --------------- ========== LANDING PAGE-MAIN ========== ---------------*/
.lp-main {
  width: 100%;
  overflow: hidden;
}

/*========== >>>>> LOADER <<<<< ==========*/
.ld {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background-color: var(--black);
  background-image: url(../img/bckg/txt-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 100;
}

.ld-container {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: space-between;
  padding: var(--mb-2);
}

.ld-desc {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
}

.ld-desc p {
  font-size: 0.85rem;
  font-weight: 300;
  text-align: left;
  color: #e5e5e5;
  line-height: 1.5;
  text-transform: uppercase;
}

.ld-desc p:last-child {
  display: flex;
  justify-content: flex-end;
  column-gap: var(--mb-0-5);
  font-size: 0.8rem;
}

.ld-desc p span {
  color: var(--th-gd);
  font-weight: 400;
  font-size: 0.8rem;
}

.ld-bar {
  align-self: center;
}

.ldb {
  display: inline-block;
  width: 4px;
  height: 25px;
  background-color: var(--th-gd);
  border-radius: 10px;
  animation: scale-up4 1s linear infinite;
}

.ldb:nth-child(2) {
  height: 45px;
  margin: 0 6px;
  animation-delay: 0.25s;
}

.ldb:nth-child(3) {
  animation-delay: 0.5s;
}

@keyframes scale-up4 {
  20% {
    background-color: var(--th-bn);
    transform: scaleY(1.5);
  }

  40% {
    transform: scaleY(1);
  }
}

.ld-track {
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: var(--mb-1);
}

.ld-track .text,
.ld-track .num {
  white-space: nowrap;
  font-size: 2rem;
  font-weight: 300;
  color: #e5e5e5;
  flex-shrink: 0;
}

.ld-track .num {
  text-align: right;
  /* border: 1px red solid; */
}

.ldt-bar {
  flex: 1;
  min-width: 0;
  height: 4px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50px;
  overflow: hidden;
}

#ldt-line {
  height: 100%;
  width: 0%;
  background-color: var(--th-gd);
  border-radius: 50px;
  display: block;
}

/*========== >>>>> LP - WELCOME SECTION <<<<< ==========*/
.lp {
  width: 100%;
  height: 100dvh;
  background-color: var(--black);
  background-image: url(../img/bckg/txt-1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  animation: fade 0.5s ease-in-out;
  display: none;
}

.lp-container {
  position: relative;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  padding: var(--mb-3) var(--mb-4);
  background-color: rgb(114, 140, 88, 0.95);
  background-color: rgba(0, 0, 0, 0.9);
  /* border: 1px dodgerblue solid; */
  overflow: hidden;
}

.lp-svg {
  position: absolute;
  bottom: -5rem;
  left: var(--mb-1-5);
  width: 800px;
  object-fit: cover;
  opacity: 0.1;
  z-index: 3;
  display: none;
}

.lp-data {
  flex: 0 0 auto;
  align-self: flex-start;
  z-index: 4;
  /* border: 1px red solid; */
}

.lpd {
  flex: 0 0 auto;
  justify-content: flex-start;
}

.lpd h1 {
  width: 100%;
  font-size: 1.8rem;
  font-weight: 300;
  text-align: left;
  color: var(--soft-white);
  line-height: 1;
  opacity: 0;
  transform: translateY(20px);
  /* font-family: var(--bir-font); */
}

.lpd h1 span {
  font-family: var(--bir-font);
  font-size: 3.3rem;
  color: var(--th-gd);
  line-height: 1;
}

.lp-vid {
  position: relative;
  width: 100%;
  flex: 0 0 75%;
  justify-content: flex-start;
  overflow: hidden;
  z-index: 4;
  /* border: 1px teal solid; */
}

.lpv {
  width: 0;
  height: 100%;
  overflow: hidden;
  display: none;
}

.lpv video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.lpv-tools {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: fade 0.3s ease-in-out;
  justify-content: flex-end;
  align-items: flex-end;
  padding: var(--mb-1);
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  border: 2px var(--soft-white) solid;
  display: none;
}

#lpv-close {
  position: absolute;
  top: var(--mb-1);
  right: var(--mb-1);
  width: 31px;
  height: 31px;
  font-size: 1.8rem;
  background: transparent;
  color: var(--soft-white);
  cursor: pointer;
  border: 2px var(--white) solid;
  transition: all 0.2s ease-in-out;
}

#lpv-play {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  font-size: 3rem;
  color: var(--soft-white);
  cursor: pointer;
  border: 1px var(--white) solid;
  border-radius: 50%;
  padding: var(--mb-0-25);
  transition: all 0.2s ease-in-out;
}

.lpv-con {
  justify-content: flex-end;
  column-gap: var(--mb-1);
}

#lpv-pause {
  font-size: 1.8rem;
  color: var(--soft-white);
  cursor: pointer;
  border: 2px var(--white) solid;
  border-radius: 50%;
  padding: var(--mb-0-25);
  transition: all 0.2s ease-in-out;
}

.lpv-show {
  font-size: 0.9rem;
  color: #e5e5e5;
  color: var(--white);
  cursor: pointer;
  border: 2px var(--white) solid;
  border-radius: 30px;
  padding: var(--mb-0-5) var(--mb-1);
  transition: all 0.2s ease-in-out;
}

#lpv-play:hover,
#lpv-pause:hover,
.lpv-show:hover {
  background-color: var(--white);
  color: var(--soft-black);
}

#lpv-close:hover {
  background-color: var(--error);
  border: 2px var(--error) solid;
}

.lp-button {
  flex: 0 0 auto;
  width: 100%;
  justify-content: space-between;
  /* align-self: flex-end; */
  /* border: 1px blue solid; */
  z-index: 4;
}

.lp-btn:hover p {
  background-color: var(--th-dgn);
  border: 2px var(--th-dgn) solid;
}

/* .lp-btn {
  opacity: 0;
  transform: translateX(-40px);
} */

/*===== MEDIA QUERIES =====*/
/* Media query for screens with a maximum width of 500px */
@media screen and (max-width: 500px) {
  /* --------------- ========== LANDING PAGE-MAIN ========== ---------------*/
  .lp-main {
    width: 100%;
    overflow: hidden;
  }

  /*========== >>>>> LOADER <<<<< ==========*/
  .ld {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
  }

  .ld-container {
    width: 100%;
    height: 100%;
    padding: var(--mb-1-5) var(--mb-1);
  }

  .ld-desc {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    /* border: 1px red solid; */
    row-gap: var(--mb-0-75);
  }

  .ld-desc p {
    flex: 0 0 48%;
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.5;
    text-transform: uppercase;
  }

  .ld-desc p:last-child {
    display: flex;
    justify-content: center;
    column-gap: var(--mb-0-25);
    font-size: 0.7rem;
  }

  .ld-desc p span {
    color: var(--th-gd);
    font-weight: 400;
    font-size: 0.7rem;
  }

  .ld-track {
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    gap: var(--mb-0-75);
  }

  .ld-track .text,
  .ld-track .num {
    white-space: nowrap;
    font-size: 1.3rem;
    line-height: 1.1;
  }

  .ld-track .num {
    text-align: right;
    /* border: 1px red solid; */
  }

  .ldt-bar {
    flex: 1;
    min-width: 0;
    height: 3px;
  }

  /*========== >>>>> LP - WELCOME SECTION <<<<< ==========*/
  .lp {
    width: 100%;
    height: 100dvh;
    display: none;
  }

  .lp-container {
    position: relative;
    width: 100%;
    height: 100%;
    justify-content: space-between;
    padding: var(--mb-2) var(--mb-1);
    overflow: hidden;
  }

  .lp-data {
    flex: 0 0 auto;
    width: 100%;
    align-self: center;
    z-index: 4;
    /* border: 1px red solid; */
  }

  .lpd {
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
  }

  .lp-data h1 {
    width: 100%;
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
  }

  .lp-data h1 span {
    font-family: var(--bir-font);
    font-size: 2.3rem;
  }

  .lp-vid {
    position: relative;
    width: 100%;
    flex: 0 0 50%;
  }

  .lpv {
    width: 0;
    height: 100%;
    overflow: hidden;
    display: none;
  }

  .lpv video {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .lpv-tools {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: fade 0.3s ease-in-out;
    justify-content: flex-end;
    align-items: flex-end;
    padding: var(--mb-1);
    border: 1px var(--soft-white) solid;
    display: none;
  }

  #lpv-close {
    position: absolute;
    top: var(--mb-1);
    right: var(--mb-1);
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px var(--white) solid;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.2);
  }

  #lpv-play {
    position: absolute;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
    font-size: 2.5rem;
    color: var(--soft-white);
    cursor: pointer;
    border: 1px var(--white) solid;
    border-radius: 50%;
    padding: var(--mb-0-25);
    transition: all 0.2s ease-in-out;
  }

  .lpv-con {
    justify-content: flex-end;
    column-gap: var(--mb-1);
  }

  #lpv-pause {
    font-size: 1.6rem;
    color: var(--soft-white);
    cursor: pointer;
    border: 2px var(--white) solid;
    border-radius: 50%;
    padding: var(--mb-0-25);
    transition: all 0.2s ease-in-out;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.2);
  }

  .lpv-show {
    font-size: 0.8rem;
    color: #e5e5e5;
    color: var(--white);
    cursor: pointer;
    border: 2px var(--white) solid;
    border-radius: 30px;
    padding: var(--mb-0-5) var(--mb-1);
    transition: all 0.2s ease-in-out;
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.2);
  }

  #lpv-play:hover,
  #lpv-pause:hover,
  .lpv-show:hover {
    background-color: var(--white);
    color: var(--soft-black);
  }

  #lpv-close:hover {
    background-color: var(--error);
    border: 2px var(--error) solid;
  }

  .lp-button {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-1);
    z-index: 4;
  }

  .lp-button .lp-btn p {
    font-size: 0.85rem;
  }

  .lp-button .lp-btn span {
    font-size: var(--fs-1-5);
    padding: 0.25rem;
    width: 40px;
    height: 40px;
  }

  .lp-btn:hover p {
    background-color: var(--th-dgn);
    border: 2px var(--th-dgn) solid;
  }

  /* .lp-btn {
  opacity: 0;
  transform: translateX(-40px);
} */
}

/* Media query for iPads-Tablets */
@media screen and (min-width: 700px) and (max-width: 900px) {
}

/* Media query for screens with a minimum width of 1440px and a maximum width of 1600px */
@media screen and (min-width: 1440px) and (max-width: 1600px) {
}

/* Media query for screens with a minimum width of 1650px */
@media screen and (min-width: 1650px) {
  /* --------------- ========== LP-MAIN ========== ---------------*/
  .lp-main {
    width: 100%;
    overflow: hidden;
  }
}
