body {
  font-family: 'Arial', sans-serif;
  color: #000000;
}

p {
  font-size: 12px;
}

header {
  padding: 30px 0px 40px 0px;
}

header h1 {
  font-size: 37px;
  line-height: 110%;
  color: #00A991;
  margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
  header h1 {
    font-size: 24px;
  }
}

header p {
  font-style: italic;
  font-size: 14px;
}

nav {
  text-align: center;
  padding: 50px 15px 25px 15px;
}

@media only screen and (max-width: 576px) {
  nav {
    padding: 20px 15px 10px 15px;
  }
}

nav .logo img {
  max-width: 235px;
}

@media only screen and (max-width: 576px) {
  nav .logo img {
    max-width: 150px;
  }
}

i {
  color: #00A991;
}

h5 {
  color: #00a991;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 17px;
}

a {
  color: #00a991;
}

a:hover {
  color: #00a991;
  opacity: 0.8;
  text-decoration: none;
}

.bold {
  font-weight: 700 !important;
}

.card {
  padding: 20px 30px 0px 30px;
  border-radius: 7px;
  border-color: #707070;
  -webkit-box-shadow: 3px 0px 20px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 3px 0px 20px 0px rgba(0, 0, 0, 0.16);
}

@media only screen and (max-width: 576px) {
  .card {
    padding: 0px 10px;
  }
}

.card .card-body {
  padding: 0px 1rem 1.24rem 1rem;
}

@media only screen and (max-width: 576px) {
  .card .card-body {
    padding: 2px 10px;
  }
}

.form-control {
  border: 1px solid #00A991;
}

.form-control:focus {
  border-color: #00A991;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 169, 145, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 169, 145, 0.25);
}

.btn {
  text-transform: uppercase;
  font-size: 12px;
  padding: 9px 13px;
}

.btn:hover, .btn:focus, .btn:active {
  opacity: 0.8;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.btn.rounded-lg {
  border-radius: 2rem !important;
}

.btn i {
  color: #ffffff !important;
  font-size: 15px;
  margin-right: 5px;
}

.btn.text-normal {
  text-transform: none !important;
}

.btn.bold {
  font-weight: bold !important;
}

.btn.btn-primary {
  background-color: #00A991;
  border-color: #00A991;
  color: #ffffff;
  background-color: #00A991 !important;
  border-color: #00A991 !important;
  color: #ffffff !important;
}

.btn.btn-secondary {
  background-color: #641C77;
  border-color: #641C77;
  color: #ffffff;
}

.btn.btn-secondary:hover, .btn.btn-secondary:focus, .btn.btn-secondary:active {
  background-color: #641C77 !important;
  border-color: #641C77 !important;
  color: #ffffff !important;
}

.btn.btn-outline-secondary {
  background-color: transparent;
  border-color: #641C77 !important;
  color: #641C77 !important;
  text-transform: inherit;
  min-width: 190px;
  padding: 7px 10px;
  font-size: 13px;
  margin-top: 10px;
}

.btn.btn-outline-secondary:hover, .btn.btn-outline-secondary:focus, .btn.btn-outline-secondary:active {
  background-color: #641C77 !important;
  border-color: #641C77 !important;
  color: #ffffff !important;
}

.content {
  background-color: #00A991;
  padding: 130px 0px;
  min-height: calc(100vh - 140px);
  position: relative;
  background-image: url(../img/back-content.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 576px) {
  .content {
    padding: 50px 0px;
  }
}

.content::before {
  content: " ";
  width: 100%;
  background-image: url(../img/patern.svg);
  background-size: 110%;
  position: absolute;
  background-repeat: no-repeat;
  top: -10px;
  left: 0px;
  right: 0px;
  height: 20vh;
}

@media only screen and (min-width: 1025px) {
  .content::before {
    content: none;
  }
}

footer {
  position: absolute;
  left: 0px;
  bottom: 0px;
  right: 0px;
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 576px) {
  footer {
    position: inherit;
    left: inherit;
    bottom: inherit;
    right: inherit;
    top: inherit;
  }
}

footer p {
  color: #ffffff;
  padding: 10px 15px;
}

article {
  -webkit-box-shadow: 3px 0px 20px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 3px 0px 20px 0px rgba(0, 0, 0, 0.16);
  border-radius: 7px;
  background-color: #ffffff;
  margin-bottom: 28px;
}

article .picture {
  position: relative;
}

article .picture img {
  width: 100%;
  height: 265px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
}

article .picture::before {
  content: " ";
  position: absolute;
  top: 0px;
  bottom: 0px;
  right: -5px;
  height: 100%;
  width: 44px;
  background-image: url(../img/patern_2.svg);
  background-size: cover;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 767px) {
  article .picture::before {
    content: none;
  }
}

article .insider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding: 40px 40px 40px 0px;
}

@media only screen and (max-width: 767px) {
  article .insider {
    padding: 30px 15px 20px 15px;
  }
}

article .insider h3 {
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}

article .insider p span {
  color: #00A991;
  font-size: 15px;
}
/*# sourceMappingURL=bbraun-front.css.map */