@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

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

/* Main Styling */
html,
body {
  font-family: 'Montserrat', sans-serif;
}

h1 { font-size: 2.5rem; }
h2 { 
  font-size: 2rem; 
  font-weight: 300;
}

p {
  font-size: 1rem;
  margin: 10px 0;
  line-height: 1.7em;
}

a { text-decoration: none; }

/* Utility Classes */
.container {
  margin: auto;
  max-width: 1300px;
  overflow: auto;
  padding: 0 20px;
  }

.large { font-size: 1.25rem; }

.display-1 { 
  font-size: 70px; 
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  font-size: 15px;
  padding: 15px 50px;
  cursor: pointer;
  font-weight: bold;
  letter-spacing: 1px;
  border-radius: 30px;
}

.btn-light {
  background: #E84B2A;
  border: 1px solid #E84B2A;
  color: #fff;
}

.btn-outline {
  border: 2px solid #fff;
  color: #fff;
}

.btn-dark {
  background: #6C757D;
  border: 1px solid #6C757D;
  color: #fff;
}

form label {
  display: inline-block;
  margin-bottom: 0.5rem;
  }

form .form-group {
  margin-bottom: 1rem;
    }

form .form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.7rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #000;
  background-color: #F2F3F6;
  background-clip: padding-box;
  border: 1px solid #F2F3F6;
  border-radius: 0.25rem;
}

/* Header */
#mainheader {
  height: 100vh;
  padding-top: 50px;
}

#bodyheader {
  height: 20vh;
  padding-top: 50px;
}

/* Navbar */
#mainnavbar {
  overflow: auto;
}

#mainnavbar a {
  color: #6C757D;
}

#navbar {
  background: #E84B2A;
  color: #fff;
  overflow: auto;
}

#navbar a {
  color: #fff;
}

#mainnavbar .logo,
#navbar .logo {
  float: left;
  padding-top: 30px;
  font-size: 28px;
  text-transform: uppercase;
}

#mainheader .logo a {
  color: #000;
}

#mainheader .logo span {
  color: #E84B2A;
}

#bodyheader .logo span {
  color: #6C757D;
}

#mainnavbar ul,
#navbar ul {
  list-style: none;
  float: right;
  text-transform: uppercase;
}

#mainnavbar ul li,
#navbar ul li {
  float: left;
}

#mainnavbar ul li a,
#navbar ul li a {
  display: block;
  padding: 40px 30px;
  text-align: center;
}

#navbar ul li a:hover,
#navbar ul li a.current {
  background: #6C757D;
}

/* Showcase */
#showcase {
  background: url('../img/demou-2.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: right;
  padding-top: 100px;
  padding-bottom: 90px;
  color: #fff;
}

#showcase h1 {
  padding-left: 300px;
}

#showcase h1 span {
  font-weight: 300;
}

#showcase p {
  padding-left: 300px;
  padding-top: 20px;
  padding-bottom: 20px;
}

#showcase .btn {
  text-transform: uppercase;
}

/* About */
#about {
  color: #091726;
  height: 70vh;
  padding-top: 50px;
}

#about h2 {
  padding-bottom: 0px;
}

#about p {
  padding-bottom: 20px;
}

.about-left {
  float: left;
  width: 50%;
  padding-right: 10px;
}

.about-left img { /*imagen servicios*/
  width: 65%;
  align-content: center;
  padding-bottom: auto;
}

.about-left .large {
  font-weight: 500;
}

.about-right {
  float: right;
  width: 50%;
  padding-left: 40px;
}

/* Services */
#services {
  height: 70vh;
  padding-top: 50px;
}

#services h2 {
  padding-bottom: 100px;
}

.services-box {
  float: left;
  width: 33%;
  padding: 20px;
}

.services-box img { /*imagenes de productos*/
  width: 70%;
  padding-bottom: 20px;
}

/* Contact */
#contact {
  height: 70vh;
 padding-top: 40px;
     
}
#contact h2 {
  padding-bottom: 20px;
 }

#contact form {
  width: 50%;
  margin: 0 auto;
}

.form-control {
  width: 40px;
  height: 40px;
  resize: none;
}

#contact .btn {
  width: 100%;
  padding-top: 10 60px
  border-radius 5px;
}

#correo { /*mail polaris recibe formulario contacto*/
  opacity: 0;
}

/* Footer */
#mainfooter {
  background: #6C757D;
  text-align: center;
  padding-top:40px;
  height: 10vh;
}