@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap');
html,
body {
  overflow-x: hidden;
  height: 100%;
  font-family: 'Lato', sans-serif;
 font-weight: 400;
}
html {
  height: 100%;
  min-height: 100%;
}

@media print {
  html {
    height: auto;
    min-height: auto;
  }
}

/* svg {
  margin-left: 5px;
} */

body {
  min-height: 100%;
}
body {
  position: relative;
}

body a {
  text-decoration: none;
  line-height: 120%;
  color: #0E738A;
  font-weight: 500;	
}

body a:hover {
	color: #E87C00;
}

.section {
  padding-top: 30px;
  padding-bottom: 50px;
}

.container-fluid {
    width: 100%;
    background-color: #0C343D;
    color: #ffffff;
    padding-top: 10px;
    padding-bottom: 10px;
}

#post-page .page-banner,
#career-page .page-banner {
   min-height: 320px;
}

#platform-page .page-banner {
	min-height: 250px;
}

#pricing-page .page-banner {
	min-height: 250px;
}

#faq-page .page-banner {
  min-height: 250px;
}

.container-fluid h1, 
.container-fluid h2, 
.container-fluid h3, 
.container-fluid h4 {
  color: #fff;
}

/*  btn styling */

.btn {
  overflow: hidden;
  text-overflow: ellipsis;
  text-transform: uppercase;
  border-radius: 25px;
  font-size: 14px;
 line-height: 100%;
 font-weight: 600;
}

.btn-link {
  color: #0C343D;
  background-color: transparent;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
}

.btn a {
  color: #ffffff;
}

.btn-link:hover {
  color: #e87c00;
}

.btn-primary {
    color: #ffffff;
    background-color: #e87c00;
    border-color: #e87c00;
}

.btn:hover {
    color: #ffffff;
    background-color: #0E738A;
    border-color: #0C343D;
}

.btn-secondary {
  background-color: #ffffff;
  border: 1px solid #e87c00;
  color: #e87c00;
}

.btn-floating {
  color: #ffffff;
  background-color: #0E738A;
  width: 50px;
  height: 50px;
}

#btn-back-to-top {
  box-shadow: 0 0 10px 0 rgb(0 0 0 / 50%);
  position: fixed;
  bottom: 20px;
  right: 40px;
  display: block;
}

.btn-platform {
  width: 250px;
  height: 70px;
}

.btn-platform:checked {
  background-color: #e87c00;
}

.btn-ghost {
  color: #ffffff;
  background-color: transparent;
  border: 2px solid #ffffff;
}
.btn-ghost:hover {
  color: #ffffff;
  border-color: #ffffff;
  opacity: 0.5;
}
.btn-ghost:focus,
.btn-ghost:active {
  color: #9C9C9C;
  border-color: #9C9C9C;
}
.btn-lg,
.btn-group-lg > .btn {
  padding: 15px 45px;
}
.btn-center-wrapper {
  text-align: left;
}
@media (max-width: 768px) {
  .btn-lg,
  .btn-group-lg > .btn {
    padding: 10px;
  }
}
/*fix button in mobile view*/
@media only screen and (max-width: 767px) {
  .btn {
    display: block;
  }
  .btn + .btn {
    margin-top: 20px;
  }
}

.fill {
  min-height: 100%;
  height: 100%;
}
footer {
  width: 100%;
  padding: 30px 10px 15px;
  background: #0C343D;
  color: #ffffff;
}

footer img {
  padding: 0 10px;
  max-height: 50px;
}

footer .col {
  margin-top: 1px;
}

footer ol, 
footer ul {
	padding-left: 1rem;
}

footer a,
footer .nav a {
  color: #ffffff;
  padding-bottom: 0;
}

footer a:hover {
  color: #0E738A;
  font-weight: 500;
}

footer .footer-logo {
  display: inherit;
  margin-bottom: 10px;
  height: 50px;
}

/* header */

header {
	background: #fff;
   width: 100%;
   z-index: 99;
}

:root {
  --header-outer-height: 150px;
  --header-inner-height: 120px;
  --header-height-difference: calc(
    var(--header-outer-height) - var(--header-inner-height)
  );
  --header-bg: #fff;
}

.responsive-wrapper {
  width: 90%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

/* Sticky header */
.header-outer {
  /* Make it stick */
  height: var(--header-outer-height);
  position: sticky;
  top: calc(
    var(--header-height-difference) * -1
  ); /* Multiply by -1 to get a negative value */
  display: flex;
  align-items: center;

  /* Other */
  background-color: var(--header-bg);
  box-shadow: 0 2px 10px 0 rgba(0,0,0, 0.1);
}

.header-inner {
  /* Make it stick */
  height: var(--header-inner-height);
  position: sticky;
  top: 0;

  /* Other */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header .logo {
  width: 190px;
}

nav {
    width: 100%;
    z-index: 10;
}

.navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.navbar-light .navbar-toggler-icon{
  background-image: url('//smartology.com/wp-content/uploads/2022/09/hamburger-icon-long.png');
}

.logo {
  margin: 20px 0;
	width: 50%;
	height: auto;
}

header .logo img {
  margin: 20px 0;
}

header #main-menu {
	margin-right: 20px;
}

header .menu-item {
  padding: 10px;
}

header .menu-item a {
  color: #0C343D;
}

header .menu-item a:hover {
  color: #0E738A;
  text-decoration: underline;
}

header .menu-item.active {
  color: #0E738A;
  text-decoration: underline;
}

header .btn {
	font-size: 12px;
	padding: 5px 10px;
}

/* responsive header tablet + mobile */ 

@media only screen and (max-width: 950px ) {
	body {
		margin-top: 5rem;
	}
	
	.header-outer {
    height: auto;
    position: fixed;
    top: 0;
    display: flex;
    align-items: center;
    background-color: #fff;
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 10%);
	}	
	
	.header-inner {
    height: auto;
    position: relative;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
   }
	.navbar {
    padding-top: 0.5rem;
    padding-bottom: 1.5rem;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  header .navbar {
    padding-top: 42px;
  }	
}	

/* @media (min-width: 1199px) {
  header .navbar {
    padding-top: 25px;
  }  
} */

header .navbar-default {
  background: transparent;
}

.page-numbers{
	font-size: 20px;
	font-weight: 500;
	padding-right: 5px;
}
.page-numbers.current {
  font-weight: 700;
  color: #0E738A;
	display: inline-flex;
}

#navbarNav {
  float: right;
}


a:focus,
a:active {
  outline: 0!important;
  color: #0C343D;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  text-transform: uppercase;
}
h1,
h2,
h3,
.h1,
.h2,
.h3 {
  font-weight: 700;
  color: #0C343D;
}
body {
  color: #0C343D;
  line-height: 1.8;
  letter-spacing: .2px;
}
blockquote {
  background: transparent;
  border-left: 0;
  margin: 1.5em 10px;
  padding: 0.5em 10px;
  quotes: "\201C" "\201D" "\2018" "\2019";
}
blockquote:before {
  color: #0C343D;
  content: "\201C";
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.1em;
  vertical-align: -0.4em;
}
blockquote p {
  display: inline;
  font-size: 24px;
}
blockquote p:after {
  content: "\201D";
  font-size: 4em;
  line-height: 0.1em;
  margin-left: 0.1em;
  vertical-align: -0.4em;
  color: #0C343D;
}
blockquote cite {
  display: block;
  margin: 20px 0 0 0;
  font-weight: 100;
}
form {
  padding: 10px;
}
.nav > li > a {
  color: #000000;
}
.nav > li > a:hover,
.nav > li > a:focus {
  background-color: transparent;
}
.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
  background-color: transparent;
  color: #000000;
}
.nav-pills > .current-page-ancestor {
  border-bottom: 6px solid #0C343D;
}
.nav-pills > .current-page-parent {
  border-bottom: 6px solid #0C343D;
}
.nav-pills > li:hover,
.nav-pills .active,
.nav-pills .current-page-ancestor,
.nav-pills .current-page-parent {
  border-bottom: 6px solid #0C343D;
}
.nav-pills > .current_page_parent {
  border-bottom: 6px solid #0C343D;
}
.nav-pills > li {
  border-bottom: 6px solid transparent;
}

/* Platform page nav-links */

#nav-tab .nav-link {
  margin: 0.5rem auto 0;
  padding: 0.5rem 1.5rem;
  font-size: 18px;
  font-weight: 900;
}

@media only screen and (max-width: 770px ) {
	#nav-tab .nav-link {
   padding: 0.5rem 0.5rem;
	}
}

@media only screen and (max-width: 480px ) {
	#nav-tab .nav-link {
   padding: 0.5rem 0.5rem;
   font-size: 15px;
   font-weight: 700;
	}
}

@media only screen and (max-width: 360px ) {
	#nav-tab .nav-link {
   padding: 0.5rem 3rem;
   font-size: 15px;
   font-weight: 900;
	}
}

.well {
  color: #000000;
}
@media print {
  #hero,
  .page-banner {
    height: auto!important;
    min-height: auto!important;
  }
  #hero .banner-text-wrapper,
  .page-banner .banner-text-wrapper {
    position: relative!important;
    bottom: 0!important;
    text-align: left!important;
  }
  #hero .banner-text-wrapper .lead,
  .page-banner .banner-text-wrapper .lead {
    margin: 0!important;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6 {
    font-size: 20px!important;
  }
  p {
    font-size: 14px!important;
  }
  img {
    max-width: 150px!important;
    height: auto!important;
  }

  .img-footer {
    padding: 10px;
    float: right;
  }
  .navbar {
    display: block;
  }
  #navbar,
  .navbar-toggle {
    display: none!important;
  }
  .section {
    padding: 20px 0!important;
  }
  .feature-item img {
    max-width: 100px!important;
  }
}
/* .g-recaptcha {
  float: left;
} */
.page-banner {
  position: relative;
  height: 100%;
  background-size: cover;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: top center;
}
.page-banner .banner-text-wrapper {
  position: absolute;
  bottom: 40px;
  text-align: center;
  text-shadow: 1px 1px 1px #333333;
}
@media only screen and (max-width: 991px) {
  .page-banner .banner-text-wrapper {
    width: 100%;
  }
}
.page-banner .banner-text-wrapper .lead {
  font-size: 28px;
  font-weight: bold;
  color: #ffffff;
  margin: 0 0 20px;
}
.page-banner .banner-text-wrapper p {
  font-size: 18px;
  color: #ffffff;
  margin: 0 0 40px 0;
  font-weight: 500;
}
@media (min-width: 1200px) {
  .page-banner .banner-text-wrapper {
    right: auto;
    left: 20%;
  }
	
.has-background {
    background-color: #CEDEE2;
    padding: 20px;
    margin-bottom: 10px;
  }
	
	.has-white-color,
	.has-white-color a {
		color: #ffffff;
	}
  #contact-locations-banner.page-banner.banner-text-wrapper {
    right: auto;
    left: 30%;
  }
	
  .page-banner .banner-text-wrapper .lead {
    font-size: 40px;
  }
  .page-banner .banner-text-wrapper p {
    font-size: 26px;
  }
}

@media (min-width: 460px) and (max-width: 860px) {
  #contact-locations-banner.page-banner.address-list {
    right: auto;
    left: 20%;
	margin-top: 160px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .page-banner .banner-text-wrapper {
    right: auto;
    left: 20%;
  }
  .page-banner .banner-text-wrapper .lead {
    font-size: 34px;
  }
  .page-banner .banner-text-wrapper p {
    font-size: 22px;
  }
}
@media screen and (max-width: 992px) {
  .page-banner {
    min-height: 480px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .page-banner {
    min-height: 530px;
  }
}
.page-intro {
  margin: 10px 0;
}
.page-intro > p {
  font-size: 22px;
  margin: 0 0 40px 0;
  text-align: center;
}
@media only screen and (max-width: 991px) {
  .page-intro > p {
    font-size: 18px;
  }
}
.bottom-banner {
  height: 360px;
  min-height: 360px;
}
.content-panel {
  position: relative;
  overflow: visible;
  float: left;
  margin: 0 0 40px 0;
}
.content-panel .btn {
  margin: 20px 0 0 0;
}
.content-panel.panel-img-left img {
  float: left;
}
@media (min-width: 992px) {
  .content-panel.panel-img-left .content-panel-content {
    padding: 0 0 0 30px;
  }
}
.content-panel.panel-img-right img {
  float: right;
}
@media (min-width: 992px) {
  .content-panel.panel-img-right .content-panel-content {
    padding: 0 30px 0 0;
  }
}
.item-showcase {
  margin: 30px auto 0;
}
.item-showcase .item-sprite {
  padding: 0px 20px 30px 0;
  display: inline-block;
}
.item-showcase .item-sprite img {
  max-height: 80px;
  max-width: 220px;
  width: auto;
  padding: 0 20px;
}
.feature-list.feature-center {
  text-align: center;
}
.feature-list h2 {
  margin-bottom: 40px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .feature-list h4 {
    text-align: center;
  }
}
.feature-list .feature-item {
  margin: 0 0 25px 0;
}
.feature-list .feature-item img {
  margin: 0 auto;
}
.feature-list .feature-item .feature-title {
  font-size: 22px;
}
@media only screen and (max-width: 768px) {
  .feature-list p {
    display: none;
  }
}
#offers .feature-item:nth-child(2n+3) {
  clear: both;
}
#solution-page .feature-item:nth-child(2n+3) {
  clear: both;
}
@media (min-width: 768px) {
  #brands-page #benefits .feature-item:nth-child(3n+4),
  #career-page #traits .specification-item:nth-child(5n) {
    clear: both;
  }
}
.study-showcase {
  margin: 40px 0 0 0;
}
.study-showcase h2 {
  margin: 0 0 35px 0;
}
.study-showcase .showcase-item {
  margin: 0 0 40px;
}
.study-showcase .showcase-item .image-wrapper {
  margin: 0 auto 20px;
  max-height: 120px;
  line-height: 120px;
  text-align: center;
}
.study-showcase .showcase-item .image-wrapper img {
  vertical-align: middle;
  display: inline;
  max-height: 120px;
  max-width: 220px;
}
.study-showcase .showcase-item p {
  padding: 20px 0;
  border-top: 1px solid #b1abad;
}
.form-control {
  color: #6e6668;
}

.fileupload-form .btn-center-wrapper {
  margin: 20px 0 0 0;
}
.testimonial-block {
  margin: 40px 0;
}
.testimonial-block h2 {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .testimonial-block img {
    width: 150px;
    margin: 0 auto;
  }
  .testimonial-block p {
    font-size: 20px;
  }
}
.statistics-list {
  margin: 28px 0 -30px;
}
.statistics-list .statistics-item {
  text-align: center;
  margin: 0 0 30px;
}
.statistics-list .statistics-item strong {
  font-size: 60px;
  line-height: 60px;
  color: #0C343D;
}
.statistics-list .statistics-item p {
  font-size: 24px;
}
#contact-single-locations-list .locations-sprite {
  width: 566px;
}
.locations-list {
  text-align: center;
}
.locations-list .locations-sprite {
  padding: 0 5px 10px 0;
  display: inline-block;
  text-align: left;
  width: 376px;
}
@media (min-width: 768px) and (max-width: 991px) {
  .locations-list .locations-sprite {
    width: 357px;
  }
}
.locations-list .locations-sprite h3 {
  color: #0C343D;
}
.locations-list .locations-sprite ul {
  padding: 0;
}
.locations-list .locations-sprite li {
  list-style: none;
  padding: 0 0 0 30px;
}
.locations-list .locations-sprite li.email {
  background: url('//www.smartology.net/wp-content/themes/smartology-theme/library/images/email.png') no-repeat;
  background-size: 24px;
  background-position: 2px 5px;
}
.locations-list .locations-sprite li.phone {
  background: url('//www.smartology.net/wp-content/themes/smartology-theme/library/images/phone.png') no-repeat;
  background-size: 12px;
  background-position: 8px 0px;
}
.address-list {
  min-height: 450px;
}
.address-list .banner-text-wrapper {
  bottom: 25%;
}
.address-list .banner-text-wrapper a {
  text-decoration: none;
  color: #ffffff;
}
.address-list .banner-text-wrapper h5 {
  font-size: 28px;
  color: #ffffff;
  margin: 0 0 20px;
}
.address-list .banner-text-wrapper p {
  font-size: 18px;
  line-height: 30px;
  margin: 0;
}
@media only screen and (max-width: 767px) {
  .address-list .banner-text-wrapper {
    top: 30px;
    position: relative;
    padding-bottom: 30px;
  }
  .address-list .banner-text-wrapper .address-sprite {
    margin: 0 0 30px 0;
  }
}
.google-map-button {
  margin: 20px;
}

video {
	width: 100%;
	height: auto;	
}

.iframe-video {
  text-align: center;
}
.iframe-video iframe {
  margin-bottom: 30px;
}
@media only screen and (max-width: 1199px) {
  .iframe-video iframe {
    width: auto !important;
    height: 100% !important;
  }
}
.row-height {
  display: table;
  table-layout: fixed;
  height: 100%;
  width: 100%;
}
.table-cell {
  display: table-cell;
  float: none;
  height: 100%;
}
.col-middle {
  vertical-align: middle;
}

#platform-card {
  background-color: #0C343D;
  padding: 1rem 1rem;
}

#platform-card h4 {
  color: #ffffff;
}

#platform-card p {
  color: #ffffff;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
  .temp-margin-top {
    margin-top: 20px;
  }
}
#about .lead {
  font-size: 20px;
}
#about .btn {
  display: inline-block;
}

#about-more p {
	width: 80%;
}
#owners,
#brands {
  text-align: center;
}
#technical p {
  margin-top: 30px;
}
#continue {
  position: relative;
  /*  height: 600px;*/
  overflow: hidden;
}
.statistics-wrapper {
  margin: 0 0 30px 0;
}
#for-brand .statistics-list {
  margin: 0;
}
@media only screen and (max-width: 992px) {
  #for-brand .statistics-list .statistics-item strong {
    font-size: 40px;
    line-height: 40px;
  }
  #for-brand .statistics-list .statistics-item p {
    font-size: 12px;
  }
}

.explainer-text {
  margin: 50px 0;
}
.explainer-text h4 {
  font-size: 24px;
  font-weight: 700;
}
.explainer-text > p {
  font-size: 20px;
}
#about-page .page-banner {
  min-height: 245px;
}
#about-page .fa-linkedin-square {
  /*    font-size: 20px;*/
  color: #0077b5;
}
#about-page .team-list {
  margin: 0 -20px -20px 0;
  overflow: hidden;
}
#about-page .team-list .team-sprite {
  margin: 0 20px 20px 0;
  width: auto;
  float: left;
}
#about-page .team-list .team-sprite h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 400;
  text-transform: inherit;
}
#about-page .team-list .team-sprite .team-sprite-header {
  overflow: hidden;
  padding-bottom: 20px;
  border-bottom: 1px solid #0E738A;
  margin-bottom: 20px;
  display: -webkit-inline-box;
}
#about-page .team-list .team-sprite .team-sprite-header p {
  font-size: 14px;
}
#about-page .team-list .team-sprite .team-sprite-header .team-sprite-wrapper {
  height: 125px;
  padding-left: 5px;
}
#about-page .team-list .team-sprite .team-sprite-header .btn {
    float: left;
    max-width: 170px;
    padding: 10px 25px;
}
#about-page .team-list .team-sprite .truncate {
  float: left;
}
#about-page .team-list .team-sprite p {
  float: left;
}
@media (min-width: 992px) {
  #about-page .team-list .team-sprite:nth-child(3n+1) {
    clear: both;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  #about-page .team-list .team-sprite:nth-child(2n+1) {
    clear: both;
  }
}
@media only screen and (max-width: 767px) {
  #about-page .team-list {
    margin: 0;
  }
  #about-page .team-list .team-sprite {
    width: 320px;
    margin: 0 auto;
    float: none;
  }
  #about-page .team-list .team-sprite .btn {
    font-size: 12px;
  }
}
@media (min-width: 768px) and (max-width: 992px) {
  #about-page .team-list .team-sprite {
    width: 360px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #about-page .team-list .team-sprite {
    width: 306px;
  }
  #about-page .team-list .team-sprite .btn {
    font-size: 12px;
  }
}
#about-page #careers {
  margin: 0 0 50px 0;
}
#about-page #careers .position-label {
  display: inline-block;
  padding: 0 100px 2px 0;
  border-bottom: 1px solid #b1abad;
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  #about-page #careers .position-label {
    padding: 0 10px 2px 0;
  }
}
#about-page #careers ul {
  padding: 0 0 0 20px;
  margin: 0 0 10px 0;
}
#about-page #careers ul li {
  margin: 10px 0 0 0;
  list-style: none;
}

#blog-list {
  margin: 40px 0 0 0;
}
#blog-list .listpost {
  margin: 0 0 80px 0;
  float: left;
}

#blog-list .listpost a {
  color: #0C343D;
}

#blog-list .listpost .category a {
  color: #E87C00;
}

#blog-list .listpost > .img-wrapper {
  max-width: 50%;
  width: 50%;
  overflow: hidden;
  padding: 0 10px;
}
#blog-list .listpost > .img-wrapper img {
    max-width: 100%;
    height: auto;
    margin: auto;
}
#blog-list .listpost h2 {
  margin-top: 0;
  line-height: 20px;
  font-weight: 600;
}
@media only screen and (max-width: 992px) {
  #blog-list .listpost h2 {
    margin: 0 0 10px 0;
  }
}
#blog-list .listpost h2 a {
  font-size: 22px;
}

#blog-list .listpost .post-content {
  margin: 10px 0 0 0;
  width: 90%;
}

@media only screen and (max-width: 992px) {
  #blog-list .listpost .post-content a {
    font-size: 14px;
  }
}
#blog-list .listpost .post-footer {
  margin: 20px 0 0 0;
}
#blog-list .listpost .read-more {
  float: left;
}
#blog-list .listpost .read-more .btn {
  color: #ffffff;
}
#blog-list .listpost .social {
  float: right;
}
#blog-list .listpost .social p {
  line-height: 36px;
  margin: 0 20px 0 0;
}
#blog-list .listpost .social * {
  display: inline-block;
}

#blog-list .listpost .social a {
  height: 36px;
  width: 36px;
  margin: 0 2px;
}
#blog-list .listpost.pull-image-left > img {
  float: left;
}
#blog-list .listpost.pull-image-right > img {
  float: right;
}
@media only screen and (max-width: 992px) {
  #blog-list .listpost {
    margin: 0 0 40px 0;
  }
  #blog-list .listpost > .img-wrapper {
    max-width: 100%;
    width: 100%;
    margin: 0 0 20px 0;
  }
}
#blog-page .breadcrumb {
  margin: 0;
}
#blog-page .page-banner {
  max-height: 320px;
}
#blog-page .section {
  padding: 30px 0;
}
#blog-page .information {
  line-height: 36px;
}
#blog-page .information .social {
  float: right;
}
#blog-page .information .social p {
  margin: 0 20px 0 0;
}
#blog-page .information .social * {
  display: inline-block;
}

#blog-page .information .social a {
  height: 36px;
  width: 36px;
  margin: 0 2px;
}
@media only screen and (max-width: 767px) {
  #blog-page .information .social {
    float: left;
    margin: 20px 0 0 0;
  }
}
#blog-page .post-content {
  margin: 40px 0 0 0;
}
#blog-page .post-content img {
  margin: 20px auto;
}
@media only screen and (max-width: 767px) {
  #blog-page .post-content img {
    width: 100%;
    height: auto;
  }
}
#blog-page .post-content .btn-center-wrapper {
  margin: 40px 0;
}
@media only screen and (max-width: 767px) {
  #blog-page .post-content a {
    display: block;
  }
  #blog-page .btn-center-wrapper a + a {
    margin-top: 20px;
  }
}

.preview {
	padding-top: 20px;
	padding-bottom: 20px;
}

#career-page ul {
  margin: 0;
  padding: 0;
}
#career-page ul li {
  list-style: none;
}
#career-page #day-to-day .specification-statistic {
  color: #0C343D;
}
#career-page #day-to-day ul li p {
  font-size: 14px;
}
#career-page #person-specification h2 {
  margin-bottom: 40px;
}
#career-page .specification-list {
  margin: 0 -20px -20px 0;
}
#career-page .specification-list .specification-item {
  position: relative;
  margin: 0 20px 20px 0;
  height: 120px;
}
@media only screen and (max-width: 767px) {
    #career-page .specification-list .specification-item {
        clear:both;
    }
}
#career-page .specification-list .specification-item img {
  float: left;
}
#career-page .specification-list .specification-item h4 {
  float: right;
}
#career-page .specification-list .specification-item p {
  text-align: center;
}
@media (min-width: 767px) and (max-width: 991px) {
  #career-page .specification-list .specification-item img {
    float: left;
  }
  #career-page .specification-list .specification-item h4 {
    float: right;
  }
}
#career-page .specification-list .specification-item .specification-title {
  margin: 0 0 0 20px;
  float: left;
}
@media only screen and (max-width: 767px) {
  #career-page .specification-list .specification-item .specification-title {
    margin: 0;
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  #career-page .specification-list .specification-item {
    height: 180px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #career-page .specification-list .specification-item {
    height: auto;
    width: 350px;
  }
  #career-page .specification-list .specification-item img {
    max-width: 120px;
  }
}
@media (min-width: 992px) {
  #career-page .specification-list .specification-item {
    height: auto;
    width: 220px;
  }
  #career-page .specification-list .specification-item img {
    max-width: 100px;
  }
}
@media (min-width: 1200px) {
  #career-page .specification-list .specification-item {
    height: auto;
    width: 270px;
  }
  #career-page .specification-list .specification-item img {
    max-width: 140px;
  }
}
@media (min-width: 768px) {
  #career-page .specification-list .specification-item {
    float: left;
  }
  #career-page .specification-list .specification-item img {
    margin: 0 auto;
    float: none;
  }
  #career-page .specification-list .specification-item .specification-title {
    text-align: center;
    width: 100%;
    margin: 10px 0;
  }
}
#career-page #desirable ul {
  margin: 0 0 -15px 0;
}
#career-page #desirable ul li {
  margin: 0 0 15px 0;
}
#contact-page .locations-sprite {
  padding: 0px 5px 30px 0;
}
#contact-page h3 {
  margin-top: 16px;
}
#contact-page .lead {
  margin-top: 0;
  margin-bottom: 16px;
}
#solutions-list .page-intro {
  margin: 50px 0;
}
#solutions-list .content-panel {
  height: auto;
  /*height: 500px;*/
  /*    @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
              height: 410px;
            }
            @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
              height: auto;
            }
            @media only screen and (max-width: @screen-xs-max) {
              height: auto;
            }*/
}
#solutions-list .content-panel > img {
  width: 150%;
  max-width: 100%;
}
#solutions-list .content-panel .content-panel-content {
  margin-bottom: 20px;
}
#solutions-list .content-panel .content-panel-content .brand-image {
  display: inline-block;
  margin: 30px 0 20px;
}
@media (min-width: 992px) {
  #solutions-list .content-panel .content-panel-content {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
@media (min-width: 992px) {
  #solutions-list .content-panel.panel-img-left > img {
    margin-left: -33%;
  }
}
@media (min-width: 992px) {
  #solutions-list .content-panel.panel-img-right > img {
    margin-right: -33%;
  }
}
#solutions-list-intro img {
  margin: 0 auto;
}
#study-list .nav-tabs,
#study-list .nav-pills {
  text-align: center;
}
#study-list .nav-tabs > li,
#study-list .nav-pills > li {
  float: none;
  display: inline-block;
  *display: inline;
  /* ie7 fix */
  zoom: 1;
  /* hasLayout ie7 trigger */
}
#study-list .nav-tabs {
  text-align: center;
}
#study-list .nav-tabs > li {
  text-decoration: underline;
  float: none;
  display: inline-block;
  *display: inline;
  /* ie7 fix */
  zoom: 1;
  /* hasLayout ie7 trigger */
}
#study-list .nav-tabs > li a {
  color: #0C343D;
}
#study-list .nav-tabs li:hover a {
  border-color: transparent;
}
#study-list .nav-tabs .active,
#study-list .nav-tabs .active:hover {
  text-decoration: none;
}
#study-list .nav-tabs .active a,
#study-list .nav-tabs .active:hover a {
  border: 0;
  color: #000000;
  padding: 10px 40px;
  border-bottom: 6px solid #0C343D;
}
#study-list .thumbnails {
  padding: 0;
  margin: 20px -25px 20px 0;
  width: auto!important;
  float: left;
  -webkit-transition: height 0.4s;
  transition: height 0.4s;
  transition-timing-function: linear;
}
#study-list .thumbnails li {
  width: 370px;
  line-height: 124px;
  text-align: center;
  position: relative;
  float: left;
  list-style: none;
  margin: 0 25px 25px 0;
}
@media (min-width: 1200px) {
  #study-list .thumbnails li {
    height: 124px;
  }
}
#study-list .thumbnails li img {
  width: auto;
  max-width: 300px;
  height: auto;
  max-height: 124px;
}
#study-list .thumbnails li .item-details {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  right: 0;
  padding: 14px 25px;
  z-index: 1;
  line-height: 22px;
  text-align: left;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid #b1abad;
  -webkit-transition-delay: 0.4s;
  transition-delay: 0.4s;
  transition-timing-function: linear;
}
@media only screen and (max-width: 1200px) {
  #study-list .thumbnails li .item-details {
    position: relative;
    display: block;
    border: 0;
  }
}
#study-list .thumbnails li:hover .item-details {
  display: block;
}
@media only screen and (max-width: 767px) {
  #study-list .thumbnails {
    margin: 0;
    padding: 20px;
    float: none;
  }
  #study-list .thumbnails li {
    width: 300px;
    float: none;
    margin: 0 auto 20px;
  }
  /*
  input[type=submit].wpcf7-submit {
      margin-left:10px;
  }*/
}
@media (min-width: 768px) and (max-width: 991px) {
  #study-list .thumbnails li {
    width: 357px;
  }
  /*
  div.wpcf7 form * {
    font-size:14px;
  }*/
  
  .ninja-forms-cont, .ninja-forms-all-fields-wrap input, .ninja-forms-all-fields-wrap textarea, .ninja-forms-all-fields-wrap select {
      font-size:14px;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  #study-list .thumbnails li {
    width: 303px;
  }
}
#study-page-intro {
  margin: 40px 0 0;
}
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float:right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto
}

/* Contact Form 7 Styling */
/*
div.wpcf7 form {
    padding:0;
}

.wpcf7-form-field {
    display:block;
    float: left;
    width: 50%;
}

.wpcf7-required-field {
    color:#0C343D;
}

.wpcf7-form-control {
    margin-bottom: 20px;
}

div.wpcf7-mail-sent-ok, .ninja-forms-success-msg {
    border: 2px solid #d6e9c6;
    background: #dff0d8;
    color: #3c763d;
}

div.wpcf7-validation-errors, .ninja-forms-error-msg {
    border: 2px solid #ebccd1;
    background: #f2dede;
    color: #a94442;    
}
body input[type=text].wpcf7-not-valid, body input[type=email].wpcf7-not-valid, body input[type=tel].wpcf7-not-valid, body textarea.wpcf7-not-valid {
border: 2px solid #0C343D;
}

span.wpcf7-not-valid-tip {
display: block;
color: #0C343D;
position: relative;
top: -15px;
}

div.wpcf7-response-output {
    margin: 5px 10px;
    padding: 0.2em 1em;
}
*/


/* Ninja Form styling */
.ninja-forms-response-msg {
    margin: 0 10px 5px;
    padding: 5px 10px;
}

.ninja-forms-success-msg {
    border: 2px solid #d6e9c6;
    background: #dff0d8;
    color: #3c763d;
}

.ninja-forms-error-msg {
    border: 2px solid #ebccd1;
    background: #f2dede;
    color: #a94442;    
}

.ninja-forms-cont p {
    margin:0;
}

/* Generic Events page template styling */

#events-landing-page #events-intro p {
  font-size:24px;
}

/* Resources archive */

#resource-list .panel-heading {
  padding:0;
  border:0;
}

#resource-list .panel-heading .panel-image-wrapper img {
  width: 100%;
  display: flex; /* width 100% doesn't work on IE11 hence hack fix */
  flex: 1;       /* width 100% doesn't work on IE11 hence hack fix */
}

#resource-list .panel-primary {
  border-color: #b1abad;
  
}

#resource-list .panel-image-wrapper a {
  display: block;
  width: auto;
  height: 200px;
  text-indent: -9999px;
  background-size: cover;
}

#resource-list .panel-body h4 {
  text-transform: none;
  font-weight: 700;
}

#resource-list .panel-body .btn {
  margin: 20px 0 10px;
}

#resource-list .panel-body h4 a, #resource-list .panel-body p a {
  color:#46393D;
  text-decoration: none;
}

#resource-list .resource-date {
  font-size: 14px;
  font-weight: 700;
}

.row.flex-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 64px;
    margin-bottom: 44px;
}
.row.flex-list > [class*='col-'] {
    display: flex;
    flex-direction: row;
}

/*
* And with max cross-browser enabled.
* Nobody should ever write this by hand. 
* Use a preprocesser with autoprefixing.
*/
.row.flex-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row.flex-list > [class*='col-'] {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

/* Resource Single */

#resource-single .section-no-border{
  margin: 52px 0;
}

#resource-single h2, #resource-single h3 {
  text-transform: none;
  padding-bottom: 15px;
}

.download-panel {
  width: 200px;
  margin-top: 20px;
}

.download-panel .panel-heading {
  color: #46393D;
}

.download-link {
  width: 100%;
}

@media (max-width:992px){
  .download-panel {
    margin:40px auto 0;
  }
}

/* Social buttons */
#resource-single .social a {
  height: 36px;
  width: 36px;
  margin: 0 2px;
}

/* Opt-in Panda Form */

.onp-sl .onp-sl-first-group .onp-sl-strong:after, 
.onp-sl .onp-sl-first-group .onp-sl-strong:before {
  background: none !important;
}

.onp-sl-has-terms .onp-sl-group {
    padding: 30px 25px 25px!important;
}

.onp-nospam-hide {
  display: none;
}

#pageHeader #navbar li:last-child a {
    color: #0C343D;
    font-weight: bold;
}

@media screen and (max-width: 992px) {
  .page-template-contact-archive .page-banner {
    min-height: 150px!important;
  }
}

.sm-animation {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0.25rem;
}

@media screen and (max-width: 992px) {
	.sm-animation {
	display: block;
	max-width: 100%;
	height: auto;
}
}

#smart-tagline h1 {
	text-transform: none;
	font-weight: 500;
}

#page-jump-btn {
  transition: 0.3s;
}

#page-jump-btn:hover {
  transform: translate(0, -10px);
}

#benefits {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

#engagement h4 {
	padding-bottom: 20px;
}

#engagement p {
	text-align: left;
}

#engagement {
  padding-top: 20px;
	padding-bottom: 40px;
	margin-left: auto;
	margin-right: auto;
}

table {
 width: 100%;
}

.footnote {
	font-size: 12px;
}

.tablepress tfoot th, 
.tablepress thead th {
	background-color: #0C343D;
}

tfoot th, 
thead th {
	background-color: #0C343D;
	color: #fff;
	padding: 15px;
}

th:hover {
	background-color: #0E738A;
}

td {
    padding: 15px;
}

td:hover {
	background-color: #CEDEE2;
}

.custom-pagination > ul {
  display: inline-flex;
  padding-left: 0;
  list-style: none;
  flex-direction: row;
}

#fees p {
	font-size: 14px;
}

/* 20/07/2021 */ 

ol {
	list-style-type: decimal;
}

/* 06/08/2021 */ 

div.wpforms-container-full .wpforms-form input[type=submit], 
div.wpforms-container-full .wpforms-form button[type=submit], 
div.wpforms-container-full .wpforms-form .wpforms-page-button {
	border-radius: 25px;
}

/* career-page */

#career-page ol {
	list-style-type: disc;
}

#career-page h5 {
	font-weight: 900;
	font-size: 16px;
}

#job-info {
	padding-bottom: 10px;
}

/* 04/10/2021  - Logo banner + Testimonials */

#logo-banner {
  margin-top: 20px;
	height: 80px;
	padding: 20px 10%;
	background-color: #a2c3c8;
}

#logo-banner .carousel-item {
	transition: transform 10s linear;
}

.carousel-wrapper .carousel-inner {
  height: 40px;
}
.carousel-wrapper .carousel-inner .image-wrapper {
  margin: auto;
  text-align: center;
}
.carousel-wrapper .carousel-inner .image-wrapper img {
    vertical-align: middle;
    display: inline-block;
    max-height: 40px;
    max-width: 50%;
    height: auto;
	margin:  auto 20px;
}

@media only screen and (max-width: 950px ) {
    #logo-banner {
	height: auto;
	padding: 30px 0;
   }
	
	.carousel-wrapper .carousel-inner .image-wrapper img {
    vertical-align: middle;
    display: inline-block;
    max-height: 40px;
    max-width: 100%;
    height: auto;
    padding: 10px 20px;
    margin: 0 20px;
}
}

.testimonials {
   margin: 20px auto;
	max-width: 100%; 
	height: auto; 
}

#testimonials {
  min-height: 320px;
  border: 1px solid #0E738A;
  border-radius: 0.25rem;
}

#testimonials h5 {
  padding: 20px 10px;
}

#testimonials h6 {
  font-style: italic;
  font-weight: 700;
  color: #0E738A;
  font-size: 18px;
}

#carouselTestimonial .carousel-inner {
    position: relative;
    max-width: 100%; 
    overflow: hidden;
    margin: auto;
}

#carouselTestimonial .carousel-item {
	transition: transform 0.5s ease-in-out;
}

.carousel-control-next,
.carousel-control-prev {
	margin: auto;
	text-align: center; 
	min-height: 300px;
}

@media only screen and (max-width: 950px ) {
    #testimonials {
      max-height: 800px;
      }
	.carousel-control-next,
   .carousel-control-prev {
	   max-height: 100%;
	}
}

/* 16/11-2021 Request Demo */

#request-demo {
  border: 1px solid #0E738A;
  border-radius: 1rem;
  margin: 0 10rem;
  padding: 0 0.5rem;
}

#request-info {
  padding: 2rem;
}

#request-demo-form {
  padding: 2rem 0;
}

.input-field {
  width: 100%;
  height: 35px;
  margin: 5px 0;
  border: 1px solid;
  border-color: #ffffff #ffffff #0E738A #ffffff;
  color: #0C343D;
}

.form-message {
  min-height: 150px;
}

@media only screen and (max-width: 950px ) {
  #request-demo {
    margin: 0 0.5rem;
    }

  #request-demo-form {
      padding: 0.5rem 0;
    }
}

/* FREQUENT ASKED QUESTION */

.card-header {
  padding: 1rem;
  background-color: rgba(0, 0, 0, 0.02);
  border: 1px solid;
  border-color: #ffffff #ffffff #0E738A #ffffff;
}

/* CONTACT PAGE */

.nav-pills .nav-link {
  border: 1px solid #0E738A;
  max-width: 220px;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0E738A;
}

#nav-pillContent .card-body {
  padding: 1.5rem 3rem;
  border-top: 1px solid #0E738A;
  border-bottom: 1px solid #0E738A;
  border-radius: 0%;
  margin: 1rem 0;
}

#nav-pills .nav-link {
  margin: 0.5rem auto 0;
  padding: 1rem 2rem;
}

/* reCAPTCH update */ 

.grecaptcha-badge {
  width: 70px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  left: 4px !important;
}
.grecaptcha-badge:hover {
  width: 256px !important;
}
