/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Upright:wght@300;400;500;600;700&family=Inter+Tight:ital,wght@0,100..900;1,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&family=Source+Sans+3:ital,wght@0,200..900;1,200..900&family=Space+Grotesk:wght@300..700&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --th-blue: #023047;
  --th-green: #73bf5e;
  --txt-grey: #444950;
  --success: #13ae8f;
  --error: #ff3333;
  --light-green: #f1faf1;
  --light-blue: #bebae8;
  --light-pink: #f9b5cd;
  --light-grey: #ebebeb;

  /*===== Font and typography =====*/
  --pri-font: "Inter Tight", sans-serif;
  --sos-font: "Source Sans 3", sans-serif;
  --pop-font: "Poppins", sans-serif;
  --cor-font: "Cormorant Upright", serif;
  --spa-font: "Space Grotesk", sans-serif;

  /* .5rem = 8px, 1rem = 16px, 1.5rem = 24px ... */
  --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;
}

/* --------------- ========== LP-MAIN ========== ---------------*/
.lp-main {
  width: 100%;
  max-width: 1440px;
  overflow: hidden;
}
/* --------------- ========== HOME - HERO SECTION ========== ---------------*/
.hero {
  width: 100%;
  height: 100dvh;
}

.h-container {
  width: 100%;
  height: 100%;
  padding: var(--mb-1) var(--mb-3);
  padding-top: var(--mb-6);
  justify-content: space-between;
}

.h-head {
  width: 100%;
  height: 380px;
  justify-content: flex-start;
  border: 1px #d4d4d4 solid;
  margin-top: var(--mb-2);
  backdrop-filter: blur(10px);
}

.hh-img {
  flex: 0 0 32%;
  height: 100%;
  /* border: 1px teal solid; */
  overflow: hidden;
  background-color: #e5e5e5;
}

.hh-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 35%;
}

.hh-info {
  flex: 0 0 68%;
  height: 100%;
  justify-content: flex-start;
  padding: var(--mb-2);
  /* border: 1px dodgerblue solid; */
}

.hhi-title {
  flex: 0 0 55%;
  height: 100%;
  justify-content: space-between;
  align-items: flex-start;
  border-right: 1px var(--th-green) solid;
  padding-right: var(--mb-1-5);
}

.hhi-title h1 {
  font-size: 2rem;
  font-weight: 400;
  text-align: left;
  color: var(--th-blue);
  line-height: 1.3;
  font-family: var(--pop-font);
}

.hhi-title p {
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  color: var(--txt-grey);
  color: var(--th-blue);
}

.hhi-title p span {
  color: var(--th-blue);
  color: sienna;
}

.hhi-projects {
  flex: 0 0 45%;
  height: 100%;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 2.2rem;
}

.hhi-projects h2 {
  font-size: 0.85rem;
  font-weight: 500;
  text-align: left;
  color: var(--txt-grey);
  text-transform: uppercase;
}

.hhip-ul {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  /* row-gap: 0.1rem; */
}

.hhip-ul li {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: var(--mb-0-5);
  padding-top: var(--mb-0-75);
  padding-bottom: var(--mb-0-25);
  cursor: pointer;
}

.hhip-ul li:first-child {
  padding-top: 0;
}

.hhip-ul li a {
  font-size: 1rem;
  font-weight: 400;
  text-align: left;
  color: var(--th-blue);
  transition: all 0.3s ease;
}

.hhip-ul li span {
  position: relative;
  width: 100%;
  height: 1px;
  background-color: #e5e5e5;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

.hhip-ul li span::after {
  position: absolute;
  width: 0;
  inset: 0;
  content: "";
  background-color: sienna;
  transition: all 0.5s ease-in-out;
}

.hhip-ul li:hover span::after {
  width: 100%;
}

.hhip-ul li:hover a {
  font-weight: 500;
}

.h-title {
  width: 100%;
  justify-content: flex-end;
  row-gap: var(--mb-0-5);
}

.ht-head {
  width: 100%;
  justify-content: space-between;
}

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

.hth-span span {
  font-size: 1.1rem;
  font-weight: 500;
  text-align: left;
  color: var(--txt-grey);
  color: #a3a3a3;
  /* color: var(--th-green); */
  line-height: 1;
}

.hth-links {
  flex: 0 0 auto;
  justify-content: flex-end;
  column-gap: var(--mb-0-75);
  /* border: 1px teal solid; */
}

.hth-links a {
  flex: 0 0 auto;
}

.hth-links a i {
  font-size: 1.3rem;
  color: var(--th-green);
  color: #a3a3a3;
  cursor: pointer;
}

.hth-links a:hover i {
  color: var(--th-green);
}

.ht {
  width: 100%;
  justify-content: space-between;
  /* border: 1px red solid; */
}

.ht p {
  font-size: 6.5rem;
  font-weight: 500;
  color: var(--th-blue);
  text-align: left;
  text-transform: uppercase;
  font-family: var(--spa-font);
  line-height: 0.8;
}

.ht p:first-child {
  margin-left: -0.5rem;
}

.ht p:last-child {
  margin-right: -0.1rem;
}

/* --------------- ========== HOME - WORK SECTION ========== ---------------*/
.wo {
  width: 100%;
}

.wo-container {
  width: 100%;
  padding: var(--mb-6) var(--mb-3);
  padding-bottom: var(--mb-3);
  row-gap: var(--mb-3);
}

.wo-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-2);
}

.woc {
  flex: 0 0 49%;
  min-width: 620px;
  height: 430px;
  justify-content: flex-start;
  row-gap: var(--mb-1);
  cursor: pointer;
  /* border: 1px #e5e5e5 solid; */
}

.woc-img {
  width: 100%;
  height: 100%;
  background-color: var(--soft-black);
  background-image: url(/assets/img/texture/txt-3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  overflow-block: hidden;
  padding: var(--mb-3) var(--mb-5);
  padding-bottom: 0;
}

.woc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  background-color: black;
  transition: all 3s ease;
  /* border: 1px #e5e5e5 solid; */
}

.woc:hover .woc-img img {
  object-position: 50% 30%;
}

.woc-info {
  width: 100%;
  /* padding: var(--mb-1-5); */
  justify-content: flex-start;
  row-gap: var(--mb-0-75);
}

.woci-head {
  width: 100%;
  justify-content: space-between;
}

.woci-head p,
.woci-head span {
  font-size: 1.15rem;
  font-weight: 500;
  text-align: left;
  color: var(--th-blue);
}

.woci-head p {
  font-family: var(--spa-font);
}

.woci-head p span,
.woci-head span {
  color: #a3a3a3;
}

.woci-head > span {
  font-family: var(--spa-font);
  font-size: 1.1rem;
}

.woci-data,
.woci-tags {
  display: none;
}

.wo-other {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-1-5);
}

.woo-title {
  flex: 0 0 100%;
  justify-content: flex-start;
}

.woo-title h3 {
  font-size: var(--fs-2);
  font-weight: 400;
  text-align: left;
  color: var(--th-blue);
  /* font-family: var(--pop-font); */
  text-decoration: underline;
  text-decoration-color: sienna;
  text-decoration-thickness: 2px;
  letter-spacing: -0.03em;
}

.woo {
  position: relative;
  flex: 0 0 32.5%;
  height: 250px;
  background-color: var(--soft-black);
  background-image: url(/assets/img/texture/txt-3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: var(--mb-1);
  cursor: pointer;
  transition: all 0.3s ease-in;
  border: 1px #e5e5e5 solid;
}

.woo:hover {
  padding: 0;
}

.woo-img {
  width: 100%;
  height: 100%;
  /* background-color: #e5e5e5; */
}

.woo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease-in;
  border: 1px #747474 solid;
}

/* .woo:hover .woo-img img {
  scale: 1.1;
} */

.woo-data {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  padding: var(--mb-0-75);
  align-items: flex-start;
}

.woo:hover .woo-data {
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.wood-tags {
  justify-content: flex-start;
  column-gap: var(--mb-0-25);
  background-color: rgba(250, 250, 250, 0.2);
  backdrop-filter: blur(10px);
  padding: var(--mb-0-5) var(--mb-0-75);
  border-radius: 30px;
}

.woo:nth-child(2) .woo-data .wood-tags {
  background-color: rgba(0, 0, 0, 0.7);
  /* border: 1px red solid; */
}

.wood-tags span {
  color: var(--soft-white);
  font-size: 0.7rem;
  font-weight: 500;
  text-align: left;
}

#wood-arrow {
  font-size: 1.25rem;
  color: var(--white);
  border: 1px var(--white) solid;
  padding: var(--mb-0-5);
  border-radius: 50%;
  align-self: flex-end;
  transition: all 0.3s ease-in-out;
}

.woo:hover .woo-data #wood-arrow {
  rotate: 45deg;
  background-color: var(--white);
  color: sienna;
}

.woo-action {
  flex: 0 0 100%;
  justify-content: flex-start;
}

/* --------------- ========== HOME - SERVICES SECTION ========== ---------------*/
.se {
  width: 100%;
}

.se-container {
  width: 100%;
  padding: var(--mb-6) var(--mb-3);
  row-gap: var(--mb-4);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}

.se-title {
  flex: 0 0 22%;
  height: 426px;
  justify-content: space-between;
  align-items: flex-start;
  /* border: 1px red solid; */
}

.se-title h3 {
  font-size: var(--fs-2-5);
  font-weight: 400;
  text-align: left;
  color: var(--th-blue);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.set-span {
  display: none;
}

.se-tools,
.se-tool {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-75);
}

.se-tools {
  border-left: 2px #e5e5e5 solid;
  padding-left: var(--mb-1-5);
}

.se-tool {
  row-gap: 0.05rem;
}

.se-tool span {
  font-size: 0.8rem;
  font-weight: 500;
  text-align: left;
  color: var(--txt-grey);
  color: sienna;
}

.se-tool p {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  color: var(--th-blue);
  line-height: 1.3;
}

.se-cards {
  flex: 0 0 60%;
  height: 426px;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  row-gap: var(--mb-2-5);
  /* border: 1px teal solid; */
}

.sec {
  flex: 0 0 46%;
  justify-content: space-between;
  align-items: flex-start;
}

.sec-no {
  flex: 0 0 20%;
  justify-content: flex-start;
}

.sec-no span {
  font-size: 1.2rem;
  font-weight: 500;
  text-align: left;
  color: sienna;
  /* line-height: 1.2; */
}

.sec-data {
  flex: 0 0 80%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-0-5);
}

.sec-data h4 {
  font-size: 1.15rem;
  font-weight: 500;
  text-align: left;
  color: var(--th-blue);
  line-height: 1.3;
}

.sec-data p,
.se-data span {
  font-size: 0.95rem;
  font-weight: 400;
  text-align: left;
  color: var(--th-blue);
}

.sec-data span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--txt-grey);
}

/*===== MEDIA QUERIES =====*/
/* Media query for screens with a maximum width of 500px */
@media screen and (max-width: 500px) {
  /* --------------- ========== LP-MAIN ========== ---------------*/
  .lp-main {
    width: 100%;
    max-width: 1440px;
    overflow: hidden;
  }
  /* --------------- ========== HOME - HERO SECTION ========== ---------------*/
  .hero {
    width: 100%;
    height: auto;
  }

  .h-container {
    width: 100%;
    height: auto;
    padding: var(--mb-1);
    padding-top: var(--mb-6);
    justify-content: flex-start;
  }

  .h-head {
    width: 100%;
    height: auto;
    justify-content: flex-start;
    flex-direction: column;
    margin-top: var(--mb-2);
    backdrop-filter: blur(10px);
    order: 2;
    /* border: 1px red solid; */
  }

  .hh-img {
    flex: 0 0 auto;
    width: 100%;
    height: 350px;
    /* border: 1px teal solid; */
    overflow: hidden;
    background-color: #e5e5e5;
  }

  .hh-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 35%;
  }

  .hh-info {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: flex-start;
    padding: var(--mb-2);
    row-gap: var(--mb-1-5);
    /* border: 1px dodgerblue solid; */
  }

  .hhi-title {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-1-5);
    border-right: unset;
    border-bottom: 1px var(--th-green) solid;
    padding-right: unset;
    padding-bottom: var(--mb-1-5);
  }

  .hhi-title h1 {
    font-size: 2rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.3;
    font-family: var(--pop-font);
  }

  .hhi-title p {
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
  }

  .hhi-title p span {
    color: var(--th-blue);
    color: sienna;
  }

  .hhi-projects {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    padding: unset;
    row-gap: var(--mb-1-5);
  }

  .hhi-projects h2 {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
  }

  .hhip-ul {
    width: 100%;
    align-items: center;
    /* row-gap: 0.1rem; */
  }

  .hhip-ul li {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-0-5);
    padding-top: var(--mb-0-75);
    padding-bottom: var(--mb-0-25);
    cursor: pointer;
  }

  .hhip-ul li:first-child {
    padding-top: 0;
  }

  .hhip-ul li a {
    font-size: 0.95rem;
    font-weight: 400;
    text-align: center;
  }

  .hhip-ul li span {
    position: relative;
    width: 100%;
    height: 1px;
    background-color: #e5e5e5;
    overflow: hidden;
    transition: all 0.5s ease-in-out;
  }

  .h-title {
    width: 100%;
    justify-content: flex-end;
    row-gap: var(--mb-1);
    order: 1;
    /* border: 1px teal solid; */
  }

  .ht-head {
    width: 100%;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: var(--mb-1-5);
  }

  .hth-span {
    flex: 0 0 auto;
    justify-content: flex-start;
    order: 2;
  }

  .hth-span span {
    font-size: 1.1rem;
    font-weight: 400;
    text-align: center;
    line-height: 1;
  }

  .hth-links {
    flex: 0 0 auto;
    justify-content: flex-end;
    column-gap: var(--mb-0-75);
    order: 1;
    /* border: 1px teal solid; */
  }

  .hth-links a {
    flex: 0 0 auto;
  }

  .hth-links a i {
    font-size: 1.2rem;
    color: var(--th-green);
    color: #a3a3a3;
    cursor: pointer;
  }

  .hth-links a:hover i {
    color: var(--th-green);
  }

  .ht {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    /* border: 1px red solid; */
    flex-direction: column;
  }

  .ht p {
    font-size: 4rem;
    font-weight: 500;
    text-align: center;
    line-height: 1;
  }

  .ht p:first-child {
    margin: 0;
  }

  .ht p:last-child {
    margin: 0;
  }

  /* --------------- ========== HOME - WORK SECTION ========== ---------------*/
  .wo {
    width: 100%;
  }

  .wo-container {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
    padding-bottom: var(--mb-2);
    row-gap: var(--mb-2-5);
  }

  .wo-cards {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
    row-gap: var(--mb-2);
  }

  .woc {
    flex: 0 0 auto;
    width: 100%;
    min-width: 100%;
    height: 350px;
    justify-content: flex-start;
    row-gap: var(--mb-1);
    cursor: pointer;
    /* border: 1px #e5e5e5 solid; */
  }

  .woc-img {
    width: 100%;
    height: 100%;
    padding: var(--mb-1-5) var(--mb-2);
    padding-bottom: 0;
  }

  .woc-img img {
    width: 100%;
    object-position: 50% 0%;
  }

  .woc:hover .woc-img img {
    object-position: 50% 0%;
  }

  .woc-info {
    width: 100%;
    /* padding: var(--mb-1-5); */
    justify-content: flex-start;
    row-gap: var(--mb-0-75);
  }

  .woci-head {
    width: 100%;
    justify-content: space-between;
  }

  .woci-head p,
  .woci-head span {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: left;
    color: var(--th-blue);
  }

  .woci-head p {
    font-family: var(--spa-font);
  }

  .woci-head p span,
  .woci-head span {
    color: #a3a3a3;
  }

  .woci-head > span {
    font-family: var(--spa-font);
    font-size: 0.85rem;
  }

  .woci-data,
  .woci-tags {
    display: none;
  }

  .wo-other {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
    row-gap: var(--mb-1-5);
  }

  .woo-title {
    flex: 0 0 100%;
    justify-content: flex-start;
  }

  .woo-title h3 {
    font-size: var(--fs-2);
    font-weight: 400;
    text-align: center;
  }

  .woo {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    height: 200px;
    padding: var(--mb-1);
    cursor: pointer;
    transition: all 0.3s ease-in;
    border: 1px #e5e5e5 solid;
  }

  .woo:hover {
    padding: 0;
  }

  .wood-tags {
    justify-content: flex-start;
    column-gap: var(--mb-0-25);
    background-color: rgba(250, 250, 250, 0.2);
    backdrop-filter: blur(10px);
    padding: var(--mb-0-5) var(--mb-0-75);
    border-radius: 30px;
  }

  .woo:nth-child(2) .woo-data .wood-tags,
  .woo:nth-child(2) #wood-arrow {
    background-color: rgba(0, 0, 0, 0.7);
    /* border: 1px red solid; */
  }

  .wood-tags span {
    color: var(--soft-white);
    font-size: 0.7rem;
    font-weight: 500;
    text-align: left;
  }

  #wood-arrow {
    font-size: 1.25rem;
    color: var(--white);
    border: 1px var(--white) solid;
    padding: var(--mb-0-5);
    border-radius: 50%;
    align-self: flex-end;
    transition: all 0.3s ease-in-out;
  }

  .woo:hover .woo-data #wood-arrow {
    rotate: 45deg;
    background-color: var(--white);
    color: sienna;
  }

  .woo-action {
    flex: 0 0 100%;
    justify-content: center;
  }

  /* --------------- ========== HOME - SERVICES SECTION ========== ---------------*/
  .se {
    width: 100%;
  }

  .se-container {
    width: 100%;
    padding: 0;
    padding: var(--mb-4) var(--mb-1-5);
    row-gap: var(--mb-2);
    flex-wrap: unset;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    row-gap: var(--mb-3);
  }

  .se-title {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-2);
    /* border: 1px red solid; */
  }

  .se-title h3 {
    font-size: var(--fs-2);
    font-weight: 400;
    text-align: center;
    line-height: 1.2;
  }

  .set-span {
    display: flex;
    width: 2px;
    height: 50px;
    background-color: #e5e5e5;
  }

  .se-tools,
  .se-tool {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-0-75);
  }

  .se-tools {
    border: none;
    padding: 0;
  }

  .se-tool {
    row-gap: 0.05rem;
  }

  .se-tool span {
    font-size: 0.75rem;
    font-weight: 500;
    text-align: center;
  }

  .se-tool p {
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    line-height: 1.3;
  }

  .se-cards {
    flex: 0 0 auto;
    width: 100%;
    height: auto;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    flex-wrap: unset;
    row-gap: var(--mb-2-5);
    /* border: 1px teal solid; */
  }

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

  .sec-no {
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-start;
  }

  .sec-no span {
    font-size: 1.2rem;
    font-weight: 500;
    border-top: 2px #e5e5e5 solid;
    padding-top: var(--mb-0-5);
  }

  .sec-data {
    flex: 0 0 auto;
    width: auto;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-0-75);
  }

  .sec-data h4 {
    font-size: 1.15rem;
    font-weight: 500;
    text-align: center;
    color: var(--th-blue);
    line-height: 1.3;
  }

  .sec-data p,
  .se-data span {
    font-size: 0.95rem;
    font-weight: 400;
    text-align: center;
    color: var(--th-blue);
  }

  .sec-data span {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--txt-grey);
    text-align: center;
  }
}

/* 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) {
}
