* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
}

:root {
  /* --primary-color: #f46530; */
  /* --primary-color-dark: #f74b1c; */
  --primary-color-light: #e45683be;
  --primary-color: #e24072;
  --secondary-color: #11011e;
  --secondary-color-transparent: rgba(53, 4, 121, 0.075);
  --primary-color-dark: #2a153dbe;
  --secondary-color-light: #3ddfee;
  --text-title-color: #727376;
  --text-content-color: #f9f9f9;
  --bg-color: #11011e;
  --bg-color-transparent: #f4643093;
  --card-bg-color: #f8f9fa;
  --card-text-color: #b1b1b1;
  --black: #000;

  --lg-mobile: 557px;
  --md-tablet: 768;
  --sm-desktop: 1024;
}

body {
  width: 100vw;
  overflow-x: hidden;
  font-family: "Raleway" !important;
  /* background: var(--bg-color); */
  /* background: linear-gradient(
    to bottom,
    var(--bg-color),
    #2b0649,
    #2f084e,
    #150324
  ); */

  background-color: #250a3f;
  background-size: contain;
}

section {
  /* padding: 100px 0; */
  overflow: hidden !important;
  width: 100%;
  padding: 10px 10px;
}

header {
  margin-bottom: 100px;
  overflow: hidden !important;
}

p,
button {
  margin: 0 !important;
  padding: 0;
}

@media (max-width: 701px) {
  section {
    padding: 60px 0;
  }
  header {
    margin-bottom: 60px;
  }
}

/* Edit scroll-bar */
::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: #ffffff;
  width: 10px !important;
}

::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 20px;
}

.hero-banner {
  padding-top: 250px;
  height: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: rgb(151, 32, 32);
}

.hero-banner .wrapper-text-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: column;
}

.hero-banner .wrapper-text-hero p {
  max-width: 46rem;
  text-align: center;
}

.dino-image {
  position: absolute;
  right: 0;
  top: 20%;
  width: 15%;
  z-index: 1;
  opacity: 0.5;
}

.wrapper-text-hero a {
  padding: 10px;
  border-radius: 8px;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  padding: 16px;

  transition: 0.6s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.wrapper-text-hero p {
  max-width: 200px;
}

.wrapper-text-hero a:hover {
  background-color: var(--primary-color-light);
}

@media (max-width: 1326px) {
}

@media (max-width: 550px) {
  .hero-banner .text-gradient {
    font-size: 42px;
  }

  .hero-banner .subtitle {
    font-size: 18px;
  }

  .hero-banner a {
    font-size: 12px;
    padding: 10px;
  }
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-image: url("../assets/banner/bg-mash.png");
  background-repeat: no-repeat;
  background-size: 100%;
  position: relative;
}

.left-image-container {
  display: flex;
  color: #ffffff;
  flex-direction: row;
  flex: 50%;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  height: 500px;
}

.left-image-container h1 {
  max-width: 500px;
  font-weight: 600;
  line-height: 43px;
  letter-spacing: 2px;
  font-size: 34px;
}

.right-image-container {
  display: flex;
  color: #ffffff;
  flex-direction: row-reverse;
  flex: 50%;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
  height: 500px;
}

.right-image-container h1 {
  max-width: 500px;
  font-weight: 600;
  line-height: 43px;
  letter-spacing: 2px;
  font-size: 40px;
}

.right-image-container-text,
.left-image-container-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.right-image-container-text p,
.left-image-container-text p {
  font-size: 22px;
  font-weight: 300;
  line-height: 26px;
  letter-spacing: 2px;
  max-width: 500px;
  text-align: justify;
}

section#software {
  background-color: #50327a96;
  width: 100%;
}

section#consorcio {
  background-color: #e24072;
  width: 100%;
}

section#timeline {
  background-color: #3e1c7063;
  width: 100%;
}

section#with-label {
  background-color: #50347a;
  width: 100%;
}

section img {
  height: 80%;
}

/* ================== FOOTER ========== */

footer {
  height: 80px;
  width: 100%;
  background-color: rgba(77, 25, 149, 0.05);

  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

@media (max-width: 425px) {
  section .left-image-container,
  section .right-image-container {
    display: flex;
    flex-direction: column;
    padding: 20px 20px;

    height: auto;

    p {
      font-size: 16px;
    }
    h1 {
      text-align: center;
      font-size: 28px;
    }
    img {
      height: 290px;
    }
  }

  footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
  }
}

@media (max-width: 768px) {
  section .left-image-container,
  section .right-image-container {
    display: flex;
    flex-direction: column;
    padding: 20px 20px;

    height: auto;

    p {
      font-size: 26px;
    }
    h1 {
      text-align: center;
      font-size: 28px;
    }
    img {
      height: 360px;
    }
  }

  footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
  }
}
