/*========== GOOGLE FONTS ==========*/
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Inter+Tight:ital,wght@0,100..900;1,100..900&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");

/*========== VARIABLES CSS ==========*/
:root {
  /*===== Colors =====*/
  --soft-white: #fbfaf5;
  --soft-black: #181a18;
  --white: #ffffff;
  --black: #0a0a0a;
  --theme-dark: #1c1d20;
  --theme-blue: #0ea5e9;
  --theme-d-blue: #023047;
  --the-d-blue: #1b263b;
  --theme-yellow: #ffb703;
  --theme-orange: #fb8500;
  --theme-l-orange: #f59e0b;
  --the-blu: #c4e4ff;
  --the-blu-2: #dce6f2;
  --bg-grey: #f7f7f7;
  --bg-black: #1f242e;
  --text-grey: #444950;
  --light-grey: #ebebeb;
  --success: #13ae8f;
  --error: #ff3333;

  /*===== Font and typography =====*/
  --pri-font: "Inter Tight", sans-serif;
  --lat-font: "Lato", sans-serif;
  --com-font: "Comfortaa", 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;
}

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

/*========== HERO SECTION ==========*/
.hero {
  position: relative;
  width: 100%;
  height: 100dvh;
  background-color: var(--soft-white);
  background-image: url(/assets/img/bkg/b-5.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.h-container {
  width: 100%;
  height: 100%;
  padding: var(--mb-6);
  padding-top: 11rem;
  justify-content: flex-start;
  background-color: rgba(250, 250, 250, 0.9);
}

.h-content {
  width: 700px;
  row-gap: var(--mb-1-5);
}

.h-content h1 {
  font-size: var(--fs-4);
  font-weight: 600;
  text-align: center;
  color: var(--theme-d-blue);
  line-height: 1.2;
}

.h-content h1 strong {
  font-weight: 400;
  font-style: italic;
  color: var(--theme-yellow);
}

.h-content p {
  width: 80%;
  font-size: 1.1rem;
  font-weight: 500;
  text-align: center;
  color: var(--the-d-blue);
  opacity: 0.8;
}

.h-media {
  position: absolute;
  bottom: -20rem;
  width: 80%;
  height: 525px;
  /* border: 1px hotpink solid; */
  border-radius: 30px;
  overflow: hidden;
}

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

/*========== BLANK SECTION ==========*/
.blank {
  width: 100%;
  height: 60vh;
  background-color: var(--soft-black);
}

/*========== ABOUT SECTION ==========*/
.about {
  width: 100%;
  background-color: var(--soft-white);
  background-image: url(/assets/img/bkg/b-5.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.ab-container {
  width: 100%;
  padding: var(--mb-8) var(--mb-6);
  background-color: rgba(250, 250, 250, 0.9);
  justify-content: space-between;
  align-items: flex-end;
  border-top: 1px #d4d4d4 solid;
}

.ab-content {
  flex: 0 0 40%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2-5);
  border-top: 1px #a3a3a3 solid;
  border-bottom: 1px #a3a3a3 solid;
  padding: var(--mb-3-5) 0;
}

.ab-content span {
  padding: var(--mb-0-5) var(--mb-1);
  border: 1px var(--theme-yellow) solid;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--the-d-blue);
}

.ab-content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
  color: var(--theme-d-blue);
}

.ab-content p {
  font-size: var(--fs-1);
  font-weight: 500;
  text-align: left;
  color: var(--theme-d-blue);
  opacity: 0.8;
}

.ab-img {
  flex: 0 0 45%;
  height: 770px;
  overflow: hidden;
  /* border: 1px teal solid; */
  border-radius: 20px;
}

.ab-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*========== SERVICES SECTION ==========*/
.services {
  width: 100%;
  background-color: var(--soft-white);
  background-image: url(/assets/img/bkg/b-5.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.se-container {
  width: 100%;
  padding: var(--mb-8) var(--mb-6);
  background-color: rgba(0, 0, 0, 0.85);
  row-gap: var(--mb-4);
}

.se-title {
  width: 100%;
  justify-content: flex-start;
}

.se-title h3 {
  width: 70%;
  font-size: var(--fs-3);
  font-weight: 600;
  text-align: left;
  color: var(--soft-white);
}

.se-title h3 strong {
  font-weight: 500;
  text-align: left;
  color: var(--theme-yellow);
  font-style: italic;
}

.se-cards {
  width: 100%;
  justify-content: space-between;
  align-items: flex-start;
  border-top: 1px #fafafa solid;
}

.sec {
  flex: 0 0 33.3%;
  padding: var(--mb-4) var(--mb-3);
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
  border-right: 1px #fafafa solid;
}

.sec:first-child {
  padding-left: var(--mb-2);
}

.sec:last-child {
  border: none;
}

.sec h5 {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
  color: var(--soft-white);
  font-style: italic;
  line-height: 1.1;
}

.sec p {
  font-size: var(--fs-1);
  font-weight: 500;
  text-align: left;
  color: var(--soft-white);
  opacity: 0.9;
}

.sec button {
  background-color: transparent;
  border: 2px var(--theme-yellow) solid;
  border-radius: 30px;
  color: var(--soft-white);
  font-size: var(--fs-1);
  margin-top: var(--mb-0-5);
}

.sec button:hover {
  background-color: var(--theme-yellow);
  color: var(--the-d-blue);
}

/*========== HELP SECTION ==========*/
.help {
  width: 100%;
  background-color: var(--soft-white);
  background-image: url(/assets/img/bkg/b-5.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hp-container {
  width: 100%;
  background-color: rgba(250, 250, 250, 0.9);
  justify-content: flex-start;
  padding: var(--mb-6);
  row-gap: var(--mb-4);
}

.hp-title {
  width: 100%;
  justify-content: flex-start;
}

.hp-title h3 {
  font-size: 3rem;
  font-weight: 600;
  text-align: left;
  color: var(--theme-d-blue);
}

#hpt-span {
  text-decoration: underline;
  text-decoration-color: var(--theme-yellow);
  text-decoration-style: wavy;
}

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

.hpc {
  flex: 0 0 30%;
  justify-content: flex-start;
  column-gap: var(--mb-1);
}

.hpc > span {
  border-radius: 8px;
  background-color: var(--theme-yellow);
  padding: var(--mb-0-75);
  font-size: 2rem;
  color: var(--theme-d-blue);
}

.hpc p {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--theme-d-blue);
  text-align: left;
  line-height: 1.4;
}

/*========== TESTIMONIALS SECTION ==========*/
.testimonials {
  width: 100%;
  background-color: var(--soft-white);
  background-image: url(/assets/img/bkg/b-5.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.te-container {
  width: 100%;
  justify-content: space-between;
  padding: var(--mb-8);
  background-color: rgba(0, 0, 0, 0.85);
  row-gap: var(--mb-4);
}

.te-title {
  flex: 0 0 45%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-2);
}

.te-title h3 {
  width: 70%;
  font-size: var(--fs-3-5);
  font-weight: 600;
  text-align: left;
  color: var(--soft-white);
  line-height: 1.1;
}

.te-title h3 strong {
  font-weight: 500;
  text-align: left;
  color: var(--theme-yellow);
  font-style: italic;
}

.te-title p {
  width: 80%;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: left;
  color: var(--soft-white);
  opacity: 0.9;
}

.tet-arrow {
  justify-content: flex-start;
  column-gap: var(--mb-1);
}

.tet-arrow span {
  padding: var(--mb-0-5);
  border: 1px var(--theme-yellow) solid;
  border-radius: 50%;
  color: var(--white);
  font-size: var(--fs-2);
}

.tet-arrow span:hover {
  background-color: var(--theme-yellow);
  color: var(--soft-black);
}

.te-wrapper {
  flex: 0 0 45%;
}

.te-cards {
  width: 100%;
  align-items: flex-start;
}

.tec {
  width: 100%;
  justify-content: flex-start;
  align-items: flex-start;
  row-gap: var(--mb-1-5);
}

.tec i {
  font-size: var(--fs-2-5);
  font-weight: 500;
  color: var(--soft-white);
}

.tec h5 {
  font-size: 1.5rem;
  font-weight: 400;
  text-align: left;
  color: var(--white);
  opacity: 0.9;
  line-height: 1.5;
}

.tec-text {
  justify-content: flex-start;
  column-gap: var(--mb-1);
}

.tec-text img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px var(--soft-white) solid;
}

.tec-text p {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: var(--mb-0-25);
  font-size: 1.2rem;
  font-weight: 600;
  text-align: left;
  color: var(--white);
  line-height: 1.3;
}

.tec-text p span {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  color: var(--light-grey);
  opacity: 0.8;
}

/*========== FAQ SECTION ==========*/
.faq {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--soft-white);
  padding: var(--mb-6) var(--mb-8);
  display: none;
}

.faq-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: var(--mb-4);
}

.faq-header {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: var(--mb-1);
  /* border: 1px blue solid; */
}

.faq-header h3 {
  font-family: var(--body-comfortaa);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
}

.faq-header span {
  width: 5%;
  border-bottom: 3px dotted var(--primary-blue);
}

.faq-header p {
  width: 70%;
  font-family: var(--body-comfortaa);
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--black);
  line-height: 25px;
  text-align: center;
}

.faq-questions {
  width: 100%;
  height: auto;
  /* border: 1px orangered solid; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  row-gap: var(--mb-1-5);
}

.faqq-tabs {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 0 var(--mb-1-5);
  /* background: var(--white); */
}

.faqq-tabs h3 {
  width: 100%;
  padding: var(--mb-1) 0;
  font-family: var(--body-comfortaa);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  /* line-height: 25px; */
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* background-color: var(--white); */
  border-radius: 5px;
}

.faqq-tabs p {
  width: 100%;
  padding: var(--mb-1) 0;
  font-family: var(--body-comfortaa);
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--text-grey);
  line-height: 24px;
  text-align: left;
  /* background-color: var(--white); */
  border-top: 2px var(--primary-blue) dotted;
  transition: all 0.4s ease;
  /* display: none; */
}

/*========== CONTACT SECTION ==========*/
.contact {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--white);
  padding: var(--mb-6) var(--mb-8);
}

.contact-container {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.contact-content {
  flex: 0 0 30%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: var(--mb-1);
  padding-right: var(--mb-3);
}

.contact-content h3 {
  font-family: var(--body-comfortaa);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  /* line-height: 35px; */
  text-align: left;
}

.contact-content p {
  width: 80%;
  font-family: var(--body-comfortaa);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text-grey);
  line-height: 25px;
  text-align: left;
}

.contact-form {
  flex: 0 0 70%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  row-gap: var(--mb-2);
  /* border: 1px teal solid; */
}

.text-input {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* column-gap: var(--mb-1); */
  /* border: 1px darkred solid; */
}

.text-input input {
  flex: 0 0 48%;
  height: auto;
  text-align: left;
  padding: var(--mb-0-5) 0;
  font-family: var(--body-comfortaa);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--black);
  outline: none;
  border: none;
  border-bottom: 1.5px #bbb solid;
  transition: all 0.3s ease-in;
}

.text-input input:hover,
.text-input input:focus,
.text-input input:active {
  border-bottom: 1.5px var(--primary-blue) solid;
}

.text-area__input {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  /* border: 1px orangered solid; */
}

.text-area__input textarea {
  flex: 0 0 100%;
  height: auto;
  text-align: left;
  padding: var(--mb-0-25) 0;
  font-family: var(--body-comfortaa);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 22px;
  color: var(--text-grey);
  outline: none;
  border: none;
  border-bottom: 1.5px #bbb solid;
  resize: none;
  overflow-y: auto;
  transition: all 0.3s ease-in;
}

.text-area__input textarea:hover,
.text-area__input textarea:focus,
.text-area__input textarea:active {
  border-bottom: 1.5px var(--primary-blue) solid;
}

.contact-btn {
  width: fit-content;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--mb-0-75) 1.5rem;
  outline: none;
  border: 2px var(--primary-blue) solid;
  border-radius: 5px;
  background-color: var(--primary-blue);
  cursor: pointer;
  transition: all 0.2s ease-in;
  font-family: var(--body-comfortaa);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
}

.contact-btn:hover {
  background-color: var(--white);
  color: var(--primary-blue);
  border: 2px var(--white) solid;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

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

  /*========== HERO SECTION ==========*/
  .hero {
    position: relative;
    width: 100%;
    height: 100dvh;
  }

  .h-container {
    width: 100%;
    height: 100%;
    padding: var(--mb-2) var(--mb-1-5);
    padding-top: 6rem;
  }

  .h-content {
    width: 100%;
    row-gap: var(--mb-1);
  }

  .h-content h1 {
    font-size: var(--fs-2-5);
  }

  .h-content p {
    width: 80%;
    font-size: 1rem;
  }

  .h-media {
    position: absolute;
    bottom: -10rem;
    width: 90%;
    height: 400px;
    /* border: 1px hotpink solid; */
    border-radius: 30px;
    overflow: hidden;
  }

  /*========== BLANK SECTION ==========*/
  .blank {
    width: 100%;
    height: 35vh;
  }

  /*========== ABOUT SECTION ==========*/
  .about {
    width: 100%;
  }

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

  .ab-content {
    flex: 0 0 auto;
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-2);
    padding: var(--mb-3) var(--mb-1);
  }

  .ab-content span {
    padding: var(--mb-0-5) var(--mb-1);
    font-size: 0.8rem;
  }

  .ab-content h3 {
    font-size: 1.3rem;
    text-align: center;
  }

  .ab-content p {
    font-size: 0.95rem;
    text-align: center;
  }

  .ab-img {
    flex: 0 0 auto;
    width: 90%;
    height: 450px;
    border-radius: 15px;
  }

  .ab-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /*========== SERVICES SECTION ==========*/
  .services {
    width: 100%;
  }

  .se-container {
    width: 100%;
    padding: var(--mb-4) var(--mb-1-5);
    background-color: rgba(0, 0, 0, 0.85);
    row-gap: var(--mb-3);
    justify-content: flex-start;
    align-items: center;
  }

  .se-title {
    width: 100%;
    justify-content: flex-start;
  }

  .se-title h3 {
    width: 100%;
    font-size: var(--fs-2-5);
    font-weight: 600;
    text-align: center;
    line-height: 1.3;
  }

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

  .sec {
    flex: 0 0 auto;
    width: 90%;
    height: auto;
    padding: var(--mb-3);
    justify-content: flex-start;
    align-items: center;
    row-gap: var(--mb-2);
    border: 1px #fafafa solid;
    border-radius: 25px;
  }

  .sec:first-child {
    padding-left: var(--mb-3);
  }

  .sec:last-child {
    border: 1px #fafafa solid;
  }

  .sec h5 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
  }

  .sec p {
    font-size: 0.95rem;
    font-weight: 500;
    text-align: center;
  }

  .sec button {
    font-size: var(--fs-1);
  }

  /*========== HELP SECTION ==========*/
  .help {
    width: 100%;
  }

  .hp-container {
    justify-content: flex-start;
    padding: var(--mb-4) var(--mb-1-5);
    row-gap: var(--mb-3);
  }

  .hp-title {
    width: 100%;
    justify-content: flex-start;
  }

  .hp-title h3 {
    font-size: var(--fs-2-5);
    font-weight: 600;
    text-align: center;
  }

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

  .hpc {
    flex: 0 0 auto;
    width: 90%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    column-gap: unset;
    row-gap: var(--mb-1);
    padding: var(--mb-1-5);
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
  }

  .hpc > span {
    border-radius: 8px;

    font-size: 1.5rem;
  }

  .hpc p {
    font-size: 1.1rem;
    text-align: center;
  }

  /*========== TESTIMONIALS SECTION ==========*/
  .testimonials {
    width: 100%;
  }

  .te-container {
    width: 100%;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    padding: var(--mb-4) var(--mb-1-5);
    background-color: rgba(0, 0, 0, 0.85);
    row-gap: var(--mb-3);
  }

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

  .te-title h3 {
    width: 70%;
    font-size: var(--fs-2-5);
    text-align: center;
    line-height: 1.25;
  }

  .te-title h3 strong {
    font-weight: 500;
    text-align: left;
    color: var(--theme-yellow);
    font-style: italic;
  }

  .te-title p {
    width: 80%;
    font-size: 1rem;
    font-weight: 400;
    text-align: center;
    line-height: 1.5;
  }

  .tet-arrow {
    justify-content: flex-start;
    column-gap: var(--mb-1);
    margin-top: var(--mb-0-5);
  }

  .tet-arrow span {
    padding: var(--mb-0-5);
    font-size: var(--fs-1-5);
  }

  .tet-arrow span:hover {
    background-color: var(--theme-yellow);
    color: var(--soft-black);
  }

  .te-wrapper {
    flex: 0 0 auto;
    width: 100%;
  }

  .te-cards {
    width: 90%;
    align-items: flex-start;
  }

  .tec {
    align-items: center;
    row-gap: var(--mb-1-5);
  }

  .tec i {
    font-size: var(--fs-2);
    font-weight: 500;
    color: var(--soft-white);
  }

  .tec h5 {
    font-size: 1.3rem;
    font-weight: 400;
    text-align: center;
  }

  .tec-text {
    justify-content: flex-start;
    flex-direction: column;
    row-gap: var(--mb-0-75);
    column-gap: unset;
  }

  .tec-text img {
    width: 40px;
    height: 40px;
  }

  .tec-text p {
    align-items: center;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
  }

  .tec-text p span {
    font-size: 0.9rem;
    text-align: center;
  }
}

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