/* CONTENTS

~1. RESET
~2. COLOURS
~3. TYPOGRAPHY
~4. LAYOUT
~5. HEADER & FOOTER
~6. COMMON ELEMENTS
~7. CLASSES AND IDs
~8. FORMS

 END CONTENTS */

/* ~1. RESET */
a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    vertical-align: baseline
}
/* END ~1. RESET */

/* ~2. COLOURS */

/* END ~2. COLOURS */

/* ~3. TYPOGRAPHY */

body {
    font-family: 'Raleway', Tahoma, Arial, Verdana, sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 26px;
    color: #333333;
}

.tleft {text-align:left;}

.tright {text-align: right;}

.tcenter {text-align: center;}

em {font-style: italic;}

strong, b {font-weight: 600;}

u {text-decoration: underline;}

/* ~3. END TYPOGRAPHY */

/* ~4. LAYOUT */

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
    display: block
}

* {
    border-radiud: 0;
    -moz-border-radiud: 0;
    -webkit-border-radius: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

html {
    overflow-y: scroll;
    height: 100%;
    width: 100%;
}

.clear {
    clear: both;
}

#wrapper {
    float: left;
    width: 100%;
}

.container {
    overflow: auto;
    width: 1200px;
    height: 100%;
    margin: 0 auto;
    background: transparent;
    padding: 10px 20px;
}

.col1-12 {
    width: 8.333%;
    width: calc(100% / 12);
    width: -webkit-calc(100% / 12);
    width: -moz-calc(100% / 12);
    padding: 0 10px;
}

.col2-12 {
    width: 16.666%;
    width: calc(100% / 12 * 2);
    width: -webkit-calc(100% / 12 * 2);
    width: -moz-calc(100% / 12 * 2);
    padding: 0 10px;
}

.col3-12 {
    width: 24.999%;
    width: calc(100% / 12 * 3);
    width: -webkit-calc(100% / 12 * 3);
    width: -moz-calc(100% / 12 * 3);
    padding: 0 10px;
}

.col4-12 {
    width: 33.333%;
    width: calc(100% / 12 * 4 - 1px);
    width: -webkit-calc(100% / 12 * 4 - 1px);
    width: -moz-calc(100% / 12 * 4);
    padding: 0 10px;
}

.col5-12 {
    width: 41.666%;
    width: calc(100% / 12 * 5);
    width: -webkit-calc(100% / 12 * 5);
    width: -moz-calc(100% / 12 * 5);
    padding: 0 10px;
}

.col6-12 {
    width: 49.999%;
    width: calc(100% / 12 * 6);
    width: -webkit-calc(100% / 12 * 6);
    width: -moz-calc(100% / 12 * 6);
    padding: 0 10px;
}

.col7-12 {
    width: 58.333%;
    width: calc(100% / 12 * 7);
    width: -webkit-calc(100% / 12 * 7);
    width: -moz-calc(100% / 12 * 7);
    padding: 0 10px;
}

.col8-12 {
    width: 66.666%;
    width: calc(100% / 12 * 8);
    width: -webkit-calc(100% / 12 * 8);
    width: -moz-calc(100% / 12 * 8);
    padding: 0 10px;
}

.col9-12 {
    width: 74.999%;
    width: calc(100% / 12 * 9);
    width: -webkit-calc(100% / 12 * 9);
    width: -moz-calc(100% / 12 * 9);
    padding: 0 10px;
}

.col10-12 {
    width: 83.333%;
    width: calc(100% / 12 * 10);
    width: -webkit-calc(100% / 12 * 10);
    width: -moz-calc(100% / 12 * 10);
    padding: 0 10px;
}

.col11-12 {
    width: 91.666%;
    width: calc(100% / 12 * 11);
    width: -webkit-calc(100% / 12 * 11);
    width: -moz-calc(100% / 12 * 11);
    padding: 0 10px;
}

.col12-12 {
    width: 100%;
    padding: 10px 0
}

.col {
    overflow: hidden;
    float: left;
    display: block;
    position: relative;
}

.col_cont {
    min-height: 180px;
    overflow: auto;
    background: transparent;
    padding: 10px;
}

.col:first-of-type {
    padding-left: 0;
}

.col:last-of-type {
    padding-right: 0;
}

main, #main, header, #pre_header, #post_header, footer, #pre_footer, #post_footer {
    float: left;
    width: 100%;
}

article {
    float: left;
    width: 80%;
    padding-right: 20px;
    padding-bottom: 80px;
}

aside {
    float: left;
    width: 20%;
}

aside h3 {
    margin: 20px 0;
}

.col1-12:nth-of-type(12n) {
    padding-right: 0;
}

.col1-12:nth-of-type(12n+1) {
    padding-left: 0;
}

.col2-12:nth-of-type(6n) {
    padding-right: 0;
}

.col2-12:nth-of-type(6n+1) {
    padding-left: 0;
}

.col3-12:nth-of-type(4n) {
    padding-right: 0;
}

.col3-12:nth-of-type(4n+1) {
    padding-left: 0;
}

.col4-12:last-of-type {
  padding-right: 10px;
}

.col4-12:nth-of-type(3n) {
    padding-right: 0;
}

.col4-12:nth-of-type(3n+1) {
    padding-left: 0;
}

.col6-12:nth-of-type(2n) {
    padding-right: 0;
}

.col6-12:nth-of-type(2n+1) {
    padding-left: 0;
}

.fleft {
    float: left;
}

.fright {
    float: right;
}

/* END ~4. LAYOUT */


/* ~5. HEADER & FOOTER */

#logo img {
    /*float: left;*/
    width: 250px;
}


/*.headerwrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #FFF;
}

main, #main {
  margin-top: 280px;
}

.home-template #main {
  margin-top: 266px;
}

.contact-template #main {
  margin-top: 266px;
}*/

#post_header {
  margin-bottom: 10px !important;
}

.contact-template #post_header {
  margin-bottom: 0 !important;
}

.home-template #post_header {
  margin-bottom: 0 !important;
}


nav {
    width: 100%;
    float: left;

    text-align: left;
}

nav > li:first-child {
    padding: 0;
}

nav ul {
  text-align: center;
}

nav li {
    display: inline-block;
    position: relative;
    padding: 0 20px;
    font-size: 15px;
    line-height: 50px;
    text-transform: uppercase;
}

#contact-information_mobile {
  display: none;
}

nav li:first-of-type {
  padding-left: 0;
}

nav li:last-of-type {
  padding-right: 0;
}

nav li a {
  color: #FFF;
}

nav li a:hover, nav li ul li a:hover {
  opacity: 1;
  color: #e6293a;
}

nav li ul li a {
    color: #FFF;
}

.active {
  color: #e6293a;
}

nav li ul {
    width: 200px;
    position: absolute;
    color: #333;
    border: 2px solid #e6293a;
    border-top-width: 0;
    background: #333;
    display: none;
    top: 100%;
    left: 10px;
    padding: 0 0 0 0;
    z-index: 10;
    margin-left: 20px;
}

nav li > ul li {
    border-bottom: 1px solid #FFFFFF;
    text-align: left;
    padding: 0px 10px !important;
    width: 100%;
}

nav li > ul li:last-of-type {
    border-bottom: none
}

nav li > ul > li > ul {
    display: none;
    left: 100%;
    margin-left: 0;
    top: 0;
    padding-top: 0;
}

nav ul > li:hover > ul, nav ul > li > ul:hover, nav ul > li > ul > li:hover > ul, nav ul > li > ul > li > ul:hover {
    display: block;
}

#pre_footer ul, #post_footer ul, #pre_header ul, #post_header ul, nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

#pre_header .container {

}

header .container {

}

#post_header .container{

}

#pre_footer .container {

}
footer .container{

}
#post_footer .container{

}

/* END ~5. HEADER & FOOTER */

/* ~6. COMMON ELEMENTS */

body {
    height: 100%;
    width: 100%;
    background: #FFF;
}

ol, ul {
    list-style: none
}

blockquote, q {
    quotes: none
}

blockquote:after, blockquote:before, q:after, q:before {
    content: '';
    content: none
}

a {
    color: #333333;
    text-decoration: none;
}

a:hover {
    opacity: 0.7;
}

h1 {
  font-family: 'Montserrat', Tahoma, Arial, Verdana, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: bold;
  line-height: 24px;
  color: #e6293a;
  text-transform: uppercase;
  margin-bottom: 24px;
}

h2 {
    font-family: 'Montserrat', Tahoma, Arial, Verdana, sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: bold;
    line-height: 24px;
    color: #e6293a;
    text-transform: uppercase;
    margin-bottom: 24px;
}

h3 {
    font-family: 'Montserrat', Tahoma, Arial, Verdana, sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: bold;
    line-height: 24px;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #e6293a;
}

p {
    font-family: 'Raleway', Tahoma, Arial, Verdana, sans-serif;
    letter-spacing: 1px;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 26px;
}

blockquote {
    font-family: 'Open Sans', Tahoma, Arial, Verdana, sans-serif;
    font-size: 18px;
    line-height: 30px;
    margin: 10px 20px;
    padding: 10px;
    background-color: #EEEEEE;
    border-left: 4px solid #AAAAAA;
    font-style: italic;
}

pre {
    font-family: 'Open Sans', Tahoma, Arial, Verdana, sans-serif;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 18px;
}

mark {
    background-color: #FFFF66;
    color: #333333;
    padding: 0 4px;
}

ul {
    list-style: disc;
    padding: 10px 35px;
}

ol {
    list-style: decimal;
    margin: 10px 35px;
}

hr {
    float: left;
    width: 100%;
    border: none;
    padding: 10px 0;
    border-top: 2px solid #e6293a;
}

/* END ~6. COMMON ELEMENTS */

/* ~7. CLASSES AND IDs */

.sm {
  padding: 0;
}

.sm li{
  display: inline-block;
  height: 40px;
  width: 40px;
  margin: 0 2px;
  border-radius: 50%;
  background-color: red;
  text-align: center;
}

.margin-bottom {
  margin-bottom: 0;
}

.sm li:nth-of-type(1) {
  background-color: #f15d60;
}

.sm li:nth-of-type(2) {
  background-color: #e6293a;
}

.sm li:nth-of-type(3) {
  background-color: #d32227;
}

.sm li:nth-of-type(4) {
  background-color: #c62127;
}

.sm li:nth-of-type(5) {
  background-color: #b72025;
}

.sm li:nth-of-type(6) {
  background-color: #8d1b27;
}


.sm i {
  line-height: 40px;
  color: #FFF;
}

.sm li:first-of-type {
  padding-left: 0;
}

header {
  padding: 10px 0;
}

#post_header {
  background-color: #333;
}

#post_header .container {
  overflow: visible;
  height: 50px;
  padding: 0 20px;
}

#post_header {
  margin-bottom: 0px;
}


.home-template #post_header {
  margin-bottom: 0;
}

.has_child:after {
  content: '\f107';
  font-family: 'FontAwesome';
  color: #FFF;
  padding-left: 10px;
}

header .fa-ul {
  color: #6b1020;
  padding-bottom: 0;
  margin-top: 60px;
}

header .fa-ul a {
  color: #e6293a;
}

header .fa-ul li {
  text-transform: uppercase;
  font-size: 18px;
  font-weight: bold;
  font-family: 'Montserrat', sans-serif;
}

.m10 {
  margin-top: 10px;
}

.blueberry .slides li .slider-text {
  position: absolute;
  bottom: 10%;
  background-color: #e6293a;
  width: 100%;
  padding: 15px;
}

.slider-text .container {
  padding: 0 20px !important;
}

.blueberry .slides li div p {
  margin-bottom: 0;
  font-size: 18px;
}

.fixed {
  position: fixed;
  right: -55px;
  background-color: #e6293a;
  padding: 15px 30px;
  top: 40%;
  z-index: 99999;

  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
}

@-webkit-keyframes hvr-icon-pop {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

@keyframes hvr-icon-pop {
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
  }
}

.fixed i{
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;

  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.fixed i:before {
  content: "\f005";
  position: absolute;
  right: 0.5em;
  top: -0.5em;
  padding: 0 1px;
  font-family: FontAwesome;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.fixed:hover i:before, .fixed:focus i:before, .fixed:active i:before {
  -webkit-animation-name: hvr-icon-pop;
  animation-name: hvr-icon-pop;
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
}

.fixed p {
  margin-bottom: 0;
  text-transform: uppercase;
  font-weight: bold;
}

.fixed a {
  color: #FFF;
}

.fixed a:hover {
  opacity: 1;
}

aside {
  padding-right: 10px !important;
}

.opacitya a:hover {
  opacity: 1;
}

.opacitya:hover {
  opacity: 1;
}

section {
  padding-left: 10px !important;
}

aside .search input {
  margin: 0;
  margin-bottom: 20px;
}

/* aside .search:after {
  content: '\f002';
  font-family: 'FontAwesome';
  background-color: #e6293a;
  position: absolute;
  right: 0;
  line-height: 40px;
  padding: 0 10px;
  color: #FFF;
} */

.home-template .blueberry {
  margin-bottom: 30px;
}

.services li, .services li span {
  background-color: #ebebeb;
  padding: 10px 10px;
  border-bottom: 2px solid #FFF;


  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  transition: all ease 0.3s;
}

.services li span {
    float: left;
    display: block;
    width: 100%;
}

.services li:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #FFF;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0% 50%;
  transform-origin: 100% 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

/*.services li:hover:before, .services li:focus:before, .services li:active:before {
  -webkit-transform: scaleX(0.1);
  transform: scaleX(0.1);
}*/



.services {
  padding: 0;
  list-style-type: none;
  margin-bottom: 0px;
}

.services li i {
  background-color: #e6293a;
  color: #FFF;
  font-size: 14px;
  height: 20px;
  width: 20px;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  font-weight: bold;
  padding-left: 1px;
  margin-right: 5px;
}

.itembox {
  min-height: 300px;
  position: relative;
  margin-bottom: 15px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.itembox:before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  right: 50%;
  bottom: 0;
  background: #e6293a;
  height: 10px;
  -webkit-transition-property: left, right;
  transition-property: left, right;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.itembox:hover:before, .itembox:focus:before, .itembox:active:before {
  left: 0;
  right: 0;
}

.itembox:after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
  opacity: 0.3;
  transition: opacity .4s ease-in-out;
  -moz-transition: opacity .4s ease-in-out;
  -webkit-transition: opacity .4s ease-in-out;
  -o-transition: opacity .4s ease-in-out;
  background-image: linear-gradient(to bottom right,#111,#111);
}

.itembox:hover:after {

  background-image: linear-gradient(to bottom right,#002f4b,#e6293a);
  opacity: .3;
}

.itembox:hover {
  back
}




.itembox h4 {
  position: absolute;
  bottom: 40px;
  width: 100%;
  float: left;
  text-align: center;
  z-index: 1;

  color: #FFF;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 19px;
  padding: 0 10px;
}

.itembox hr {
  float: left;
  width: 80%;
  position: absolute;
  bottom: 20px;
  padding: 0;
  border-top-color: #FFF;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  margin-bottom: auto !important;
}

.itembox i {
  font-size: 29px;
  color: #FFF;
  position: absolute;
  bottom: 100px;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
}

.cat-cont {
  width: 100%;
  float: left;
  margin-bottom: 20px;
}

.team .col6-12:nth-of-type(2n+1){
  clear: both;
}

#pre_footer {
  text-align: center;
}

#pre_footer i {
  background-color: #e6293a;
  font-weight: bold;
  height: 50px;
  width: 50px;
  line-height: 50px;
  text-align: center;
  font-size: 22px;
  border-radius: 50%;
  margin-bottom: 15px;
  color: #FFF;
  transition: ease 1.3s;
}

#pre_footer a:hover i {
  animation-name: scroll-arrow-up;
  animation-duration: 1.3s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;

}

#pre_footer a:hover {
  opacity: 1;
}

@keyframes scroll-arrow-up {
  50% {
    opacity: 100%;
  }

  75% {
    transform: translateY(7px);
  }

  100% {
    transform: translateY(0px);
  }
}

#pre_footer p {
  text-transform: uppercase;
  margin-bottom: 0;
}

footer {
  background-color: #000;
  text-align: center;
}

footer p {
  text-transform: uppercase;
  margin-bottom: 0;
  color: #FFF;
}

footer span a{
  font-weight: bold;
  font-size: 19px;
  font-family: 'Montserrat';
  color: #e6293a;
}

#post_footer {
  padding: 5px 0;
}

#post_footer nav a{
  color: #848484;
}

#post_footer nav li {
  line-height: 1;
}

#footer_links {
  width: 100%;
  float: left;
}

.copy {
  width: 100%;
  float: left;
  text-align: center;
}

.copy p {
    margin-bottom: 0;
    padding: 5px 0;
    color: #e6293a;
    font-weight: bold;
    font-family: 'Montserrat';
}

.copy a {
  color: inherit;
}

section hr:last-of-type {
  padding: 0;
}

.backbutton {
  width: 100%;
  float: left;
}
.backbutton h3 {
  font-weight: bold;
  letter-spacing: 0;
}

.backbutton i {
  background-color: #e6293a;
  height: 25px;
  width: 25px;
  border-radius: 50%;
  text-align: center;
  color: #FFF;
  line-height: 25px;
  font-size: 15px;
  margin-right: 5px;
}

.backbutton a {
  color: inherit;
}

.top {
  width: 100%;
  float: left;
  margin-bottom: 15px;
}

.top h1 {
  display: inline-block;
}

.top p {
  display: inline-block;
  margin-bottom: 0;
  float: right;
  line-height: 30px;
}

.top .fa {
  color: #e6293a;
  font-size: 21px;
}

.togglable hr {
  margin-bottom: 20px;
}

.item_section hr {
  margin-bottom: 20px;
}

.togglable h2 span {
  font-size: 18px;
}

h1 a {
  color: inherit;
}

.item-template h1 {
  font-size: 28px;
  line-height: 1.3;
  margin-bottom: 0;
}

.fiftyperc {
  width: 100%;
  float: left;
  padding: 0;
}

.fiftyperc li {
  width: 50%;
  float: left;
  list-style-type: none;
}

.hundredperc {
  width: 100%;
  float: left;
  padding: 0;
}

.hundredperc li {
  width: 100%;
  float: left;
  list-style-type: none;
}

.togglable li {
  margin: 5px 0;
}

.togglable li strong {
  text-transform: uppercase;
  font-weight: 900;
  padding-right: 20px;
}

.slick-slider {
  margin: 20px 0 !important;
  width: 100%;
  float: left;
}

.slick-prev, .slick-next {
  position: absolute;
  bottom: 0;
  z-index: 9;
}

.slick-prev {
  left: 0;
}

.slick-next {
  right: 0;
}

.fa-download {
  color: #e6293a;
}

.togglable .fa-download {
  padding-left: 10px;
}

.testimonial p:last-of-type {
  margin-bottom: 0;
}

.item_button {
  float: right;
  width: 33.333% !important;
}

/* END ~7. CLASSES AND IDs */

/* ~8. FORMS */

form {
    float: left;
    width: 100%;
}

.honey {
    display: none
}

label {
    float: left;
    width: 100%;
    font-size: 12px;
}

textarea {
    height: 100px;
    -webkit-appearance: none;
}

header textarea {
  height: auto;
  resize: none;
  margin-bottom: 0;
}



input, textarea, select {
    float: left;
    width: 100%;
    font-family: 'Open Sans', Tahoma, Arial, Verdana, sans-serif;
    border: 1px solid #d7d7d7;
    outline: none;
    background: #ebebeb;
    color: #333333;
    padding: 10px;
    margin: 10px 0;
}

button, input[type='submit'] {
    width: auto;
    border: none;
    outline: none;
    background: #e6293a;
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: 'Raleway', sans-serif;
    padding: 10px 20px;
    font-size: 16px;
    margin: 10px 0;
    cursor: pointer;
}

.search button {
  margin: 0;
  padding: 10px;
}

header input {
  margin: 0 !important;
  width: 100% !important;
}

header form .col12-12 {
  padding-bottom: 0;
}

header form .col12-12:first-of-type {
  padding-top: 0;
}

.success_message{
    float:left;
    width:100%;
    padding:0px;
    margin:0px 0;
}

.success_yes{
    background:#9AD69A;
    color:green;
}

.success_no{
    background:#FFBBBB;
    color:red;
}

/* END ~8. FORMS */

.act_border{
    border-top: 2px solid;
    border-color: #f44336!important;
    padding: 0;
}

.close_nav {
  padding: 10px;
  background-color: #e6293a;
  color: #FFFFFF;
}

.act_border:nth-of-type(even){
  background-color: #f8f8f8;
}

.act_border img {
  float: left;
  max-width: 100%;
  height: auto;
}

.act_padding button {
  margin: 0;
}

.act_general_style{
    padding: 10px !important;
    text-align: center;
    vertical-align: middle;
}

.completed_message{
    text-align: center !important;
}

.hlight{
    background: rgb(255,201,102);
}


.star_red{
        color: #e6293a !important;
}

.fave-section-star {
  display: inline-block;
  float: right;
}

.title_under {
  padding: 0;
  margin-top: 0px;
}

.top h1 {
  margin-bottom: 0;
}

.title_line {
  margin: 5px 0;
  padding: 0;

}

.breadcrumbs {
  color: #333;
}

.no_acts {
  padding: 30px !important;
}

.no_acts h2 {
  margin: 10px;
}

.no_acts p {
  margin-bottom: 10px;
}

.fa-star-o:hover {
  color: #e6293a;
}

.fa-star:hover {
  color: #ebebeb !important;
}

ul.services li ul.services li ul.services {
    background: #EBEBEB;
}

ul.services li ul.services li ul.services li {
    background: #EBEBEB;
}

ul.services li ul.services li ul.services li ul.services li {
    background: #CCCCCC;
}

ul.services li ul.services li {
    background: #CCCCCC;
    border:none;
}

ul.services li ul.services {
    margin-top: 10px;
}

.error .container {
  min-height: 50vh;
}

.error h1 {
  text-align: center;
  margin-top: 100px;
  font-size: 36px;
}

.error p {
  text-align: center;
}

.error-nav ul {
  display: flex;
  flex-direction: column;
}

.error-nav li {
  padding: 0;
}

.error-nav li a {
  color: #848484;
}

/*ul.services li ul.services,
ul.services li ul.services li ul.services,
ul.services li ul.services li ul.services li ul.services {
    height: 0;
    opacity: 0;
    transition: all 0.5s linear;
}

ul.services li:hover ul.services,
ul.services li ul.services li:hover ul.services,
ul.services li ul.services li ul.services li:hover ul.services{
    height: auto;
    opacity: 1;
}*/
