.brand {
  background-color: #0c3a5b;
  border-bottom-right-radius: 24px;
  border-bottom-left-radius: 24px;
  padding-left: 8px;
  padding-right: 8px;
}

.navbar {
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-left: 40px;
  padding-right: 40px;
  position: fixed;
  inset: 0% 0% auto;
}

.image {
  width: 270px;
}

.image.color {
  display: none;
}

.main-section {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.content {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding-left: 40px;
  padding-right: 40px;
  display: flex;
}

.logo-wr {
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-wr {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.title {
  color: #f9a24e;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 110%;
}

.descripcion {
  color: #000;
  text-align: center;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 140%;
}

.image-2 {
  width: 50%;
}

@media screen and (max-width: 991px) {
  .descripcion {
    text-align: center;
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .navbar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image {
    width: 240px;
  }

  .content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .title {
    font-size: 32px;
  }

  .descripcion {
    font-size: 12px;
  }

  .image-2 {
    width: 50%;
  }
}

@media screen and (max-width: 479px) {
  .brand {
    padding-left: 8px;
    padding-right: 8px;
  }

  .navbar {
    padding-left: 20px;
    padding-right: 20px;
  }

  .image {
    width: 190px;
  }

  .title {
    font-size: 28px;
  }
}


