/* This style sheet is loaded when the device-width is over 1024px. */
/* Author: Kevin Wengert  */
/* Kinetix Software Solutions */


/* Styling for body element begins here */
body {
    font-family: Verdana, Arial, sans-serif;
    font-size: 16px;
    background-color: white;
}


/* Styling for hr element begins here */
hr {
    width: 50%;
    background-color: #0d72a6;
}


/* Styling for header elements begin here */
header {
    background-color: white;
    height: 100%;
    text-align: center;
    color: #0d72a6;
}
header h1 {
    text-transform: uppercase;
    padding: 10px 10px 0px 10px;
    margin: 0;
    box-sizing: border-box;
    height: auto;
}

header h2 {
    padding: 0px 10px 6px 10px;
    margin: 0;
    font-size: 36px;
    font-weight: normal;
    text-align: right;
    color: #0d72a6;
    background-color: white;
}

header a {
    text-decoration: none;
}


/* Styling for the nav element begins here */
nav a {
    float: left;
    font-size: 18px;
    width: 23%;
    padding: 6px;
    text-align: center;
    color: white;
    text-decoration: none;
    transition: all .5s ease;
}

nav a:hover {
    background-color: #48b7d2;
}


/* Styling for the main elements begins here */
main {
    padding: 6px;
}

main img {
    width: 100%;
    margin: auto;
    display: block;
}

main video {
    width: 80%;
    text-align: center;
    padding: 6px;
}

main h2 {
    text-transform: uppercase;
    font-size: 36px;
    font-weight: normal;
    color: #0d72a6;
    text-align: center;
    padding: 25px 0 25px;
    margin: 0;
    box-sizing: border-box;
    /*position: relative;*/
}

/*main h2:before {
    content: "";
    display: block;
    width: 10%;
    height: 2px;
    background: #0d72a6;
    left: 0;
    top: 50%;
    position: absolute;
}

main h2:after {
    content: "";
    display: block;
    width: 10%;
    height: 2px;
    background: #0d72a6;
    right: 0;
    top: 50%;
    position: absolute;
}*/


/* Styling for the form elements begins here */
fieldset {
    width: 80%;
    margin: 15px auto;
    border: 2px solid #0d72a6;
}

legend {
    background-color: #0d72a6;
    color: white;
    width: auto;
    padding: 5px;
    font-weight: bold;
}

input {
    width: 95%;
    margin: 5px;
}

textarea {
    width: 95%;
    height: 150px;
    margin: 5px;
}

label {
    display: block;
}

button {
    margin: 0 10px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 10px;
    background-color: #0d72a6;
    border-color: #0d72a6;
    color: white;
    font-weight: bolder;
    width: 130px;
}

button:hover {
    background-color: #48b7d2;
    border-color: #48b7d2;
    font-weight: bold;
}


/* Styling for the footer elements begins here */
footer {
    position: fixed;
    left: 0;
    bottom: 0;
    text-align: center;
    width: 100%;
    background-color: #0d72a6;
    color: white;
    padding: 6px 0 6px;
    padding-top: 0;
    font-size: 12px;
}

footer p {
    padding: 6px 0 6px 6px;
    margin: 0;
}


/* Styling for the different classes begin here */


/* Styling for the aboutus class begins here*/
.aboutus {
    max-width: 95%;
    vertical-align: top;
    padding: 10px;
    margin: 25px;
    text-align: center;
    font-size: 22px;
}

.aboutus-wrap {
    overflow: hidden;
    vertical-align: top;
    width: 30%;
    display: inline-block;
    height: 650px;
    position: relative;
}

.aboutus-bg {
    opacity: 0.15;
    position:absolute;
    left: 0;
    right: 0;
    height: auto;
    width: 100%;
}

.aboutus-text {
    position: relative;
    vertical-align: top;
    text-align: center;
    padding: 10px;
}


/* Styling for the align class begins here*/
.alignleft {
    text-align: left;
}

.alignright {
    text-align: right;
}

.aligncenter {
    text-align: center;
}


/* Styling for the contactus class begins here*/
.contactus {
    max-width: 90%;
    vertical-align: top;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
}

.contactus h3 {
    color: #0d72a6;
    text-align: center;
}

.contactus p {
    text-align: center;
    box-sizing: border-box;
    padding: 10px 100px 10px 100px;
}

.contactus-wrap {
    display: flex;
    justify-content: center;
}

.contactus table {
    width: auto;
    vertical-align: top;
    text-align: center;
    display: inline-block;
    box-sizing: border-box;
}

.contactus td {
    padding: 6px 25px;
    vertical-align: top;
    text-align: center;
    width: auto;
}

.contactus td p {
    color: #0d72a6;
    font-weight: bold;
    text-align: center;
}


/* Styling for the defaultnondisplay class begins here*/
.defaultnondisplay {
    display: none;
}


/* Styling for the fab (floating action button) class begins here*/
.fab-container {
	position: fixed;
	bottom: 70px;
	right: 40px;
	z-index: 999;
	cursor: pointer;
}

.fab-icon-holder {
	width: 40px;
	height: 40px;
	border-radius: 100%;
	background: orangered;

	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.fab-icon-holder:hover{
	opacity: 0.8;
}

.fab-icon-holder i {
	display: flex;
	align-items: center;
	justify-content: center;

	height: 100%;
    width: auto;
	font-size: 20px;
	color: #ffffff;
}

.fab-icon-holder a {
    text-decoration: none;
}

.fab {
	width: 50px;
	height: 50px;
	background: orangered;
}

.fab-options {
	list-style-type: none;
	margin: 0;

	position: absolute;
	bottom: 70px;
	right: 0;

	opacity: 0;

	transition: all 0.3s ease;
	transform: scale(0);
	transform-origin: 85% bottom;
}

.fab:hover + .fab-options, .fab-options:hover {
	opacity: 1;
	transform: scale(1);
}

.fab-options li {
	display: flex;
	justify-content: flex-end;
	padding: 5px;
}

.fab-label {
	padding: 2px 5px;
	align-self: center;
	user-select: none;
	white-space: nowrap;
	border-radius: 3px;
	font-size: 16px;
	background: orangered;
	color: #ffffff;
	box-shadow: 0 6px 20px rgba(0,0,0,0.2);
	margin-right: 10px;
}


/* Styling for the labelsondemand class begins here*/
.labelsondemand {
    max-width: 42%;
    vertical-align: top;
    padding: 10px;
    margin: 25px;
    text-align: center;
    outline-style: solid;
    outline-color:#0d72a6;
    display: inline-block;
}

.labelsondemand-wrap {
    display: flex;
    justify-content: center;
}

.labelsondemand img {
    display: block;
    max-width: 300px;
    max-height: 120px;
    width: auto;
    height: auto;
}


/* Styling for the logo class begins here*/
.logo {
    border-radius: 9%;
    width: 255px;
    float: right;
}

.logo-wrap {
    display: block;
    border-radius: 9%;
    margin-right: 10px;
    margin-top: 10px;
    float: right;
    border: 2px solid #0d72a6;
}


/* Styling for the nav class begins here*/
.nav-wrap {
    position: fixed;
    background-color: #0d72a6;
    font: bold;
    padding: 6px;
    height: 35px;
    left: 0;
    top: 0;
    width: 99%;
    overflow: auto;
}

/* Styling for the routereconciliation class begins here*/
.routereconciliation {
    max-width: 90%;
    vertical-align: top;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    text-align: center;
    outline-style: solid;
    outline-color:#0d72a6;
}

.routereconlogo img {
    display: block;
    max-width: 300px;
    max-height: 120px;
    width: auto;
    height: auto;
}


/* Styling for the screenshot class begins here*/
.screenshot {
    width: 60%;
    padding: 25px;
}


/* Styling for the sectiontext class begins here*/
.sectiontext {
    text-align: center;
    box-sizing: border-box;
}


/* Styling for the softwaretestimonial class begins here*/
.softwaretestimonial {
    width: auto;
    margin: 25px;
    padding: 25px;
    background-color: aliceblue;
    text-align: center;
    font-style: italic;
    outline-style: solid;
    outline-color:#0d72a6;
}

.softwaretestimonial ul {
    text-align: left;
}


/* Styling for the spacer class begins here*/
.spacer-bottom {
    margin-bottom: 120px;
    visibility: hidden;
}

.spacer-top {
    padding-top: 30px;
    visibility: hidden;
}


/* Styling for the testimonialtable class begins here*/
.testimonialtable {
    max-width: 95%;
    padding: 10px;
    margin: 25px;
    text-align: center;
    outline-style: solid;
    outline-color:#0d72a6;
}

.testimonialtable table {
    width: 30%;
    vertical-align: top;
    text-align: center;
    display: inline-block;
}

.testimonialtable td {
    padding: 6px 25px;
    text-align: center;
    width: 30%;
    border-style: outset;
    border-color: #0d72a6;
}

.testimonialtable img {
    display: block;
    max-width:230px;
    max-height:95px;
    width: auto;
    height: auto;
}

.tt-long {
    vertical-align: top;
    height: 300px;
}

.tt-short {
    vertical-align: middle;
    height: 100px;
}

/* Styling for the thankyou class begins here*/
.thankyou {
    max-width: 90%;
    vertical-align: top;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
    text-align: center;
}


/* Styling for the banner id begins here*/
#banner {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    /*position: relative;*/
    background-image: url('../images/webbanner.jpg');
    background-repeat: no-repeat;
    background-position: top left;
    background-size: cover;
    height: 400px;
    background-color: white;
}

/* Styling for the wrapper id begins here*/
#wrapper {
    width: 100%; */
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
