/* Roboto regular */

/*
@font-face {
    font-family: "Roboto";
    src: url("/fonts/Roboto-Regular.eot");
    src: url("/fonts/Roboto-Regular.eot?#iefix") format('embedded-opentype'),
         url("/fonts/Roboto-Regular.woff2") format('woff2'),
         url("/fonts/Roboto-Regular.woff") format('woff'),
         url("/fonts/Roboto-Regular.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
}
*/
/* Roboto italic */
/*
@font-face {
    font-family: "Roboto";
    src: url('/fonts/Roboto-Italic.eot');
    src: url('/fonts/Roboto-Italic.eot?#iefix') format('embedded-opentype'),
         url('/fonts/Roboto-Italic.woff2') format('woff2'),
         url('/fonts/Roboto-Italic.woff') format('woff'),
         url('/fonts/Roboto-Italic.ttf') format('truetype');
    font-weight: 400;
    font-style: italic;
}
*/
/* Roboto bold */
/*
@font-face {
    font-family: "Roboto";
    src: url('/fonts/Roboto-Bold.eot');
    src: url('/fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'),
         url('/fonts/Roboto-Bold.woff2') format('woff2'),
         url('/fonts/Roboto-Bold.woff') format('woff'),
         url('/fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}
*/
body
{
    font-family: "Arial";
    font-weight: 400;
    font-style: normal;
}

h1, h2, h3, h4, h4, h6 {
    font-family: "Arial";
    font-weight: 500;
    font-style: normal;
    color: #6f6f6f;
}

a
{
    font-family: "Arial";
    font-weight: 400;
}

.btn.sharp {
  border-radius:0;
}
.btn-xl {
    font-size: 20px;
    border-radius: 10px;
    width:100%;
}
.navbar-brand { height: 50px; }
#headerSpacer {
   height: 80px;
  }
div.sTitle {
    font-size: 2rem;
}

.solution--flexbox {
  text-align: left;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
  min-height: 50px;
  padding-left: 12px;
}
.solution--flexbox span{
  padding-left: 12px;
  font-size: 12px;
  position: relative;
  flex: 0 1 100%;
}

div.teaser {
   height: 30vh;
}

@media (min-width: 768px) {
  .navbar-brand { height: 75px; }
    #headerSpacer {
   height: 80px;
  }
  div.sTitle {
    font-size: 4rem;
  }
}
.row-no-padding > [class*="col-"] {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

a.download {
  color: #ffffff;
}


#object{
  width: 80px;
  height: 80px;
  -webkit-animation: animate 1s infinite ease-in-out;
  animation: animate 1s infinite ease-in-out;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;

}


@-webkit-keyframes animate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes animate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.loading {    
  height: 100%;
  width: 100%;
  background-color: #1c84c6;
  -webkit-animation: animate 1s infinite ease-in-out;
  animation: animate 1s infinite ease-in-out;
  margin-right: auto;
  margin-left: auto;
  margin-top: 60px;
}
#loading{
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: fixed;
  z-index: 99999;
  margin-top: 0px;
  top: 0px;
}

#loading-center{
  width: 100%;
  height: 100%;
  position: relative;
}
#loading-center-absolute {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 200px;
  width: 200px;
  margin-top: -100px;
  margin-left: -100px;
}

 /* unvisited link */
a:link {
    color: #6f6f6f;
    text-decoration: underline;
}
/* visited link */
a:visited {
    color: #6f6f6f;
    text-decoration: underline;
}
/* mouse over link */
a:hover {
    color: #6f6f6f;
    text-decoration: underline;
}
/* selected link */
a:active {
    color: #6f6f6f;
    text-decoration: underline;
} 

.card {
    margin: 2px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    transition: 0.3s;

}
a.download {
  color:  #ffffff;
}



body {
	display: flex;
	flex-direction: column;
	font-size: 16px;
}
main {
	flex: 1 0 auto;
}
footer {
	flex-shrink: 0;
}
.navbar {
	flex: 0 0 auto;
}
.maxwidth {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}
@media (min-width: 769px) and (max-width: 1200px) {
	.maxwidth {
		padding-left: 100px;
		padding-right: 100px;
	}
}
.hl {
	font-size: 1em;
}
.hl-1 {
	font-size: 2em;
	line-height: 1;
	color: #ffffff;
}
.hl-2 {
	font-size: 1em;
	line-height: 1;
	color: #808080;
}
@media (max-width: 1200px) {
	.hl-1 {
		font-size: 1.5em;
	}
}
@media (max-width: 600px) {
	.hl {
		font-size: 0.75em;
	}
}
.button_grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-auto-rows: 1fr;
	grid-gap: 16px;
	margin: 16px 0;
}
@media (max-width: 769px) {
	.button_grid {
		margin: 16px;
	}
}
.button {
	display: flex;
	justify-content: flex-start;
	align-items: center;

	text-decoration: none !important;
	border: 0.8px solid #ffffff;
	padding: 12px;
}
@media (max-width: 600px) {
	.button span {
		font-size: 0.75em;
	}
}
.button-single {
	display: block;
	text-align: center;
	text-decoration: none !important;
	border: 0.8px solid #ffffff;
	padding: 12px;
	margin: auto;

	width: 100%;
	max-width: 324px;
}