* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #c69fec;
  font-family: "Times New Roman", Times, serif;
  color: black;
}

body h2 {
  font-size: 80px;
}

body p {
  font-size: 30px;
  margin: 20px;
  margin-bottom: 100px;
}

img {
  max-width: 50%;
  height: auto;
  margin: 40px;
}

.video {
  margin: 30px;
}

.imagen-tips {
  width: 300%;
}

.container-banner {
  width: 100%;
  height: 550px;
  background-color: #000;
}
.container-banner span {
  position: absolute;
  display: block;
}
.container-banner span:nth-child(1) {
  margin-top: 20px;
  left: 0;
  width: 100%;
  height: 25px;
  background: linear-gradient(90deg, transparent, rgb(246, 246, 250));
  animation: animate1 1s infinite;
}

@keyframes animate1 {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}
.boton, .boton2 {
  background-color: #bb965f;
  padding: 10px 50px;
  margin: 10px;
  text-align: center;
  border-radius: 10px;
  display: inline-block;
}

.navbar {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  background-color: #5e4b8c;
  padding: 10px 20px;
}
.navbar .logo img {
  height: 100%;
  width: 100%;
  margin-top: -10px;
}
.navbar .burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}
.navbar .burger .line {
  height: 3px;
  width: 25px;
  background-color: rgb(0, 0, 0);
  margin: 4px 0;
}
.navbar .nav-links {
  list-style: none;
  display: flex;
}
.navbar .nav-links li {
  margin: 0 55px;
}
.navbar .nav-links li a {
  font-size: 20px;
  font-weight: 500;
  color: rgb(0, 0, 0);
  text-decoration: none;
}
.navbar .nav-links li a:hover {
  color: rgb(255, 255, 255);
}

@media (max-width: 1200px) {
  .navbar .burger {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-left: auto;
    cursor: pointer;
    counter-increment: none;
  }
  .navbar .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: #5e4b8c;
    top: 40px;
    right: 0;
    width: 100%;
  }
  .navbar .nav-links.active {
    display: flex;
  }
  .navbar .logo img {
    height: 10%;
    width: 40%;
    margin-top: 20px;
  }
}
@media (max-width: 800px) {
  .navbar .burger {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-left: auto;
    cursor: pointer;
    counter-increment: none;
  }
  .navbar .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: #5e4b8c;
    top: 40px;
    right: 0;
    width: 100%;
  }
  .navbar .nav-links.active {
    display: flex;
  }
  .navbar .logo img {
    height: 10%;
    width: 40%;
    margin-top: 20px;
  }
}
footer {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  padding: 20px;
  background-color: #f2bf7d;
  color: white;
  text-align: left;
}
footer img {
  max-width: 100%;
  height: auto;
}

.icons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.icons img {
  width: 80px;
  height: auto;
}

.tips-lista {
  font-size: 30px;
  margin: 20px;
}
.tips-lista li {
  margin-bottom: 50px;
}

.nosotros {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px;
  padding: 20px;
  background-color: #efcfe3;
  color: palevioletred;
  text-align: left;
}
.nosotros h1 {
  font-size: 80px;
}

@media (max-width: 361px) {
  .boton, .boton2 {
    width: 100%;
    box-sizing: border-box;
    margin-left: 0px;
    margin-bottom: 50px;
    padding: 20px 5px;
  }
  img {
    height: auto;
    max-width: 100%;
    margin: 0;
  }
  body h2 {
    font-size: 20px;
    margin-bottom: 20px;
  }
  p {
    font-size: 80%;
  }
  .titulo {
    font-size: 200%;
  }
  .parrafo {
    font-size: none;
  }
  iframe {
    width: 100%;
  }
  section {
    padding: 15px;
  }
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .icons img {
    width: 50px;
    margin: 5px;
  }
  .video {
    margin: 0px;
  }
  .burger {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-left: auto;
    cursor: pointer;
    counter-increment: none;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: #5e4b8c;
    top: 40px;
    right: 0;
    width: 100%;
  }
  .nav-links.active {
    display: flex;
  }
  .logo img {
    height: 10%;
    width: 40%;
    margin-top: 20px;
  }
  .nosotros {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 800px) {
  .boton, .boton2 {
    width: 100%;
    box-sizing: border-box;
    margin-left: 0px;
    margin-bottom: 50px;
    padding: 20px 5px;
  }
  img {
    height: auto;
    max-width: 100%;
    margin: 0;
  }
  body h2 {
    font-size: 50px;
    margin-bottom: 20px;
  }
  p {
    font-size: 80%;
  }
  .titulo {
    font-size: 200%;
  }
  .parrafo {
    font-size: none;
  }
  iframe {
    width: 100%;
  }
  section {
    padding: 15px;
  }
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .icons img {
    width: 50px;
    margin: 5px;
  }
  .video {
    margin: 0px;
  }
  .burger {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-left: auto;
    cursor: pointer;
    counter-increment: none;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: #5e4b8c;
    top: 40px;
    right: 0;
    width: 100%;
  }
  .nav-links.active {
    display: flex;
  }
  .logo img {
    height: 10%;
    width: 40%;
    margin-top: 20px;
  }
  .nosotros {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 1200px) {
  .boton, .boton2 {
    width: 100%;
    box-sizing: border-box;
    margin-left: 0px;
    margin-bottom: 50px;
    padding: 20px 5px;
  }
  img {
    height: auto;
    max-width: 100%;
    margin: 0;
  }
  h2 {
    font: size 100px;
  }
  p {
    font-size: 190%;
  }
  .titulo {
    font-size: 200%;
  }
  .parrafo {
    font-size: none;
  }
  iframe {
    width: 100%;
  }
  section {
    padding: 15px;
  }
  footer {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .icons img {
    width: 50px;
    margin: 5px;
  }
  .video {
    margin: 0px;
  }
  .burger {
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-left: auto;
    cursor: pointer;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    background-color: #5e4b8c;
    top: 40px;
    right: 0;
    width: 100%;
  }
  .nav-links.active {
    display: flex;
  }
  .logo img {
    height: 10%;
    width: 40%;
    margin-top: 20px;
  }
  .imagen-tips {
    width: 300%;
  }
}

/*# sourceMappingURL=main.css.map */
