.text-white {
  color: #fff!important;
}

.text-green {
  color: #84a215!important;
}

.text-darkgrey {
  color: #46494C!important;
}

.d-flex {
  display: flex;
}

.flex-direction-row {
  flex-direction: row;
}

.flex-direction-column {
  flex-direction: column;
}

.justify-content-center {
  justify-content: center;
}

.align-items-center {
  align-items: center;
}

.m-auto {
  margin: auto;
}


/**
 * @file
 * Styles for system messages.
 */

.messages {
  background: no-repeat 10px 17px;  /* LTR */
  border: 1px solid;
  border-width: 1px 1px 1px 0;  /* LTR */
  border-radius: 2px;
  padding: 15px 20px 15px 20px; /* LTR */
  word-wrap: break-word;
  overflow-wrap: break-word;
}
[dir="rtl"] .messages {
  border-width: 1px 0 1px 1px;
  background-position: right 10px top 17px;
  padding-left: 20px;
  padding-right: 35px;
  text-align: right;
}
.messages + .messages {
  margin-top: 1.538em;
}
.messages__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.messages__item + .messages__item {
  margin-top: 0.769em;
}
/* See .color-success in Seven's colors.css */
.messages--status {
  color: #325e1c;
  background-color: #f3faef;
  border-color: #c9e1bd #c9e1bd #c9e1bd transparent;  /* LTR */
  box-shadow: -8px 0 0 #77b259; /* LTR */
}
[dir="rtl"] .messages--status {
  border-color: #c9e1bd transparent #c9e1bd #c9e1bd;
  box-shadow: 8px 0 0 #77b259;
  margin-left: 0;
}
/* See .color-warning in Seven's colors.css */
.messages--warning {
  background-color: #fdf8ed;
  border-color: #f4daa6 #f4daa6 #f4daa6 transparent;  /* LTR */
  color: #734c00;
  box-shadow: -8px 0 0 #e09600; /* LTR */
}
[dir="rtl"] .messages--warning {
  border-color: #f4daa6 transparent #f4daa6 #f4daa6;
  box-shadow: 8px 0 0 #e09600;
}
/* See .color-error in Seven's colors.css */
.messages--error {
  background-color: #fcf4f2;
  color: #a51b00;
  border-color: #f9c9bf #f9c9bf #f9c9bf transparent;  /* LTR */
  box-shadow: -8px 0 0 #e62600; /* LTR */
}
[dir="rtl"] .messages--error {
  border-color: #f9c9bf transparent #f9c9bf #f9c9bf;
  box-shadow: 8px 0 0 #e62600;
}
.messages--error p.error {
  color: #a51b00;
}



/*FORM*/

/**
 * @file
 * Visual styles for form components.
 */

form .field-multiple-table {
  margin: 0;
}
form .field-multiple-table .field-multiple-drag {
  width: 30px;
  padding-right: 0; /*LTR*/
}
[dir="rtl"] form .field-multiple-table .field-multiple-drag {
  padding-left: 0;
}
form .field-multiple-table .field-multiple-drag .tabledrag-handle {
  padding-right: .5em; /*LTR*/
}
[dir="rtl"] form .field-multiple-table .field-multiple-drag .tabledrag-handle {
  padding-right: 0;
  padding-left: .5em;
}
form .field-add-more-submit {
  margin: .5em 0 0;
}

/**
 * Markup generated by Form API.
 */
.form-item,
.form-actions {
  margin-top: 1em;
  margin-bottom: 1em;
}
tr.odd .form-item,
tr.even .form-item {
  margin-top: 0;
  margin-bottom: 0;
}
.form-composite > .fieldset-wrapper > .description,
.form-item .description {
  font-size: 0.85em;
}
label.option {
  display: inline;
  font-weight: normal;
}
.form-composite > legend,
.label {
  display:inline;
  font-size: inherit;
  font-weight: bold;
  margin: 0;
  padding: 0;
}
.form-checkboxes .form-item,
.form-radios .form-item {
  margin-top: 0.4em;
  margin-bottom: 0.4em;
}
.form-type-radio .description,
.form-type-checkbox .description {
  margin-left: 2.4em; /* LTR */
}
[dir="rtl"] .form-type-radio .description,
[dir="rtl"] .form-type-checkbox .description {
   margin-left: 0;
   margin-right: 2.4em;
}
.marker {
  color: #e00;
}
.form-required:after {
  content: '';
  vertical-align: super;
  display: inline-block;
  /* Use a background image to prevent screen readers from announcing the text. */
  background-image: url(../../../../misc/icons/ee0000/required.svg);
  background-repeat: no-repeat;
  background-size: 6px 6px;
  width: 6px;
  height: 6px;
  margin: 0 0.3em;
}
abbr.tabledrag-changed,
abbr.ajax-changed {
  border-bottom: none;
}
.form-item input.error,
.form-item textarea.error,
.form-item select.error {
  border: 2px solid red;
}

/* Inline error messages. */
.form-item--error-message:before {
  content: '';
  display: inline-block;
  height: 14px;
  width: 14px;
  vertical-align: sub;
  background: url(../../../../misc/icons/e32700/error.svg) no-repeat;
  background-size: contain;
}


/*TABS*/

div.tabs {
  margin: 1em 0;
}
ul.tabs {
  list-style: none;
  margin: 0 0 0.5em;
  padding: 0;
}
.tabs > li {
  display: inline-block;
  margin-right: 0.3em; /* LTR */
}
[dir="rtl"] .tabs > li {
  margin-left: 0.3em;
  margin-right: 0;
}
.tabs a {
  display: block;
  padding: 0.2em 1em;
  text-decoration: none;
}
.tabs a.is-active {
  background-color: #eee;
}
.tabs a:focus,
.tabs a:hover {
  background-color: #f5f5f5;
}
/* =============== =============== =============== */
/* ================ ADDED BY DEAN ================ */
/* =============== =============== =============== */
  section.our-services .content { /*background: #f2f3f4; overflow: hidden; margin: auto; width: 1151px;*/   }
  section.our-services .content hr {border:none; border-bottom: solid 1px black; width: 62px; height: 4px; margin: 20px auto 30px; }
  section.our-services .content .block:hover .more{display:block;}


  /* =============== =============== =============== */
  /* =============== MOBILE PORTRAIT =============== */
  /* =============== =============== =============== */
  section.our-services .content .block {  background: #f2f3f4; padding: 35px 30px; border-bottom: 1px solid #fff; box-sizing: border-box;  -moz-box-sizing: border-box;  -webkit-box-sizing: border-box;cursor: pointer;}
  section.our-services .content .block .more {  display: none;}
  section.our-services .content .block h3, section.our-services .content .block p { text-align: left;}
  section.our-services .content .block h3 {  padding-right: 30px;  position: relative; text-transform:uppercase;}
  section.our-services .content .block h3::before {  content: "+";  font-size: 24px;  position: absolute;  line-height: 15px;  right: 0;}
  section.our-services .content .block:hover h3::before {  content: "-";}
  section.our-services .content .block hr { margin-left:0px;}

  section ol, section ul { counter-reset: item; list-style-type: none;}
  @media (min-width: 992px ){/* changed from 700px to 992px to match Bootstrap*/

      section.content > div {  margin: 40px 0 0;  padding-right: 20px;}
      section.content .half.right {  float: right;  padding-left: 20px;  padding-right: 0;}
     
      section.our-services .content .block { margin-bottom:0;border:10px solid white; /*width: 50%; float: left;border-top: 1px solid #fff;  border-left: 1px solid #fff; padding: 45px 40px;*/ min-height: 420px;cursor: inherit;}
      
      section.our-services .content .block .more { display: block!important;}
      section.our-services .content .block h3::before {  display: none;}
      section.our-services .content .block h3 {  min-height:2em; padding-left: 0px;}
      
  }
  /* =============== =============== =============== */
  /* =============== TABLET PORTRAIT =============== */
  /* =============== =============== =============== */
  @media (min-width: 1000px ){
      
      section.content .text {  padding: 10px 20px 10px;}
      section.content .half.right.text {padding: 10px 20px 10px;}
      section.content .image div.img .text strong,
      section.our-services .content .block {  padding: 60px 60px;}
   
  }
  /* =============== ============== =============== */
  /* =============== LAPTOP DESKTOP =============== */
  /* =============== ============== =============== */
  @media (min-width: 1200px ){
      
      section.content hr {  margin-left: 0; margin-bottom: 55px;}
      section.content h3 {  margin-bottom: 25px;}
      section.content .text {padding: 10px 25px 10px 55px;}
      section.content .half.right.text {padding: 10px 55px 10px 55px;}
      /*section.our-services .content .block {  padding: 70px 70px;  height: 390px;}*/
      

  }
  /* =============== ================= =============== */
  /* =============== BIG SREEN DESKTOP =============== */
  /* =============== ================= =============== */
  @media (min-width: 1500px ){
      /*section.our-services .content .block { width: 33%; padding: 4% 1% 4% 3%;}
      section.our-services .block h3 {  font-size: 22px;}*/

  }
  /* =============== ==== =============== */
  /* =============== 1800 =============== */
  /* =============== ==== =============== */

  @media (min-width: 1800px ){
      
      section.our-services .block h3 {  font-size: 28px;}
      
  }
/* =============== =============== =============== */
/* ================ END  BY  DEAN ================ */
/* =============== =============== =============== */
