html,
body {
	scroll-behavior: smooth;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.4;
}

h3 {
	margin: 20px 0 24px;
}

h6 {
	margin: 20px 0 8px;
	font-size: 16px;
    font-weight: 600;
    color: #aaa;
    text-transform: uppercase;
}

h6 + h3 {
	margin: 0 0 24px;
}

p.text {
	line-height: 24px;
}

p:not(:last-child) {
	margin-bottom: 20px;
}

.navbar {
	box-shadow: none!important;
	border: none!important;
} 

.navbar.in-view {
	animation: move-in 0.25s;
}

.navbar.out-of-view {
	top: -50px;
	animation: move-out 0.25s;
}

.navbar.on-top {
	background: white;
	color: black
}

.navbar a {
	color: #222
}

.container {
	padding: 0 24px;
}


.centered {
	text-align: center;
}

.SeperatorLine {
	display: block;
	height: 2px;
	border: 0;
	margin: 3em 0;
	padding: 0;
	background-image: -webkit-linear-gradient(left, #fff, #f00, #fff);
	background-image: -moz-linear-gradient(left, #fff, #f00, #fff);
	background-image: -ms-linear-gradient(left, #fff, #f00, #fff);
	background-image: -o-linear-gradient(left, #fff, #f00, #fff);
	width: 50%;
	left: 25%;
	position: relative;
	border: none;
}

.mainContainer {
	padding: 86px 0 120px;
}

.mainContainer:nth-child(odd) {
	background-color: rgb(245, 245, 245);
}

.largeText {
	font-size: 20px;
}

.bottomMargin {
	margin-bottom: 50px;
}

.fa {
	color: rgb(255, 0, 0);
}

.fa-white {
	color: rgb(255, 255, 255);
}

.fa-black {
	color: #222;
}

.jsLink {
	cursor: pointer;
}

#HeaderLogo {
	max-height: 350px;
	padding: 0 10px 0 10px;
}

#TeamviewerLogo {
	max-height: 50px;
	margin-top: 18px;
}

#ProductContainer {
	min-height: 400px;
}

#ProductContainer * {
	position: absolute;
	z-index: 1;
}

#ProductContainer h1 strong {
	background-color: rgb(255, 255, 255);
	box-shadow: inset 0px 0px 1px rgba(0, 0, 0, 0.5), 0 0 0 rgba(0, 0, 0, 0);
	padding: 5px 10px;
	position: relative;
}

#ProductContainer a {
	max-width: 200px;
	background-color: rgb(255, 255, 255);
	box-shadow: inset 0px 0px 1px rgba(0, 0, 0, 0.5), 0 0 0 rgba(0, 0, 0, 0);
	padding: 1px 5px;
	margin: 3px;
}

#ProductContainer canvas {
	top: 0;
	left: 0;
	z-index: 0;
}

#More .callout {
	margin-bottom: 20px;
}

#Team img {
	height: 120px;
	width: 120px;
	display: block;
	margin: auto;
}

#Team h4 {
	font-weight: 700;
	text-align: center;
}

#Team p {
	font-weight: 700;
	text-align: center;
}

#FooterContainer p {
	color: rgb(140, 140, 140);
	margin: 15px 0 15px 0;
}

#ContactDialog textarea {
	height: 150px;
	max-width: 470px;
	resize: vertical;
}

.pt {
	padding-top: 96px
}

.navbar.navbar-inverse {
	background-image: none;
}

.hero {
	padding: 66px 20px 16px;
	/* Height Navbar  */
	height: calc(100vh - 50px);
}

.flex-center {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: nowrap;
}

.btn-new-primary {
	color: #fff;
	background: #ff0042;
}

.btn-new-primary:hover,
.btn-new-primary:focus {
	color: #fff;
	background: #e6003d;
}

.btn-new-primary:active {
	color: #fff;
	background: #cc0036;
}

.btn-flat {
	display: flex;
	align-items: center;
	background: #eeeeee;
	border: none;
	text-decoration: none;
	gap: 4px;
	font-weight: 600;
	color: #666;
	padding: 8px 20px;
}

.btn-flat:hover,
.btn-flat:focus {
	background: #e0e0e0;
}

.btn-flat:active {
	background: #e0e0e0;
}

.btn-flat>.fa {
	color: inherit
}

.modal-footer>.btn-flat {
	display: inline;
	padding: 6px 12px;
}

ul.list {
	list-style: none;
	padding: 0;
	margin: 0;
}

ul.list>li::before {
	content: url("img/check-solid.svg");
	height: 16px;
	width: 16px;
	margin-right: 12px;
}

ul.list>li {
	display: flex;
	align-items: center;
	margin: 12px 0;
	font-weight: 600;
	font-size: 16px
}

.thumbnail>img,
.illustration {
	/* max-width: 240px; */
	margin: 20px auto;
}

@media screen and (min-width: 480px) {
	.pt {
		padding-top: 124px
	}
}

@media screen and (min-width: 800px) {
	.pt {
		padding-top: 184px
	}
}

@media (min-width: 768px) {
	.row-reverse {
		display: flex;
		flex-direction: row-reverse;
	}

	.text-align-left-from-sm {
		text-align: left;
	}

}

@keyframes move-out {
	from {
		top: 0
	}

	to {
		top: -50px
	}

}

@keyframes move-in {
	from {
		top: -50px
	}

	to {
		top: 0
	}

}