html, body {
  font-family: "Open Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 300;
  font-style: normal;
  color: #292c2c;
  background-color: #f8f9fa;
  background-size: cover;
}

a {
  color: #292c2c;
}

    a:hover {
      color: #434848;
      text-decoration: none;
    }

h1 {
  font-size: 30px;
}

h2 {
  font-size: 26px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 14px;
}
/* -------------------------------------------------------BACKGROUNDS */

.bg-cover {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-haf-boxes-top-left {
  background-image: url('../images/haf_box.svg');
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: left top;
  background-size: 400px 289px;
}

.bg-haf-boxes-bottom-right {
  background-image: url('../images/haf_box-180.svg');
  background-repeat: no-repeat;
  background-position: bottom right;
  background-size: 400px 289px;
}

.haf-dark-grey-bg {
  background-color: #20262b;
}

.haf-green-bg {
  background-color: #3aaa35;
}

.haf-grey-bg {
  background-color: #2f373e;
}

.haf-light-grey-bg {
  background-color: #f9f9f9;
}

.haf-mid-dark-grey-bg {
  background-color: #283036;
}

.bg-p151 {
  background-color: #f18e00;
}


/* -------------------------------------------------------BORDERS */

.border-black {
  border: 1px solid #000000;
}

.border-mid-grey {
  border: 1px solid #e0e0e0;
}

.border-p151-50 {
  border: 1px solid #f8c780;
}

.border-p151 {
  border: 1px solid #f18e00;
  padding: 15px;
}

.border-p151-thick {
  border: 2px solid #f18e00;
}

.border-bottom-haf-light-grey {
  border-bottom: 1px solid #f9f9f9;
}

.border-bottom-p151 {
  border-bottom: 1px solid #f18e00;
}

.border-bottom-white {
  border-bottom: 1px solid #ffffff;
}

.border-raduis-10px {
  border-radius: 10px;
}

.border-white {
  border: 1px solid #ffffff;
}

/* -------------------------------------------------------BUTTONS */

.btn-bg-green {
  background-color: #3aaa35;
  color: #ffffff;
}

    .btn-bg-green:hover {
       background-color: #009640;
       text-decoration: none;
       color: #ffffff;
    }

.btn-bg-p151 {
  background-color: #f18e00;
  color: #ffffff;
}

    .btn-bg-p151:hover {
       background-color: #ee7203;
       text-decoration: none;
       color: #ffffff;
    }




/* -------------------------------------------------------CONTAINERS */


.inner-shadow {
  box-shadow: inset 0px 16px 15px -15px rgba(0,0,0,0.5);
}




/* -------------------------------------------------------CARDS */

.scrolling-wrapper {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
}

.card {
  display: inline-block;
  max-width: 350px;
  min-width: 350px;
  margin-right: 15px;
  margin-bottom: 15px;
  text-wrap: wrap !important;
}

.card-employee {
  border: 1px solid #ddd;
  border-radius: 6px;
  max-width: 350px;
  min-width: 350px;
  text-align: center;
  margin-top: 60px;
  margin-left: 10px;
  margin-right: 10px;
}

.card-employee-wide {
  border: 1px solid #ddd;
  border-radius: 6px;
  text-align: center;
  margin-top: 60px;
}

.card-employee-img {
  width: 120px;
  height: 120px;
  overflow: hidden;
  border-radius: 100%;
  border: 1px solid #ffffff;
  margin: -60px auto 0;
}

.card-employee-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-employee-info {
  padding: 20px;
}

/* ------------------------------------------------------- DIVIDERS */

.box_height {
  min-height:280px;
}

.height-10px {
	height: 10px;
}

.height-20px {
	height: 20px;
}

.height-30px {
	height: 30px;
}

.height-40px {
	height: 40px;
}

.height-50px {
	height: 50px;
}

.height-52px {
	height: 52px;
}

.height-60px {
	height: 60px;
}

.height-80px {
	height: 80px;
}

.height-100px {
	height: 100px;
}

.height-120px {
  height: 120px;
}

.height-150px {
  height: 150px;
}

.height-200px {
  height: 200px;
}



/* -------------------------------------------------------FLEX */

.flex {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.flex-justified-space-between {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}


/* -------------------------------------------------------FONTS */

.font_default {
  font-family: "Open Sans", sans-serif;
}

/* -------------------------------------------------------FONT WEIGHTS */

.font-bold {
    font-weight: 600;
}

.font-light {
    font-weight: 300;
}

.font-regular {
    font-weight: 400;
}


/* -------------------------------------------------------GRIDS */

.grid-box {
  display: grid;
  justify-items: center;
  grid-template-columns: repeat(auto-fill,minmax(20rem, 1fr));
}

/* -------------------------------------------------------HEIGHTS */

.height-100pc {
  height: 100%;
}

.height-100px {
  min-height: 100px;
  max-height: 100px;
}



/* -------------------------------------------------------IMAGES */

.person-img-box {
  width: 100%;
  object-fit: cover;
}

.img-max-width-200px {
  max-width: 200px;
}


/* ------------------------------------------------------- MARGINS */

.margin-auto {
  margin-left: auto;
  margin-right: auto;
}

.margin-bottom-10px {
  margin-bottom: 10px;
}

.margin-bottom-20px {
  margin-bottom: 20px;
}

.margin-default {
  margin: 1em;
}

.margin-left-20px {
  margin-left: 20px;
}

.margin-right-10px {
  margin-right: 10px;
}

.margin-right-20px {
  margin-right: 20px;
}

.margin-top-10px {
  margin-top: 10px;
}

.margin-top-20px {
  margin-top: 20px;
}


/* -------------------------------------------------------MEDIA QUERIES */




/* -------------------------------------------------------NAVS */

.nav-tabs > a {
  color: #292c2c;
}

.nav-tabs > a:hover {
  color: #292c2c;
  text-decoration: none;
}

.nav-tabs.active > a {
  color: #292c2c;
}

nav .navbar-nav li a{
  color: #292c2c !important;
  }


/* -------------------------------------------------------PADDINGS */

.padding-default {
  padding: 1em;
}

.padding-feature {
  padding: 50px;
}

.padding-left-right-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.padding-large {
  padding: 2em;
}

.padding-top {
  padding-top: 1.5em;
}


/* ------------------------------------------------------- SCROLLBAR */

::-webkit-scrollbar {
  height: 10px;
  background-color: #ffffff; /* or add it to the track */
}

::-webkit-scrollbar-thumb {
  background: #2f373e;
  width: 20px;
  border: 1px solid #ffffff;
  background-clip: content-box;
}


/* ------------------------------------------------------- TABLES */

.table_component {
    overflow: auto;
    width: 100%;
}

.table_component table {
    border: 1px solid #f9f9f9;
    height: 100%;
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
    border-spacing: 1px;
    text-align: left;
}

.table_component caption {
    caption-side: top;
    text-align: left;
}

.table_component th {
    border: 1px solid #f9f9f9;
    background-color: #283036;
    color: #ffffff;
    padding: 5px;
}

.table_component td {
    border: 1px solid #f9f9f9;
    background-color: #2f373e;
    color: #000000;
    padding: 5px;
}

/* ------------------------------------------------------- TEXT COLOURS */

.text-haf-grey {
  color: #2f373e;
}

.text-p151 {
  color: #f18e00;
}

.text-red {
  color: #FF0000;
}

.text-white {
  color: #ffffff;
}




/* ------------------------------------------------------- TEXT SIZES */

.text-sml {
  font-size: .8em;
}

.text-large {
  font-size: 1.5em;
}

.text-medium {
  font-size: 1.5em;
}

.text-regular {
  font-size: 14px;
}

.text-42 {
  font-size: 42px;
}


/* ------------------------------------------------------- TEXT FORMATS */

.text-center {
  text-align: center;
}

.text-justified {
  text-align: justify;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-uppercase {
  text-transform: uppercase;
}


/* ------------------------------------------------------- WIDTHS */

.max-width-380px {
  max-width: 380px!important;
  margin-left: auto;
  margin-right: auto;
}

.square-150px-100px {
  min-width: 150px;
  max-width: 150px;
  min-height: 100px;
  max-height: 100px;
}

.square-150px {
  min-width: 150px;
  max-width: 150px;
  min-height: 150px;
  max-height: 150px;
}

.square-150px-half {
  min-width: 150px;
  max-width: 150px;
  min-height: 75px;
  max-height: 75px;
}

.width-150px {
  width: 150px;
}

.max-width-200px {
  max-width: 200px;
}

.max-width-500px {
  max-width: 500px;
}
