@import url('https://fonts.googleapis.com/css2?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');

body {
    background-color: #CFE0BC;   
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
}
*{
  margin: 0;
  padding: 0;
}

:root {
  --text-color: #667085;
}

nav {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding: 1rem 0;
}

.links a {
  color: var(--text-color);
  text-decoration: none;
  margin-right: 2rem;
}

.menu-toggle {
  display: none;
}

@media only screen and (max-width: 768px) {
  .links {
    display: none;
    flex-direction: column; 
  }
  
  .buttons {
    display: none; 
  }
  
  .menu-toggle {
    display: block; 
    cursor: pointer;
  }

  .links.active {
    display: flex;
  }
}

button {
  padding: 0.8rem 1rem;
  cursor: pointer;
  border: none;
  border-radius: 0.5rem;
  font-weight: 500;
  background: none;
  color: var(--text-color);
  font-size: 0.9rem;
}

button#signUp {
  background-color: #8FA163;
  color: #FFF;
}

.container {
    max-width: 1280px;
    margin: auto;
}

.flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.banner div{
  width: 100%;
  position: relative;
  display: inline-block
}

.banner #imgBanner {
    height: 100vh;
    width: 100%;
    /* background-image: url('./assets/img/acunpuntura.jpg'); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    align-items: center;
    justify-content: center;
    z-index: 0;
    position: relative; 
}

.banner h1 {
    left: 15%;
    top: 40%;
    z-index: 10;
    color: #fff;
    font-size: 45px;
    position: absolute;  
    -webkit-text-stroke-color: black;
    -webkit-text-stroke-width: 0.7px; 
    font-weight: 800; 
}

.jumbotron {
    margin-bottom: 30px;
    padding: 30px; 
    background-color: #f5f5f5;
    /* width: 101.5%; */
}

.jumbotron p {
    font-size: 22px;
}

#id_services {
    font-size: 35px;
    font-weight: bold;
}

nav {
  background-color: #fff;
}