:root
{
	--colorBgPage: #FFFFFF;
	--colorSignature: #006599;
	--colorSignatureLight: #D4E9F4;
	--colorSignature1: #D4891C;
	--colorSignature1Light: #FEF5E9;
	--colorGray: #778188;
	--colorGrayLight: #EEEEEC;
	--colorWhite: #FFFFFF;
	--txtColor: #013334; //#204A87;
	--txtColorReverse: #ffffff;
}

body
{
	background-color: var(--colorBgPage);
	color: var(--txtColor);
	margin: 0;
	font-family: "Roboto", sans-serif; //Lucida Sans, Times New Roman;
	font-stretch: ultra-condensed;
}

.main
{
	margin-top: 50px;
	padding-top: 60px;
}

.border
{
	border: 1px solid black;
}


.btnSig1
{
  background-color: var(--colorSignature1);
  color: var(--colorSignature);
  border: none;
  border-radius: 5px;
  padding: 10px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  //font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}

.btnSig1:hover
{
  background-color: var(--colorSiganture1Light);
  text-decoration: none;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

.btnSig1 a:hover
{
	text-decoration: none;
}

.btnSig1 a:visited
{
  color: var(--colorSignature);
}


.btnGray {
  background-color: var(--colorSignatureLight);
  color: var(--colorSignature);
  border: none;
  border-radius: 3px;
  padding: 8px 12px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
}

.btnGray:hover {
  background-color: var(--colorGrayLight);
  color: var(--colorSignature);
  text-decoration: none;
  box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}

.btnGray a:hover
{
	color: var(--colorSignature);
	text-decoration: none;
}

.btnGray a:visited
{
  color: var(--colorSignature);
}

.topline
{
	position: fixed;
	top: 0;
	width: 100%;
	z-index:10;
}

/**  Responsive Navigation Bar-----------------  **/
.topnav {
	overflow: hidden;
	background-color: var(--colorGrayLight);
	position: fixed;
	top: 1;
	//width: 100%;
	z-index:10;
}

.topnav a {
  float: left;
  display: block;
  color: var(--colorSignature);
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: var(--colorGray);
  color: var(--colorGrayLight);
}

.topnav a.active {
  background-color: var(--colorGray);
  color: var(--colorWhite);
}

.topnav .icon {
  display: none;
}

.scrolled {
  background-color: #6FC6E8;
  //opacity: 0.5;
 }
/**  End Responsive Navigation Bar-----------------  **/


.gradient
{
  background-image: linear-gradient(to top right,var(--colorSignatureLight),var(--colorSignature),var(--colorSignatureLight),var(--colorSignatureLight),var(--colorSignature));
}


h1, h2, h3, h4, h5, h6
{
	color: var(--colorSignature);
	text-align: center;
	overflow: scroll;
	font-family: Lucida Sans, Times New Roman;
	font-weight: 400;
	font-style: bold;
	display: block;
}

div
{
	text-align: left;
	margin: 0px;
	padding: 0px;
}

form
{
	background-color: var(--colorSignatureLight);
}

.fullwidth
{
	width: 100%;
}

.btn
{
	background-color: var(--colorSignature);
}

.btn:hover
{
	background-color: var(--colorSignatureLight);
	color: var(--colorSignature);
	font-weight: bolder;
}

.container
{
	margin: 0px;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
}

.containerNonFlex
{
	margin: 0px;
	padding: 20px;
}

.dashboardColumn
{
	margin: 10px;
	padding: 10px;
	min-width: 300px;
	//max-width: 600px;
	background-color: var(--colorWhite);
}

.dashboardCell
{
	margin: 10px;
	padding: 0px;
	//min-width: 280px;
	//max-width: 480px;
	background-color: var(--colorWhite);
}

.dashboardHeader
{
	margin: 0px;
	margin-top: 6px;
	padding-left: 6px;
	//background-color: var(--colorSignature);
	background-image: linear-gradient(to bottom right,var(--colorSignature),var(--colorSignatureLight),var(--colorWhite));
	color: var(--colorWhite);
	font-size: 22px;
	text-align: left;
	text-shadow: 1px 1px 2px var(--colorSignature);
}

.dashboardContent
{
	padding: 20px;
}

.dashboardSpacer
{
	margin: 0px;
	height: 20px;
	background-image: linear-gradient(to top left,var(--colorSignature),var(--colorSignatureLight),var(--colorWhite));

}

.row.spacer
{
	//background-color: #fff;
	height: 20px;
}

.color_Signature {
  color: var(--colorSignature);
}

.color_SignatureLight {
  color: var(--colorSignatureLight);
}

.color_Signature1 {
  color: var(--colorSignature1);
}

.color_Signature1Light {
  color: var(--colorSignature1Light);
}

.color_White {
  color: var(--colorWhite);
}

.color_Gray {
  color: var(--colorGray);
}

.color_GrayLight {
  color: var(--colorGrayLight);
}

.color_Reverse {
  color: var(--txtColorReverse);
}

.bgColor_Signature {
  background-color: var(--colorSignature);
}

.bgColor_SignatureLight {
  background-color: var(--colorSignatureLight);
}

.bgColor_Signature1 {
  background-color: var(--colorSignature1);
}

.bgColor_Signature1Light {
  background-color: var(--colorSignature1Light);
}

.bgColor_White {
  background-color: var(--colorWhite);
}

.bgColor_Gray {
  background-color: var(--colorGray);
}

.bgColor_GrayLight {
  background-color: var(--colorGrayLight);
}

.bgColor_Reverse {
  background-color: var(--txtColorReverse);
}

.reverse
{
	background-color: var(--colorSignature);
	color: var(--colorSignatureLight);
}


.txtShadowWhite
{
	text-shadow: 2px 2px 4px var(--colorWhite);
}

.txtShadowSignature
{
	text-shadow: 1px 1px 2px var(--colorSignature);
}

.height-adjust
{
  height: 360px;
}

.opaqueBackground {
  width:100%;
  position:relative;
  display:block;
  //padding:1rem;
}

.opaqueBackground::before{
	content:"";
	background-image: url(/image/business_11.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: 100%;
	opacity: 0.5;
	position:absolute;
	top:0;
	bottom:0;
	right:0;
	left:0;
	width:auto;
	height:auto;
	z-index:-3;
}

.imageBackground
{
	width:100%;
	background-repeat: no-repeat;
//	background-attachment: fixed;
	background-size: 100%;
}

.bizReality
{
	background-repeat: no-repeat;
	background-size: 100%;
	top:0;
	bottom:0;
	right:0;
	left:0;
	width:auto;
	height:auto;
}

.card
{
	float: right;
	margin: 10px;
	width: 25%;
	height: 270px;
}

.half
{
	margin: 0px;
	width: 50%;
	//height: 360px;
}

.bio
{
	background-color: var(--colorWhite);
	padding: 10px;
	margin: 10px;
	width: 45%;
}

.square {
  float: right;
  margin: 10px;
  width: 25%;
  height: 300px;
  padding: 20px;
  background-color: var(--txtColorReverse);
  border-radius: 0; // 15px;
  box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);

}

.square h2, .shadow h2, .card h2 .txtShadow {
  text-shadow: 1px 1px 2px var(--txtColor);
  text-align: center;
}



.shadow {
 margin: 20px; //0 auto;
 width: 0 auto;
 padding: 20px;
// border-radius: 2px;
 box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
}

table {
  //width: 100%;
}

tr:nth-child(even)
{
	background-color: var(--colorSignatureLight);
}

tr:nth-child(odd)
{
	background-color: var(--colorWhite);
}

th
{
	background-color: var(--colorSignature);
	color: var(--colorSignatureLight);
	padding: 2px;
	padding-left: 4px;
	padding-right: 4px;
}

td {
  padding: 1px;
  padding-left: 4px;
  padding-right: 4px;
  vertical-align: top;
  font-stretch: ultra-condensed;
}

/* Style the tab */
.tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}


/* Style the buttons inside the tab */
.tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
  font-size: 17px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.custom-centered
{
 margin:0 auto;
 width:0 auto;
 padding: 20px;
 border-radius: 10px;
 box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);

}

.txtLeft
{
	text-align: left;
}

.txtRight
{
	text-align: right;
}

.h10
{
	height: 10px;
}

.h30
{
	height: 30px;
}

.buttonLikeLink
{
  background: none!important;
  border: none;
  padding: 0!important;
  /*optional*/
  //font-family: arial, sans-serif;
  /*input has OS specific font-family*/
  //color: #069;
  text-decoration: underline;
  cursor: pointer;
}

.hidden
{
	display: none;
}

[data-slots] { font-family: monospace }

/* *********  form design  **************************** */

.editor.btn-toolbar {
  zoom: 1;
  background: #F7F7F7;
  margin: 5px 2px;
  padding: 3px 0;
  border: 1px solid #EFEFEF;
}
.input-group {
  //margin-bottom: 10px;
}
.ln_solid {
  border-top: 1px solid #e5e5e5;
  color: #ffffff;
  background-color: #ffffff;
  height: 1px;
  margin: 20px 0;
}
span.section {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 20px;
  font-size: 21px;
  line-height: inherit;
  color: #333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
.form-control {
  border-radius: 0;
  width: 100%;
}
.form-horizontal .control-label {
  padding-top: 8px
}
.form-control:focus {
  border-color: #CCD0D7;
  box-shadow: none !important;
}
legend {
  font-size: 18px;
  color: inherit;
}
.checkbox {}
.form-horizontal .form-group {
  margin-right: 0;
  margin-left: 0;
}
.form-control-feedback {
  margin-top: 8px;
  height: 23px;
  color: #bbb;
  line-height: 24px;
  font-size: 15px;
}
.form-control-feedback.left {
  border-right: 1px solid #ccc;
  left: 13px;
}
.form-control-feedback.right {
  border-left: 1px solid #ccc;
  right: 13px;
}
.form-control.has-feedback-left {
  padding-left: 45px;
}
.form-control.has-feedback-right {
  padding-right: 45px;
}
.form-group {
  margin-bottom: 10px;
}
.validate {
  margin-top: 10px;
}
.invalid-form-error-message {
  margin-top: 10px;
  padding: 5px;
}
.invalid-form-error-message.filled {
  border-left: 2px solid #E74C3C;
}
p.parsley-success {
  color: #468847;
  background-color: #DFF0D8;
  border: 1px solid #D6E9C6;
}
p.parsley-error {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
}
ul.parsley-errors-list {
  list-style: none;
  color: #E74C3C;
  padding-left: 0;
}
input.parsley-error, textarea.parsley-error, select.parsley-error {
  background: #FAEDEC;
  border: 1px solid #E85445;
}
.btn-group .parsley-errors-list {
  display: none;
}
.bad input, .bad select, .bad textarea {
  border: 1px solid #CE5454;
  box-shadow: 0 0 4px -2px #CE5454;
  position: relative;
  left: 0;
  -moz-animation: .7s 1 shake linear;
  -webkit-animation: 0.7s 1 shake linear;
}
.item input, .item textarea {
  -webkit-transition: 0.42s;
  -moz-transition: 0.42s;
  transition: 0.42s;
}

/* alerts (when validation fails) */

.item .alert {
  float: left;
  margin: 0 0 0 20px;
  padding: 3px 10px;
  color: #FFF;
  border-radius: 3px 4px 4px 3px;
  background-color: #CE5454;
  max-width: 170px;
  white-space: pre;
  position: relative;
  left: -15px;
  opacity: 0;
  z-index: 1;
  transition: 0.15s ease-out;
}
.item .alert::after {
  content: '';
  display: block;
  height: 0;
  width: 0;
  border-color: transparent #CE5454 transparent transparent;
  border-style: solid;
  border-width: 11px 7px;
  position: absolute;
  left: -13px;
  top: 1px;
}
.item.bad .alert {
  left: 0;
  opacity: 1;
}

/* *********  form design  **************************** */

.collapsible {
  background-color: #FFFFFF;
  color: grey;
  cursor: pointer;
  //padding: 18px;
  //width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 15px;
}

.active, .collapsible:hover {
  background-color: #FFF;
}

.collapsible_content {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  background-color: #FFF;
  
}

* {box-sizing:border-box}

/* Slideshow container */
.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
}

/* Hide the images by default */
.mySlides {
  display: none;
}

/* Next & previous buttons */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.2s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

/* Position the "next button" to the right */
.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
.prev:hover, .next:hover {
  background-color: rgba(0,0,0,0.8);
}

/* Caption text */
.text {
  color: #f2f2f2;
  font-size: 20px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
  color: #f2f2f2;
  font-size: 12px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

/* The dots/bullets/indicators */
.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.2s ease;
}

.active, .dot:hover {
  background-color: #717171;
}

/* Fading animation */
.fade {
  animation-name: fade;
  animation-duration: 5.0s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@media screen and (max-width: 834px)
{
  .drop
  {
    margin-top: 200px;
  }
  .dobest
  {
    width: 100%;
  }
  .mobile-adjust
  {
    max-width: 300px;
  }
  .mobile-hide
  {
    display: none;
  }
  .phone-adjust
  {
    width: 600px;
  }
  .half
  {
    height: 400px;
  }
  .shadow, .attentionBoxm
  {
    margin: 0 auto;
    margin-bottom: 10px;
    font-size: xx-small;
    font-stretch: ultra-condensed;
  }
  .square, .card
  {
    width: 80%;
    height: 330px;
    font-stretch: ultra-condensed;
  }
  .bio
  {
    width: 100%;
    font-stretch: ultra-condensed;
  }
}

@media screen and (min-width: 800px)
{
  .dobest
  {
    width: 45%;
  }
}

@media screen and (min-width: 600px)
{
  .wide-hide
  {
    display: none;
  }
  .mobile-hide
  {
    display: block;
  }
}

@media screen and (max-width: 601px)
{
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon {
    float: right;
    display: block;
  }
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .mobile-adjust
  {
    display: none;
  }
  .mobile-hide
  {
    display: none;
  }
  .phone-adjust
  {
    width: 400px;
    height: auto;
  }
  .phone-adjust.txtRight
  {
    text-align: left;
  }
   .phone-adjust.height-adjust
  {
    height: 240px;
    width: 100%;
  }
 .half
  {
    height: 300px;
  }
  .square, .card
  {
    width: 80%;
    height: 300px;
    font-stretch: ultra-condensed;
  }
  .container
  {
    padding: 2px;
  }
}

@media screen and (max-width: 384px)
{
  .mobile-adjust
  {
    display: none;
  }
  .mobile-hide
  {
    display: none;
  }
  .phone-adjust
  {
    max-width: 300px;
  }
     .phone-adjust.height-adjust
  {
    height: 200px;
    width: 100%;
  }
  .half
  {
    height: 200px;
  }
  .square, .card
  {
    width: 80%;
    height: 270px;
    font-stretch: ultra-condensed;
  }
}

