body {
  margin: 0;
  background: white;
  font-weight: 300;
  font-family: Arial, Helvetica, sans-serif;
}

.headerimg {
  float: left;
}

.container {
  width: 80%;
  margin: 0 auto;

}

.header {
  background-color: #ffffff;
  padding: 30px;
  text-align: center;
}

#navbar {
  overflow: hidden;
  background-color: #4CAF50;
  padding-left: 20%;
}

#navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 35px 25px;
  text-decoration: none;
  font-size: 17px;
}

#navbar a:hover {
  background-color: #ddd;
  color: black;
}

#navbar a.active {
  background-color: #B01b2e;
  color: white;
}

.content {
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 30px;
}

/* textblock and picture */
.indextext {
  background: #4CAF50;
  border-radius: 25px;
  padding: 25px;
  color: white;
  font-family: sans-serif;
  font-size: 18px;
  line-height: 20px;
}

.textimgright {
  float: right;
  border-radius: 25px;
  margin-left: 10px;
}

.textimgleft {
  float: left;
  border-radius: 25px;
  margin-right: 10px;
}

/* footer css */
.footer-basic {
  padding: 40px;
  text-align: center;
}

.footer-basic ul {
  padding: 0;
  list-style: none;
  font-size: 18px;
  line-height: 1.6;
}



.footer-basic ul a {
  color: inherit;
  text-decoration: none;
}

.footer-basic ul a:hover {
  color: #B01b2e;
}

.footer-basic .social {
  text-align: center;
  padding-bottom: 25px;
}

.footer-basic .social>a {
  font-size: 24px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid;
  color: inherit;
}

.footer-basic .social>a:hover {
  opacity: 0.75;
}


.hovertext {
  position: relative;
  border-bottom: 1px dotted rgb(11, 139, 179);
}

.hovertext:before {
  content: attr(data-hover);
  visibility: hidden;
  opacity: 0;
  width: 500px;
  background-color: #B01b2e;
  color: #fff;
  text-align: center;
  border-radius: 5px;
  padding: 5px 0;
  transition: opacity 0.5s ease-in-out;

  position: absolute;
  z-index: 1;
  left: 0;
  top: 110%;
}

.hovertext:hover:before {
  opacity: 1;
  visibility: visible;
}

/* css for testimonials */

.snipbox {
  text-align: center;
}

@import url(https://fonts.googleapis.com/css?family=Roboto:300,400);
@import url(https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css);

.snip1533 {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #9e9e9e;
  display: inline-block;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  margin: 10px;
  max-width: 310px;
  min-width: 250px;
  text-align: center;
  width: 100%;
  background-color: #ffffff;
  border-radius: 5px;
  border-top: 5px solid #B01b2e;
  ;
}

.snip1533 *,
.snip1533 *:before {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.1s ease-out;
  transition: all 0.1s ease-out;
}

.snip1533 h3 {
  color: #3c3c3c;
  font-size: 20px;
  font-weight: 300;
  line-height: 24px;
  margin: 10px 0 5px;
}

.snip1533 h4 {
  font-weight: 400;
  margin: 0;
  opacity: 0.5;
}

.snip1533 blockquote {
  font-style: italic;
  font-weight: 300;
  margin: 0 0 20px;
}



.button {
  background-color: #B01b2e;
  border-radius: 4px;
  border: 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: inherit;
  font-family: "Space Grotesk", -apple-system, system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
  margin: 0;
  min-height: 56px;
  min-width: 120px;
  padding: 16px 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  user-select: none;
  -webkit-user-select: none;
  vertical-align: baseline;
  transition: all .2s cubic-bezier(.22, .61, .36, 1);
}

.button:hover {
  background-color: #B01b2e;
  transform: translateY(-2px);
}

@media (min-width: 768px) {
  .button {
    padding: 16px 44px;
    min-width: 150px;
  }
}