@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100;400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Roboto:wght@400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: white;
  font-family: "Montserrat", "sans-serif";
}

/*********************************************************************/
/* Home */
/*********************************************************************/
.home--formato {
  width: 100%;
  height: 100vh;
  background-image: url("../img/autos/pexels-pixabay-104836.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

.home--formato .home_contenedor {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.home--formato .home__titulo--text {
  color: white;
  text-align: center;
  font-size: 50px;
  word-spacing: 10px;
  font-family: "Montserrat", "sans-serif";
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-name: aparecer;
          animation-name: aparecer;
  -webkit-animation-delay: 50ms;
          animation-delay: 50ms;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@-webkit-keyframes aparecer {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes aparecer {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*********************************************************************/
/* Secciones */
/*********************************************************************/
.section--formato {
  width: 100%;
  padding-top: 100px;
  background-color: white;
  color: black;
}

.section__p--font {
  font-size: 16px;
  line-height: 30px;
  font-family: "Montserrat", "sans-serif";
  color: grey;
  word-spacing: 5px;
}

.section__h2--formato {
  text-align: center;
  text-transform: uppercase;
  /* line-height: 80px; */
  height: 10%;
  margin: 0;
  margin-top: 20px;
  color: #e5383b;
  color: black;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

hr {
  border-color: crimson;
  border-width: 3px;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
}

/*********************************************************************/
/* Barra de navegación */
/*********************************************************************/
.navbar-brand img#logo {
  /* height: 20%; */
  /* width: 10%; */
  height: 80px;
  -webkit-transition: all 1s;
  transition: all 1s;
}

.navbar {
  background: linear-gradient(94deg, rgba(0, 0, 0, 0.793968) 10%, rgba(230, 41, 0, 0.602957) 79%);
  padding: 0 50px;
}

.nav-link {
  color: white;
  font-size: large;
  padding: 5px;
  font-size: 18px;
  margin-right: 10px;
  text-align: center;
}

.nav-link:hover {
  color: white;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.navbar-toggler {
  color: white;
  border-color: white;
}

.navbar-scroll {
  background: linear-gradient(94deg, black 10%, #e62900 79%);
}

.navbar-scroll .navbar-brand img#logo {
  height: 50px;
  -webkit-transition: all 1s;
  transition: all 1s;
}
/*# sourceMappingURL=estilo_sass.css.map */