*,
p,
h1,
h2,
div {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.text-white {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  background-image: linear-gradient(0deg, #000 85%, rgba(0, 0, 0, 0) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
}

body {
  font-family: "Oswald", sans-serif;
}

.container {
  margin: 0 auto;
}

.header {
  position: absolute;
  z-index: 9;
  padding: 1rem;
  width: 100%;
}

.cabecera {
  background: url("images/bg-2.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  height: 100vh;
}
.cabecera h1 {
  margin: 0 auto;
  line-height: 1.4;
  font-weight: 500;
  font-size: 35px;
  letter-spacing: 1.44px;
}
.cabecera p {
  font-weight: 400;
}
@media (min-width: 768px) {
  .cabecera h1 {
    margin: 0 auto;
    font-size: 50px;
    padding-left: 30px;
    border-left: 4px solid #fff;
    border-right: 4px solid #fff;
  }
  .cabecera h1 .d-md-block {
    font-size: 65px;
    letter-spacing: 7px;
    font-family: "Roboto", sans-serif;
    font-weight: 900;
  }
  .cabecera .text {
    font-size: 38px;
  }
}

hr {
  display: inline-block;
  height: 4px;
  width: 78px;
}
.cabecera hr, .banner hr {
  background: #fff;
}

.bg-black {
  background: #000;
}

.text {
  font-family: "Oswald", sans-serif;
  margin-bottom: 2rem;
}

/*BOTONES*/
a.btn {
  background-color: #fff;
  font-size: 15px;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  padding: 10px 34px;
  text-decoration: none;
  text-align: right;
}
@media (min-width: 768px) {
  a.btn {
    font-size: 24px;
    padding: 15px 40px;
  }
}

a.btn:hover {
  color: #fff;
  cursor: pointer;
  box-shadow: 0 6px 50px 0 rgba(13, 84, 111, 0.53);
  background-color: #4A4E5D;
}

.hover-grow {
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  cursor: pointer;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  text-decoration: none;
}

.hover-grow:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
  text-decoration: none;
}


