@charset "UTF-8";
/*
 * jQuery FlexSlider v2.0
 * http://www.woothemes.com/flexslider/
 *
 * Copyright 2012 WooThemes
 * Free to use under the GPLv2 license.
 * http://www.gnu.org/licenses/gpl-2.0.html
 *
 * Contributing author: Tyler Smith (@mbmufffin)
 */
/* Browser Resets */
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none;
}

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0;
}

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  display: block;
}

.flex-pauseplay span {
  text-transform: capitalize;
}

/* Clearfix for the .slides element */
.slides:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

html[xmlns] .slides {
  display: block;
}

* html .slides {
  height: 1%;
}

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block;
}

/* FlexSlider Default Theme
*********************************/
.flexslider {
  margin: 0 0 60px;
  background: #fff;
  border: 4px solid #fff;
  position: relative;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
  zoom: 1;
}

.flex-viewport {
  max-height: 850px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  transition: all 1s ease;
}

.loading .flex-viewport {
  max-height: 300px;
}

.flexslider .slides {
  zoom: 1;
}

.carousel li {
  margin-right: 5px;
}

/* Direction Nav */
.flex-direction-nav {
  *height: 0;
  width: 60px;
  position: absolute;
  top: 20px;
  right: 30px;
}

.flex-direction-nav a {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  z-index: 10;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
}

/*.flex-direction-nav .flex-next {background-position: 100% 0; right: 0; border:1px solid #ff0000; }
.flex-direction-nav .flex-prev {left: 0; }
.flexslider:hover .flex-next {opacity: 0.8; right: 5px;}
.flexslider:hover .flex-prev {opacity: 0.8; left: 5px;}
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover {opacity: 1;}*/
.flex-direction-nav .flex-disabled {
  opacity: 0.3 !important;
  filter: alpha(opacity=30);
  cursor: default;
}

/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: -40px;
  text-align: center;
}

.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}

.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}

.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}

.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}

.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}

.flex-control-thumbs img {
  width: 100%;
  display: block;
  opacity: 0.7;
  cursor: pointer;
}

.flex-control-thumbs img:hover {
  opacity: 1;
}

.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}

@media screen and (max-width: 860px) {
  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 0;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 0;
  }
}
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* HTML & BODY
 * -------------------------------------------------------------------------- */
body {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

/* GENERIC
 * -------------------------------------------------------------------------- */
.hidden {
  border: none;
  display: block;
  height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0;
}

img {
  display: block;
}

.hr {
  border-top: 12px solid white;
  margin: 0 -15px 5px;
  height: 0;
}

.hr hr {
  display: none;
}

/* TYPOGRAPHY
 * -------------------------------------------------------------------------- */
h1, h1 a, h2, h2 a {
  color: #68356a;
}

h1 {
  border-bottom: 1px solid #68356a;
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10px;
  padding-bottom: 10px;
  line-height: 27px;
}

.intro h1 {
  border: none;
  margin-bottom: 0;
}

h1 a, h2 a {
  text-decoration: none;
}

h2 {
  border-bottom: 1px solid #68356a;
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 8px;
}

h3 {
  color: #3d3d3f;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 0px;
}

p {
  margin-bottom: 29px;
}

p strong {
  font-weight: 700;
}

p.training-list-intro, h2.training-list-intro {
  font-size: 20px;
  font-weight: 700;
  line-height: 27px;
  color: #68356a;
  border-bottom: 0px;
  padding-bottom: 0px;
}

h2.training-list-intro {
  padding-bottom: 8px;
}

/* section.intro layout/sizing — font-weight on .intro is in base/_typography.scss */
section.intro .main p, section.intro .main ul {
  font-size: 18px;
  font-weight: 400;
  line-height: 25px;
}

.copy ul, section.intro .main ul, article ul {
  list-style: none;
  margin: 0 0 27px 10px;
}

.copy ul li, section.intro .main ul li, article ul li {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 26px;
  margin-bottom: 5px;
}
.copy ul li::before, section.intro .main ul li::before, article ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  border-color: transparent transparent transparent #68356a;
  border-style: solid;
  border-width: 4px 0 4px 6px;
}

em, i {
  font-style: italic;
}

.copy ol, section.intro .main ol, article ol {
  list-style: decimal;
  margin: 0 0 27px 20px;
}

.copy ol li, section.intro .main ol li, article ol li {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 0px;
  margin-bottom: 5px;
}

/* LINKS
 * -------------------------------------------------------------------------- */
a.more {
  color: #90278e;
  font-weight: 600;
  text-decoration: none;
}

a.rss {
  background: url(../images/layout/rss-icon.png) no-repeat 0 0;
  color: #58585a;
  display: block;
  font-size: 18px;
  font-weight: 600;
  height: 32px;
  line-height: 32px;
  margin: 20px 0 15px;
  padding-left: 40px;
  text-decoration: none;
}

a.section_more {
  color: #90278e;
  display: block;
  float: right;
  font-weight: 400;
  margin: -15px 0 20px;
  text-decoration: none;
}

/*a.cta {
  background: #90278e;
  box-shadow: 3px 3px 1px #3d3d3f;
  color: white;
  display: block;
  font-size: 24px;
  font-weight: 400;
  height: 48px;
  line-height: 48px;
  margin: 22px 0 0 3px;
  text-align: center;
  text-decoration: none;
  width: 156px; }*/
a.cta-small, a.cta {
  background: #90278e;
  box-shadow: 3px 3px 1px #3d3d3f;
  color: white;
  display: block;
  font-size: 18px;
  font-weight: 400;
  height: 33px;
  line-height: 33px;
  margin: 22px 0 0 3px;
  text-align: center;
  text-decoration: none;
  width: 126px;
}

.sidebar .cta {
  float: right;
  margin-top: 0;
}

/* SITE CONTAINERS
 * -------------------------------------------------------------------------- */
.col {
  float: left;
  margin: 0 10px;
}

.col_3 {
  width: 260px;
}

.col_4 {
  width: 360px;
}

.col_5 {
  width: 450px;
}

.col_6 {
  width: 550px;
}

.intro .col_6 {
  width: 530px;
}

.col_7 {
  width: 650px;
}

.col_8 {
  width: 740px;
}

.col_9 {
  width: 840px;
}

.col_12 {
  margin: 0;
  width: 1120px;
}

.alpha {
  margin-left: 0;
}

.omega {
  margin-right: 0;
}

.push_1 {
  margin-left: 90px;
}

.wrap {
  margin: 0 auto;
  position: relative;
  width: 1120px;
  z-index: 10;
}

/* MASTHEAD
 * -------------------------------------------------------------------------- */
#masthead {
  height: 150px;
  padding-bottom: 20px;
  position: relative;
  width: 100%;
  z-index: 5;
}

#masthead .bar {
  background: #d8d9da;
  height: 30px;
  position: absolute;
  top: 121px;
  width: 100%;
  z-index: 1;
}

#masthead .logo {
  display: block;
  float: left;
  margin-top: 27px;
}

#masthead nav {
  background: white;
  float: left;
  margin-top: 21px;
}

#masthead nav li {
  float: left;
  position: relative;
}

#masthead nav li a {
  background: #d8d9da;
  color: #3d3d3f;
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin-left: 10px;
  padding: 4px 14px 5px;
  position: relative;
  text-align: center;
  text-decoration: none;
}

#masthead nav li:last-child a {
  margin-right: 10px;
}

#masthead nav li ul {
  display: none;
}

#masthead nav li:hover a {
  background: #68356a;
  color: white;
}

#masthead nav li:hover ul {
  background: rgba(104, 53, 106, 0.9);
  display: block;
  left: 0;
  margin: 10px 0 0 10px;
  position: absolute;
  top: 20px;
  border-top: 10px solid white;
  width: 330px;
}

#masthead nav li.current-menu-item:hover ul,
#masthead nav li.current-menu-ancestor:hover ul {
  top: 30px;
  border-top: 0;
}

#masthead nav li:hover ul li {
  border-top: 1px solid white;
  border-right: 1px solid white;
  padding: 0;
  width: 330px;
}

#masthead nav li:hover ul li:nth-child(even) {
  border-right: none;
}

#masthead nav li:hover ul a {
  background: none;
  color: white;
  display: table-cell;
  height: 48px;
  text-align: left;
  vertical-align: middle;
  width: 330px;
}

#masthead nav li:hover ul a:hover {
  background: #522a54;
}

#masthead nav > ul > li.current-menu-item > a,
#masthead nav > ul > li.current-menu-parent > a,
#masthead nav > ul > li.current_page_parent > a {
  background: #68356a;
  box-shadow: none;
  color: white;
}

#masthead nav > ul > li.current-menu-item > a:after,
#masthead nav > ul > li.current-menu-parent > a:after,
#masthead nav > ul > li.current_page_parent > a:after {
  background: none;
  border-color: #68356a transparent transparent transparent;
  border-style: solid;
  border-width: 14px 14px 0 14px;
  bottom: -14px;
  content: "";
  height: 0;
  left: 50%;
  margin-left: -14px;
  position: absolute;
  right: auto;
  width: 0;
  z-index: 50;
}

#masthead .social {
  position: absolute;
  right: 0;
  top: 40px;
}

#masthead .social a.search {
  background: url(../images/layout/search_icon.png) no-repeat 0 0;
  display: block;
  float: left;
  height: 31px;
  margin-left: -55px;
  width: 34px;
}

#masthead .social p {
  color: #58585a;
  margin: 0;
}

#masthead .social p.telephone {
  font-size: 28px;
  margin-bottom: 4px;
}

#masthead .social p a {
  color: #58585a;
  font-size: 14px;
  text-decoration: none;
}

#masthead .social ul {
  float: right;
  margin-top: 6px;
}

#masthead .social ul li {
  float: left;
}

#masthead .social ul li a {
  background: url(../images/layout/social_icons.png) no-repeat 0 0;
  display: block;
  height: 22px;
  margin-left: 6px;
  width: 22px;
}

#masthead .social ul li.twitter a,
#masthead .social ul li.x a {
  background: none;
  background-color: #90278e;
  mask: url("../images/layout/icon-x.svg") center/contain no-repeat;
  -webkit-mask: url("../images/layout/icon-x.svg") center/contain no-repeat;
}

#masthead .social ul li.linkedin a {
  background-position: -55px 0;
}

/* CONTENT
 * -------------------------------------------------------------------------- */
section {
  margin: 10px 0;
  overflow: hidden;
}

section.featured {
  margin-top: 30px;
}

section article {
  margin: 20px 0 40px;
}

.container {
  overflow: hidden;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}

ul.hierarchy_1 {
  margin: 0 auto;
  width: 280px;
}

ul.hierarchy_3 {
  clear: left;
  margin: 0 auto;
  width: 840px;
}

.cartoon {
  height: 425px;
  position: absolute;
  width: 283px;
}

.cartoon_1 {
  background: url(../images/layout/meet_the_team_1.png) no-repeat 0 0;
  left: 210px;
  top: 27px;
}

.cartoon_2 {
  background: url(../images/layout/meet_the_team_2.png) no-repeat 0 0;
  right: 200px;
  top: 32px;
}

ul.benefits {
  float: left;
  margin: 15px 0 20px;
  width: 50%;
}

ul.benefits li {
  background: url(../images/layout/Green-triangle-bullet.png) no-repeat 0 6px;
  margin-bottom: 12px;
  padding: 0 35px 0 20px;
  padding: 0 9.45946% 0 5.40541%;
  width: 315px;
  width: 85.13514%;
}

/* SLIDER
 * -------------------------------------------------------------------------- */
.slider {
  background: url(../images/layout/slider_bg2.png) repeat-x 0 0;
  height: 493px;
  margin: 20px 0 40px;
}

.slide {
  display: none;
}

.slide:first-child {
  display: block;
}

.slide {
  background: url(../images/layout/slide_01.png) no-repeat 100% 37px;
  margin: 0 auto;
  overflow: hidden;
  padding: 26px 0 10px;
  position: relative;
  width: 1120px;
}

.slide h3 {
  color: #90278e;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 13px;
}

.slide p {
  color: #58585a;
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 10px;
}

.slide p.small {
  font-size: 14px;
  font-weight: 400;
}

.slide ul {
  margin: 10px 0;
}

.slide ul li {
  background: url(../images/layout/bullet.png) no-repeat 0 7px;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 26px;
}

.slide ul li span {
  display: block;
  font-weight: 300;
}

.sidebar .search_bar {
  margin-top: 30px;
}

.sidebar img {
  margin-bottom: 25px;
}

.sidebar img + img {
  margin-top: 25px;
}

.sidebar h4 {
  color: #68356a;
  font-size: 21px;
  font-weight: 700;
  margin: 12px 0;
}

/* PANEL
 * -------------------------------------------------------------------------- */
.full_width {
  background: whitesmoke url(../images/layout/slider_bg.jpg) repeat-x 0 bottom;
  height: 493px;
  margin: 20px 0 40px;
}

#service_list .full_width {
  height: auto;
}

.service {
  height: 457px;
  margin: 0 auto;
  overflow: hidden;
  padding: 26px 0 10px;
  position: relative;
  width: 1120px;
}

#service_list .service {
  height: auto;
  padding-bottom: 10px;
}

.service .featured_image {
  bottom: -20px;
  position: absolute;
  right: -52px;
}

.service h3, .service h3 a {
  color: #90278e;
  text-decoration: none;
}

.service h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 30px;
  margin-bottom: 13px;
}

.service p {
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 10px;
}

.service.training p {
  font-weight: 400;
}

.service ul {
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  list-style: none;
  margin: 10px 0 10px 8px;
}

.service ul li {
  margin-bottom: 5px;
  background: url(../images/layout/bullet.png) no-repeat 0 7px;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 26px;
}

/* PANEL
 * -------------------------------------------------------------------------- */
.panel {
  background: #f5f5f6;
  margin-bottom: 25px;
  overflow: hidden;
  padding: 10px 15px;
}

.panel .panel_head {
  background: url(../images/layout/panel_arrow.jpg) no-repeat 100% 100%;
  margin: -10px -15px 0;
  padding-bottom: 12px;
}

.panel .panel_head h2 {
  background: #58585a;
  border: none;
  color: white;
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  padding: 7px 15px 10px;
}

.panel h5 {
  color: #3d3d3f;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 3px;
}

.panel li a {
  color: #90278e;
  font-weight: 400;
  text-decoration: none;
}

.panel .categories li {
  background: url(../images/layout/category_bullet.png) no-repeat 0 10px;
  padding-left: 18px;
}

.panel .categories a {
  color: #58585a;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  text-decoration: none;
}

.panel .categories a:hover {
  text-decoration: underline;
}

.panel p {
  margin-bottom: 11px;
}

.panel img {
  margin: 0 auto;
}

.reading-title {
  margin-left: 20px;
}

/* HIGHLIGHTED PANEL
 * -------------------------------------------------------------------------- */
.panel.highlighted {
  background: #d9c9da;
}

.panel.highlighted .panel_head {
  background: url(../images/layout/panel_arrow_hl.jpg) no-repeat 100% 100%;
}

.panel.highlighted .panel_head h2 {
  background: #68356a;
}

.panel.highlighted h5 {
  color: #3d3d3f;
  font-size: 16px;
}

.panel.highlighted p {
  padding-right: 0;
}

.panel.training {
  -webkit-columns: 2;
  -moz-columns: 2;
  columns: 2;
  -webkit-column-gap: 20px;
  -moz-column-gap: 20px;
  column-gap: 20px;
}

.plain {
  background: #f5f5f6;
  padding: 15px 30px 0;
}

.result {
  border-bottom: 1px solid #d8d9da;
  padding: 30px 95px 10px 0;
}

.result img {
  float: left;
  margin: 7px 18px 0 0;
}

.result a {
  color: #90278e;
  display: block;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 13px;
}

.result p {
  font-size: 16px;
  line-height: 25px;
}

.result p a.more {
  display: inline;
  font-size: 14px;
  margin-bottom: 0;
}

.accordion {
  margin: 16px 0 32px;
}

.accordion + .more {
  display: block;
  float: left;
  margin: -20px 0 0 22px;
}

.accordion li {
  margin-bottom: 15px;
}

.accordion li a {
  background: url(../images/layout/accordion-icons.png) no-repeat 0 -152px;
  color: #58585a;
  display: block;
  font-size: 18px;
  font-style: italic;
  font-weight: 300;
  margin-bottom: 4px;
  padding-left: 22px;
  text-decoration: none;
}

.accordion li.open a {
  background-position: 0 5px;
  color: #68356a;
}

.accordion li .content {
  background: #f5f5f6;
  padding: 10px;
}

.accordion li .content p {
  margin-bottom: 0;
}

ul.wide {
  margin: 0 -10px;
}

.member {
  margin-bottom: 20px;
  overflow: hidden;
  padding: 0 0 10px;
  font-size: 0.95em;
}

.member + img {
  border: 10px solid #68356a;
  margin-bottom: 15px;
}

.member .details {
  background: #f5f5f6;
  line-height: 17px;
  margin: 20px 0 6px;
  padding: 10px 20px;
}

.member .details h4 {
  color: #58585a;
  font-weight: 700;
  font-size: 17px;
  line-height: 23px;
}

.member img {
  border: 10px solid #68356a;
  height: 180px;
  margin: 20px auto 15px;
  width: auto;
}

.member p {
  font-weight: 400;
  margin-bottom: 0;
  font-size: 15px;
  margin-top: 5px;
}

.wide_member {
  margin-bottom: 40px;
}

.wide_member .details {
  padding-left: 10px;
}

article {
  margin-top: 20px;
  overflow: hidden;
}

article .author, article .date {
  color: #68356a;
  display: block;
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 15px;
}

article .date {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 0;
}

article img {
  float: right;
  margin-top: -10px;
}

article.team img {
  float: right;
  margin: 0;
}

article.team .details {
  padding-left: 10px;
}

article.team a.cta {
  margin-left: 0;
}

article.blog {
  margin-bottom: 50px;
}

article.blog ul {
  list-style: outside disc;
  margin-left: 20px;
  margin-bottom: 29px;
}

article.blog li {
  margin-bottom: 5px;
}

article.blog .author, article.blog .date {
  color: #58585a;
  font-size: 18px;
  font-style: normal;
  font-weight: 300;
  margin-bottom: 0;
}

article.blog .author {
  font-style: italic;
  margin-bottom: 2px;
}

article.blog .date {
  font-weight: 600;
  margin-bottom: 10px;
}

article h2 {
  border-bottom: 1px solid #68356a;
  font-size: 18px;
  padding-bottom: 4px;
  margin-bottom: 8px;
}

article h3 {
  color: #90278e;
  font-size: 20px;
  font-weight: 700;
  margin: 3px 0 0;
}

article .share {
  float: right;
  padding-top: 17px;
  width: 138px;
}

article .share li {
  float: left;
}

article .share li a {
  background: url(../images/layout/share_icons.png) no-repeat 0 0;
  display: block;
  height: 25px;
  margin-left: 5px;
  width: 24px;
}

article .share li.twitter a,
article .share li.x a {
  background: none;
  background-color: #90278e;
  mask: url("../images/layout/icon-x.svg") center/contain no-repeat;
  -webkit-mask: url("../images/layout/icon-x.svg") center/contain no-repeat;
}

article .share li.linkedin a {
  background-position: -57px 0;
}

article .share li.google a {
  background-position: -85px 0;
}

article .share li.email a {
  background-position: -114px 0;
}

.pagination {
  float: right;
  margin: 0 20px 20px 0;
}

.pagination li {
  float: left;
}

.pagination li.next a {
  background: #68356a;
  height: 10px;
  margin: 6px 0 0 10px;
  width: 10px;
}

.pagination a {
  color: #58585a;
  display: block;
  font-weight: 400;
  margin: 0 3px;
  text-decoration: none;
}

/* CONTACT FORM
 * -------------------------------------------------------------------------- */
.contact {
  width: 555px;
}

.contact span.star {
  display: block;
  float: right;
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 10px;
}

.contact div {
  clear: both;
  overflow: hidden;
}

.contact label {
  color: #58585a;
  display: block;
  float: left;
  font-size: 18px;
  margin: 0 8px 0 0;
  min-width: 130px;
  padding: 5px 0 0;
}

.contact .select_label {
  float: none;
}

.contact br {
  display: none;
}

.contact .textfield {
  border: 1px solid #d8d9d9;
  float: left;
  height: 28px;
  margin-bottom: 5px;
  width: 415px;
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.contact textarea {
  border: 1px solid #d8d9d9;
  height: 310px;
  resize: none;
  /* width: 553px; */
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
}

.contact .submit {
  background: #90278e;
  border: none;
  box-shadow: 3px 3px 1px #3d3d3f;
  color: white;
  display: block;
  float: right;
  font-size: 20px;
  font-weight: 400;
  height: 42px;
  line-height: 42px;
  margin: 16px 0 0 3px;
  text-align: center;
  text-decoration: none;
  width: 90px;
  cursor: pointer;
}

/* NEWSLETTER SIGNUP FORM
 * -------------------------------------------------------------------------- */
form.newsletter {
  background: #522a54 url(../images/layout/form_arrow.jpg) no-repeat 0 100%;
  display: none;
  left: 478px;
  padding: 10px 10px 22px;
  position: absolute;
  top: -65px;
  width: 310px;
}

form.newsletter .textfield {
  border: 1px solid #cdced0;
  color: #58585a;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 15px;
  font-weight: 400;
  height: 24px;
  line-height: 24px;
  margin-bottom: 7px;
  padding: 0 10px;
  width: 210px;
}

form.newsletter button {
  background: #68356a;
  border: none;
  color: white;
  cursor: pointer;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  font-weight: 400;
  height: 25px;
  line-height: 20px;
  margin: 3px 0 0 10px;
  width: 62px;
}

/* FOOTER
 * -------------------------------------------------------------------------- */
footer {
  background-color: #10ab9c;
  color: #ffffff;
  height: auto;
  min-height: 123px;
  padding: 21px 0 0;
}

footer .wrap {
  color: #ffffff;
  padding: 0 10px;
  width: 1100px;
}

footer .footer-inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

footer .footer-primary {
  flex: 1 1 420px;
  min-width: 0;
}

footer h5 {
  color: #ffffff;
  font-weight: 400;
  margin: 0 0 8px;
}

footer .footer-contact {
  color: #ffffff;
  font-size: 0.8em;
  margin: 0 0 8px;
}

footer .footer-contact a {
  color: #ffffff;
}

footer .footer-contact a:hover,
footer .footer-contact a:focus {
  color: #ffffff;
  opacity: 0.85;
}

footer .footer-social,
footer #social {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 16px;
}

footer .footer-social a,
footer #social a {
  color: #ffffff;
}

footer .footer-social a:hover,
footer .footer-social a:focus,
footer #social a:hover,
footer #social a:focus {
  color: #ffffff;
  opacity: 0.75;
}

footer .footer-newsletter {
  margin: 0 0 10px;
  font-size: 16px;
}

footer .footer-newsletter a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: underline;
}

footer .footer-newsletter a:hover,
footer .footer-newsletter a:focus {
  color: #ffffff;
  opacity: 0.85;
}

footer p.site_by {
  color: #ffffff;
  font-weight: 700;
  margin-top: 31px;
}

footer p.site_by a {
  color: #ffffff;
  text-decoration: none;
}

footer p.site_by a:hover,
footer p.site_by a:focus {
  opacity: 0.85;
}

footer .footer-logos {
  display: flex;
  flex-wrap: wrap;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  margin-left: auto;
  padding-bottom: 8px;
}

footer .footer-logos a {
  text-decoration: none;
}

footer .footer-logos img {
  display: block;
  max-height: 61px;
  width: auto;
  height: auto;
}

.videos_list {
  overflow: hidden;
}

.book h5 {
  margin-bottom: 10px;
}

/* Contact form 7 */
span.wpcf7-not-valid-tip-no-ajax {
  font-family: "Source Sans Pro", sans-serif !important;
  color: #f00 !important;
  font-size: 12pt !important;
  display: block !important;
  position: absolute !important;
  left: -129px !important;
  line-height: 44px !important;
  width: 200px !important;
}

/* Navigation */
.navigation {
  border-top: solid 1px #d8d9da;
  padding-top: 6px;
  text-align: right;
}

/* ICONS
 * -------------------------------------------------------------------------- */
@font-face {
  font-family: "fontawesome-subset";
  src: url("../fonts/fontawesome-subset.eot?7069933");
  src: url("../fonts/fontawesome-subset.eot?7069933#iefix") format("embedded-opentype"), url("../fonts/fontawesome-subset.woff?7069933") format("woff"), url("../fonts/fontawesome-subset.ttf?7069933") format("truetype"), url("../fonts/fontawesome-subset.svg?7069933#fontawesome-subset") format("svg");
  font-weight: normal;
  font-style: normal;
}
[class^=icon-]:before, [class*=" icon-"]:before {
  font-family: "fontawesome-subset";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: 0.2em;
  text-align: center;
  /* opacity: .8; */
  /* For safety - reset parent styles, that can break glyph codes*/
  font-variant: normal;
  text-transform: none;
  /* fix buttons height, for twitter bootstrap */
  line-height: 1em;
  /* Animation center compensation - margins should be symmetric */
  /* remove if not needed */
  margin-left: 0.2em;
  /* you can be more comfortable with increased icons size */
  /* font-size: 120%; */
  /* Font smoothing. That was taken from TWBS */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Uncomment for 3D effect */
  /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */
}

.icon-linkedin:before {
  content: "\e800";
} /* '' */
.icon-twitter:before,
.icon-x:before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  vertical-align: -0.125em;
  background-color: currentColor;
  mask: url("../images/layout/icon-x.svg") center/contain no-repeat;
  -webkit-mask: url("../images/layout/icon-x.svg") center/contain no-repeat;
}

.icon-facebook:before {
  content: "\e802";
} /* '' */
.icon-gplus:before {
  content: "\e803";
} /* '' */
.icon-facebook-squared:before {
  content: "\e804";
} /* '' */
.icon-facebook-1:before {
  content: "\e805";
} /* '' */
.icon-instagram:before {
  content: "\e806";
} /* '' */
.icon-twitter-1:before {
  content: "\e807";
} /* '' */
.icon-twitter-squared:before {
  content: "\e808";
} /* '' */
.icon-linkedin-squared:before {
  content: "\e809";
} /* '' */
.icon-linkedin-1:before {
  content: "\e80a";
} /* '' */
.icon-mail-alt:before {
  content: "\e80b";
} /* '' */
.icon-mail:before {
  content: "\e80c";
} /* '' */
.icon-facebook-official:before {
  content: "\e80d";
} /* '' */
.icon-youtube-play:before {
  content: "\e80e";
} /* '' */
.icon-youtube-squared:before {
  content: "\e80f";
} /* '' */
.icon-youtube:before {
  content: "\e810";
} /* '' */
#social {
  font-size: 1.75em;
}

#social a {
  color: #90278e;
}

#social a.social-x {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

#social a.social-x svg {
  display: block;
  width: 1em;
  height: 1em;
}

#social a:hover {
  opacity: 0.5;
}

footer #social a,
footer .footer-social a {
  color: #ffffff;
}

.gallery {
  overflow: hidden;
  clear: both;
  margin: 20px 0;
}

.gallery .gallery-item {
  width: 48%;
  float: left;
}

.gallery .gallery-item:nth-of-type(2n) {
  margin-right: 4%;
}

.gallery .gallery-item img {
  margin-bottom: 10px;
}

.gallery .gallery-item:first-child {
  width: 100%;
  margin: 0;
}

/* RESPONSIVE
 * -------------------------------------------------------------------------- */
#masthead {
  min-height: 150px !important;
}

#masthead .logo {
  display: block;
  float: left;
  width: 40%;
}

ul.sub-menu li:first-child {
  margin-top: 20px !important;
}

#masthead img {
  max-width: 265px;
  height: 100%;
  max-height: 73px;
}

#masthead .social {
  position: relative !important;
  float: right;
  width: 60%;
  top: 36px !important;
  max-width: 195px;
  text-align: right;
}

#masthead .social p.telephone {
  line-height: 30px;
}

#masthead .social p.email {
  left: -11px;
  position: relative;
}

#masthead nav li ul li {
  margin: 0 !important;
  background: #68356a !important;
}

.container {
  float: left;
  width: 100%;
  margin: 15px 0 0;
}

/**********
*
* global
*
***********/
.clear {
  clear: both;
}

.wrap {
  max-width: 1120px;
  width: 100%;
}

.panel {
  margin: 0 0 25px 0 !important;
}

.col_4 {
  width: 100% !important;
}

/**********
*
* front page
*
***********/
#front_page .col_6 {
  width: 48.5% !important;
  float: left;
}

#front_page .omega.col_6 {
  float: right !important;
}

#front_page .col_wrapper {
  float: left;
  width: 49.5%;
  margin: 0;
}

#front_page .col_wrapper {
  float: left;
  width: 48.5%;
}

#front_page .omega.col_wrapper {
  float: right;
}

#front_page .col_7 {
  width: 65%;
}

#front_page .col_5 {
  width: 32.1%;
  float: right;
}

#front_page .col_5 .panel img {
  max-width: 390px;
  width: 100%;
}

#front_page .col_4 {
  width: 33.3% !important;
  margin: 0 !important;
}

#front_page .col_4 .panel {
  margin: 0 0 25px 20px !important;
}

#front_page .alpha.col_4 .panel {
  margin: 0 0 25px 0px !important;
}

#front_page .col_wrapper .col_3 {
  width: 47%;
  float: left;
}

#front_page .omega {
  float: right !important;
}

.slider {
  height: auto;
  background-position: 0 bottom;
  background-color: #f5f5f5;
  margin: 0 0 40px 0 !important;
}

.slides {
  width: 100%;
  background: none;
  min-height: 458px;
}

.slides .inner, .controls .inner {
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
}

.slides img.featured_image {
  width: 55%;
  float: right;
  position: relative;
  bottom: -50px;
  left: 0;
}

.slides h3 {
  line-height: 30px;
}

.slides .col_5 {
  width: 40%;
  float: left;
  padding-bottom: 54px;
}

.slides .col_5 a.cta {
  margin-bottom: 22px !important;
}

.slide {
  background: none !important;
}

.flex-control-nav, .flex-control-paging {
  display: none;
}

.controls li a {
  width: 26px !important;
  height: 30px !important;
  outline: 0;
}

.controls li a.flex-prev {
  left: 0;
}

.controls li a.flex-next {
  right: 0;
}

/*.slider ul.flex-direction-nav {
	display:block;
	border:1px solid #ff0000;
	position:absolute;
	top:0;
	right:0;
	width:100px;
	height:20px;
}

ul.flex-direction-nav li {
	float:left;
}

.slider ul.flex-direction-nav li a {
	background:url('../images/layout/carousel_arrows.png') 0 0 no-repeat;
	display:block;
	width:20px;
	height:20px;
}*/
/**********
*
* the organisation
*
***********/
#the_organisation .hero {
  margin: 20px 0;
}

#the_organisation .col_8 {
  width: 60%;
  float: left;
}

#the_organisation .col_6 {
  width: 48% !important;
}

#the_organisation .col_6 img {
  width: 100%;
  max-width: 550px;
  height: auto;
  max-height: 450px;
  margin: 0 auto 25px;
}

#the_organisation .col_4 {
  width: 35% !important;
  float: right;
}

#the_organisation .main {
  width: 48%;
  float: left;
}

#the_organisation .col_wrapper {
  float: left;
  width: 100%;
}

#the_organisation .col_wrapper .col_3 {
  width: 47%;
  float: left;
}

#the_organisation .omega {
  float: right !important;
}

#the_organisation .member img {
  width: auto;
  max-height: 180px;
  height: 100%;
}

#the_organisation section .hierarchy_1, #the_organisation section .hierarchy_2 {
  width: 100% !important;
  position: relative;
  margin: 0 auto;
}

#the_organisation .col_3, #the_organisation .col_3 {
  width: 32%;
  float: left !important;
  margin: 0 2% 0 0;
}

#the_organisation .col_3:nth-of-type(3n) {
  width: 32%;
  float: left !important;
  margin: 0;
}

#the_organisation .hierarchy_1 .col_3.omega, #the_organisation .hierarchy_2 .col_3.omega {
  width: 32%;
  float: left !important;
}

#the_organisation .col_3:nth-of-type(3n+1) {
  clear: left;
}

#the_organisation a.cta {
  margin: 0 0 25px 0;
}

.cartoon_1 {
  left: 0% !important;
}

.cartoon_2 {
  left: 75% !important;
}

/**********
*
* services
*
***********/
#services .col_12 {
  max-width: 1120px;
  width: 100%;
}

#services .col_12 .panel {
  margin: 0 !important;
}

#services .col_8 {
  width: 60%;
  float: left;
}

#services .col_6 {
  width: 48%;
  float: left;
}

#services .omega.col_6 {
  float: right;
}

#services .col_4 {
  width: 35% !important;
  float: right;
}

#services .col_4 img {
  width: 100%;
  max-width: 330px;
  /*  max-height:330px; */
  height: 100%;
}

.full_width {
  height: auto !important;
  background-color: #f5f5f5;
  background-position: 0 bottom;
  margin: 0 0 40px 0;
}

.service {
  height: auto;
  overflow: visible !important;
}

.service .col_5 {
  width: 40%;
  float: left;
  padding-bottom: 20px;
}

.service img.featured_image {
  width: 55%;
  float: right;
  position: relative;
  top: 30px;
  left: 0;
}

.service {
  max-width: 1120px !important;
  width: 100%;
}

.service p {
  position: relative;
  z-index: 1;
}

.service img {
  z-index: 0;
}

/**********
*
* videos reading
*
***********/
#videos_reading section {
  margin: 0 0 20px 0 !important;
}

#videos_reading .col_4 {
  width: 33.3% !important;
  margin: 0 !important;
}

#videos_reading .col_4 iframe {
  width: 100%;
  max-width: 330px;
}

#videos_reading .panel {
  margin: 0 0 25px 20px !important;
}

#videos_reading ul.wide {
  margin: 0 0 0 -20px !important;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/**********
*
* case studies
*
***********/
#case_study .col_6 {
  width: 48.5% !important;
}

#case_study .col_6.omega {
  float: right !important;
}

#case_study .col_7 {
  width: 65%;
}

#case_study .col_5 {
  width: 32.1%;
  float: right;
}

#case_study .col_5 .push_1 {
  margin: 0;
}

#case_study .sidebar img {
  width: 100% !important;
  max-width: 400px;
  height: auto;
  max-height: 350px;
  margin: 0 auto 25px;
}

article.case_study img {
  max-width: 200px;
  width: 100%;
  max-height: 150px;
  height: 100%;
  margin: 0px 0px 15px 15px;
}

#case_study .sidebar .panel img {
  width: 100% !important;
  max-width: 315px;
  height: auto;
  max-height: 225px;
}

#videos_reading .col_6 {
  width: 48.5% !important;
  float: left;
}

#videos_reading .omega.col_6 {
  float: right !important;
}

/**********
*
* blog
*
***********/
#blog .col_9 {
  width: 65%;
}

#blog .col_3 {
  width: 30%;
  float: right;
}

article.blog {
  margin: 0 0 50px 0 !important;
}

article.blog img {
  float: left;
  margin: 6px 20px 6px 0;
  max-width: 100%;
  height: auto;
}

/**********
*
* get in touch
*
***********/
#get_in_touch .col_7 {
  width: 55%;
}

#get_in_touch .col_5 {
  width: 40%;
  float: right;
}

#get_in_touch .panel.plain {
  padding: 15px 30px 5px;
}

#get_in_touch .contact {
  width: 100% !important;
}

#get_in_touch .contact div {
  overflow: visible !important;
}

#get_in_touch .contact span.star {
  float: left !important;
  width: 100% !important;
  text-align: right !important;
}

/* #get_in_touch .contact .textfield, #get_in_touch .contact textarea {
  width:99% !important;
  padding: 0.5%;
  font-size: 15px;
} */
#get_in_touch .map {
  width: 100%;
  height: 373px;
  margin: 0 auto;
}

#get_in_touch .map iframe { /* google map placeholder - this can be deleted */
  width: 100%;
  height: 100%;
}

/**********
*
* footer
*
***********/
footer {
  background: #10ab9c;
  padding: 20px 0 0;
  height: auto;
}

footer .wrap {
  display: block !important;
  max-width: 1100px !important;
  width: 100% !important;
  padding: 0 !important;
}

footer .footer-inner {
  align-items: flex-end;
}

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

footer .footer-logos {
  gap: 16px;
  justify-content: flex-end;
  width: 100%;
  max-width: 100%;
}

@media all and (max-width: 767px) {
  footer .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  footer .footer-logos {
    justify-content: flex-end;
    width: 100%;
  }
}
footer #border {
  margin: 20px 0 0;
  padding: 0 0 20px 0px;
  width: 100%;
  height: 46px;
  background: #10ab9c;
}

footer #border p {
  padding: 15px 0 !important;
  margin: 0 !important;
}

/**********
*
* responsive
*
***********/
@media all and (max-width: 1200px) {
  .slider, .service {
    background: #f5f5f6;
  }
  .full_width {
    background-image: none;
    background: #f5f5f6 !important;
  }
}
@media all and (max-width: 960px) {
  #masthead nav li a {
    padding: 4px 11px 5px !important;
    font-size: 16px !important;
  }
  .videos_reading_col {
    width: 100% !important;
  }
}
@media all and (max-width: 1135px) {
  .inner {
    padding: 0 30px !important;
  }
  nav {
    margin-left: 21px !important;
  }
  #videos_reading .pagination {
    padding: 0 20px 20px 0;
  }
}
@media all and (max-width: 825px) {
  #front_page .col_wrapper .col_3 {
    width: 100%;
    float: left;
    margin: 0 0 25px 0 !important;
  }
}
@media all and (max-width: 800px) {
  #masthead .bar {
    display: none !important;
  }
  .panel.training {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
  }
  #masthead nav {
    width: 100% !important;
    background: none !important;
    margin: 25px 0 20px !important;
  }
  #masthead nav li {
    width: 100% !important;
    margin: 0 0 5px 0 !important;
  }
  #masthead nav li a {
    display: block !important;
    box-shadow: none !important;
    padding: 8px 0px !important;
    top: 0 !important;
    margin: 0 !important;
    font-size: 18px !important;
  }
  #masthead nav li:last-child a {
    margin: 0 !important;
  }
  #masthead nav li:hover {
    padding: 0 !important;
    margin: 0 0 -22px 0;
  }
  #masthead nav ul.sub-menu {
    width: 100% !important;
    top: 0 !important;
    margin: 0 !important;
    position: relative !important;
  }
  #masthead nav ul.sub-menu li {
    background: #33b8b0 !important;
    padding: 5px 0px !important;
    top: 0;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
  }
  #masthead nav ul.sub-menu li a {
    width: 100% !important;
    padding: 8px 0 !important;
    text-align: center !important;
    height: auto !important;
    display: block !important;
  }
  .slides img.featured_image {
    bottom: 0;
  }
  img.featured_image {
    float: left !important;
    width: 100% !important;
  }
  .col {
    width: 100% !important;
    float: left !important;
    margin: 0;
  }
  #front_page .col_4, #services .col_4 {
    width: 100% !important;
  }
  #front_page .col_4 .panel {
    margin: 0 0 25px 0 !important;
  }
  #videos_reading .col, #case_study .col {
    width: 100% !important;
  }
  #videos_reading .pagination {
    padding: 0 30px 20px 0;
  }
  #the_organisation .col_wrapper.omega {
    float: right !important;
  }
  #the_organisation .col_wrapper .col_3 {
    width: 100% !important;
    float: left !important;
  }
  #the_organisation .col_wrapper .col_3.omega {
    float: right !important;
  }
  #the_organisation .col_6, #front_page .col_6, #the_organisation .col_4 {
    float: left !important;
    width: 100% !important;
  }
  #the_organisation section .hierarchy_1, #the_organisation section .hierarchy_2 {
    width: 90% !important;
    margin: 0 auto;
  }
  #the_organisation .hierarchy_1 .col_3.omega {
    margin: 0 auto;
  }
  .cartoon {
    display: none !important;
  }
  .col_8, .col_5 {
    margin: 20px 0 !important;
  }
  ul.benefits {
    margin: 15px 0 0 0 !important;
  }
  ul.benefits li {
    width: 100% !important;
  }
  footer .footer-contact {
    margin: 0 0 12px;
  }
  footer .footer-logos {
    gap: 12px;
  }
  #videos_reading .panel.video {
    margin: 0 0 25px 0px !important;
  }
  .reading-title {
    margin-left: 0px;
  }
  .inner {
    padding: 0 15px !important;
  }
  .slides h3 {
    line-height: 22px;
    margin-top: 10px;
  }
  .slide h3 {
    font-size: 23px;
  }
  .slides .col_5 {
    padding-bottom: 18px;
  }
}
@media all and (min-width: 501px) and (max-width: 600px) {
  #masthead img {
    width: 200px;
    max-width: 265px;
    height: 100%;
    max-height: 55px;
    margin-top: 11px;
  }
}
@media all and (min-width: 0px) and (max-width: 500px) {
  #masthead .logo {
    float: left !important;
    width: 100% !important;
    margin: 10px 0 0 0 !important;
  }
  #masthead .social {
    margin: 0 auto !important;
    top: 15px !important;
    float: none !important;
    width: 100% !important;
    text-align: center;
  }
  #masthead .social p.email {
    left: 0;
  }
  #masthead img {
    margin: 0 auto !important;
  }
  #the_organisation .col_wrapper .col_3 {
    width: 100% !important;
    margin: 0 !important;
  }
  footer form.newsletter {
    left: 0px !important;
  }
  article.blog img {
    width: 100%;
    height: auto;
  }
}
.highlight {
  color: #90278e;
  font-weight: 600;
}

.page-title {
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  border: 0;
  padding: 0;
  margin: 0 0 40px 0;
}

.intro {
  font-weight: 600;
}

.section-header {
  color: #90278e;
  border-bottom: 0;
  padding: 0;
  text-align: center;
  font-size: 28px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 40px;
  margin-bottom: 40px;
}
.section-header:before {
  content: "";
  display: block;
  height: 1px;
  width: 20%;
  max-width: 180px;
  margin: 0 auto;
  background: #90278e;
  opacity: 0.3;
  margin-bottom: 40px;
}
.section-header.section-header--no-line {
  margin-top: 0;
}
.section-header.section-header--no-line:before {
  display: none;
}

.sub-header {
  border: 0;
  color: black;
  font-weight: 400;
  margin-top: 6px;
  font-size: 21px;
}

@media (max-width: 767px) {
  .page-title {
    font-size: 32px;
  }
  .section-header {
    font-size: 24px;
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .section-header:before {
    margin-bottom: 20px;
  }
}
a.button,
.button {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: #68356a;
  color: white;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #68356a;
  padding: 14px 34px 16px 34px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  transition: background-color 0.3s ease-in-out 0s, border-color 0.3s ease-in-out 0s;
}
a.button:hover, a.button:focus,
.button:hover,
.button:focus {
  background-color: #522a54;
  border-color: #522a54;
}
a.button.button--outline,
.button.button--outline {
  color: #68356a;
  border: 1px solid #68356a;
  background: transparent;
}
a.button.button--outline:hover, a.button.button--outline:focus,
.button.button--outline:hover,
.button.button--outline:focus {
  background-color: rgba(104, 53, 106, 0.1);
}
a.button.button--outline-purple,
.button.button--outline-purple {
  color: #90278e;
  border: 1px solid #90278e;
  background: transparent;
}
a.button.button--outline-purple:hover, a.button.button--outline-purple:focus,
.button.button--outline-purple:hover,
.button.button--outline-purple:focus {
  background-color: rgba(144, 39, 142, 0.1);
}
a.button.button--purple,
.button.button--purple {
  border: 1px solid #90278e;
  background: #90278e;
}
a.button.button--purple:hover, a.button.button--purple:focus,
.button.button--purple:hover,
.button.button--purple:focus {
  border-color: #712070;
  background-color: #712070;
}
a.button.button--small,
.button.button--small {
  font-size: 17px;
  padding: 10px 25px 10px 25px;
}
a.button.button--block,
.button.button--block {
  display: block;
}

.alert,
.copy .alert {
  margin-bottom: 20px;
  padding: 18px 12px;
  border: 1px solid #90278e;
  background-color: rgba(144, 39, 142, 0.02);
  border-radius: 1px;
  color: #90278e;
  text-align: center;
}

ul.bullets li {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 26px;
  margin-bottom: 5px;
}
ul.bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  border-color: transparent transparent transparent #68356a;
  border-style: solid;
  border-width: 4px 0 4px 6px;
}

.wp-block-button.is-style-pc-green-button .wp-block-button__link {
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  background-color: #68356a;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #68356a;
  padding: 14px 34px 16px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  border-radius: 0;
  transition: background-color 0.3s ease-in-out 0s, border-color 0.3s ease-in-out 0s;
}
.wp-block-button.is-style-pc-green-button .wp-block-button__link:hover, .wp-block-button.is-style-pc-green-button .wp-block-button__link:focus {
  background-color: #522a54;
  border-color: #522a54;
  color: #fff;
}

.training-landing-page .training-landing-blocks > .wp-block-heading {
  color: #90278e;
  font-size: 24px;
  margin-bottom: 20px;
}
.training-landing-page .training-landing-blocks .wp-block-buttons {
  margin-bottom: 20px;
}
.training-landing-page .training-landing-blocks .wp-block-image img {
  max-width: 100%;
  height: auto;
}
.training-landing-page .training-landing-blocks .wp-block-table.training-fees-table,
.training-landing-page .training-landing-blocks .wp-block-table.training-venues-table,
.training-landing-page .training-landing-blocks .wp-block-table.is-style-stripes {
  margin-bottom: 20px;
  overflow-x: auto;
}
.training-landing-page .training-landing-blocks .wp-block-table.training-fees-table table,
.training-landing-page .training-landing-blocks .wp-block-table.training-venues-table table,
.training-landing-page .training-landing-blocks .wp-block-table.is-style-stripes table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.training-landing-page .training-landing-blocks .wp-block-table.training-fees-table th,
.training-landing-page .training-landing-blocks .wp-block-table.training-fees-table td,
.training-landing-page .training-landing-blocks .wp-block-table.training-venues-table th,
.training-landing-page .training-landing-blocks .wp-block-table.training-venues-table td,
.training-landing-page .training-landing-blocks .wp-block-table.is-style-stripes th,
.training-landing-page .training-landing-blocks .wp-block-table.is-style-stripes td {
  border: 1px solid #ddd;
  padding: 10px 14px;
  text-align: left;
  vertical-align: top;
}
.training-landing-page .training-landing-blocks .wp-block-table.training-fees-table th,
.training-landing-page .training-landing-blocks .wp-block-table.training-venues-table th,
.training-landing-page .training-landing-blocks .wp-block-table.is-style-stripes th {
  background: #F5F5F6;
  color: #90278e;
  font-weight: 700;
}
.training-landing-page .training-landing-blocks .wp-block-table.training-fees-table tbody tr:nth-child(even),
.training-landing-page .training-landing-blocks .wp-block-table.training-venues-table tbody tr:nth-child(even),
.training-landing-page .training-landing-blocks .wp-block-table.is-style-stripes tbody tr:nth-child(even) {
  background: #F5F5F6;
}
.training-landing-page .training-landing-blocks ul.training-downloads {
  list-style: none;
  padding-left: 0;
}
.training-landing-page .training-landing-blocks ul.training-downloads a {
  font-weight: 600;
}

.is-style-intro,
p.is-style-intro {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.35;
}

.flex-direction-nav a,
.controls li a {
  background: none !important;
  background-image: none !important;
  text-indent: -9999px;
  overflow: hidden;
}
.flex-direction-nav a::before,
.controls li a::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  margin: 8px auto;
  border: solid #68356a;
  border-width: 0 3px 3px 0;
  transition: border-color 0.2s ease;
}

.flex-direction-nav a.flex-prev::before,
.controls li a.flex-prev::before {
  transform: rotate(135deg);
  margin-left: 9px;
}

.flex-direction-nav a.flex-next::before,
.controls li a.flex-next::before {
  transform: rotate(-45deg);
  margin-right: 9px;
}

.flex-direction-nav a:hover::before,
.flex-direction-nav a:focus::before,
.controls li a:hover::before,
.controls li a:focus::before {
  border-color: #522a54;
}

.slider.slider--services {
  height: auto;
  overflow: hidden;
  margin: 20px 0 40px;
  background-color: #f5f5f5;
  background-position: 0 bottom;
  background-repeat: repeat-x;
}
.slider.slider--services .slides {
  width: 100%;
}
.slider.slider--services .slide {
  overflow: visible;
  height: auto;
  background: none;
}
.slider.slider--services .slides .inner {
  width: 100%;
  max-width: 1120px;
}
.slider.slider--services .slide:not(.slide--urgent-help) .inner {
  padding-bottom: 50px;
}
.slider.slider--services .slide:not(.slide--urgent-help) .inner::after {
  content: "";
  display: table;
  clear: both;
}
.slider.slider--services .slides img.featured_image {
  margin-bottom: 0;
}

.slide--urgent-help .inner {
  width: 100%;
  max-width: 1120px;
  padding-bottom: 24px;
}
.slide--urgent-help h3 {
  float: none;
  width: 100%;
  margin-bottom: 16px;
  font-size: 26px;
  line-height: 30px;
}
.slide--urgent-help .slide-intro__col:first-child .fl-module:first-child {
  display: none;
}
.slide--urgent-help .slide-intro--two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 56px;
  width: 100%;
  clear: both;
}
.slide--urgent-help .slide-intro__col {
  min-width: 0;
}
.slide--urgent-help .fl-module {
  margin: 0 0 14px;
  min-width: 0;
}
.slide--urgent-help .fl-heading-text,
.slide--urgent-help h2,
.slide--urgent-help h4 {
  color: #90278e;
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  margin: 0 0 8px;
}
.slide--urgent-help .fl-rich-text p {
  color: #58585a;
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  margin-bottom: 10px;
}
.slide--urgent-help .fl-rich-text ul {
  margin: 10px 0;
  padding-left: 0;
  list-style: none;
}
.slide--urgent-help .fl-rich-text ul li {
  background: url(../images/layout/bullet.png) no-repeat 0 7px;
  color: #58585a;
  font-size: 17px;
  font-weight: 400;
  line-height: 24px;
  padding-left: 26px;
  margin-bottom: 4px;
}
.slide--urgent-help .cta {
  clear: both;
  display: block;
  margin: 22px 0 0 3px;
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 767px) {
  .slide--urgent-help .slide-intro--two-col {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.panel .panel_head,
.panel.highlighted .panel_head {
  background: none;
  background-image: none;
}

.panel .categories li {
  background: none;
  padding-left: 18px;
  position: relative;
}
.panel .categories li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #68356a;
}

.wrap--basic {
  padding: 30px 0 60px 0;
}
@media (max-width: 767px) {
  .wrap--basic {
    padding: 0;
  }
}

.inner-thin {
  max-width: 600px;
  margin: 0 auto;
}

.panel-stretch {
  width: 100%;
}

.map-embed iframe {
  border: 0;
}
.map-embed small a {
  color: #0000ff;
  text-align: left;
}

.section-heading--spaced {
  clear: left;
  margin-top: 60px;
}

.training {
  font-size: 18px;
  line-height: 1.5;
  padding: 30px 15px 60px 15px;
  color: #58585A;
}
.training img {
  max-width: 100%;
  height: auto;
}
.training p, .training ul, .training ol {
  margin-top: 0;
  margin-bottom: 20px;
  color: #58585A;
}
.training .highlight {
  color: #90278e;
}
.training .highlight a {
  text-decoration: none;
}
@media (min-width: 1136px) {
  .training {
    padding: 30px 0 60px 0;
  }
}

.training-section {
  padding: 40px 0;
}

.panel.training-cta {
  padding: 25px;
  margin: 0;
}
.panel.training-cta p {
  font-size: 16px;
}
.panel.training-cta .highlight {
  font-size: 18px;
}
.panel.training-cta .panel_head {
  margin: -25px -25px 12px -25px;
}
.panel.training-cta .panel_head h2 {
  padding: 17px 25px;
  margin: 0;
}

/* Training .intro font-size — base weight in base/_typography.scss, homepage layout in original/_global.scss */
.training-section--intro {
  padding-top: 0;
}
.training-section--intro .intro {
  font-size: 20px;
  line-height: 1.35;
}

@media (min-width: 768px) {
  .grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 20px;
  }
  .grid--space-between {
    justify-content: space-between;
  }
  .grid--align-items-start {
    align-items: start;
  }
  .grid--align-items-center {
    align-items: center;
  }
  .grid--align-items-end {
    align-items: end;
  }
  .training-section--intro .training-content {
    grid-column: 1/8;
  }
  .training-section--intro .training-cta {
    grid-column: 9/13;
  }
  .training-section--secondary .training-content {
    grid-column: 7/13;
  }
  .training-section--secondary .training-illustration {
    grid-column: 1/6;
  }
}
.event {
  background: #F5F5F6;
  padding: 40px;
  margin-bottom: 40px;
  font-size: 16px;
}

@media (min-width: 768px) {
  .event-content-grid {
    display: grid;
    grid-column-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
  .event__info {
    padding-right: 100px;
    grid-column: 1/3;
  }
}
.event__title {
  padding-bottom: 12px;
  margin-top: -6px;
  line-height: 1.15;
  color: #68356a;
  font-size: 24px;
  letter-spacing: -0.01em;
  border-bottom: 1px solid #68356a;
  margin-bottom: 30px;
}

p.event__price {
  color: #90278e;
  font-size: 19px;
  font-weight: 600;
}
p.event__price .tax {
  font-size: 13px;
  margin-left: 3px;
}
p.event__price .availability {
  margin-left: 20px;
  font-weight: 400;
  font-size: 18px;
}
p.event__price del {
  font-size: 15px;
  color: #58585A;
  font-weight: 400;
}

.early-bird {
  display: inline-block;
  margin-right: 5px;
}

.early-bird-ending-soon {
  display: block;
  font-size: 15px;
  color: #58585A;
}

.event__location h4 {
  font-weight: 700;
}
.event__location p {
  margin: 0;
}

.new-tag {
  display: inline-block;
  font-size: 13px;
  padding: 5px 7px;
  border-radius: 4px;
  background: #68356a;
  color: white;
  vertical-align: bottom;
  margin-left: 4px;
}

.event-date-header {
  font-size: 21px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  color: black;
}
.event__next-date .event-date-header {
  color: #68356a;
}

@media (min-width: 768px) {
  .event-dates {
    display: grid;
    grid-column-gap: 20px;
    grid-template-columns: repeat(3, 1fr);
  }
}

.event-date {
  border-radius: 1px;
  background-color: #CBF2EF;
  padding: 18px 28px;
  border-left: 6px solid #68356a;
  margin-bottom: 10px;
}
.event-date.event-date--future {
  background-color: #DEF0EF;
}

.event-date__day,
p.event-date__time {
  color: black;
  font-size: 18px;
  line-height: 1.3;
}

p.event-date__time {
  margin-bottom: 5px;
}

.event-date__calendar {
  margin-bottom: 20px;
  font-size: 14px;
}

input.add-to-calendar-button {
  color: #68356a;
  text-decoration: none;
  background: transparent;
  padding: 0;
  margin: 0;
  border: 0;
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  font-size: 14px;
  cursor: pointer;
}
input.add-to-calendar-button:hover, input.add-to-calendar-button:focus {
  text-decoration: underline;
  color: #90278e;
  outline: none;
  cursor: pointer;
}

.event-date__day {
  font-weight: 700;
}

.event-date--next .button {
  padding-top: 12px;
  padding-bottom: 14px;
}

.future-dates-link {
  color: #90278e;
}

.event__future_dates {
  display: none;
}
.event__future_dates .event-date-header {
  margin-top: 10px;
}
.event__future_dates {
  margin-top: 40px;
  border-top: 1px solid #D8D8D8;
}

#bespoke-cta .training-content {
  grid-column: 1/7;
}
#bespoke-cta .bespoke-training-image {
  grid-column: 8/13;
}
@media (max-width: 767px) {
  #bespoke-cta {
    text-align: center;
  }
  #bespoke-cta .section-header {
    margin: 20px 0;
  }
}

@media (min-width: 768px) {
  #testimonials {
    display: grid;
    grid-column-gap: 100px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 992px;
    margin: 0 auto;
  }
}

.testimonial blockquote p {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.4;
}
.testimonial blockquote p:before {
  content: "“";
}
.testimonial blockquote p:after {
  content: "”";
}
.testimonial .author {
  font-size: 16px;
  margin: 0;
}
.testimonial .author:before {
  content: "— ";
}
@media (max-width: 767px) {
  .testimonial blockquote p {
    font-size: 20px;
  }
  .testimonial {
    padding: 0 30px;
  }
  .testimonial:nth-child(2) {
    display: none;
  }
}

#bespoke-training-content .training-content {
  grid-column: 1/7;
}
#bespoke-training-content .bespoke-training-image {
  grid-column: 8/13;
}

#bespoke-training-secondary .bespoke-training-col--1 {
  grid-column: 1/6;
}
#bespoke-training-secondary .bespoke-training-col--2,
#bespoke-training-secondary #bespoke-contact {
  grid-column: 7/13;
}

.training-landing-page .inner {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.training-landing-page .training-landing-blocks .training-section.grid {
  display: block;
}
.training-landing-page .training-landing-blocks .training-landing-hero__copy,
.training-landing-page .training-landing-blocks .training-landing-hero__image,
.training-landing-page .training-landing-blocks .training-landing-hero__image-col,
.training-landing-page .training-landing-blocks .training-landing-section--left,
.training-landing-page .training-landing-blocks .training-landing-section--right,
.training-landing-page .training-landing-blocks .training-landing-hero__columns > .wp-block-column,
.training-landing-page .training-landing-blocks .training-landing-secondary__columns > .wp-block-column {
  width: 100%;
  max-width: 100%;
}
.training-landing-page .training-landing-blocks .training-landing-hero__image,
.training-landing-page .training-landing-blocks .training-landing-hero__image-col,
.training-landing-page .training-landing-blocks .training-landing-hero__columns .wp-block-image {
  margin-top: 40px;
}
.training-landing-page .training-landing-blocks .training-landing-hero__image-col img,
.training-landing-page .training-landing-blocks .training-landing-hero__columns .wp-block-image img {
  max-width: 100%;
  height: auto;
}
.training-landing-page .training-landing-blocks .training-landing-section--right {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}
.training-landing-page .training-landing-blocks .training-landing-venues {
  padding-top: 40px;
  margin-top: 20px;
  border-top: 1px solid #ddd;
}
.training-landing-page .training-landing-blocks .training-landing-hero__columns,
.training-landing-page .training-landing-blocks .training-landing-secondary__columns {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bespoke-training-col li,
.bespoke-training-col ul.bullets li {
  font-size: 18px;
  margin-bottom: 15px;
}
.bespoke-training-col h2 {
  border: 0;
  padding: 0;
  margin-bottom: 20px;
  font-size: 24px;
  color: #90278e;
}
.bespoke-training-col .gform_description {
  color: #58585A;
  text-align: left;
  max-width: 100%;
}

.bespoke-training-col--1 {
  grid-column: 1/6;
}

.bespoke-training-col--2 {
  grid-column: 7/13;
}

@media (max-width: 767px) {
  .bespoke-training-image {
    margin-top: 40px;
  }
}
@media (max-width: 767px) {
  .training {
    padding: 0 15px 0 15px;
  }
  .training-section {
    padding: 15px 0;
  }
  .training-section--intro .intro {
    font-size: 19px;
  }
  .panel.training-cta {
    margin-top: 40px !important;
  }
  .training-illustration {
    margin-bottom: 20px;
  }
  .button.upcoming-events-link {
    border: 1px solid #90278e;
    background: #90278e;
  }
  .button.upcoming-events-link:hover, .button.upcoming-events-link:focus {
    border-color: #712070;
    background-color: #712070;
  }
  .event {
    padding: 20px;
  }
  .event__location {
    margin-bottom: 20px;
  }
  .event__title {
    font-size: 20px;
    margin-top: 0;
  }
  .event__content {
    line-height: 1.4;
  }
}
.page-medico-legal-services .service .col_5 {
  width: 47%;
}
.page-medico-legal-services .service img.featured_image {
  width: 50%;
}
.page-medico-legal-services #services .col_8 {
  width: 65%;
}
.page-medico-legal-services #services .col_4 {
  width: 32%;
}

#blog.wrap {
  padding-top: 40px;
  padding-bottom: 48px;
}

@media (max-width: 767px) {
  #blog.wrap {
    padding-top: 28px;
    padding-bottom: 36px;
  }
}
/* Gravity Forms */
.gform_wrapper {
  margin-bottom: 24px;
}

.gform_validation_container {
  display: none;
}

.gfield_description {
  color: #777;
  margin-bottom: 14px;
}

.contact li {
  clear: both;
}

.gform_fields,
.gfield_checkbox {
  list-style: none;
  padding: 0;
  margin-left: 0;
}

.copy ul.gform_fields {
  margin-left: 0;
}

.gfield,
.copy ul li.gfield {
  margin-bottom: 14px;
  overflow: hidden;
  background: none;
  padding-left: 0;
}

.ginput_complex span {
  display: block;
}

.ginput_recaptcha {
  margin: 20px 0 8px 0;
}

@media (min-width: 768px) {
  .ginput_complex {
    overflow: hidden;
  }
  .ginput_complex span {
    float: left;
    width: 47%;
  }
  .ginput_complex span + span {
    margin-left: 6%;
  }
}
select {
  width: 100%;
  height: 40px;
}

select:focus {
  outline: none !important;
  border: 1px solid #68356a;
}

.gfield_label {
  font-weight: 600;
}

.gfield_error input,
.gfield_error textarea {
  border-color: red !important;
}

.gfield_checkbox label,
.gfield_checkbox input {
  display: inline;
  float: none;
}

.form--extra-info {
  margin-top: 20px;
  margin-bottom: 0;
  color: #777;
  font-size: 18px;
}

b.form-spacer {
  display: block;
  margin-top: 20px;
}

input[type=text], input[type=email], input[type=password] {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  width: 100%;
  padding-left: 1%;
  padding-right: 1%;
}

input[type=text], textarea, input[type=password], input[type=phone], input[type=password], input[type=email] {
  width: 100%;
  border: 1px solid #cccccc;
  min-height: 1.8em;
  font-size: 1em;
  padding-top: 5px;
  padding-bottom: 5px;
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  padding-left: 10px;
  padding-right: 10px;
}

.contact select {
  background-color: #ffffff;
  border: 1px solid #cccccc;
  padding: 0px 5px;
  height: 40px;
  line-height: 1.8em;
  cursor: pointer;
  width: 100%;
  font-size: 1em;
  font-family: "Source Sans Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.contact {
  overflow: visible;
}

input:focus {
  outline: none !important;
  border: 1px solid #68356a;
}

textarea:focus {
  outline: none !important;
  border: 1px solid #68356a;
}

.validation_error, .validation_message {
  color: red;
}

.validation_error {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  margin-bottom: 16px;
  background: #fff2f2;
  padding: 20px;
}

.validation_message {
  font-weight: 400;
}

.gform_confirmation_message_1 {
  font-weight: 700;
  color: #68356a;
  font-size: 1.2em;
}

.gform_description {
  display: block;
  color: #68356a;
  font-size: 20px;
  line-height: 1.4;
  text-align: center;
  max-width: 500px;
  margin: 0 auto 40px auto;
}

.page-title + .gform_wrapper {
  margin-top: -20px;
}

.align-left {
  text-align: left !important;
}

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

.align-right {
  text-align: right !important;
}

.margin-none,
.no-margin {
  margin: 0 !important;
}

.margin-normal {
  margin: 20px 0 !important;
}

.margin-half {
  margin: 10px 0 !important;
}

.margin-double {
  margin: 40px 0 !important;
}

.margin-top-normal {
  margin-top: 20px !important;
}

.margin-top-half {
  margin-top: 10px !important;
}

.margin-top-double {
  margin-top: 40px !important;
}

.margin-top-none {
  margin-top: 0 !important;
}

.margin-bottom-normal {
  margin-bottom: 20px !important;
}

.margin-bottom-half {
  margin-bottom: 10px !important;
}

.margin-bottom-double {
  margin-bottom: 40px !important;
}

.margin-bottom-none {
  margin-bottom: 0 !important;
}

.padding-none,
.no-padding {
  padding: 0 !important;
}

.padding-normal {
  padding: 20px 0 !important;
}

.padding-half {
  padding: 10px 0 !important;
}

.padding-double {
  padding: 40px 0 !important;
}

.padding-top-normal {
  padding-top: 20px !important;
}

.padding-top-half {
  padding-top: 10px !important;
}

.padding-top-double {
  padding-top: 40px !important;
}

.padding-top-none {
  padding-top: 0 !important;
}

.padding-bottom-normal {
  padding-bottom: 20px !important;
}

.padding-bottom-half {
  padding-bottom: 10px !important;
}

.padding-bottom-double {
  padding-bottom: 40px !important;
}

.padding-bottom-none {
  padding-bottom: 0 !important;
}

.no-style {
  color: inherit;
}

.purple {
  color: #90278e;
}

.green {
  color: #68356a;
}

/*# sourceMappingURL=main.css.map */
