/*
Theme Name: informed
Description: Dedicated Wordpress theme for Company Name
*/
/* Slider */
/* line 2, css/vendor/_slick.scss */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

/* line 17, css/vendor/_slick.scss */
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

/* line 25, css/vendor/_slick.scss */
.slick-list:focus {
  outline: none;
}

/* line 29, css/vendor/_slick.scss */
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

/* line 34, css/vendor/_slick.scss */
.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

/* line 43, css/vendor/_slick.scss */
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

/* line 50, css/vendor/_slick.scss */
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}

/* line 56, css/vendor/_slick.scss */
.slick-track:after {
  clear: both;
}

/* line 60, css/vendor/_slick.scss */
.slick-loading .slick-track {
  visibility: hidden;
}

/* line 64, css/vendor/_slick.scss */
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

/* line 71, css/vendor/_slick.scss */
[dir='rtl'] .slick-slide {
  float: right;
}

/* line 75, css/vendor/_slick.scss */
.slick-slide img {
  display: block;
}

/* line 79, css/vendor/_slick.scss */
.slick-slide.slick-loading img {
  display: none;
}

/* line 83, css/vendor/_slick.scss */
.slick-slide.dragging img {
  pointer-events: none;
}

/* line 87, css/vendor/_slick.scss */
.slick-initialized .slick-slide {
  display: block;
}

/* line 91, css/vendor/_slick.scss */
.slick-loading .slick-slide {
  visibility: hidden;
}

/* line 95, css/vendor/_slick.scss */
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 0;
}

/* line 101, css/vendor/_slick.scss */
.slick-arrow.slick-hidden {
  display: none;
}

/* ==========================================================================
	Variables
/* ========================================================================== */
/* Colors */
/* Font Sizes */
/* Layout */
/* Content Images */
/* Sidebar */
/* Fallbacks / browser support */
/* ==========================================================================
	Media queries
/* ========================================================================== */
/* Default bootstrap breakpoints */
/* Custom breakpoints */
/* ==========================================================================
	Images
/* ========================================================================== */
/* Uncomment when using sprites: */
/* Uncomment when using sprites for retina images: */
/* Uncomment when using sprites fallback for IE8: */
/* Project supports: */
/* Paths: */
/**
 *  USAGE
 *  $image: file name WITH extension (even when using sprites)
 *  $bg-size: explicitly applied background size for svg images
 *
 *  Example:
 *  @include bgi('icon.png');
 *
 *  The mixin applies:
 *   - background from sprite, if project supports sprites, regular image otherwise
 *   - retina image in media query, if project supports retina, it will be a retina sprite, if project additionally
 *     supports sprites
 *   - IF background is in SVG format AND project supports IE8, mixin will apply fallback: regular png image,
 *     or a sprite fallback, depending on settings.scss
 */
/**
 *  USAGE
 *  Applies sprite of a given name, even in media query. Simplest case:
 *  @include sprite(icon);
 *
 *  By default it uses a sprite map set in settings.scss, but can be overriden (second parameter).
 *  E.g. if we have 'icons' sprites folder, we can use:
 *  @include sprite(my-icon, $icons-sprites);
 *
 *  If project support retina, then by defualt this mixin will also add retina sprite.
 *  This behavior can be disabled:
 *  @include sprite(icon, $sprites-sprites, false);
 *  Also, the retina sprite used by default (the one from settings.scss) can be overriden
 *  by the third parameter (e.g. if we wanna use sprites from folder 'retina-icons'):
 *  @include sprite(icon, $sprites-sprites, true, $retina-icons-sprites);
 */
/**
 *  USAGE:
 *
 *  First parameter is a collection of colors or color stops. So either of those will work:
 *  @include gradient((#abc123, #123abc));
 *  @include gradient((#abc123 0%, #123abc 75%));
 *  @include gradient((#abc123, #123abc, #123123));
 *  @include gradient((#abc123, #123abc), vertical);
 *
 *  Radial gradients are a special case. Line below is fine:
 *  @include gradient((#abc123, #123abc), radial);
 *  However, you can also pass a collection as a type parameter to customize it a bit. Defaults are:
 *  @include gradient((#abc123, #123abc), (radial, cover, ellipse, center));
 *  The first element of the collection can actually be anything, doesn't have to be 'radial'.
 *  Second element is background-size (cover, contain, 100px, 50%, etc.), third is shape
 *  (can be either ellipse or circle), and last is background-position (center, top left, bottom right, etc.).
 *  Example:
 *  @include gradient((#abc123, #123abc), (radial, cover, circle, left top));
 *  Please note that some parameter combinations (e.g. left top position and size contain) don't work.
 *
 *  Please note that collection requires parentheses. So a collection '(...)' passed as a parameter
 *  is double parentheses: '((...))'.
 *
 *  Second parameter is a type of gradient. Allowed values are the expected:
 *  vertical, horizontal, radial
 *  But there can also be diagonal, in two versions:
 *  1. Going from left top to bottom right corner, any of those is valid:
 *     diagonal, diagonal1, diagonal-left-top, diagonal-top-left, diagonal-lt, diagonal-tl, left-top, top-left
 *  2. Going from left bottom to top right corner, any of those:
 *     diagonal2, diagonal-left-bottom, diagonal-bottom-left, diagonal-lb, diagonal-bl, left-bottom, bottom-left
 *
 *  Plase note that older IEs support only vertical and horizontal gradients.
 *
 *  Finally the third parameter tells how the gradient is rendered on IE8. There are two options:
 *  filter - uses native IE filters, means that transparency (rgba values) will work, but border-radius
 *           (even with pie) will be completely ignored
 *  pie - uses PIE to render the gradient, will work fine with border-radius, but transparency (rgba values)
 *        will not work
 */
/* RESETS */
/* line 3, css/_elements.scss */
.style-nm, .main-nav ul, .socials, .main-footer ul, .content .side-menu, .content-column-right .menu, .about-team .menu, .side-slider blockquote, .side-slider blockquote p, .side-slider blockquote footer p, .side-slider .slick-dots, .widget ul, .content h2, .content h3, .services-quote blockquote, .services-quote blockquote p, .services-video h2.section-title, .team-member figure, .team-member h3, .team-member p, .banner p, .main-slider .slide p, .home-clients h2, .home-clients ul {
  margin: 0;
  padding: 0;
}

/* line 7, css/_elements.scss */
.style-cb {
  clear: both;
}

/* HELPERS */
/* line 13, css/_elements.scss */
.btn-cta span:after, .btn-cta-alt span:after, .content .side-menu li.btn-cta-wrapper a span:after, .content-column-right .menu li.btn-cta-wrapper a span:after, .about-team .menu li.btn-cta-wrapper a span:after, input[type=checkbox]:before, .main-nav li:after, .main-footer li:after, .content .side-menu li:after, .content-column-right .menu li:after, .about-team .menu li:after, .content .side-menu li.btn-cta-wrapper:after, .content-column-right .menu li.btn-cta-wrapper:after, .about-team .menu li.btn-cta-wrapper:after, .help-box p.help-box-phone span:after, .content-column-left li:before, .services-quote blockquote:before, .team-member h2:after, .main-slider .slide-header-inner:before, .main-slider .slide-inner:before {
  position: absolute;
  display: block;
  content: '';
}

/* COLORS */
/* TYPOGRAPHY */
/* Fonts */
/* Headers */
/* line 49, css/_elements.scss */

.style-header-sm, .side-slider blockquote, .content h2, .services-quote blockquote, .banner p, .home-clients h2, .modal h2 {
  font-size: 28px;
  line-height: 30px;
  margin-bottom: 10px
}
@media (max-width: 1919px) {
  /* line 49, css/_elements.scss */
  .style-header-sm, .side-slider blockquote, .content h2, .services-quote blockquote, .banner p, .home-clients h2, .modal h2 {
    font-size: 19px;
    line-height: 30px;
  }
}

/* line 57, css/_elements.scss */
.style-header-lg, .main-slider .slide-header-inner {
  font-size: 20px;
  line-height: 28px;
}
@media (max-width: 991px) {
  /* line 57, css/_elements.scss */
  .style-header-lg, .main-slider .slide-header-inner {
    font-size: 22px;
    line-height: 27px;
  }
}
@media (max-width: 767px) {
  /* line 57, css/_elements.scss */
  .style-header-lg, .main-slider .slide-header-inner {
    font-size: 18px;
    line-height: 24px;
  }
}

/* Content */
/* line 72, css/_elements.scss */
.style-content-sm, .side-slider blockquote footer, .content-column-right h3, .about-team h3, .content, .sub-box, .team-member h2, .member-description, .content.contact .content-intro, .account-preferences p, .account-preferences .column h4, .main-slider .slide-description {
  font-size: 16px;
  line-height: 24px;
  text-align: left;
}
@media (max-width: 991px) {
  /* line 72, css/_elements.scss */
  .style-content-sm, .side-slider blockquote footer, .content-column-right h3, .about-team h3, .content, .sub-box, .team-member h2, .member-description, .content.contact .content-intro, .account-preferences p, .account-preferences .column h4, .main-slider .slide-description {
    font-size: 14px;
    line-height: 18px;
    text-align: justify;
    background: rgba(255, 255, 255, .5);
  }
}

/* line 80, css/_elements.scss */
.style-content-md, .content-intro, .sub-box span, .service-box h2, .services-quote footer, .contact-form input[type="submit"], .address-box h3, .search-total, .form-purchase span, .modal p, .modal-close {
  font-size: 16px;
  line-height: 24px;
}
@media (max-width: 991px) {
  /* line 80, css/_elements.scss */
  .style-content-md, .content-intro, .sub-box span, .service-box h2, .services-quote footer, .contact-form input[type="submit"], .address-box h3, .search-total, .form-purchase span, .modal p, .modal-close {
    font-size: 14px;
    line-height: 20px;
  }
}

/* line 88, css/_elements.scss */
.style-content-lg, .content.blog-posts .post h2, .content.search-results-list .post h2 {
  font-size: 20px;
  line-height: 24px;
}
@media (max-width: 991px) {
  /* line 88, css/_elements.scss */
  .style-content-lg, .content.blog-posts .post h2, .content.search-results-list .post h2 {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (max-width: 767px) {
  /* line 88, css/_elements.scss */
  .style-content-lg, .content.blog-posts .post h2, .content.search-results-list .post h2 {
    font-size: 14px;
    line-height: 18px;
  }
}

/* line 100, css/_elements.scss */
.style-content-tall, .content-intro .tall {
  font-size: 18px;
  line-height: 34px;
}
@media (max-width: 991px) {
  /* line 100, css/_elements.scss */
  .style-content-tall, .content-intro .tall {
    font-size: 14px;
    line-height: 30px;
  }
}

/* Buttons */
/* line 111, css/_elements.scss */
.btn, .content .side-menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper a {
  display: inline-block;
  background: #3abba0;
  font-family: "Helvetica LT W01 Roman";
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
}

/* line 120, css/_elements.scss */
.btn-cta, .btn-cta-alt, .content .side-menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper a {
  font-size: 18px;
  text-align: center;
  letter-spacing: 0.5px;
  padding: 15px 20px 10px 20px;
  text-decoration: none;
}
.btn-home {
  font-size: 17px !important;
  text-align: center;
  letter-spacing: -0.1px;
  padding: 10px 14px 10px 14px !important;
  text-decoration: none;
  width: 235px;
  color: #2b2828 !important;
  border-radius: 15px !important;
  border-style: outset !important;
  border: 2px outset #b0e6b2c9 !important;
  font-weight: 500 !important;
  cursor: pointer;
}
.btn-home:hover {
  background-color: #51ccb2
  cursor: pointer;
}
.btn-home:active {
  background-color: #51ccb2;
  box-shadow: 0 5px #666;
  transform: translateY(4px);
  cursor: pointer;
}

@media (max-width: 767px) {
  /* line 120, css/_elements.scss */
  .btn-cta, .btn-cta-alt, .content .side-menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper a {
    padding: 10px 20px 10px 20px;
    font-size: 12px;
  }
 .btn-home {
   font-size: 12px !important;
   text-align: center;
   letter-spacing: 0.5px;
   padding: 8px 12px 8px 12px !important;
   text-decoration: none;
   width: 200px;
   color: black !important;
   border-radius: 7px !important;
   margin: 5px;
 }
.btnnew, .mepr-nav-item {
color: #363636;  display: inline-block;  font-size: 13px;  border:0px;
  text-decoration: none;    text-transform: uppercase; margin: 0 10px;    padding: 9px 10px 8px 10px;
 }
}
/* line 130, css/_elements.scss */
.btn-cta span, .btn-cta-alt span, .content .side-menu li.btn-cta-wrapper a span, .content-column-right .menu li.btn-cta-wrapper a span, .about-team .menu li.btn-cta-wrapper a span {
  position: relative;
  display: block;
  min-width: 100px;
}
/* line 20, css/_elements.scss */
.btn-cta span:after, .btn-cta-alt span:after, .content .side-menu li.btn-cta-wrapper a span:after, .content-column-right .menu li.btn-cta-wrapper a span:after, .about-team .menu li.btn-cta-wrapper a span:after {
  width: 10px;
  height: 16px;
  right: 0;
  top: 50%;
  margin-top: -8px;
  background: url("images/ico-arrow.png") no-repeat;
}

/* line 143, css/_elements.scss */
.btn-cta-alt {
  background: #f7f7f7;
  color: #3abba0;
  letter-spacing: -0.5px;
  padding: 15px 20px 10px 11px;
}
/* line 150, css/_elements.scss */
.btn-cta-alt span:after {
  margin-top: -10px;
  background: url("images/ico-arrow-menu.png") no-repeat;
}
@media (max-width: 767px) {
  /* line 143, css/_elements.scss */
  .btn-cta-alt {
    width: 100%;
    padding: 15px 20px 15px 20px;
  }
}

/* line 161, css/_elements.scss */
.btn-sm {
  font-size: 13px;
  padding: 9px 28px 7px 32px;
}

/* Links */
/* line 169, css/_elements.scss */
.style-link, .style-link-menu, .main-nav li a, .style-link-submenu, .main-nav ul.sub-menu a, a, .main-footer a, .content .side-menu a, .content-column-right .menu a, .about-team .menu a {
  text-decoration: none;
  color: #3abba0;
}

/* line 173, css/_elements.scss */
.style-link-menu, .main-nav li a {
  font-family: "Helvetica LT W01 Roman";
  color: #363636;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (max-width: 1919px) {
  /* line 173, css/_elements.scss */
  .style-link-menu, .main-nav li a {
    font-size: 14px;
    padding-right: 9px;
  }
}
@media (max-width: 767px) {
  .style-link-menu, .main-nav li a {
    padding-right: 0px;
  }
}

/* line 187, css/_elements.scss */
.style-link-submenu, .main-nav ul.sub-menu a {
  font-size: 13px;
}

/* Lists */
/* line 194, css/_elements.scss */
.style-hlist, .main-nav ul, .socials, .main-footer ul, .home-clients ul {
  list-style-type: none;
}
/* line 196, css/_elements.scss */
.style-hlist li, .main-nav ul li, .socials li, .main-footer ul li, .home-clients ul li {
  display: inline-block;
}

/* line 200, css/_elements.scss */
.style-vlist, .content .side-menu, .content-column-right .menu, .about-team .menu, .widget ul, .content ul, ul.downloads-list {
  list-style-type: none;
}
/* line 202, css/_elements.scss */
.style-vlist li, .content .side-menu li, .content-column-right .menu li, .about-team .menu li, .widget ul li, .content ul li, ul.downloads-list li {
  display: block;
}
td {
  veritcal-align: top;
}

/* Borders */
/* Forms */
/* line 213, css/_elements.scss */
.style-input, .widget_search input, .contact-form input, .contact-form textarea, .contact-form select {
  border: 1px solid #ebebeb;
  background: #f7f7f7;
  color: #464646;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
/* line 221, css/_elements.scss */
.style-input:focus, .widget_search input:focus, .contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus {
  outline: 0;
}
/* line 61, ../../../../../../../usr/share/compass/frameworks/compass/stylesheets/compass/css3/_user-interface.scss */
.style-input:-moz-placeholder, .widget_search input:-moz-placeholder, .contact-form input:-moz-placeholder, .contact-form textarea:-moz-placeholder, .contact-form select:-moz-placeholder {
  color: #464646;
}
/* line 64, ../../../../../../../usr/share/compass/frameworks/compass/stylesheets/compass/css3/_user-interface.scss */
.style-input::-moz-placeholder, .widget_search input::-moz-placeholder, .contact-form input::-moz-placeholder, .contact-form textarea::-moz-placeholder, .contact-form select::-moz-placeholder {
  color: #464646;
}
/* line 67, ../../../../../../../usr/share/compass/frameworks/compass/stylesheets/compass/css3/_user-interface.scss */
.style-input:-ms-input-placeholder, .widget_search input:-ms-input-placeholder, .contact-form input:-ms-input-placeholder, .contact-form textarea:-ms-input-placeholder, .contact-form select:-ms-input-placeholder {
  color: #464646;
}
/* line 56, ../../../../../../../usr/share/compass/frameworks/compass/stylesheets/compass/css3/_user-interface.scss */
.style-input::-webkit-input-placeholder, .widget_search input::-webkit-input-placeholder, .contact-form input::-webkit-input-placeholder, .contact-form textarea::-webkit-input-placeholder, .contact-form select::-webkit-input-placeholder {
  color: #464646;
}

/* Checkbox */
/* line 231, css/_elements.scss */
input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
  position: relative;
}
/* line 20, css/_elements.scss */


/* line 244, css/_elements.scss */
input[type=checkbox]:checked:before {
  background-position: 0 -23px;
}

/* ==========================================================================
	Base
/* ========================================================================== */
/* line 5, css/_global.scss */
html {
  height: auto;
  height: 100%;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  margin: 0;
  padding: 0;
}

/* line 14, css/_global.scss */
html,
button,
input,
select,
textarea {
  font-family: Arial, sans-serif;
  color: #444;
}

/* line 22, css/_global.scss */
body {
  min-width: 300px;
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 1em;
  line-height: 1.4;
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  font-family: "Helvetica LT W01 Light";
  color: #363636;
}

body:not(.logged-in) #showsub {
    display: none !important;
}
body.logged-in #hidesub {
    display: none !important;
}

/* line 36, css/_global.scss */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 43, css/_global.scss */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

/* line 49, css/_global.scss */
.gm-style img {
  max-width: none;
}

/* line 54, css/_global.scss */
a img {
  border: 0;
}

/* Content Block Elements */
/* line 61, css/_global.scss */
dl,
menu,
ol,
ul,
p,
pre {
  margin: 0 0 1em;
}

/* Paragraphs */
/* Lists */
/* line 78, css/_global.scss */
menu,
ol,
ul {
  padding: 0 0 0 28px;
}

/* Selection Colors */
/* line 86, css/_global.scss */
::-moz-selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}

/* line 91, css/_global.scss */
::selection {
  background: #444;
  color: #fff;
  text-shadow: none;
}

/* =============================================================================
	Helper Classes
/* ========================================================================== */
/* Prefixed with tags to override default tag styling for these elemets if .button is added */
/* line 103, css/_global.scss */
button,
.button,
a.button,
input.button {
  display: inline-block;
}

/* Responsive Media Styles */
/* line 131, css/_global.scss */
.media img,
.media video,
.media object,
.media iframe {
  width: 100%;
  height: auto;
}

/* Clear Fix */
/* line 9, css/_mixins.scss */
.clearfix:after,
.cf:after,
.row:after {
  content: '';
  display: table;
  clear: both;
}

/* Floats */
/* line 148, css/_global.scss */
.floatleft,
.fl {
  float: left;
}

/* line 152, css/_global.scss */
.floatright,
.fr {
  float: right;
}

/* line 156, css/_global.scss */
.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}

/* line 160, css/_global.scss */
.alignright {
  float: right;
  margin: 0 0 20px 20px;
}

/* line 165, css/_global.scss */
.alignnone {
  display: inline-block;
}

/* line 168, css/_global.scss */
.aligncenter {
  display: block;
  float: none;
  text-align: center;
  clear: both;
  margin: 20px auto;
}

/* =============================================================================
	Structural Styles, Media Queries & Page Styling
/* ========================================================================== */
/* line 182, css/_global.scss */
.widget-area {
  float: left;
  width: 40%;
  padding: 20px 0;
}

/* line 187, css/_global.scss */
.widget {
  margin-bottom: 20px;
}

/* line 191, css/_global.scss */
.article {
  margin-bottom: 1em;
}

/* Paginations */
/* line 198, css/_global.scss */
.navigation.pagination {
  clear: both;
}

/* GRID */
/* line 8, css/_grid.scss */
.container {
  margin: 0 auto 0 25.18%;
  width: 1165px;
}
@media (max-width: 1919px) {
  /* line 8, css/_grid.scss */
  .container {
    margin: 0 auto;
    width: 960px;
  }
}
@media (max-width: 991px) {
  /* line 8, css/_grid.scss */
  .container {
    width: 100%;
    padding: 0 15px 0 15px;
  }
}
@media (max-width: 767px) {
  /* line 8, css/_grid.scss */
  .container {
    padding: 0;
  }
  .footer-row {
    text-align:center;
    padding: 15px 0 15px 0;
  }
}

/* line 25, css/_grid.scss */
.row {
  display: block;
}
.footer-row {
  text-align:center;
}

.button-row {
  display: inline-block;
  width: 25.9%;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: left;
}

/* line 30, css/_grid.scss */
.col, .col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
  float: left;
}
/* line 55, css/_grid.scss */
.col-xs-1 {
  display: block;
  position: relative;
  width: 8.33333%;
}
/* line 59, css/_grid.scss */
.col-xs-offset-1 {
  margin-left: 8.33333%;
}
/* line 55, css/_grid.scss */
.col-xs-2 {
  display: block;
  position: relative;
  width: 16.66667%;
}
/* line 59, css/_grid.scss */
.col-xs-offset-2 {
  margin-left: 16.66667%;
}
/* line 55, css/_grid.scss */
.col-xs-3 {
  display: block;
  position: relative;
  width: 25%;
}
/* line 59, css/_grid.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}
/* line 55, css/_grid.scss */
.col-xs-4 {
  display: block;
  position: relative;
  width: 33.33333%;
}
/* line 59, css/_grid.scss */
.col-xs-offset-4 {
  margin-left: 33.33333%;
}
/* line 55, css/_grid.scss */
.col-xs-5 {
  display: block;
  position: relative;
  width: 41.66667%;
}
/* line 59, css/_grid.scss */
.col-xs-offset-5 {
  margin-left: 41.66667%;
}
/* line 55, css/_grid.scss */
.col-xs-6 {
  display: block;
  position: relative;
  width: 50%;
}
/* line 59, css/_grid.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}
/* line 55, css/_grid.scss */
.col-xs-7 {
  display: block;
  position: relative;
  width: 58.33333%;
}
/* line 59, css/_grid.scss */
.col-xs-offset-7 {
  margin-left: 58.33333%;
}
/* line 55, css/_grid.scss */
.col-xs-8 {
  display: block;
  position: relative;
  width: 66.66667%;
}
/* line 59, css/_grid.scss */
.col-xs-offset-8 {
  margin-left: 66.66667%;
}
/* line 55, css/_grid.scss */
.col-xs-9 {
  display: block;
  position: relative;
  width: 75%;
}
/* line 59, css/_grid.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}
/* line 55, css/_grid.scss */
.col-xs-10 {
  display: block;
  position: relative;
  width: 83.33333%;
}
/* line 59, css/_grid.scss */
.col-xs-offset-10 {
  margin-left: 83.33333%;
}
/* line 55, css/_grid.scss */
.col-xs-11 {
  display: block;
  position: relative;
  width: 91.66667%;
}
/* line 59, css/_grid.scss */
.col-xs-offset-11 {
  margin-left: 91.66667%;
}
/* line 55, css/_grid.scss */
.col-xs-12 {
  display: block;
  position: relative;
  width: 100%;
}
/* line 59, css/_grid.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (max-width: 991px) {
  /* line 69, css/_grid.scss */
  .col-md-1 {
    display: block;
    position: relative;
    width: 8.33333%;
  }
  /* line 73, css/_grid.scss */
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }
  /* line 69, css/_grid.scss */
  .col-md-2 {
    display: block;
    position: relative;
    width: 16.66667%;
  }
  /* line 73, css/_grid.scss */
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }
  /* line 69, css/_grid.scss */
  .col-md-3 {
    display: block;
    position: relative;
    width: 25%;
  }
  /* line 73, css/_grid.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }
  /* line 69, css/_grid.scss */
  .col-md-4 {
    display: block;
    position: relative;
    width: 33.33333%;
  }
  /* line 73, css/_grid.scss */
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }
  /* line 69, css/_grid.scss */
  .col-md-5 {
    display: block;
    position: relative;
    width: 41.66667%;
  }
  /* line 73, css/_grid.scss */
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }
  /* line 69, css/_grid.scss */
  .col-md-6 {
    display: block;
    position: relative;
    width: 50%;
  }
  /* line 73, css/_grid.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }
  /* line 69, css/_grid.scss */
  .col-md-7 {
    display: block;
    position: relative;
    width: 58.33333%;
  }
  /* line 73, css/_grid.scss */
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }
  /* line 69, css/_grid.scss */
  .col-md-8 {
    display: block;
    position: relative;
    width: 66.66667%;
  }
  /* line 73, css/_grid.scss */
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }
  /* line 69, css/_grid.scss */
  .col-md-9 {
    display: block;
    position: relative;
    width: 75%;
  }
  /* line 73, css/_grid.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }
  /* line 69, css/_grid.scss */
  .col-md-10 {
    display: block;
    position: relative;
    width: 83.33333%;
  }
  /* line 73, css/_grid.scss */
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }
  /* line 69, css/_grid.scss */
  .col-md-11 {
    display: block;
    position: relative;
    width: 91.66667%;
  }
  /* line 73, css/_grid.scss */
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }
  /* line 69, css/_grid.scss */
  .col-md-12 {
    display: block;
    position: relative;
    width: 100%;
  }
  /* line 73, css/_grid.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (max-width: 767px) {
  /* line 82, css/_grid.scss */
  .col-sm-1 {
    display: block;
    position: relative;
    width: 8.33333%;
  }
  /* line 86, css/_grid.scss */
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }
  /* line 82, css/_grid.scss */
  .col-sm-2 {
    display: block;
    position: relative;
    width: 16.66667%;
  }
  /* line 86, css/_grid.scss */
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }
  /* line 82, css/_grid.scss */
  .col-sm-3 {
    display: block;
    position: relative;
    width: 25%;
  }
  /* line 86, css/_grid.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  /* line 82, css/_grid.scss */
  .col-sm-4 {
    display: block;
    position: relative;
    width: 33.33333%;
  }
  /* line 86, css/_grid.scss */
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }
  /* line 82, css/_grid.scss */
  .col-sm-5 {
    display: block;
    position: relative;
    width: 41.66667%;
  }
  /* line 86, css/_grid.scss */
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }
  /* line 82, css/_grid.scss */
  .col-sm-6 {
    display: block;
    position: relative;
    width: 50%;
  }
  /* line 86, css/_grid.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  /* line 82, css/_grid.scss */
  .col-sm-7 {
    display: block;
    position: relative;
    width: 58.33333%;
  }
  /* line 86, css/_grid.scss */
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }
  /* line 82, css/_grid.scss */
  .col-sm-8 {
    display: block;
    position: relative;
    width: 66.66667%;
  }
  /* line 86, css/_grid.scss */
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }
  /* line 82, css/_grid.scss */
  .col-sm-9 {
    display: block;
    position: relative;
    width: 75%;
  }
  /* line 86, css/_grid.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  /* line 82, css/_grid.scss */
  .col-sm-10 {
    display: block;
    position: relative;
    width: 83.33333%;
  }
  /* line 86, css/_grid.scss */
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }
  /* line 82, css/_grid.scss */
  .col-sm-11 {
    display: block;
    position: relative;
    width: 91.66667%;
  }
  /* line 86, css/_grid.scss */
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }
  /* line 82, css/_grid.scss */
  .col-sm-12 {
    display: block;
    position: relative;
    width: 100%;
  }
  /* line 86, css/_grid.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  /* line 95, css/_grid.scss */
  .col-lg-1 {
    display: block;
    position: relative;
    width: 8.33333%;
  }
  /* line 99, css/_grid.scss */
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }
  /* line 95, css/_grid.scss */
  .col-lg-2 {
    display: block;
    position: relative;
    width: 16.66667%;
  }
  /* line 99, css/_grid.scss */
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }
  /* line 95, css/_grid.scss */
  .col-lg-3 {
    display: block;
    position: relative;
    width: 25%;
  }
  /* line 99, css/_grid.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  /* line 95, css/_grid.scss */
  .col-lg-4 {
    display: block;
    position: relative;
    width: 33.33333%;
  }
  /* line 99, css/_grid.scss */
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }
  /* line 95, css/_grid.scss */
  .col-lg-5 {
    display: block;
    position: relative;
    width: 41.66667%;
  }
  /* line 99, css/_grid.scss */
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }
  /* line 95, css/_grid.scss */
  .col-lg-6 {
    display: block;
    position: relative;
    width: 50%;
  }
  /* line 99, css/_grid.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  /* line 95, css/_grid.scss */
  .col-lg-7 {
    display: block;
    position: relative;
    width: 58.33333%;
  }
  /* line 99, css/_grid.scss */
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }
  /* line 95, css/_grid.scss */
  .col-lg-8 {
    display: block;
    position: relative;
    width: 66.66667%;
  }
  /* line 99, css/_grid.scss */
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }
  /* line 95, css/_grid.scss */
  .col-lg-9 {
    display: block;
    position: relative;
    width: 75%;
  }
  /* line 99, css/_grid.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  /* line 95, css/_grid.scss */
  .col-lg-10 {
    display: block;
    position: relative;
    width: 83.33333%;
  }
  /* line 99, css/_grid.scss */
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }
  /* line 95, css/_grid.scss */
  .col-lg-11 {
    display: block;
    position: relative;
    width: 91.66667%;
  }
  /* line 99, css/_grid.scss */
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }
  /* line 95, css/_grid.scss */
  .col-lg-12 {
    display: block;
    position: relative;
    width: 100%;
  }
  /* line 99, css/_grid.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
/* line 105, css/_grid.scss */
.pull-right {
  float: right;
}

/* line 108, css/_grid.scss */
.xs-hidden {
  display: none;
}

/* line 111, css/_grid.scss */
.xs-visible {
  display: block;
}

@media (max-width: 991px) {
  /* line 114, css/_grid.scss */
  .md-hidden {
    display: none;
  }
}

@media (max-width: 991px) {
  /* line 119, css/_grid.scss */
  .md-visible {
    display: block;
  }
}

@media (max-width: 1199px) {
  /* line 124, css/_grid.scss */
  .lg-hidden {
    display: none;
  }
}

@media (max-width: 1199px) {
  /* line 129, css/_grid.scss */
  .lg-visible {
    display: block;
  }
}

/* line 134, css/_grid.scss */
.visible {
  display: block;
}

/* line 137, css/_grid.scss */
.hidden {
  display: none;
}

/* line 1, css/_header.scss */
.main-header {
  position: relative;
  background: #fff url("images/header-bg.png") right center no-repeat;
  height: 180px;
}
@media (max-width: 1919px) {
  /* line 1, css/_header.scss */
  .main-header {
    height: 148px;
  }
}
@media (max-width: 991px) {
  /* line 1, css/_header.scss */
  .main-header {
    height: auto;
    text-align: center;
  }
  .button-row {
    display: contents;
  }
}
@media (max-width: 767px) {
  /* line 1, css/_header.scss */
  .main-header {
    background: #fff;
    height: 120px;
  }
}
@media (max-width: 767px) {
  /* line 16, css/_header.scss */
  .main-header .pull-right {
    float: none;
  }
}

/* line 23, css/_header.scss */
.home .main-header {
  background: #fff;
}

/* line 27, css/_header.scss */
.logo {
  display: block;
  margin: -6px 0 0 0;
}
/* line 30, css/_header.scss */
.logo img {
  width: 237px;
  height: 132px;
}
@media (max-width: 1919px) {
  /* line 30, css/_header.scss */
  .logo img {
    margin: -12px 0 0 18px;
    width: 201.45px;
    height: 112.2px;
  }
}
/* line 40, css/_header.scss */
.logo .mobile {
  display: none;
}
@media (max-width: 767px) {
  /* line 27, css/_header.scss */
  .logo {
    position: absolute;
    top: 53px;
    right: 10px;
    width: 130px;
    margin: 0;
  }
  /* line 50, css/_header.scss */
  .logo img {
    width: 100%;
    height: auto;
    margin: 0;
  }
  /* line 56, css/_header.scss */
  .logo .mobile {
    display: block;
  }
  /* line 60, css/_header.scss */
  .logo .desktop {
    display: none;
  }
  .button-row {
    width: 100% !important;
    padding-bottom: 5px;
    padding-left: 0px;
    text-align: center !important;
    display: contents;
  }
}

@media (max-width: 767px) {
  /* line 66, css/_header.scss */
  .main-nav {
    display: none;
    position: absolute;
    top: 120px;
    width: 100%;
    background: #fff;
    padding-bottom: 15px;
    border-bottom: 1px solid #ebebeb;
    z-index: 9999;
    left: 0%;
    overflow: auto;
    height: 400px;
  }
}
/* line 77, css/_header.scss */
.main-nav ul.sub-menu {
  display: none;
  position: absolute;
  top: 19px;
  right: -12px;
  min-width: 260px;
  padding: 12px 12px 0 0;
  text-align: right;
  background: #fff;
  z-index: 9999;
  border-right: 1px solid #ccc;
  width: 100%;
  margin-top:0 !important;
}
@media (max-width: 991px) {
  /* line 77, css/_header.scss */
  .main-nav ul.sub-menu {
    right: -12px;
    top: 27px;
    margin-top: 5px;
  }
}
@media (max-width: 767px) {
  /* line 77, css/_header.scss */
  .main-nav ul.sub-menu {
    position: static;
    display: block;
    text-align: center;
    border: 0;
    right: 0;
    padding: 12px 0 0 0;
  }
}
/* line 101, css/_header.scss */
.main-nav ul.sub-menu li {
  display: block;
  margin-right: 0;
  padding: 0 0 15px 0;
}
/* line 105, css/_header.scss */
.main-nav ul.sub-menu li:after {
  display: none;
}
/* line 113, css/_header.scss */
.main-nav ul {
  margin: 24px -9px 0 0;
  text-align: right;
}
@media (max-width: 991px) {
  /* line 113, css/_header.scss */
  .main-nav ul {
    text-align: center;
    margin: 24px 0 0 0;
  }
}
@media (max-width: 767px) {
  /* line 113, css/_header.scss */
  .main-nav ul {
    margin: 0;
  }
  /* line 124, css/_header.scss */
  .main-nav ul li {
    display: block;
  }
}
/* line 129, css/_header.scss */
.main-nav li {
  position: relative;
  margin-right: 33px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  /* line 129, css/_header.scss */
  .main-nav li {
    margin-right: 0;
    padding-top: 15px;
    padding-bottom: 0px;
  }
}
/* line 20, css/_elements.scss */
.main-nav li:after {
  width: 1px;
  height: 16px;
  right: -12px;
  top: 4px;
  background: #c2c2c2;
}
@media (max-width: 767px) {
  /* line 20, css/_elements.scss */
  .main-nav li:after {
    display: none;
  }
}
/* line 144, css/_header.scss */
.main-nav li:last-child:after {
  display: none;
}

/* line 158, css/_header.scss */
.btn-login {
  margin: 0 20px 0 0;
  padding: 9px 31px 8px 32px;
}
@media (max-width: 767px) {
  /* line 158, css/_header.scss */
  .btn-login {
    margin: 0;
  }
}
@media (max-width: 767px) {
  /* line 158, css/_header.scss */
  .btn-login {
    padding: 8px 20px 8px 20px;
  }
}

/* line 170, css/_header.scss */
.btn-register {
  position: relative;
  top: 3px;
  margin: 0 20px 0 0;
  text-transform: uppercase;
  font-family: "Helvetica LT W01 Roman", sans-serif;
  color: #363636;
  font-size: 12px;
  font-weight: bold;
  border-bottom: 1px solid #a5a5a5;
}
@media (max-width: 767px) {
  /* line 170, css/_header.scss */
  .btn-register {
    margin-right: 10px;
  }
}

@media (max-width: 767px) {
  /* line 187, css/_header.scss */
  .login-register {
    position: absolute;
    top: 50px;
    left: 0;
    margin: 10px;
    text-align: left;
    display: inline;
  }
  .main-header .btnnew {
    margin:5px 0px 0px 0px !important;
    padding: 12px;
    font-size: 12px;
    text-align: center;
 }
}

/* line 195, css/_header.scss */
.socials {
  margin: 45px 13px 0 0;
  text-align: right;
}
@media (max-width: 1919px) {
  /* line 195, css/_header.scss */
  .socials {
    margin: 15px 13px 0 0;
  }
}
@media (max-width: 991px) {
  /* line 195, css/_header.scss */
  .socials {
    margin: 45px 0 0 0;
    text-align: right;
  }
}
@media (max-width: 767px) {
  /* line 195, css/_header.scss */
  .socials {
    position: absolute;
    top: 17px;
    right: 10px;
    margin: 0;
  }

}
/* line 213, css/_header.scss */
.socials li {
  margin-right: 10px;
}
/* line 217, css/_header.scss */
.socials a img {
  vertical-align: top;
}

/* line 223, css/_header.scss */
.menu-trigger {
  display: none;
}
@media (max-width: 767px) {
  /* line 223, css/_header.scss */
  .menu-trigger {
    position: absolute;
    top: 0px;
    left: 0px;
    display: block;
    margin: 0;
    width: 30px;
    padding: 20px;
  }
  .socials li {
    width: 22px;
    margin-right: 0px;
    display: inline-table;
  }
  .socials form {
    width: 100px;
    margin-right: 0px;
  }
}
/* line 234, css/_header.scss */
.menu-trigger span {
  display: block;
  width: 30px;
  height: 3px;
  background: #363636;
  margin-bottom: 4px;
}

/* line 1, css/_footer.scss */
.main-footer {
  padding: 95px 0 0 0;
  text-align: center;
  font-family: "Helvetica LT W01 Roman", sans-serif;
  border-top: 1px solid #ebebeb;
}
@media (max-width: 767px) {
  /* line 1, css/_footer.scss */
  .main-footer {
    padding: 55px 0 0 0;
  }
}
@media (min-width: 1919px) {
  /* line 9, css/_footer.scss */
  .main-footer ul {
    margin-left: -127px;
  }
}
@media (max-width: 991px) {
  /* line 9, css/_footer.scss */
  .main-footer ul {
    margin-left: 20px;
  }
}
@media (max-width: 767px) {
  /* line 9, css/_footer.scss */
  .main-footer ul {
    margin-left: 0;
    padding: 0 12px 0 12px;
  }
}
/* line 23, css/_footer.scss */
.main-footer li {
  position: relative;
  margin-right: 50px;
  display: inline-block !important;
}
@media (max-width: 991px) {
  /* line 23, css/_footer.scss */
  .main-footer li {
    margin-right: 20px;
  }
}
/* line 20, css/_elements.scss */
.main-footer li:after {
  width: 1px;
  height: 16px;
  right: -25px;
  top: 4px;
  background: #c2c2c2;
}
@media (max-width: 991px) {
  /* line 20, css/_elements.scss */
  .main-footer li:after {
    right: -10px;
  }
}
@media (max-width: 767px) {
  /* line 20, css/_elements.scss */
  .main-footer li:after {
    display: none;
  }
}
/* line 41, css/_footer.scss */
.main-footer li:last-child {
  margin-right: 0;
}
/* line 44, css/_footer.scss */
.main-footer li:last-child:after {
  display: none;
}
@media (max-width: 767px) {
  /* line 23, css/_footer.scss */
  .main-footer li {
    display: block !important;
    margin-right: 0;
  }
}
/* line 52, css/_footer.scss */
.main-footer a {
  font-size: 16px;
}
@media (max-width: 991px) {
  /* line 52, css/_footer.scss */
  .main-footer a {
    font-size: 12px;
  }
}

/* line 60, css/_footer.scss */
.footer-top-menu {
  margin-bottom: 23px;
}

/* line 63, css/_footer.scss */
.copyright {
  margin: 0 0 0 -170px;
  padding-top: 68px;
  font-size: 11px;
  color: #b7b7b7;
}
@media (max-width: 991px) {
  /* line 63, css/_footer.scss */
  .copyright {
    margin: 0 0 0 0;
    padding-top: 10px;
  }
}

/* line 1, css/_sidebar.scss */
.content .side-menu, .content-column-right .menu, .about-team .menu {
  margin: 22px 0 0 0;
  width: 100%;
  border: 1px solid #ebebeb;
}
@media (max-width: 1919px) {
  /* line 1, css/_sidebar.scss */
  .content .side-menu, .content-column-right .menu, .about-team .menu {
    width: 100%;
  }
}
/* line 10, css/_sidebar.scss */
.content .side-menu li, .content-column-right .menu li, .about-team .menu li {
  position: relative;
  border-bottom: 1px solid #ebebeb;
}
/* line 20, css/_elements.scss */
.content .side-menu li:after, .content-column-right .menu li:after, .about-team .menu li:after {
  width: 10px;
  height: 16px;
  right: 20px;
  top: 50%;
  margin-top: -10px;
  background: url("images/ico-arrow-menu.png") no-repeat;
}
/* line 19, css/_sidebar.scss */
.content .side-menu li:last-child, .content-column-right .menu li:last-child, .about-team .menu li:last-child {
  border: 0;
}
/* line 22, css/_sidebar.scss */
.content .side-menu li.btn-cta-wrapper, .content-column-right .menu li.btn-cta-wrapper, .about-team .menu li.btn-cta-wrapper {
  background: #3abba0;
}
/* line 24, css/_sidebar.scss */
.content .side-menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper a {
  color: #fff !important;
}
/* line 20, css/_elements.scss */
.content .side-menu li.btn-cta-wrapper:after, .content-column-right .menu li.btn-cta-wrapper:after, .about-team .menu li.btn-cta-wrapper:after {
  width: 10px;
  height: 16px;
  background: url("images/ico-arrow.png") no-repeat;
}
/* line 35, css/_sidebar.scss */
.content .side-menu a, .content-column-right .menu a, .about-team .menu a {
  font-family: "Helvetica LT W01 Roman";
  display: block;
  padding: 17px 20px 20px 20px;
}
/* line 41, css/_sidebar.scss */
.content .side-menu + .btn-cta, .content .side-menu + .btn-cta-alt, .content .side-menu li.btn-cta-wrapper .side-menu + a, .content .content-column-right .menu li.btn-cta-wrapper .side-menu + a, .content-column-right .menu li.btn-cta-wrapper .content .side-menu + a, .content .about-team .menu li.btn-cta-wrapper .side-menu + a, .about-team .menu li.btn-cta-wrapper .content .side-menu + a, .content-column-right .menu + .btn-cta, .about-team .menu + .btn-cta, .content-column-right .menu + .btn-cta-alt, .about-team .menu + .btn-cta-alt, .content-column-right .content .side-menu li.btn-cta-wrapper .menu + a, .content .side-menu li.btn-cta-wrapper .content-column-right .menu + a, .about-team .content .side-menu li.btn-cta-wrapper .menu + a, .content .side-menu li.btn-cta-wrapper .about-team .menu + a, .content-column-right .menu li.btn-cta-wrapper .menu + a, .content-column-right .menu li.btn-cta-wrapper .about-team .menu + a, .about-team .menu li.btn-cta-wrapper .content-column-right .menu + a, .about-team .menu li.btn-cta-wrapper .menu + a {
  width: 83%;
}
/* line 44, css/_sidebar.scss */
.content .side-menu + .btn-cta span:after, .content .side-menu + .btn-cta-alt span:after, .content .side-menu li.btn-cta-wrapper .side-menu + a span:after, .content .content-column-right .menu li.btn-cta-wrapper .side-menu + a span:after, .content-column-right .menu li.btn-cta-wrapper .content .side-menu + a span:after, .content .about-team .menu li.btn-cta-wrapper .side-menu + a span:after, .about-team .menu li.btn-cta-wrapper .content .side-menu + a span:after, .content-column-right .menu + .btn-cta span:after, .about-team .menu + .btn-cta span:after, .content-column-right .menu + .btn-cta-alt span:after, .about-team .menu + .btn-cta-alt span:after, .content-column-right .content .side-menu li.btn-cta-wrapper .menu + a span:after, .content .side-menu li.btn-cta-wrapper .content-column-right .menu + a span:after, .about-team .content .side-menu li.btn-cta-wrapper .menu + a span:after, .content .side-menu li.btn-cta-wrapper .about-team .menu + a span:after, .content-column-right .menu li.btn-cta-wrapper .menu + a span:after, .about-team .menu li.btn-cta-wrapper .menu + a span:after {
  right: 14px;
}
@media (max-width: 1919px) {
  /* line 44, css/_sidebar.scss */
  .content .side-menu + .btn-cta span:after, .content .side-menu + .btn-cta-alt span:after, .content .side-menu li.btn-cta-wrapper .side-menu + a span:after, .content .content-column-right .menu li.btn-cta-wrapper .side-menu + a span:after, .content-column-right .menu li.btn-cta-wrapper .content .side-menu + a span:after, .content .about-team .menu li.btn-cta-wrapper .side-menu + a span:after, .about-team .menu li.btn-cta-wrapper .content .side-menu + a span:after, .content-column-right .menu + .btn-cta span:after, .about-team .menu + .btn-cta span:after, .content-column-right .menu + .btn-cta-alt span:after, .about-team .menu + .btn-cta-alt span:after, .content-column-right .content .side-menu li.btn-cta-wrapper .menu + a span:after, .content .side-menu li.btn-cta-wrapper .content-column-right .menu + a span:after, .about-team .content .side-menu li.btn-cta-wrapper .menu + a span:after, .content .side-menu li.btn-cta-wrapper .about-team .menu + a span:after, .content-column-right .menu li.btn-cta-wrapper .menu + a span:after, .about-team .menu li.btn-cta-wrapper .menu + a span:after {
    right: -6px;
  }
}
@media (max-width: 1919px) {
  /* line 41, css/_sidebar.scss */
  .content .side-menu + .btn-cta, .content .side-menu + .btn-cta-alt, .content .side-menu li.btn-cta-wrapper .side-menu + a, .content .content-column-right .menu li.btn-cta-wrapper .side-menu + a, .content-column-right .menu li.btn-cta-wrapper .content .side-menu + a, .content .about-team .menu li.btn-cta-wrapper .side-menu + a, .about-team .menu li.btn-cta-wrapper .content .side-menu + a, .content-column-right .menu + .btn-cta, .about-team .menu + .btn-cta, .content-column-right .menu + .btn-cta-alt, .about-team .menu + .btn-cta-alt, .content-column-right .content .side-menu li.btn-cta-wrapper .menu + a, .content .side-menu li.btn-cta-wrapper .content-column-right .menu + a, .about-team .content .side-menu li.btn-cta-wrapper .menu + a, .content .side-menu li.btn-cta-wrapper .about-team .menu + a, .content-column-right .menu li.btn-cta-wrapper .menu + a, .content-column-right .menu li.btn-cta-wrapper .about-team .menu + a, .about-team .menu li.btn-cta-wrapper .content-column-right .menu + a, .about-team .menu li.btn-cta-wrapper .menu + a {
    width: 100%;
  }
}

/* line 57, css/_sidebar.scss */
.side-slider {
  width: 83%;
  background: #3abba0;
  color: #fff;
  margin: 134px 0 0 0;
  padding: 0 0 30px 0;
}
@media (max-width: 1919px) {
  /* line 57, css/_sidebar.scss */
  .side-slider {
    width: 100%;
  }
}
/* line 66, css/_sidebar.scss */
.side-slider blockquote {
  line-height: 29px;
  padding: 24px 0 0 0;
  font-style: italic;
}
/* line 72, css/_sidebar.scss */
.side-slider blockquote p {
  padding: 0 30px 0 30px;
  font-size: 22px;
  text-align: right;
}
/* line 76, css/_sidebar.scss */
.side-slider blockquote footer {
  text-align: right;
}
/* line 79, css/_sidebar.scss */
.side-slider blockquote footer p {
  padding: 45px 22px 0 0;
  line-height: 18px;
}
/* line 86, css/_sidebar.scss */
.side-slider .slick-dots {
  text-align: right;
  margin: 5px 24px 0 0;
}
/* line 90, css/_sidebar.scss */
.side-slider .slick-dots li {
  display: inline-block;
  margin: 0 0 0 15px;
}
/* line 93, css/_sidebar.scss */
.side-slider .slick-dots li button {
  padding: 0;
  border: 0;
  font-size: 0;
  background: #fff;
  width: 8px;
  height: 8px;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  border-radius: 8px;
  cursor: pointer;
}
/* line 102, css/_sidebar.scss */
.side-slider .slick-dots li button:focus {
  outline: 0;
}
/* line 107, css/_sidebar.scss */
.side-slider .slick-dots li.slick-active button {
  opacity: 0.4;
}

/* line 115, css/_sidebar.scss */
.help-box {
  background: #3abba0;
  color: #fff;
  width: 83%;
  margin: 21px 0 0 0;
  padding: 14px 16px 19px 21px;
  letter-spacing: -0.5px;
}
@media (max-width: 991px) {
  /* line 115, css/_sidebar.scss */
  .help-box {
    width: 100%;
  }
}
/* line 125, css/_sidebar.scss */
.help-box p {
  margin: 0;
  line-height: 21px;
}
/* line 128, css/_sidebar.scss */
.help-box p.help-box-phone {
  padding: 13px 0 0 41px;
  font-family: "Helvetica LT W01 Roman";
  font-size: 24px;
  letter-spacing: 0.5px;
}
@media (max-width: 991px) {
  /* line 128, css/_sidebar.scss */
  .help-box p.help-box-phone {
    padding: 13px 0 0 0;
  }
}
/* line 136, css/_sidebar.scss */
.help-box p.help-box-phone span {
  position: relative;
}
/* line 20, css/_elements.scss */
.help-box p.help-box-phone span:after {
  width: 20px;
  height: 25px;
  right: -26px;
  top: 50%;
  margin-top: -16px;
  background: url("images/ico-phone.png") no-repeat;
}

/* line 150, css/_sidebar.scss */
.content-column-right h3, .about-team h3 {
  font-weight: normal;
  margin: 0;
}

/* line 157, css/_sidebar.scss */
.widget {
  margin-bottom: 37px;
  font-family: "Helvetica LT W01 Roman", sans-serif;
}

/* line 167, css/_sidebar.scss */
.widget_search form {
  position: relative;
  margin: 13px 0 0 1px;
}
/* line 171, css/_sidebar.scss */
.widget_search input {
  width: 67%;
  padding: 13px 0 13px 15px;
  border-right: 0;
  letter-spacing: 0.6px;
  font-size: 12pt;
  height: 48px;
}
/* line 178, css/_sidebar.scss */
.widget_search input[type="submit"] {
  position: absolute;
  padding: 0;
  width: 61px;
  height: 48px;
  background-image: url("images/ico-search.png");
  background-repeat: no-repeat;
  background-position: 20px 14px;
  font-size: 0;
  border-left: 0;
  border-right: 1px solid #ebebeb;
  cursor: pointer;
}
@media only screen and (max-device-width: 767px) and (-webkit-min-device-pixel-ratio: 1) {
  /* line 178, css/_sidebar.scss */
  .widget_search input[type="submit"] {
    top: 2px;
    height: 48px;
  }
}
@media only screen and (max-device-width: 991px) and (-webkit-min-device-pixel-ratio: 2) {
  /* line 178, css/_sidebar.scss */
  .widget_search input[type="submit"] {
    top: 2px;
    height: 48px;
  }
}

/* line 202, css/_sidebar.scss */
.widget_categories ul {
  margin: 18px 0 0 0;
  font-size: 14px;
}
/* line 206, css/_sidebar.scss */
.widget_categories a {
  color: #363636;
}

/* line 1, css/_content.scss */
.content {
  padding-bottom: 50px;
}
@media (max-width: 1200px) {
  /* line 1, css/_content.scss */
  .content {
    padding: 50px 0 50px 0;
  }
}
@media (max-width: 767px) {
  /* line 1, css/_content.scss */
  .content {
    padding: 50px 0 0 0;
  }
}
/* line 10, css/_content.scss */
.content h2 {
  margin-bottom: 28px;
  font-family: "Helvetica LT W01 Roman";
  font-weight: normal;
  letter-spacing: 0.1px;
  font-size: 26px;
  text-align: left;
}
.content h3 {
  margin-bottom: 10px;
}

/* line 25, css/_content.scss */
.content .btn-cta, .content .btn-cta-alt, .content .side-menu li.btn-cta-wrapper a, .content .content-column-right .menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper .content a, .content .about-team .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper .content a {
  padding: 12px 27px 12px 28px;
}
/* line 28, css/_content.scss */
.content .btn-cta span:after, .content .btn-cta-alt span:after, .content .side-menu li.btn-cta-wrapper a span:after, .content .content-column-right .menu li.btn-cta-wrapper a span:after, .content-column-right .menu li.btn-cta-wrapper .content a span:after, .content .about-team .menu li.btn-cta-wrapper a span:after, .about-team .menu li.btn-cta-wrapper .content a span:after {
  right: -16px;
}

/* line 35, css/_content.scss */
.learning_objectives {
	padding: 10px 15px 0px 15px;
	border: 1px solid #dddddd;
	font-size: 90%;
}
.short-top {
  padding-top: 10px !important;
}
.content-column-left {
  padding-top: 59px;
  padding-right: 33px;
  padding-left: 20px;
  font-family: "Helvetica LT W01 Roman", sans-serif;
}
@media (max-width: 1200px) {
  /* line 35, css/_content.scss */
  .content-column-left {
    padding: 0 0 80px 18px;
  }
}
@media (max-width: 991px) {
  /* line 35, css/_content.scss */
  .content-column-left {
    padding: 0 40px 80px 0;
  }
}
@media (max-width: 767px) {
  /* line 35, css/_content.scss */
  .content-column-left {
    padding: 0 20px 50px 20px;
  }
}
/* line 50, css/_content.scss */
.content-column-left ul {
  margin: 40px 0 21px 0;
  padding: 0;
}
/* line 54, css/_content.scss */
.content-column-left li {
  position: relative;
  padding: 0 0 17px 34px;
  letter-spacing: 0;
  line-height: 22px;
}
/* line 20, css/_elements.scss */
.content-column-left li:before {
  width: 6px;
  height: 6px;
  left: 11px;
  top: 8px;
  background: #3abba0;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
/* line 66, css/_content.scss */
.content-column-left a {
  text-decoration: underline;
}
/* line 69, css/_content.scss */
.content-column-left .btn-cta, .content-column-left .btn-cta-alt, .content-column-left .content .side-menu li.btn-cta-wrapper a, .content .side-menu li.btn-cta-wrapper .content-column-left a, .content-column-left .content-column-right .menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper .content-column-left a, .content-column-left .about-team .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper .content-column-left a {
  display: block;
  width: 417px;
  margin-bottom: 20px;
  text-decoration: none;
}
@media (max-width: 767px) {
  /* line 69, css/_content.scss */
  .content-column-left .btn-cta, .content-column-left .btn-cta-alt, .content-column-left .content .side-menu li.btn-cta-wrapper a, .content .side-menu li.btn-cta-wrapper .content-column-left a, .content-column-left .content-column-right .menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper .content-column-left a, .content-column-left .about-team .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper .content-column-left a {
    width: 100%;
  }
}
/* line 78, css/_content.scss */
.content-column-left .btn-form {
  width: auto;
}
@media (max-width: 991px) {
  /* line 78, css/_content.scss */
  .content-column-left .btn-form {
    width: 50%;
    margin: 0 auto;
  }
}
/* line 85, css/_content.scss */
.content-column-left .btn-form span:after {
  right: 36px;
  margin-top: -8px;
}
@media (max-width: 1919px) {
  /* line 90, css/_content.scss */
  .content-column-left .btn-form span:after {
    right: -11px;
  }
}
/* line 96, css/_content.scss */
.content-column-left .btn-sub {
  width: 340px;
  margin: 41px auto;
  padding: 14px 56px 38px 58px;
}
@media (max-width: 767px) {
  /* line 96, css/_content.scss */
  .content-column-left .btn-sub {
    width: 100%;
    margin: 41px 0 0 0;
  }
}

/* line 107, css/_content.scss */
.content-column-right, .about-team {
  padding-top: 59px;
}
@media (max-width: 1200px) {
  /* line 107, css/_content.scss */
  .content-column-right, .about-team {
    padding: 0 0 50px 18px;
  }
}
@media (max-width: 991px) {
  /* line 107, css/_content.scss */
  .content-column-right, .about-team {
    padding: 0 0 50px 0;
  }
}
@media (max-width: 767px) {
  /* line 107, css/_content.scss */
  .content-column-right, .about-team {
    padding: 0 20px 50px 20px;
  }
}

/* line 120, css/_content.scss */
.content-intro {
  font-family: "Helvetica LT W01 Roman", sans-serif;
  margin: 20px 0 16px 0;
}

/* line 133, css/_content.scss */
.custom-link {
  display: inline-block;
  width: 30%;
  margin: 0 24px 20px 0;
}
@media (max-width: 767px) {
  /* line 133, css/_content.scss */
  .custom-link {
    display: block;
    width: 100%;
    margin: 0 0 20px 0;
  }
}

/* line 144, css/_content.scss */
.sub-box {
  width: 52%;
  margin: 34px 0 0 -5px;
  padding: 26px 19px 0 19px;
  line-height: 37px;
  border: 1px solid #ebebeb;
}
@media (max-width: 1919px) {
  /* line 144, css/_content.scss */
  .sub-box {
    margin: 34px 0 0 0;
  }
}
@media (max-width: 991px) {
  /* line 144, css/_content.scss */
  .sub-box {
    width: 100%;
    text-align: center;
  }
}
@media (max-width: 767px) {
  /* line 144, css/_content.scss */
  .sub-box {
    padding: 26px 19px 26px 19px;
  }
}
/* line 161, css/_content.scss */
.sub-box span {
  display: block;
  margin: 0 0 -27px 0;
}

/* line 1, css/_service.scss */
.content.service {
  padding-bottom: 74px;
}
@media (max-width: 1200px) {
  /* line 1, css/_service.scss */
  .content.service {
    padding: 50px 0 50px 0;
  }
}
/* line 6, css/_service.scss */
.content.service .content-intro {
  margin: -8px 0 18px 0;
}

/* line 12, css/_service.scss */
.single-services h2.section-title {
  color: #3abba0;
}
/* line 15, css/_service.scss */
.single-services .content-column-left, .single-services .content-column-right, .single-services .about-team {
  padding-top: 106px;
}
@media (max-width: 767px) {
  /* line 19, css/_service.scss */
  .single-services .content-column-left {
    padding-top: 0;
  }
}

/* line 26, css/_service.scss */
.services-list {
  padding-bottom: 50px;
}
@media (max-width: 767px) {
  /* line 26, css/_service.scss */
  .services-list {
    padding: 75px 10px 75px 10px;
  }
}
/* line 31, css/_service.scss */
.services-list .content-intro {
  margin: 0 0 41px 0;
  letter-spacing: -0.6px;
}
/* line 35, css/_service.scss */
.services-list .content-column-left {
  padding-top: 75px;
  padding-right: 33px;
  font-family: "Helvetica LT W01 Roman";
  letter-spacing: -0.1px;
}
/* line 41, css/_service.scss */
.services-list .content-column-right, .services-list .about-team {
  padding-top: 75px;
}

/* line 46, css/_service.scss */
.service-boxes {
  margin: 0 0 0 140px;
}
/* line 9, css/_mixins.scss */
.service-boxes:after {
  content: '';
  display: table;
  clear: both;
}
@media (max-width: 767px) {
  /* line 46, css/_service.scss */
  .service-boxes {
    margin: 0;
  }
}

/* line 54, css/_service.scss */
.service-box {
  position: relative;
  float: left;
  width: 460px;
  min-height: 450px;
  margin-bottom: 21px;
  padding: 0 0 30px 0;
  border: 1px solid #ebebeb;
  letter-spacing: -0.7px;
  text-align: center;
}
@media (max-width: 1919px) {
  /* line 54, css/_service.scss */
  .service-box {
    min-height: 400px;
    width: 460px;
  }
}
@media (max-width: 1024px) {
  /* line 54, css/_service.scss */
  .service-box {
    float: none;
    width: 100%;
  }
}
/* line 72, css/_service.scss */
.service-box.right {
  margin-right: 0;
}
/* line 75, css/_service.scss */
.service-box.tall {
  min-height: 500px;
  padding: 0 0 55px 0;
}
/* line 79, css/_service.scss */
.service-box.small {
  min-height: 313px;
}
/* line 82, css/_service.scss */
.service-box h2 {
  padding: 24px 23px 0 21px;
  margin-bottom: 21px;
  color: #3abba0;
  font-family: "Helvetica LT W01 Roman";
  letter-spacing: -0.2px;
  text-align: left;
  font-size: 18px;
}
/* line 91, css/_service.scss */
.service-box p {
  font-family: "Helvetica LT W01 Roman", sans-serif;
  line-height: 23px;
  text-align: left;
  padding: 0 23px 0 21px;
}
/* line 97, css/_service.scss */
.service-box a {
  text-decoration: underline;
}
/* line 100, css/_service.scss */
.service-box .service-desc {
  padding-bottom: 58px;
}
.service-desc {
  padding-bottom: 5px;
}
/* line 103, css/_service.scss */
.service-box .btn-wrapper {
  position: absolute;
  padding: 0 23px 0 21px;
  width: 100%;
  bottom: 30px;
}
/* line 109, css/_service.scss */
.service-box .btn-cta, .service-box .btn-cta-alt, .service-box .content .side-menu li.btn-cta-wrapper a, .content .side-menu li.btn-cta-wrapper .service-box a, .service-box .content-column-right .menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper .service-box a, .service-box .about-team .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper .service-box a {
  padding: 12px 57px 12px 57px;
  text-decoration: none;
}
@media (max-width: 991px) {
  /* line 109, css/_service.scss */
  .service-box .btn-cta, .service-box .btn-cta-alt, .service-box .content .side-menu li.btn-cta-wrapper a, .content .side-menu li.btn-cta-wrapper .service-box a, .service-box .content-column-right .menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper .service-box a, .service-box .about-team .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper .service-box a {
    margin: 10px 0 0 0;
    padding: 12px 27px 12px 27px;
    font-size: 14px;
  }
}

/* line 120, css/_service.scss */
.services-quote {
  padding: 25px 0 0 0;
}
/* line 122, css/_service.scss */
.services-quote blockquote {
  position: relative;
  left: 30px;
  padding: 24px 92px 20px 61px;
  background: #3abba0;
  color: #fff;
  font-style: italic;
}
@media (max-width: 767px) {
  /* line 122, css/_service.scss */
  .services-quote blockquote {
    padding: 20px;
  }
}
/* line 20, css/_elements.scss */
.services-quote blockquote:before {
  width: 9999px;
  height: 100%;
  left: -9998px;
  top: 0;
  background: #3abba0;
}
/* line 143, css/_service.scss */
.services-quote footer {
  padding: 6px 0 0 0;
  font-family: "Helvetica LT W01 Bold";
  font-style: italic;
  text-align: right;
}

/* line 152, css/_service.scss */
.services-video {
  padding: 42px 0 0 0;
  text-align: center;
}
/* line 155, css/_service.scss */
.services-video h2.section-title {
  margin: 0 0 0 -170px;
  letter-spacing: 0.3px;
}
@media (max-width: 991px) {
  /* line 155, css/_service.scss */
  .services-video h2.section-title {
    margin: 0;
  }
}

/* line 165, css/_service.scss */
.services-video-wrapper {
  margin: 42px 0 0 -163px;
}
@media (max-width: 991px) {
  /* line 165, css/_service.scss */
  .services-video-wrapper {
    margin: 42px 0 0 0;
  }
}
@media (max-width: 991px) {
  /* line 170, css/_service.scss */
  .services-video-wrapper iframe {
    max-width: 100%;
  }
}

/* line 1, css/_about.scss */
.content.about {
  padding-bottom: 176px;
}
@media (max-width: 1200px) {
  /* line 1, css/_about.scss */
  .content.about {
    padding: 50px 0 50px 0;
  }
}
/* line 6, css/_about.scss */
.content.about .content-column-left {
  padding-top: 84px;
  padding-right: 44px;
}
@media (max-width: 767px) {
  /* line 6, css/_about.scss */
  .content.about .content-column-left {
    padding: 0 20px 0px 20px;
  }
}
/* line 13, css/_about.scss */
.content.about .content-column-right, .content.about .about-team {
  padding-top: 84px;
}
/* line 16, css/_about.scss */
.content.about .content-intro {
  margin: -7px 0 16px 0;
}

/* line 21, css/_about.scss */
.about-team {
  padding-top: 72px;
  text-align: center;
}
/* line 25, css/_about.scss */
.about-team h2.section-title {
  margin: 0 0 21px 0;
}
@media (max-width: 991px) {
  /* line 25, css/_about.scss */
  .about-team h2.section-title {
    margin: 0 0 21px 0;
    text-align: left;
  }
}

/* line 9, css/_mixins.scss */
.team-members:after {
  content: '';
  display: table;
  clear: both;
}

/* line 38, css/_about.scss */
.team-member {
  position: relative;
  float: left;
  width: 33.333333%;
  min-height: 235px;
  padding: 0 10px 43px 10px;
  font-family: "Helvetica LT W01 Roman", sans-serif;
}
@media (max-width: 991px) {
  /* line 38, css/_about.scss */
  .team-member {
    float: none;
    display: inline-block;
  }
}
@media (max-width: 767px) {
  /* line 38, css/_about.scss */
  .team-member {
    width: 100%;
  }
}
/* line 55, css/_about.scss */
.team-member h2 {
  position: relative;
  margin: 18px 0 0 5px;
  color: #3abba0;
  font-family: "Helvetica LT W01 Roman";
  line-height: 16px;
  cursor: pointer;
  text-align:center;
  font-size: 18px;
}
/* line 20, css/_elements.scss */
.team-member h2:after {
  width: 10px;
  height: 16px;
  right: 20px;
  top: 0;
  background: url("images/ico-arrow-menu.png") center center no-repeat;
}
/* line 69, css/_about.scss */
.team-member h3 {
  margin: 6px 0 0 7px;
  font-size: 14px;
  font-weight: normal;
  line-height: 14px;
  text-align:center;
}
/* line 76, css/_about.scss */
.team-member p {
  margin: 6px 0 0 12px;
  font-size: 14px;
  line-height: 14px;
  font-style: italic;
}
/* line 82, css/_about.scss */
.team-member p a {
  color: #363636;
}
/* line 87, css/_about.scss */
.team-member img {
  height: 150px;
  width: auto;
}

/* line 93, css/_about.scss */
.member-description {
  display: none;
  position: absolute;
  width: 1288px;
  margin: -9px 0 0 -143px;
  padding: 79px 190px 74px 190px;
  top: 0;
  background: rgba(0, 0, 0, 0.67);
  color: #fff;
  text-align: left;
  letter-spacing: -0.5px;
  z-index: 999;
}
@media (max-width: 1919px) {
  /* line 93, css/_about.scss */
  .member-description {
    width: 100%;
    margin: -9px 0 0 0;
    padding: 79px 100px 74px 100px;
  }
}
@media (max-width: 991px) {
  /* line 93, css/_about.scss */
  .member-description {
    padding: 79px 50px 74px 50px;
    top: 50%;
  }
}
/* line 116, css/_about.scss */
.member-description h2 {
  color: #3abba0;
  margin: 0 0 60px 0;
}

/* line 122, css/_about.scss */
.member-description-close {
  position: absolute;
  right: 55px;
  top: 56px;
  color: #fff;
  font-family: "Helvetica LT W01 Roman", sans-serif;
  font-size: 34px;
}

/* line 2, css/_faq.scss */
.content.faq dt {
  margin: 0 0 16px 0;
  text-decoration: underline;
  cursor: pointer;
}
/* line 6, css/_faq.scss */
.content.faq dt.open {
  color: #3abba0;
  font-weight: bold;
  text-decoration: none;
}
/* line 12, css/_faq.scss */
.content.faq dd {
  display: none;
  color: #3abba0;
}

/* line 2, css/_contact.scss */
.content.contact .content-intro {
  margin: 38px 0 29px 0;
}
/* line 6, css/_contact.scss */
.content.contact .contact-form {
  margin: 28px 0 0 0;
}

/* line 11, css/_contact.scss */
.contact-form {
  overflow: hidden;
}
/* line 13, css/_contact.scss */
.contact-form .wpcf7-form {
  margin: 21px 0 0 0;
  width: 500px;
}
@media (max-width: 991px) {
  /* line 13, css/_contact.scss */
  .contact-form .wpcf7-form {
    margin: 40px 0 0 0;
    width: 100%;
  }
}
/* line 24, css/_contact.scss */
.contact-form input {
  width: 100%;
  padding: 17px 15px 15px 15px;
  letter-spacing: 0.6px;
}
/* line 61, ../../../../../../../usr/share/compass/frameworks/compass/stylesheets/compass/css3/_user-interface.scss */
.contact-form input:-moz-placeholder {
  color: #464646;
}
/* line 64, ../../../../../../../usr/share/compass/frameworks/compass/stylesheets/compass/css3/_user-interface.scss */
.contact-form input::-moz-placeholder {
  color: #464646;
}
/* line 67, ../../../../../../../usr/share/compass/frameworks/compass/stylesheets/compass/css3/_user-interface.scss */
.contact-form input:-ms-input-placeholder {
  color: #464646;
}
/* line 56, ../../../../../../../usr/share/compass/frameworks/compass/stylesheets/compass/css3/_user-interface.scss */
.contact-form input::-webkit-input-placeholder {
  color: #464646;
}
/* line 32, css/_contact.scss */
.contact-form input[type="checkbox"] {
  width: 25px;
  height: 23px;
  padding: 0;
}
/* line 37, css/_contact.scss */
.contact-form textarea {
  width: 100%;
  height: 150px;
  padding: 17px 15px 15px 15px;
  letter-spacing: 0.6px;
  resize: none;
}
/* line 61, ../../../../../../../usr/share/compass/frameworks/compass/stylesheets/compass/css3/_user-interface.scss */
.contact-form textarea:-moz-placeholder {
  color: #464646;
}
/* line 64, ../../../../../../../usr/share/compass/frameworks/compass/stylesheets/compass/css3/_user-interface.scss */
.contact-form textarea::-moz-placeholder {
  color: #464646;
}
/* line 67, ../../../../../../../usr/share/compass/frameworks/compass/stylesheets/compass/css3/_user-interface.scss */
.contact-form textarea:-ms-input-placeholder {
  color: #464646;
}
/* line 56, ../../../../../../../usr/share/compass/frameworks/compass/stylesheets/compass/css3/_user-interface.scss */
.contact-form textarea::-webkit-input-placeholder {
  color: #464646;
}
/* line 47, css/_contact.scss */
.contact-form select {
  width: 100%;
  height: 49px;
  padding: 17px 15px 15px 15px;
  background-image: url("images/ico-arrow-down.png");
  background-repeat: no-repeat;
  background-position: 90% center;
}
/* line 55, css/_contact.scss */
.contact-form .form-row {
  overflow: hidden;
}
/* line 58, css/_contact.scss */
.contact-form .form-column {
  float: left;
  width: 50%;
}
@media (max-width: 767px) {
  /* line 58, css/_contact.scss */
  .contact-form .form-column {
    float: none;
    width: 100%;
  }
}
/* line 66, css/_contact.scss */
.contact-form .half-width {
  float: left;
  width: 48%;
  margin: 0 10px 21px 0;
}
@media (max-width: 991px) {
  /* line 66, css/_contact.scss */
  .contact-form .half-width {
    float: none;
    width: 100%;
  }
}
/* line 75, css/_contact.scss */
.contact-form .full-width {
  margin: 0 10px 0 0;
}
@media (max-width: 991px) {
  /* line 75, css/_contact.scss */
  .contact-form .full-width {
    margin: 0;
  }
}
/* line 80, css/_contact.scss */
.contact-form .full-width.has-label {
  overflow: hidden;
  margin: 0 0 10px 0;
}
/* line 83, css/_contact.scss */
.contact-form .full-width.has-label br {
  display: none;
}
/* line 86, css/_contact.scss */
.contact-form .full-width.has-label label {
  float: left;
  width: 41%;
  padding: 17px 0 0 0;
  font-size: 18px;
}
@media (max-width: 991px) {
  /* line 86, css/_contact.scss */
  .contact-form .full-width.has-label label {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  /* line 86, css/_contact.scss */
  .contact-form .full-width.has-label label {
    float: none;
    display: block;
    width: 100%;
  }
}
/* line 100, css/_contact.scss */
.contact-form .full-width.has-label input {
  float: left;
  width: 37%;
}
@media (max-width: 1919px) {
  /* line 100, css/_contact.scss */
  .contact-form .full-width.has-label input {
    width: 38%;
  }
}
@media (max-width: 991px) {
  /* line 100, css/_contact.scss */
  .contact-form .full-width.has-label input {
    width: 59%;
  }
}
@media (max-width: 767px) {
  /* line 100, css/_contact.scss */
  .contact-form .full-width.has-label input {
    float: none;
    display: block;
    width: 100%;
  }
}
/* line 118, css/_contact.scss */
.contact-form .half-input select, .contact-form .half-input input, .contact-form .half-input textarea {
  width: 49%;
}
@media (max-width: 991px) {
  /* line 118, css/_contact.scss */
  .contact-form .half-input select, .contact-form .half-input input, .contact-form .half-input textarea {
    width: 100%;
  }
}
/* line 125, css/_contact.scss */
.contact-form input[type="submit"] {
  width: auto;
  margin: 22px 0 0 0;
  padding: 18px 88px 14px 80px;
  text-transform: uppercase;
  color: #fff;
  line-height: 18px;
  background: #3abba0 url("images/ico-arrow.png") 69% 54% no-repeat;
  cursor: pointer;
}
@media (max-width: 991px) {
  /* line 125, css/_contact.scss */
  .contact-form input[type="submit"] {
    margin: 22px auto;
  }
}
@media (max-width: 767px) {
  /* line 125, css/_contact.scss */
  .contact-form input[type="submit"] {
    width: 100%;
  }
}

/* line 144, css/_contact.scss */
.address-boxes {
  margin: 25px 0 0 0;
}

/* line 149, css/_contact.scss */
.address-box h3 {
  color: #3abba0;
}
/* line 153, css/_contact.scss */
.address-box p {
  margin: 18px 0 40px 0;
}

/* line 159, css/_contact.scss */
.content.register .contact-form {
  margin: -22px 0 0 0;
}
/* line 161, css/_contact.scss */
.content.register .contact-form textarea {
  width: 100%;
  height: 120px;
}
/* line 165, css/_contact.scss */
.content.register .contact-form input[type="submit"] {
  margin: 1px 0 0 0;
}
@media (max-width: 991px) {
  /* line 165, css/_contact.scss */
  .content.register .contact-form input[type="submit"] {
    margin: 22px auto;
  }
}
/* line 171, css/_contact.scss */
.content.register .contact-form .full-width {
  margin: 0 10px 21px 0;
}

/* line 177, css/_contact.scss */
.field-submit {
  clear: both;
}
@media (max-width: 991px) {
  /* line 177, css/_contact.scss */
  .field-submit {
    text-align: center;
  }
}

/* line 184, css/_contact.scss */
.mandatory-info {
  float: right;
  margin: -6px 10px 0 0;
  font-size: 12px;
}

/* line 1, css/_blog.scss */
.content.blog-posts, .content.search-results-list {
  font-family: "Helvetica LT W01 Roman", sans-serif;
}
/* line 5, css/_blog.scss */
.content.blog-posts .content-column-left h2 a, .content.search-results-list .content-column-left h2 a {
  text-decoration: none;
}
/* line 10, css/_blog.scss */
.content.blog-posts .posts, .content.search-results-list .posts {
  margin: 34px 0 0 0;
}
/* line 13, css/_blog.scss */
.content.blog-posts .post, .content.search-results-list .post {
  margin: 0 0 40px 0;
}
/* line 15, css/_blog.scss */
.content.blog-posts .post h2, .content.search-results-list .post h2 {
  margin: 0 0 7px 0;
  font-family: "Helvetica LT W01 Roman", sans-serif;
}
/* line 23, css/_blog.scss */
.content.blog-posts .post-entry p, .content.search-results-list .post-entry p {
  display: block;
}

/* line 30, css/_blog.scss */
.content.search-results-list .content-column-left, .content.search-results-list .content-column-right, .content.search-results-list .about-team {
  padding-top: 73px;
}
/* line 33, css/_blog.scss */
.content.search-results-list .posts {
  margin: 48px 0 0 0;
}
/* line 36, css/_blog.scss */
.content.search-results-list .post {
  margin: 0 0 16px 0;
}

/* line 41, css/_blog.scss */
.search-total {
  color: #3abba0;
}

#s {
	
}

/* line 46, css/_blog.scss */
.content.single-post-page {
  padding-bottom: 50px;
}
/* line 48, css/_blog.scss */
.content.single-post-page .content-column-left {
  padding-top: 80px;
}
@media (max-width: 991px) {
  /* line 48, css/_blog.scss */
  .content.single-post-page .content-column-left {
    padding: 0 40px 80px 0;
  }
}
/* line 53, css/_blog.scss */
.content.single-post-page .content-column-left h2 {
  margin-top: 24px;
}
/* line 58, css/_blog.scss */
.content.single-post-page .content-column-right, .content.single-post-page .about-team {
  padding-top: 64px;
}
/* line 62, css/_blog.scss */
.content.single-post-page .entry img {
  margin: 5px 0 10px 0;
}

/* line 1, css/_archives.scss */
.content.archives {
  padding-top: 78px;
}
@media (max-width: 1200px) {
  /* line 1, css/_archives.scss */
  .content.archives {
    padding: 50px 0 50px 0;
  }
}
/* line 6, css/_archives.scss */
.content.archives .section-title {
  margin-bottom: 36px;
  line-height: 33px;
}

/* line 12, css/_archives.scss */
ul.downloads-list {
  margin: 54px 0 0 0;
}
/* line 15, css/_archives.scss */
ul.downloads-list li {
  padding: 11px 0 7px 61px;
  border-bottom: 1px solid #b4bbbc;
}
/* line 18, css/_archives.scss */
ul.downloads-list li:hover {
  background: #3abba0;
}
/* line 20, css/_archives.scss */
ul.downloads-list li:hover a {
  color: #fff;
}
/* line 23, css/_archives.scss */
ul.downloads-list li:hover:before {
  background-position: 0 -27px;
}
/* line 27, css/_archives.scss */
ul.downloads-list li:before {
  width: 17px;
  height: 29px;
  left: 4px;
  top: 7px;
  background: url("images/ico-file.png") no-repeat;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}

/* line 38, css/_archives.scss */
.download-categories {
  margin: 47px 0 0 0;
  padding: 0;
  font-size: 14px;
}
/* line 42, css/_archives.scss */
.download-categories a {
  color: #363636;
}

/* line 2, css/_purchase.scss */
.content.buy-seminar .content-column-left, .content.buy-seminar .content-column-right, .content.buy-seminar .about-team {
  padding-top: 126px;
}
@media (max-width: 991px) {
  /* line 2, css/_purchase.scss */
  .content.buy-seminar .content-column-left, .content.buy-seminar .content-column-right, .content.buy-seminar .about-team {
    padding-top: 0;
  }
}

/* line 10, css/_purchase.scss */
.form-purchase {
  margin: 38px 0 0 -3px;
}
@media (max-width: 767px) {
  /* line 12, css/_purchase.scss */
  .form-purchase input {
    width: 99%;
  }
}
/* line 17, css/_purchase.scss */
.form-purchase span.wpcf7-list-item {
  display: inline-block;
  margin-left: 0;
}
@media (max-width: 767px) {
  /* line 17, css/_purchase.scss */
  .form-purchase span.wpcf7-list-item {
    display: block;
  }
}
/* line 24, css/_purchase.scss */
.form-purchase span.wpcf7-list-item-label {
  display: inline-block;
  font-size: 18px;
  vertical-align: top;
  margin: 1px 0 0 15px;
  letter-spacing: 0.4px;
}
@media (max-width: 991px) {
  /* line 24, css/_purchase.scss */
  .form-purchase span.wpcf7-list-item-label {
    font-size: 15px;
    margin: 5px 0 0 15px;
  }
}
@media (max-width: 767px) {
  /* line 24, css/_purchase.scss */
  .form-purchase span.wpcf7-list-item-label {
    margin: -3px 0 0 15px;
    width: 76%;
  }
}
/* line 42, css/_purchase.scss */
.form-purchase .full-width {
  clear: both;
}
/* line 45, css/_purchase.scss */
.form-purchase .half-width {
  width: 37%;
  margin: 0 22px 26px 0;
}
@media (max-width: 991px) {
  /* line 45, css/_purchase.scss */
  .form-purchase .half-width {
    width: 100%;
  }
}
/* line 52, css/_purchase.scss */
.form-purchase .checkbox-contacted {
  margin: 0 0 20px -3px;
}
@media (max-width: 767px) {
  /* line 52, css/_purchase.scss */
  .form-purchase .checkbox-contacted {
    margin: 0 0 30px -3px;
  }
}
/* line 58, css/_purchase.scss */
.form-purchase .discount-code {
  overflow: hidden;
  margin: 32px 0 -27px 0;
}
@media (max-width: 991px) {
  /* line 58, css/_purchase.scss */
  .form-purchase .discount-code {
    margin: 32px 0 6px 0;
  }
}
/* line 64, css/_purchase.scss */
.form-purchase .discount-code input[type="submit"] {
  margin: -2px 0 0 0;
}
/* line 68, css/_purchase.scss */
.form-purchase .sub-box {
  width: 77%;
  margin: 64px 0 0 0;
  padding: 26px 19px 29px 19px;
}
@media (max-width: 991px) {
  /* line 68, css/_purchase.scss */
  .form-purchase .sub-box {
    width: 100%;
    text-align: left;
  }
}
/* line 76, css/_purchase.scss */
.form-purchase .sub-box strong {
  padding: 0 0 0 40px;
}
/* line 79, css/_purchase.scss */
.form-purchase .sub-box span.wpcf7-list-item-label {
  font-size: 16px;
  margin: 5px 0 0 2px;
}
@media (max-width: 767px) {
  /* line 79, css/_purchase.scss */
  .form-purchase .sub-box span.wpcf7-list-item-label {
    margin-top: 4px;
  }
}
/* line 86, css/_purchase.scss */
.form-purchase .sub-box .btn-sub {
  margin: 20px auto;
}

/* line 2, css/_account.scss */
.content.account .content-column-left, .content.account .content-column-right, .content.account .about-team {
  padding-top: 126px;
}
@media (max-width: 991px) {
  /* line 2, css/_account.scss */
  .content.account .content-column-left, .content.account .content-column-right, .content.account .about-team {
    padding-top: 0;
  }
}
/* line 9, css/_account.scss */
.content.account .content-column-left .section-title {
  display: inline-block;
}

/* line 15, css/_account.scss */
.account-form {
  margin: 49px 0 0 0;
  width: 500px;
}
@media (max-width: 991px) {
  /* line 15, css/_account.scss */
  .account-form {
    width: 100%;
  }
}
/* line 21, css/_account.scss */
.account-form .form-row {
  margin-bottom: 21px;
}
@media (max-width: 991px) {
  /* line 21, css/_account.scss */
  .account-form .form-row {
    margin-bottom: 0;
  }
}
/* line 27, css/_account.scss */
.account-form .half-width {
  margin: 0 10px 0 0;
}
@media (max-width: 991px) {
  /* line 27, css/_account.scss */
  .account-form .half-width {
    margin: 0 0 21px 0;
  }
}
@media (max-width: 991px) {
  /* line 33, css/_account.scss */
  .account-form .full-width {
    margin: 0 0 21px 0;
  }
}

/* line 40, css/_account.scss */
.account-edit {
  display: inline-block;
  font-weight: bold;
  margin: 6px 0 0 234px;
}
@media (max-width: 991px) {
  /* line 40, css/_account.scss */
  .account-edit {
    display: block;
    margin: 6px 0 0 0;
  }
}

/* line 50, css/_account.scss */
.account-details {
  display: none;
}
/* line 52, css/_account.scss */
.account-details.visible {
  display: block;
}

/* line 57, css/_account.scss */
.expiry-date {
  display: inline-block;
  width: 37%;
  margin: 14px 0 0 2px;
  font-size: 14px;
  letter-spacing: 0.3px;
}
@media (max-width: 991px) {
  /* line 57, css/_account.scss */
  .expiry-date {
    display: block;
    width: 100%;
  }
}
/* line 67, css/_account.scss */
.expiry-date strong {
  display: block;
  margin: 10px 0 0 0;
  font-size: 20px;
}

/* line 74, css/_account.scss */
.account-renew {
  display: inline-block;
  vertical-align: top;
  margin: 15px 0 0 7px;
  font-weight: bold;
}
@media (max-width: 991px) {
  /* line 74, css/_account.scss */
  .account-renew {
    display: block;
    width: 100%;
  }
}

/* line 85, css/_account.scss */
.account-preferences {
  margin: 77px 0 0 0;
  padding-left: 20px;
}
@media (max-width: 991px) {
  /* line 85, css/_account.scss */
  .account-preferences {
    margin: 0;
  }
}
@media (max-width: 991px) {
  /* line 85, css/_account.scss */
  .account-preferences {
    padding: 0 20px 0 20px;
  }
}
/* line 94, css/_account.scss */
.account-preferences p {
  margin: -8px 0 0 0;
  color: #3abba0;
}
/* line 99, css/_account.scss */
.account-preferences .column {
  margin: 29px 0 0 0;
}
/* line 101, css/_account.scss */
.account-preferences .column h4 {
  margin: 0 0 33px 0;
  padding: 0;
  font-family: "Helvetica LT W01 Bold";
}
/* line 107, css/_account.scss */
.account-preferences .column input[type="checkbox"] {
  width: 17px;
  height: 17px;
  display: inline-block;
  vertical-align: top;
}
/* line 114, css/_account.scss */
.account-preferences .column input[type="checkbox"]:before {
  display: none;
}
/* line 117, css/_account.scss */
.account-preferences .column label {
  display: inline-block;
  width: 86%;
  padding: 3px 0 0 18px;
  font-size: 14px;
  line-height: 19px;
}
/* line 125, css/_account.scss */
.account-preferences .btn-cta, .account-preferences .btn-cta-alt, .account-preferences .content .side-menu li.btn-cta-wrapper a, .content .side-menu li.btn-cta-wrapper .account-preferences a, .account-preferences .content-column-right .menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper .account-preferences a, .account-preferences .about-team .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper .account-preferences a {
  margin: 73px 0 0 0;
  width: 242px;
}
/* line 128, css/_account.scss */
.account-preferences .btn-cta span, .account-preferences .btn-cta-alt span, .account-preferences .content .side-menu li.btn-cta-wrapper a span, .content .side-menu li.btn-cta-wrapper .account-preferences a span, .account-preferences .content-column-right .menu li.btn-cta-wrapper a span, .content-column-right .menu li.btn-cta-wrapper .account-preferences a span, .account-preferences .about-team .menu li.btn-cta-wrapper a span, .about-team .menu li.btn-cta-wrapper .account-preferences a span {
  display: inline-block;
  left: -4px;
}
/* line 131, css/_account.scss */
.account-preferences .btn-cta span:after, .account-preferences .btn-cta-alt span:after, .account-preferences .content .side-menu li.btn-cta-wrapper a span:after, .content .side-menu li.btn-cta-wrapper .account-preferences a span:after, .account-preferences .content-column-right .menu li.btn-cta-wrapper a span:after, .content-column-right .menu li.btn-cta-wrapper .account-preferences a span:after, .account-preferences .about-team .menu li.btn-cta-wrapper a span:after, .about-team .menu li.btn-cta-wrapper .account-preferences a span:after {
  margin-top: -8px;
  right: -18px;
}
@media (max-width: 991px) {
  /* line 125, css/_account.scss */
  .account-preferences .btn-cta, .account-preferences .btn-cta-alt, .account-preferences .content .side-menu li.btn-cta-wrapper a, .content .side-menu li.btn-cta-wrapper .account-preferences a, .account-preferences .content-column-right .menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper .account-preferences a, .account-preferences .about-team .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper .account-preferences a {
    margin: 43px 0 30px 0;
  }
}

/* line 142, css/_account.scss */
.checkbox-wrapper {
  margin-bottom: 10px;
}

/* line 1, css/_testimonials.scss */
.testimonial-heading {
  color: #3abba0;
}

/* line 1, css/modules/_hero.scss */
.banner {
  height: 406px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
@media (max-width: 991px) {
  /* line 1, css/modules/_hero.scss */
  .banner {
    height: 300px;
  }
}
/* line 7, css/modules/_hero.scss */
.banner .banner-content {
  height: 406px;
  display: table;
}
@media (max-width: 991px) {
  /* line 7, css/modules/_hero.scss */
  .banner .banner-content {
    height: 300px;
  }
}
/* line 14, css/modules/_hero.scss */
.banner p {
  display: table-cell;
  vertical-align: middle;
  padding: 67px 46px 0 0;
  font-style: italic;
  font-family: "Helvetica LT W01 Light";
  letter-spacing: 0.3px;
}
@media (max-width: 1919px) {
  /* line 14, css/modules/_hero.scss */
  .banner p {
    padding: 0 46px 0 20px;
    font-family: "Helvetica LT W01 Roman";
  }
}

/* line 1, css/modules/_slider.scss */
.main-slider {
  position: relative;
  height: 670px;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}
/* line 6, css/modules/_slider.scss */
.main-slider .slide-wrapper {
  position: relative;
  width: 100%;
  height: 670px;
  overflow: hidden;
}
/* line 11, css/modules/_slider.scss */
.main-slider .slide-wrapper.zoom .slide {
  -webkit-transform: scale(1.0);
  -moz-transform: scale(1.0);
  -ms-transform: scale(1.0);
  -o-transform: scale(1.0);
  transform: scale(1.0);
}
/* line 15, css/modules/_slider.scss */
.main-slider .slide {
  position: relative;
  height: 670px;
  overflow: hidden;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-transition: all 10s ease-in-out;
  -moz-transition: all 10s ease-in-out;
  -o-transition: all 10s ease-in-out;
  transition: all 10s ease-in-out;
}
/* line 25, css/modules/_slider.scss */
.main-slider .slide-header-outer {
  position: relative;
  width: 100%;
  height: 250px;
}
/* line 30, css/modules/_slider.scss */
.main-slider .slide-header-inner {
  position: absolute;
  display: table;
  bottom: 0;
  padding: 28px 23px 28px 1px;
  min-height: 140px;
  background: #3abba0;
  color: #fff;
  letter-spacing: 1px;
  width: 100%;
}
/* line 41, css/modules/_slider.scss */
.main-slider .slide-header-inner p {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
}
/* line 46, css/modules/_slider.scss */
.main-slider .slide-header-inner strong {
  font-weight: normal;
  font-family: "Helvetica LT W01 Bold";
}
@media (max-width: 767px) {
  /* line 30, css/modules/_slider.scss */
  .main-slider .slide-header-inner {
    left: 0;
    padding: 25px 23px 28px 20px;
  }
}
/* line 20, css/_elements.scss */
.main-slider .slide-header-inner:before {
  width: 9999px;
  height: 100%;
  left: -9998px;
  top: 0;
  background: #3abba0;
}
/* line 60, css/modules/_slider.scss */
.main-slider .slide-description {
  font-family: "Helvetica LT W01 Roman", sans-serif;
  padding: 30px 0 0 0;
}
@media (max-width: 767px) {
  /* line 60, css/modules/_slider.scss */
  .main-slider .slide-description {
    padding: 24px 24px 14px 24px;
    width: 100%;
  }
  .col-lg-6 {
    padding-left: 0px !important;
  }
  .main-slider .slide-header-outer {
    width: 100%;
    left: 1px;
    height: 250px;
  }
  .main-slider {
    height: 700px !important;
  }
  .main-slider .slide-wrapper {
    height: 700px !important;
  }
  .main-slider .slide {
    height: 700px !important;
  }
}
/* line 69, css/modules/_slider.scss */
.main-slider .btn-cta, .main-slider .btn-cta-alt, .main-slider .content .side-menu li.btn-cta-wrapper a, .content .side-menu li.btn-cta-wrapper .main-slider a, .main-slider .content-column-right .menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper .main-slider a, .main-slider .about-team .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper .main-slider a {
  min-width: 260px;
  margin: 18px 0 0 0;
}
@media (max-width: 767px) {
  /* line 69, css/modules/_slider.scss */
  .main-slider .btn-cta, .main-slider .btn-cta-alt, .main-slider .content .side-menu li.btn-cta-wrapper a, .content .side-menu li.btn-cta-wrapper .main-slider a, .main-slider .content-column-right .menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper .main-slider a, .main-slider .about-team .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper .main-slider a {
    min-width: 200px;
    margin: 14px 0 0 24px;
    font-size: 12px;
    height: 42px;
    line-height: 30px;
  }
}
/* line 78, css/modules/_slider.scss */
.main-slider .slide-inner {
  position: absolute;
  z-index: 9999;
  top: 0;
  width: 100%;
}
/* line 20, css/_elements.scss */
.main-slider .slide-inner:before {
  width: 274px;
  height: 209px;
  left: -179px;
  top: 89px;
  background: url("images/slider-logo.png") no-repeat;
  z-index: 999;
}
@media (max-width: 1919px) {
  /* line 20, css/_elements.scss */
  .main-slider .slide-inner:before {
    left: -172px;
  }
}
@media (max-width: 991px) {
  /* line 20, css/_elements.scss */
  .main-slider .slide-inner:before {
    display: none;
  }
}

/* line 1, css/modules/_clients.scss */
.home-clients {
  padding: 62px 0 73px 0;
  background: #fcfcfc;
  text-align: center;
}
/* line 5, css/modules/_clients.scss */
.home-clients h2 {
  letter-spacing: 0.4px;
}
@media (max-width: 991px) {
  /* line 5, css/modules/_clients.scss */
  .home-clients h2 {
    margin: 0;
  }
}
/* line 13, css/modules/_clients.scss */
.home-clients ul {
  margin: 29px 0 0 0;
  text-align: center;
}
/* line 18, css/modules/_clients.scss */
.home-clients ul li {
  margin-right: 94px;
}
@media (max-width: 991px) {
  /* line 18, css/modules/_clients.scss */
  .home-clients ul li {
    margin-right: 0;
  }
}
@media (max-width: 991px) {
  /* line 23, css/modules/_clients.scss */
  .home-clients ul li img {
    max-width: 80%;
  }
}
/* line 29, css/modules/_clients.scss */
.home-clients ul li:last-child {
  margin-right: 0;
}

/* line 1, css/modules/_modals.scss */
.modal {
  display: none;
  background: #3abba0;
}
/* line 4, css/modules/_modals.scss */
.modal .container {
  margin: 0 auto 0 22.2%;
}
@media (max-width: 1919px) {
  /* line 4, css/modules/_modals.scss */
  .modal .container {
    margin: 0 auto;
  }
}
/* line 10, css/modules/_modals.scss */
.modal .modal-wrapper {
  min-height: 892px;
}
@media (max-width: 991px) {
  /* line 10, css/modules/_modals.scss */
  .modal .modal-wrapper {
    min-height: 300px;
  }
}
/* line 19, css/modules/_modals.scss */
.modal p {
  margin: 0;
  font-family: "Helvetica LT W01 Roman", sans-serif;
}
/* line 24, css/modules/_modals.scss */
.modal .modal-form {
  margin: 21px 0 0 0;
}
/* line 27, css/modules/_modals.scss */
.modal .btn, .modal .content .side-menu li.btn-cta-wrapper a, .content .side-menu li.btn-cta-wrapper .modal a, .modal .content-column-right .menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper .modal a, .modal .about-team .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper .modal a {
  margin: 20px 0 0 0;
}
@media (max-width: 767px) {
  /* line 27, css/modules/_modals.scss */
  .modal .btn, .modal .content .side-menu li.btn-cta-wrapper a, .content .side-menu li.btn-cta-wrapper .modal a, .modal .content-column-right .menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper .modal a, .modal .about-team .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper .modal a {
    width: 100%;
  }
}

/* line 35, css/modules/_modals.scss */
.modal-wrapper {
  position: relative;
  display: table;
  width: 100%;
  height: calc(100vh - 180px);
}
@media (max-width: 991px) {
  /* line 35, css/modules/_modals.scss */
  .modal-wrapper {
    height: auto;
  }
}

/* line 45, css/modules/_modals.scss */
.modal-outer {
  display: table-cell;
  vertical-align: middle;
}

/* line 50, css/modules/_modals.scss */
.modal-inner {
  width: 500px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  /* line 50, css/modules/_modals.scss */
  .modal-inner {
    width: 100%;
    padding: 0 20px 0 20px;
  }
}

/* line 59, css/modules/_modals.scss */
.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  color: #f7f7f7;
}
@media (max-width: 767px) {
  /* line 59, css/modules/_modals.scss */
  .modal-close {
    font-size: 20px;
  }
}

/* Login */
/* line 73, css/modules/_modals.scss */
.modal-login .container {
  margin: 0 auto 0 20.2%;
}
@media (max-width: 1919px) {
  /* line 73, css/modules/_modals.scss */
  .modal-login .container {
    margin: 0 auto;
  }
}
/* line 79, css/modules/_modals.scss */
.modal-login .modal-inner {
  margin: -123px auto 0 auto;
}
@media (max-width: 991px) {
  /* line 79, css/modules/_modals.scss */
  .modal-login .modal-inner {
    margin: 0 auto;
    padding: 50px 20px 50px 20px;
  }
}
/* line 86, css/modules/_modals.scss */
.modal-login .btn, .modal-login .content .side-menu li.btn-cta-wrapper a, .content .side-menu li.btn-cta-wrapper .modal-login a, .modal-login .content-column-right .menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper .modal-login a, .modal-login .about-team .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper .modal-login a {
  width: 241px;
}
@media (max-width: 767px) {
  /* line 86, css/modules/_modals.scss */
  .modal-login .btn, .modal-login .content .side-menu li.btn-cta-wrapper a, .content .side-menu li.btn-cta-wrapper .modal-login a, .modal-login .content-column-right .menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper .modal-login a, .modal-login .about-team .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper .modal-login a {
    width: 100%;
  }
}
/* line 92, css/modules/_modals.scss */
.modal-login .btn span:after, .modal-login .content .side-menu li.btn-cta-wrapper a span:after, .content .side-menu li.btn-cta-wrapper .modal-login a span:after, .modal-login .content-column-right .menu li.btn-cta-wrapper a span:after, .content-column-right .menu li.btn-cta-wrapper .modal-login a span:after, .modal-login .about-team .menu li.btn-cta-wrapper a span:after, .about-team .menu li.btn-cta-wrapper .modal-login a span:after {
  right: 51px;
}

/* Register */
/* line 102, css/modules/_modals.scss */
.modal-register .modal-inner {
  margin: -109px auto 0 auto;
}
@media (max-width: 991px) {
  /* line 102, css/modules/_modals.scss */
  .modal-register .modal-inner {
    margin: 0 auto;
    padding: 50px 20px 50px 20px;
  }
}
/* line 109, css/modules/_modals.scss */
.modal-register p {
  margin: 27px 0 0  0;
  color: #fff;
}
/* line 112, css/modules/_modals.scss */
.modal-register p.mandatory-info {
  margin: -6px 10px 0 0;
  color: #363636;
  font-size: 12px;
}
/* line 118, css/modules/_modals.scss */
.modal-register .modal-form {
  margin: 30px 0 0 0;
}
/* line 121, css/modules/_modals.scss */
.modal-register .btn, .modal-register .content .side-menu li.btn-cta-wrapper a, .content .side-menu li.btn-cta-wrapper .modal-register a, .modal-register .content-column-right .menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper .modal-register a, .modal-register .about-team .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper .modal-register a {
  width: 49%;
  float: right;
}
@media (max-width: 767px) {
  /* line 121, css/modules/_modals.scss */
  .modal-register .btn, .modal-register .content .side-menu li.btn-cta-wrapper a, .content .side-menu li.btn-cta-wrapper .modal-register a, .modal-register .content-column-right .menu li.btn-cta-wrapper a, .content-column-right .menu li.btn-cta-wrapper .modal-register a, .modal-register .about-team .menu li.btn-cta-wrapper a, .about-team .menu li.btn-cta-wrapper .modal-register a {
    width: 100%;
  }
}



.loginbox-main{ max-width:500px; margin:0 auto; overflow: auto; margin-top:120px; border:solid 1px #dfdfdf; padding:0px 20px 20px 20px; box-shadow:0 0 10px  #dfdfdf;   }
.loginbox-main .section-title{ border-bottom:solid 1px  #dfdfdf; padding-bottom:10px; margin-left:-20px; margin-right:-20px; padding-left:20px  }
.loginbox-main .loginbox-panel .mepr_password + div input[type=checkbox] {    width: 29px;     height: 24px;    vertical-align: middle; margin-top:0  }
.loginbox-main .loginbox-panel .mp-form-label{ display:block; margin-bottom:3px }
.loginbox-main .loginbox-panel .mp-spacer{ display:none; }
.loginbox-main .loginbox-panel .submit{ margin:10px 0 }
.loginbox-main .loginbox-panel .submit input{ display:block; width:200px; height:38px; font-size: 18px; font-weight: bold !important; }
.loginbox-main .loginbox-panel .submit input:hover{ background:#19ad8e }
.registration-form .top_label .fullname-field > .gfield_label{ display:none; }
.registration-form .fullname-field .name_first label:after{ content:" Name*"  }
.registration-form .fullname-field .name_last label:after{ content:" Name*"  }
.registration-form .top_label .fullpassword-field > .gfield_label{ display:none; }
.registration-form .top_label .fullpassword-field .ginput_left label:after{  content:"*"  }
.registration-form .top_label .fullpassword-field .ginput_right label:after{  content:"*"  }
.registration-form .top_label .input-field1 .ginput_container_radio{ margin-top:0px; display:inline-block; vertical-align:top; float: right; }
.registration-form .top_label .input-field1 .ginput_container_radio .gfield_radio li{ display:inline-block;  white-space: nowrap; margin-right:7px }
.registration-form .top_label .input-field1 .gfield_label{ width:70% !important; display:inline-block }
.registration-form .top_label .input-field1 .ginput_container_radio .gfield_radio{ margin:0;  }
.my-account-panel{ position:relative; }
.my-account-panel:after{ content:" "; width:100%; height:1px; background:#ddd; top:50%; left:0; position:absolute; z-index:10; }
div#mepr-account-nav.my-account-panel{ text-align:center; width:100%; float:none;   }
div#mepr-account-nav.my-account-panel .account-inner{ display:inline-block;position:relative; z-index:100   }
div#mepr-account-nav.my-account-panel .account-inner .mepr-nav-item{     padding: 0px; background:#fff;      border: 1px solid #ddd; position:relative; }
div#mepr-account-nav.my-account-panel .account-inner .mepr-nav-item a{ font-weight:bold }
div#mepr-account-nav.my-account-panel .account-inner .mepr-nav-item .icon{ display:block; }
div#mepr-account-nav.my-account-panel .account-inner .mepr-nav-item .icon .fa{ font-size:25px; color:#3abba0 }
div#mepr-account-nav.my-account-panel .account-inner .mepr-nav-item a{ color:#585858; display:block; padding: 25px 25px 15px 25px; }
div#mepr-account-nav.my-account-panel .account-inner .mepr-nav-item:hover{ background:#4ed2b6;  }  
div#mepr-account-nav.my-account-panel .account-inner .mepr-nav-item:hover a{ color:#fff }
div#mepr-account-nav.my-account-panel .account-inner .mepr-nav-item:hover .icon .fa{ font-size:25px; color:#fff }
div#mepr-account-nav.my-account-panel .account-inner .mepr-nav-item.mepr-active-nav-tab{ background:#3abba0 !important; border:solid 1px #229b82;  }  
div#mepr-account-nav.my-account-panel .account-inner .mepr-nav-item.mepr-active-nav-tab:after{ content:" "; position:absolute; bottom:-7px; left:46%; border-left:solid 7px transparent; border-right:solid 7px transparent; border-top:solid 7px #3abba0; }
div#mepr-account-nav.my-account-panel .account-inner .mepr-nav-item.mepr-active-nav-tab a{ color:#fff }
div#mepr-account-nav.my-account-panel .account-inner .mepr-nav-item.mepr-active-nav-tab .icon .fa{ font-size:25px; color:#fff }
.mepr-account-table thead tr th{ background:#585858; color:#fff }

.subscriptions-pen{ overflow: auto; text-align: center;   clear: both; padding-top:35px }  
.subscriptions-pen a{ background:#d4d4d4; color:#333; margin-right:5px; padding:12px 20px 12px 20px; }
.subscriptions-pen a:hover{ background:#c1c1c1 } 
.subscriptions-pen a .fa{ font-size:15px; margin-right:5px }
.subscriptions-pen a{ font-weight:bold }
.subscriptions-pen .note{ margin-bottom:10px }

.content-column-right .gform_login_widget{ border:solid 1px #ddd; padding:15px; background:#f9f9f9;     width: 302px;   }
.content-column-right .gform_login_widget > nav br{ display:none  }
.content-column-right .gform_login_widget > nav a{ display:inline-block; margin-right:10px; font-size:12px  }
.content-column-right .gform_login_widget .ginput_container_text input{ width:100%; background:#fff; border:solid 1px #ccc; }
.content-column-right .gform_login_widget .gfield_checkbox input[type="checkbox"]{ width:27px !important; height: 24px !important;  }
.content-column-right .gform_login_widget .gform_footer{ padding-top:0  }
.content-column-right .gform_login_widget .gform_wrapper{ margin-bottom:0px  }
.content-column-right .gform_login_widget .widget-title{ font-family: "Helvetica LT W01 Roman";   font-weight: normal; font-size: 22px; }

.content-column-right .widget_categories .widget-title{ font-family: "Helvetica LT W01 Roman";   font-weight: normal; font-size: 24px;}
.content-column-right .widget_categories ul{ margin-top:8px  }
.content-column-right .widget_categories ul li{  } 
.content-column-right .widget_categories ul li:first-child{  }


.contact-form #gform_5 .gform_body .col-lg-6.fullphone-field { padding-right:5px  } 
.contact-form #gform_5 .gform_body .col-lg-6.fullpost-field{ padding-left:15px;     width: 50%;    } 
.contact-form #gform_5 .gform_body .col-lg-6.fullprofession-field{  padding-right:5px; } 
.contact-form #gform_5 .gform_body .col-lg-6.fullbusiness-field{ padding-left:15px; } 
.contact-form #gform_5 .gform_body #gform_fields_5.top_label > .gfield.top-hide > .gfield_label{ display:none }
.contact-form #gform_5 .gform_body #gform_fields_5.top_label > .gfield select{ height:36px; }
.contact-form #gform_5 .gform_body #gform_fields_5 #field_5_4 .ginput_right{     margin-left: -5px; }


.contact-form #gform_5 .gform_body .col-lg-6.fullpost-field#field_5_56{ width:50% }
.contact-form #gform_5 .gform_body .gfield.gfield_error .validation_message{ padding-top:5px; margin-top:0  }
.contact-form #gform_5 .gform_body .gfield{     padding: 0px 20px; }

.contact-form #gform_5 .gform_body #gform_fields_5 .fullname-field .name_first label:after{ content:" Name*"   }  
.contact-form #gform_5 .gform_body #gform_fields_5 .fullname-field .name_last label:after{ content:" Name*"   }  
.contact-form #gform_5 .gform_body #gform_fields_5 .fullemail-field .ginput_container_email > span > label:after{ content:"*" }
.contact-form #gform_5 .gform_body #gform_fields_5 .fullpassword-field .ginput_container_password > span > label:after{ content:"*" }

.purchase-subscription .mp_wrapper .mepr-signup-form  .mepr_payment_method .mp-form-row{ height: 21px; }
.purchase-subscription .mp_wrapper .mepr-signup-form  .mepr_payment_method .mepr-payment-method-label-text{ font-size:16px } 

.purchase-subscription .mepr-signup-form .mp-form-row.mepr_price *{ font-size:22px !important  }
.purchase-subscription .mepr-signup-form .mp-form-row#mepr_payment_method  .mepr-payment-method .mepr-payment-method-label span{ margin:0 7px 0 0;     display: inline-block; }

.content-column-right .gform_login_widget input:-webkit-autofill, .loginbox-panel input:-webkit-autofill {    -webkit-box-shadow: 0 0 0px 1000px white inset; border:solid 1px #d8d8d8 !important }

.loginbox-main .mepr_error{     margin-bottom: 0px !important; }

.list2{ margin-left:0; padding-left:0 }
.content-column-right .widget_categories ul li, .list2 li { background: none; padding: 3px 0 3px 15px; list-style: none; position: relative; font-size: 14px; }
.content-column-right .widget_categories ul li a ,.list2 li a {display: block; -moz-transition: all 0.2s ease-in; -webkit-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; }
.list2 li:hover a { padding-left: 3px; -moz-transition: all 0.2s ease-out; -webkit-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; transition: all 0.2s ease-out; text-shadow: 0 0 7px rgba(255, 255, 255, 0.5); }
.content-column-right .widget_categories ul li:before , .list2 li:before { height: 7px; width: 7px; border-radius: 7px; -moz-transition: all 0.2s ease-in; -webkit-transition: all 0.2s ease-in; -o-transition: all 0.2s ease-in; transition: all 0.2s ease-in; -moz-border-radius: 7px;
-webkit-border-radius: 7px; background: #19c19e; content: ""; position: absolute; left: 0px; top: 12px; }

#Image1 {
	display: none;
	border-style: solid;
	border-color: #3abba0;
	border-width: 1px;
}
#Image2 {
	display: none;
	border-style: solid;
	border-color: #3abba0;
	border-width: 1px;
}
#Image3 {
	display: none;
	border-style: solid;
	border-color: #3abba0;
	border-width: 1px;
}

form {
  padding-right: 20px;
}

input[type=submit].searchbar {
  padding: 0;
  width: 20px;
  height: 20px;
  background-image: url("images/ico-search.png");
  background-repeat: no-repeat;
  background-size: 15px;
  background-position: 2px 2px;
  font-size: 0;
  border-left: 0;
  border: 1px solid #ebebeb;
  cursor: pointer;
  position: absolute;
}
input[type=text].searchbar {
  font-size: 14px;
}
input.searchbar {
  width: 67%;
  padding: 0px 0px 0px 3px;
  border-right: 0;
  letter-spacing: 0.6px;
  height: 20px;
  border-width: 1px;
}

@media (max-width: 767px) {
  .modal-register {
     padding-right: 0px;
  }
  .socials {
     text-align: left;
  }
  input.searchbar {
    width: 80%;
  }
}

.gform_submit_button_7 {
	padding-bottom: 30px;
}

.events-list li{ list-style-type: none;  }
.events-list li > a{ font-size: 20px; line-height: 24px; text-decoration: none }
.addtoany_share_save_container{ display: none; }
.content-column-left.events-list{ padding-left:0px; }


.service-boxes1{
    margin-left: 19px;
    margin-top: 20px;
}
.service-box1 .service-desc-main {
    padding-bottom: 58px;
    padding: 0;
    margin-top: 10px;
    text-align: center
}

.service-desc-main li{
    border: solid 1px #3bbba0;
    width: 450px;
    padding: 15px;
    max-height: 500px;
    float: none;
    display: inline-block !important;
    margin-right: 10px;
    margin-bottom: 10px;
    vertical-align: top;
}

.service-desc-main p{
    font-family: "Helvetica LT W01 Roman";
}

.content .service-desc-main li h2{
    text-align: center !important;
    padding: 0px;
    margin-bottom: 10px;
    color: #3abba0;
    font-family: "Helvetica LT W01 Roman";
    letter-spacing: -0.2px;
    text-align: left;
    font-size: 18px;
}

.content-column-left .new-events-link li{
    list-style-type: none;
    padding: 0;
    margin-bottom: 35px;
}
.new-events-link li h2{
    margin-bottom: 10px;
    font-size: 20px;
}

.content-column-left .new-events-link li:before{
    display: none
}

.content-column-left .new-events-link li a{
    text-decoration: none
}

.new-events-link li .contentbox{
    margin-bottom: 10px;
     font-weight: normal !important
}
.new-events-link li .contentbox *{
    font-size: 16px !important;
    color: #333 !important;
    margin-bottom: 0px !important;
    display: inline;
    font-weight: normal !important;
}

.new-events-link li a{
    font-weight: normal !important;
}

.content-column-left .new-events-link-news li{
    list-style-type: none;
    padding: 0;
    margin-bottom: 35px;
}

.new-events-link-news li h2{
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 23px;
}

.content-column-left .new-events-link-news li:before{
    display: none
}

.content-column-left .new-events-link-news li a{
    text-decoration: none
}

.new-events-link-news li .contentbox{
    margin-bottom: 10px;
     font-weight: normal !important
}

.new-events-link-news li .contentbox *{
    font-size: 16px !important;
    color: #333 !important;
    margin-bottom: 0px !important;
    display: inline;
    font-weight: normal !important;
}

.new-events-link-news li a{
    font-weight: normal !important;
}

.content-column-left ol li:before{
	background:none !important;
}

.content-column-left ol li{
	padding-left:8px !important;
}

.events-list-btn a{
    background: #3abba0;
    color: #fff;
    padding: 7px 20px;
    border-radius: 5px;
    display: inline-block;
    text-decoration: none
}

.container h1 {
	text-align: left;
}
.home1 {
	height: 50px;
	margin-bottom: 25px;
}
.home2 {
	height: 50px;
	margin-bottom: 25px;
}
.home3 {
	height: 68px;
	margin-bottom: 25px;
}
.home4 {
	height: 68px;
	margin-bottom: 25px;
}
.home_subtitle {
	width: 156px;
	display: inline-block;
	vertical-align: top;
	height: inherit;
	background-color: #d4d4d48c;
}
.home_subtitle h2 {
	letter-spacing: 0px;
	margin: 1px;
	background-color: #d4d4d48c;
	text-align: left;
	padding-left: 10px;
	font-size: 23px;
	position: relative;
	top: 47%;
	height: auto;
	line-height: 0px;
}
.home_subtext h1 {
	position: absolute;
	margin: 0px;
	letter-spacing: 0px;
	color: #d4d4d4;
	left: 166px;
	z-index: -1;
	font-size: 48px;
	margin-top: -7px;
}
.home_subtext {
	width: 70%;
	height: inherit;
	display: inline-block;
	vertical-align: top;
	margin-left: -4px;
        background-image: linear-gradient(to left, rgba(255,0,0,0), #d4d4d48c);
}
.home_subtext p {
	line-height: 19px;
	text-align: left;
	margin-top: 5px;
	margin-left: 10px;
}

@media (max-width: 767px) {
.homeall {
	display: inline;
	
}
.home1 {
	height: 50px;
	margin-bottom: 15px;
	display: inline;
}
.home2 {
	height: 50px;
	margin-bottom: 15px;
	display: inline;
}
.home3 {
	height: 70px;
	margin-bottom: 15px;
	display: inline;
}
.home4 {
	height: 70px;
	margin-bottom: 15px;
	display: inline;
}
.home_subtitle {
	width: 100%;
	display: block;
	vertical-align: top;
	height: 38px;
	background-color: #d4d4d4;
	margin: 0;
}
.home_subtitle h2 {
	letter-spacing: -1px;
	margin: 0px;
	background-color: #d4d4d4;
	text-align: center;
	padding: 0px;
	font-size: 23px;
}
.home_subtext h1 {
	position: absolute;
	margin: 0px;
	letter-spacing: -1px;
	color: #d4d4d4;
	left: 166px;
	z-index: -1;
	font-size: 48px;
	margin-top: -7px;
}
.home_subtext {
	width: 50%;
	height: 100%;
	display: inline;
	vertical-align: top;
        background-color: #d4d4d4;
	margin: 0;
	margin-bottom: 5px
}
.home_subtext p {
	line-height: 19px;
	text-align: justify;
	margin-top: 5px;
	margin-left: 15px;
	height: auto;
}
}

.grecaptcha-badge{
	visibility: collapse !important;  
}