/* tus estilos */
@import url("https://fonts.googleapis.com/css?family=Poppins:300,400,500,700&display=swap");
@import "vendor/bootstrap-grid.min.css";
html {
  font-size: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 1em;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  font-family: "Poppins", serif;
  font-weight: bold;
  margin: 0;
}

h1, .h1 {
  font-size: 3em;
  line-height: 1.5;
  padding: 0.5em 0;
}
@media (max-width: 575px) {
  h1, .h1 {
    font-size: 2em;
  }
}

h2, .h2 {
  font-size: 2.5em;
  line-height: 1.5;
  padding: 1em 0;
}
@media (max-width: 575px) {
  h2, .h2 {
    font-size: 1.8em;
  }
}

h3, .h3 {
  font-size: 2em;
  line-height: 1.5;
  padding: 0.5em 0;
}
@media (max-width: 575px) {
  h3, .h3 {
    font-size: 1.4em;
  }
}

h4, .h4 {
  font-size: 1.75em;
  line-height: 1.5;
  padding: 0.75em 0;
}
@media (max-width: 575px) {
  h4, .h4 {
    font-size: 1.3em;
  }
}

h5, .h5 {
  font-size: 1.5em;
  line-height: 1.5;
  padding: 1em 0;
}
@media (max-width: 575px) {
  h5, .h5 {
    font-size: 1.2em;
  }
}

h6, .h6 {
  font-size: 1em;
  line-height: 1.5;
  padding: 1em 0;
}
@media (max-width: 575px) {
  h6, .h6 {
    font-size: 1em;
  }
}

p, li {
  font-size: 1.25em;
  line-height: 1.5;
  margin: 1.5em 0;
  max-width: 33em;
}

.psize {
  font-size: 1.25em;
  line-height: 1.5;
}

.fs-small {
  font-size: 1em;
}

.fs-big {
  font-size: 2em;
}

em {
  font-style: normal;
  font-weight: bold;
  text-decoration: underline;
}

.dont-break-out {
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  /* This is the dangerous one in WebKit, as it breaks things wherever */
  word-break: break-all;
  /* Instead use this non-standard one: */
  word-break: break-word;
  /* Adds a hyphen where the word breaks, if supported (No Blink) */
  hyphens: auto;
}

.fs-italic {
  font-style: italic;
}

.text-center {
  text-align: center;
}

/* Shared styles */
.drop-shadow {
  position: relative;
  background: #fff;
}

.drop-shadow:before,
.drop-shadow:after {
  content: "";
  position: absolute;
  z-index: -2;
}

/* Lifted corners */
.lifted {
  border-radius: 4px;
}

.lifted:before,
.lifted:after {
  bottom: 15px;
  left: 10px;
  width: 50%;
  height: 20%;
  max-width: 300px;
  max-height: 100px;
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.7);
  transform: rotate(-3deg);
}

.lifted:after {
  right: 10px;
  left: auto;
  transform: rotate(3deg);
}

/* Curled corners */
.curled {
  border: 1px solid #efefef;
  border-radius: 0 0 120px 120px/0 0 6px 6px;
}

.curled:before,
.curled:after {
  bottom: 12px;
  left: 10px;
  width: 50%;
  height: 55%;
  max-width: 200px;
  max-height: 100px;
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.5);
  transform: skew(-8deg) rotate(-3deg);
}

.curled:after {
  right: 10px;
  left: auto;
  transform: skew(8deg) rotate(3deg);
}

/* Perspective */
.perspective:before {
  left: 80px;
  bottom: 5px;
  width: 50%;
  height: 35%;
  max-width: 200px;
  max-height: 50px;
  box-shadow: -80px 0 8px rgba(0, 0, 0, 0.4);
  transform: skew(50deg);
  transform-origin: 0 100%;
}

.perspective:after {
  display: none;
}

/* Raised shadow - no pseudo-elements needed */
.raised {
  box-shadow: 0 15px 10px -10px rgba(0, 0, 0, 0.5), 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

/* Curved shadows */
.curved:before {
  top: 10px;
  bottom: 10px;
  left: 0;
  right: 50%;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.6);
  border-radius: 10px/100px;
}

.curved-vt-2:before {
  right: 0;
}

.curved-hz-1:before {
  top: 50%;
  bottom: 0;
  left: 10px;
  right: 10px;
  border-radius: 100px/10px;
}

.curved-hz-2:before {
  top: 0;
  bottom: 0;
  left: 10px;
  right: 10px;
  border-radius: 100px/10px;
}

/* Rotated box */
.rotated {
  box-shadow: none;
  transform: rotate(-3deg);
}

.rotated > :first-child:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

img {
  width: auto;
  max-width: 100%;
}

.skip-link {
  position: absolute;
  top: -199px;
  background: #004380;
  color: white;
  border: solid 1px white;
  padding: 10px;
  z-index: 100000;
  font-family: "Montserrat", serif;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body {
  margin: 0 0;
  padding: 0;
  background: #fafafa;
}

section {
  margin: 0 0 4em;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  clip-path: inset(50%);
}

.btn {
  background: #fff;
  border: 1px solid #000;
  padding: 0.5em;
  text-align: left;
  font-size: 100%;
  line-height: 1.25;
  cursor: pointer;
  margin: 0.5em 0;
  text-decoration: none;
  transition: all 0.3s linear;
  color: #000;
  display: inline-block;
}
.btn:hover {
  background: #000;
  color: #fff;
}

.btn.btn-primary {
  background-color: rgb(39, 82, 149);
  color: #fff;
}
.btn.btn-primary:hover {
  background-color: #fff;
  color: rgb(39, 82, 149);
}

label {
  display: flex;
  font-size: 1em;
  margin-bottom: 1em;
}
label span {
  width: 100px;
  line-height: 2em;
}

input, textarea {
  padding: 0.5em;
  width: 100%;
  display: block;
  font-size: 0.9em;
  min-height: 25px;
  border: 1px dashed #000;
  background: none;
}

textarea {
  height: 100px;
  resize: vertical;
}

.hp {
  display: none;
}

body > footer {
  margin-top: 3em;
  color: #fff;
  background: #2a2a2a;
}
body > footer a {
  color: #fff;
  font-weight: bold;
}
body > footer a:hover {
  text-decoration: none;
}
body > footer .cc {
  text-align: center;
}
body > footer .cc p {
  width: 100%;
  max-width: 100%;
}

nav.old ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-row-gap: 3em;
  grid-column-gap: 3em;
}
@media (max-width: 991px) {
  nav.old ul {
    grid-template-columns: 1fr;
  }
}
nav.old ul li {
  margin: 0;
  height: 11em;
}
@media (max-width: 576px) {
  nav.old ul li {
    height: 40vh;
    min-height: 10em;
  }
}
nav.old ul a {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-decoration: none;
  font-size: 1.5em;
  justify-content: center;
  align-items: center;
  padding: 1em;
  background: #fff;
  color: #000;
  transition: all 0.3s linear;
  position: relative;
  box-shadow: inset 0 0 80px 0 rgba(0, 0, 0, 0.15);
}
nav.old ul a:visited {
  color: #551A8B;
}
nav.old ul a:hover {
  background: #000;
  color: #fff;
}
nav.old ul a span {
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
nav.old ul a .bajada {
  text-align: center;
  width: 80%;
  font-size: 0.65em;
  font-family: "Source Sans Pro", serif;
  orphans: 2;
  widows: 2;
}

.page {
  max-width: 50em;
  margin: 0 auto;
}
@media (max-width: 60em) {
  .page {
    padding-left: 1em;
    padding-right: 1em;
  }
}

#donacion {
  background: rgba(0, 0, 0, 0.05);
}

.separator {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  margin-top: 4em;
  margin-bottom: 4em;
}

/*
**********************************************************
*/
body > footer .cc {
  background-color: #797e82;
  margin: 0;
  padding: 0.5em 1em;
}

/*
**********************************************************
*/
body {
  padding-top: 140px;
}

header {
  position: fixed;
  width: 100%;
  height: 140px;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 9999;
  border-bottom: 1px solid #797e82;
}

.announcement-bar {
  background-color: #333;
  color: #fff;
  padding: 0.5em 0;
}
.announcement-bar .btn {
  margin: 0;
  padding: 0.3em 0.5em;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar .logo {
  width: 240px;
}
.top-bar .main-navigation {
  flex-grow: 1;
}
.top-bar .main-navigation nav a {
  display: inline-block;
  padding: 0.5em 1em;
  font-weight: 500;
  color: #000000;
  text-decoration: none;
}
@media (max-width: 1100px) {
  .top-bar .main-navigation nav a {
    display: block;
    color: #fff;
  }
}
@media (max-width: 1100px) {
  .top-bar .main-navigation nav {
    position: absolute;
    width: 100%;
    height: calc(100vh - 140px);
    top: 140px;
    left: 0;
    background-color: rgb(39, 82, 149);
    text-align: center;
    display: none;
    align-items: center;
    justify-content: center;
  }
}
.top-bar .main-navigation nav .items {
  width: 100%;
}
@media (max-width: 1100px) {
  .top-bar .main-navigation nav .items {
    transform: translate(-100%, 0%);
  }
}
.top-bar .main-navigation #btnMb {
  display: none;
  background: transparent;
  cursor: pointer;
  border: transparent;
}
@media (max-width: 1100px) {
  .top-bar .main-navigation #btnMb {
    display: block;
  }
}

/*
**********************************************************
*/
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}
.hero .content {
  background: rgba(39, 82, 149, 0.6);
  padding: 2em;
  color: #fff;
}
.hero .content h2 {
  padding: 0.5em 0;
  margin: 0;
}
.hero .content ul {
  list-style: none;
  padding: 0;
}
.hero .content ul li {
  line-height: 1;
  margin: 0.5em 0;
}
.hero .content .btn {
  margin: 0;
  padding: 0.3em 0.5em;
}

.home .hero {
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%), url("/images/home/hero.jpg") no-repeat center top;
  background-size: cover;
}

.why {
  background-color: rgb(39, 82, 149);
  color: #fff;
  text-align: center;
  font-weight: bold;
  padding: 2em 0;
}
.why h2 {
  font-size: 2em;
  margin: 0 0 1em;
}
.why .icon {
  font-size: 3em;
  padding: 1em 0;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #fff;
  background: rgba(39, 82, 149, 0.5);
}
.why h3 {
  margin: 0;
  padding: 0.5em 0;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
}

.home-services h2 {
  text-align: center;
  color: rgb(39, 82, 149);
}
.home-services .item {
  margin-bottom: 30px;
  overflow: hidden;
}
.home-services .item .image img {
  display: block;
  width: 100%;
}
.home-services .item .content {
  background-color: #797e82;
  color: #fff;
  height: 100%;
}
.home-services .item h3 {
  background-color: rgb(39, 82, 149);
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25rem;
  text-align: center;
}
.home-services .item p {
  padding: 1em;
  margin: 0.5em 0;
  font-size: 1rem;
}

.home-steps {
  background-color: rgb(39, 82, 149);
  color: #fff;
  padding: 2em 0;
}
.home-steps .col-lg-4 {
  padding-bottom: 60px;
}
.home-steps h2 {
  margin-bottom: 2em;
  text-align: center;
  text-transform: uppercase;
}
.home-steps .step {
  border: 4px solid #fff;
  position: relative;
  padding: 60px 1em 1em 1em;
  height: 100%;
  margin-bottom: 30px;
}
.home-steps .step .number {
  position: absolute;
  left: 20px;
  top: -40px;
  width: 80px;
}
.home-steps .step h3 {
  text-transform: uppercase;
  font-size: 1.25rem;
}
.home-steps .step p {
  margin: 0;
  font-size: 1rem;
}

.home-reviews h2 {
  text-align: center;
  text-transform: uppercase;
  font-size: 2em;
  color: rgb(39, 82, 149);
}
.home-reviews .reviews .item {
  margin-bottom: 30px;
  overflow: hidden;
  text-align: center;
}
.home-reviews .reviews .item .rating .fa-star {
  font-size: 2em;
  margin-top: 1em;
}
.home-reviews .reviews .item .rating {
  text-align: center;
  background-color: #797e82;
  color: #fff;
  padding: 0.5em;
}
.home-reviews .reviews .item .content {
  background-color: #797e82;
  color: #fff;
  height: 100%;
  margin: 0;
  padding: 1em;
}
.home-reviews .reviews .item h3 {
  background-color: rgb(39, 82, 149);
  color: #fff;
  text-transform: uppercase;
  font-size: 1.25rem;
  text-align: center;
}
.home-reviews .reviews .item p {
  padding: 1em;
  margin: 0;
  font-size: 1rem;
}

header.mb-active nav {
  visibility: visible;
  transition: visibility 0.3s;
}

header.mb-active nav .items {
  transform: translate(0, 0);
  transition: opacity 0.3s, transform 0.4s;
  transition-delay: 0.3s;
  opacity: 1;
}

header.mb-inactive nav {
  visibility: hidden;
  transition: visibility 1s;
}

header.mb-inactive nav .items {
  transform: translate(-100%, 0%);
  transition: opacity 0.3s, transform 0.5s;
  opacity: 0;
}

header.mb-active .icon-bar:first-child {
  transform: rotate(45deg);
  top: -1px;
  left: 0;
}

header.mb-active .icon-bar:nth-child(2) {
  width: 0;
  opacity: 0;
}

header.mb-active .icon-bar:nth-child(3) {
  transform: rotate(-45deg);
  top: 23px;
  left: 0;
}

.bars {
  width: 36px;
  height: 26px;
  position: relative;
}

.icon-bar {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: rgb(39, 82, 149);
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.icon-bar:first-child {
  top: 0;
  transform-origin: left center;
}

.icon-bar:nth-child(2) {
  top: 12px;
  transform-origin: left center;
}

.icon-bar:nth-child(3) {
  bottom: 0;
  transform-origin: left center;
}

#blackout {
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  transition: opacity 0.3s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

#blackout.active {
  opacity: 1;
  visibility: visible;
}
