html {
  scroll-behavior: smooth;
  font-size: 15px;
}

body {
  background: white;
  padding-top: 52px;
  font-size: 1rem;
}


.clickable,
a,
a:active,
a:link,
a:visited {
  cursor: pointer;
}

.navbar {
  -webkit-box-shadow: 2px 2px 3px 0px rgba(20, 37, 61, 0.75);
  -moz-box-shadow: 2px 2px 3px 0px rgba(20, 37, 61, 0.75);
  box-shadow: 2px 2px 3px 0px rgba(20, 37, 61, 0.75);
}
.navbar-brand {
  color: white;
}
.navbar-brand:hover, .navbar-brand:focus:hover {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-toggler {
  color: white;
}
.navbar .nav-link {
  color: white;
}
.navbar .nav-link:hover, .navbar .nav-link:focus:hover {
  color: rgba(255, 255, 255, 0.75);
}

/* Showcase */
.showcase {
  position: relative;
  background: #ccc url("../img/mercedez-bg.jpg") center/cover no-repeat fixed;
  min-height: 500px;
}
.showcase-content {
  position: absolute;
  right: 0;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  text-align: center;
}
.showcase-overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.showcase h1 {
  text-shadow: 2px 1px 2px rgba(20, 37, 61, 0.75);
  font-size: 4rem;
  margin-bottom: 0;
}

.bg-blue {
  background: #29507B;
}

hr.thick-blue {
  max-width: 4.6rem;
  border: 3px solid #29507B;
}
hr.skinny-dark {
  max-width: 50%;
  height: 1px;
  border: 0;
  background: rgba(20, 37, 61, 0.5);
}

/* Button */
.btn-primary {
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  font-weight: 400;
  color: white;
  background-color: #29507B;
  appearance: none;
  -wepkit-appearance: none;
  border: 0;
  padding: 0.5rem 2.5rem;
}
.btn-primary:hover, .btn-primary:focus:hover {
  background-color: #14253D;
  border: 0;
}

.cta-box {
  padding: 100px 50px;
}
.cta-box-icon {
  margin: 0 auto 25px;
  color: rgba(20, 37, 61, 0.85);
}
.cta-box-title {
  margin: 25px auto;
  color: rgba(20, 37, 61, 0.95);
}
.cta-box-text {
  color: rgba(20, 37, 61, 0.85);
}

.page-footer {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 80px;
}

.contact-box-title {
  color: white;
  font-weight: 600;
}

/* body text */


.border-corners {
  margin: 10px;
  margin-bottom: 60px;
  margin-top: 120px;

}

.border-corners:after {
  display: block;
  content: "";
  width: 35px;
  height: 35px;
  position: absolute;
  top: -5px;
  right: -5px;
  border-top: 5px solid #29507B;
  border-right: 5px solid #29507B;
}

.border-corners:before {
  display: block;
  content: "";
  width: 35px;
  height: 35px;
  position: absolute;
  bottom: -5px;
  left: -5px;
  border-bottom: 5px solid #29507B;
  border-left: 5px solid #29507B;
}

/*Animations */
.animated {
  animation: fadeAndScale 0.5s ease-in;
  transform-origin: center bottom;
}

@keyframes fadeAndScale {
  from {
    opacity: 0;
    transform: scale3d(0.75, 0.75, 1);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

/*# sourceMappingURL=style.css.map */
