
  @import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400');

  body {
    font-family: 'Open Sans', sans-serif;
    overflow-x: hidden;
    background: #f9f9f9;
  }

  /*---------------------------------------
     TYPOGRAPHY
  -----------------------------------------*/

  h1,h2,h3,h4,h5,h6 {
    font-weight: 300;
    line-height: normal;
  }

  h1 {
    font-size: 3em;
  }

  h2 {
    color: #353535;
    font-size: 2em;
  }

  p {
    color: #757575;
    font-size: 14px;
    font-weight: normal;
    line-height: 24px;
  }

  /*---------------------------------------
     GENERAL
  -----------------------------------------*/

  html{
    -webkit-font-smoothing: antialiased;
  }

  a {
    color: #202020;
    text-decoration: none !important;
  }

  ul {
  	margin-bottom: 0px;
  }

  a,
  input, button,
  .form-control {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }

  a:hover, a:active, a:focus {
    color: #29ca8e;
    outline: none;
  }

  ::-webkit-scrollbar{
    width: 8px;
    height: 8px;
  }

  ::-webkit-scrollbar-thumb {
    cursor: pointer;
    background: #202020;
  }

  .section-title {
    padding-bottom: 40px;
  }

  section {
    position: relative;
    padding: 100px 0;
  }

  #contact,
  footer {
    background: #ffffff;
    text-align: center;
  }

  .overlay {
    opacity: 0.9;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }


  /*---------------------------------------
     BUTTONS
  -----------------------------------------*/

  .section-btn {
    background: #29ca8e;
    border: 0;
    border-radius: 50px;
    color: #ffffff;
    font-size: 16px;
    font-weight: normal;
    padding: 12px 30px;
    transition: 0.5s 0.2s;
  }

  .section-btn:hover,
  .section-btn:focus {
    background: #202020;
    color: #ffffff;
  }



  /*---------------------------------------
       PRE LOADER
  -----------------------------------------*/

  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    background: none repeat scroll 0 0 #ffffff;
  }

  .spinner {
    border: 1px solid transparent;
    border-radius: 3px;
    position: relative;
  }

  .spinner:before {
    content: '';
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 45px;
    height: 45px;
    margin-top: -10px;
    margin-left: -10px;
    border-radius: 50%;
    border: 1px solid #575757;
    border-top-color: #ffffff;
    animation: spinner .9s linear infinite;
  }

  @-webkit-@keyframes spinner {
    to {transform: rotate(360deg);}
  }

  @keyframes spinner {
    to {transform: rotate(360deg);}
  }



  /*---------------------------------------
      MENU
  -----------------------------------------*/


  @media(min-width:768px) {

  }



  /*---------------------------------------
      HOME
  -----------------------------------------*/

  #home {
    background: url('../images/catsysBackground.png') no-repeat center center;
    background-size: cover;
    vertical-align: middle;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: 100vh;
    position: relative;
    padding-top: 8em;
    text-align: center;
  }

  #home h1 {
    color: #ffffff;
    margin-top: 0px;
    margin-bottom: 40px;
  }

  .home-info {
    margin-top: 7em;
  }

  #home A {
    color: #ffffff;
    font-size: 2em;
  }

  .home-info h3 {
    color: #f0f0f0;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin: 10px 0;
  }

  .legacyLinks {
    color: #ffffff;
    margin-bottom: 10px;
  }

  .imgLogin  {
  	width: 256px;
  	height: 256px;

		border-style: solid;
		border-color: #D9D9D9 #C9C9C9 #C9C9C9 #D9D9D9;
		border-width: 0px 0px 0px 0px;
  }




  /*---------------------------------------
     FOOTER
  -----------------------------------------*/

  footer {
    padding-bottom: 80px;
  }

  .copyright-text {
    margin: 5px;
    color: #ffffff;
  }

  #divClientLogo {
  	position: fixed;
  	left: 10px;
  	top: 10px;
  }

  #divCopyright {
  	position: fixed;
  	left: 0px;
  	top: calc(100vh - 30px);
  	align: center;
  }

  #divCatsysLogo {
  	position: fixed;
  	left: calc(100% - 200px);
  	top: calc(100vh - 100px);
  }

  .top-buffer { margin-top:50px; }
  .bottom-buffer { margin-bottom:150px; }



  /*---------------------------------------
     RESPONSIVE STYLES
  -----------------------------------------*/

  @media only screen and (max-width: 1200px) {

    .home-info {
      margin-top: 0;
    }

  }


  @media only screen and (max-width: 992px) {

    section {
      padding: 60px 0;
    }

    footer {
      padding-bottom: 40px;
    }
  }


  @media screen and (max-width: 767px) {


    .section-title {
      padding-bottom: 20px;
    }

  }

