/*
LESS CMS39 compiler 
lessc -x style.less > style.css
lessc main.less main.css
*/
@import "https://cdn.jsdelivr.net/npm/normalize.css@8.0.1/normalize.min.css";
/*---------------------------------------------------
    LESS Elements 0.9
  ---------------------------------------------------
    A set of useful LESS mixins
    More info at: http://lesselements.com
  ---------------------------------------------------*/
.cms39-navbar-brand {
  top: 0px;
  background: url("img/logo.png") center;
  width: 180px;
  height: 80px;
  display: inline-block;
  overflow: hidden;
  text-indent: -1500px;
  white-space: nowrap;
}
.contact_interest {
  text-align: center;
  margin: 20px 0;
}
/* ==========================================================================
   CMS39 Base styles: opinionated defaults
   ========================================================================== */
/* all */
::-webkit-input-placeholder {
  color: #282829;
  font-size: 1em;
}
::-moz-placeholder {
  color: #282829;
  font-size: 1em;
}
/* firefox 19+ */
:-ms-input-placeholder {
  color: #282829;
  font-size: 1em;
}
/* ie */
input:-moz-placeholder {
  color: #282829;
  font-size: 1em;
}
::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}
::selection {
  background: #b3d4fc;
  text-shadow: none;
}
/* #Custom
================================================== */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0px;
  padding: 0px;
}
html {
  position: relative;
  min-height: 100%;
  color: #1D1D1B;
}
body {
  background: #fff;
  padding: 0px;
  margin: 0px;
}
a {
  color: #282829;
  text-decoration: none;
}
a:hover {
  color: #000000;
  text-decoration: none;
}
a:focus {
  text-decoration: none;
  color: #000000;
}
a:active {
  text-decoration: none;
  color: #000000;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Open Sans', sans-serif;
}
.position-centered-axis-x {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0);
}
.position-centered-axis-xy {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.position-center-center {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.bread {
  background: transparent;
  margin-bottom: 0px;
  padding: 0px;
  text-align: right;
}
.bread .breadcrumb {
  background: transparent;
  margin: 0 0 0px 0;
  text-align: right;
  font-size: 11px;
  display: block;
}
.bread .breadcrumb li {
  display: inline-block;
  padding: 2px;
  margin: 2px;
}
.bread .breadcrumb li:after {
  font-family: FontAwesome;
  content: "\f054";
  display: inline-block;
  padding-left: 9px;
  vertical-align: middle;
  color: #000000;
}
.bread .breadcrumb li:last-of-type {
  margin-right: 0px;
}
.bread .breadcrumb li:last-of-type:after {
  display: none;
}
.bread .breadcrumb li a {
  color: #000000;
}
.bread .breadcrumb > li + li:before {
  color: #000000;
}
.shadow_txt {
  -moz-test-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  -webkit-text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}
.shadow_box {
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.1);
}
.shadow_box_inner {
  -webkit-box-shadow: inset 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: inset 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0px 0px 5px 1px rgba(0, 0, 0, 0.1);
}
div.blockMsg {
  width: 40%;
  top: 30%;
  left: 30%;
  text-align: center;
  background-color: #000000;
  border: 1px solid #000000;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  -webkit-opacity: 0.7;
  opacity: 0.7;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(opacity=70);
  filter: alpha(opacity=70);
  padding: 30px 10px;
}
div.blockMsg h1 {
  color: #000000;
  font-size: 1.8em;
  margin: 0px;
  padding: 0px;
}
/* ==========================================================================
   Helper classes
   ========================================================================== */
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
.list-inline li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
  text-align: -webkit-match-parent;
}
.mtable {
  height: 100%;
  width: 100%;
  display: table;
}
.mtable .mcell {
  display: table-cell;
  vertical-align: middle;
}
.text-hide {
  overflow: hidden;
  text-indent: -1500px;
  white-space: nowrap;
}
.text-right {
  text-align: right;
}
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-justify {
  text-align: justify;
}
.relative {
  position: relative;
}
img {
  vertical-align: middle;
}
.img-full {
  width: 100%;
  height: auto;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
textarea {
  resize: vertical;
}
.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}
input:focus,
select:focus,
textarea:focus,
button:focus {
  outline: none;
}
.ir {
  background-color: transparent;
  border: 0;
  overflow: hidden;
  /* IE 6/7 fallback */
  *text-indent: -9999px;
}
.ir:before {
  content: "";
  display: block;
  width: 0;
  height: 100%;
}
.hidden {
  display: none !important;
  visibility: hidden;
}
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}
.invisible {
  visibility: hidden;
}
.clearfix:before,
.clearfix:after {
  content: " ";
  /* 1 */
  display: table;
  /* 2 */
}
.clearfix:after {
  clear: both;
}
.clearfix {
  *zoom: 1;
}
/* #Media Queries
================================================== */
/* Xtra Large devices (large desktops, 1200px and up) */
/* Large devices (desktops, 992px and up) */
/* Medium devices (desktops, 768px and up) */
/* Small devices (tablets, 576px and up) */
/* X Small devices (tablets, 576px and down) */
/* ==========================================================================
   Print styles.
   Inlined to avoid required HTTP connection: h5bp.com/r
   ========================================================================== */
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    /* Black prints faster: h5bp.com/s */
    box-shadow: none !important;
    text-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: " (" attr(href) ")";
  }
  abbr[title]:after {
    content: " (" attr(title) ")";
  }
  /*
   * Don't show links for images, or javascript/internal links
   */
  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: "";
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
    /* h5bp.com/t */
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
}
