/* CSS Document */
/* Breakpoint Mixin
Source: http://www.sitepoint.com/sass-mixins-kickstart-project/
*/
/* Usage Example

 @include breakpoint(medium) {
    color: blue;
  }
}
*/
/*! normalize.css v3.0.0 | MIT License | git.io/normalize */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10.
 */
button {
  overflow: visible; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Firefox, IE 8+, and Opera
 * Correct `select` style inheritance in Firefox.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
input {
  line-height: normal; }

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Remove default vertical scrollbar in IE 8/9.
 */
textarea {
  overflow: auto; }

/**
 * Don't inherit the `font-weight` (applied by a rule above).
 * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
 */
optgroup {
  font-weight: bold; }

/* Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

/*
 * @font-face mixin
 * @include font-face('family', '../fonts/', 'myfontname');
 */
/* egs
a {
    font-weight: bold;
    text-decoration: none;
    color: #c00;

    @include attention() {
        outline: none;
        color: #09f;
    }

}

.btn {
    background-color: #09f;

    @include attention() {
        background-color: darken(#09f, 10%);
    }

}
Source: http://sassmeister.com/gist/d7f40eb288ab1e3e85d3
*/
@font-face {
  font-family: 'IcoMoon';
  src: url("../../../media/jui/fonts/IcoMoon.eot");
  src: url("../../../media/jui/fonts/IcoMoon.eot?#iefix") format("embedded-opentype"), url("../../../media/jui/fonts/IcoMoon.woff") format("woff"), url("../../../media/jui/fonts/IcoMoon.ttf") format("truetype"), url("../../../media/jui/fonts/IcoMoon.svg#IcoMoon") format("svg");
  font-weight: normal;
  font-style: normal; }
[data-icon]:before {
  font-family: 'IcoMoon';
  content: attr(data-icon);
  speak: none; }

[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: .25em;
  line-height: 14px; }

[class^="icon-"]:before,
[class*=" icon-"]:before {
  font-family: 'IcoMoon';
  font-style: normal;
  speak: none; }

[class^="icon-"].disabled,
[class*=" icon-"].disabled {
  font-weight: normal; }

.icon-joomla:before {
  content: "\e200"; }

.icon-chevron-up:before,
.icon-uparrow:before,
.icon-arrow-up:before {
  content: "\e005"; }

.icon-chevron-right:before,
.icon-rightarrow:before,
.icon-arrow-right:before {
  content: "\e006"; }

.icon-chevron-down:before,
.icon-downarrow:before,
.icon-arrow-down:before {
  content: "\e007"; }

.icon-chevron-left:before,
.icon-leftarrow:before,
.icon-arrow-left:before {
  content: "\e008"; }

.icon-arrow-first:before {
  content: "\e003"; }

.icon-arrow-last:before {
  content: "\e004"; }

.icon-arrow-up-2:before {
  content: "\e009"; }

.icon-arrow-right-2:before {
  content: "\e00a"; }

.icon-arrow-down-2:before {
  content: "\e00b"; }

.icon-arrow-left-2:before {
  content: "\e00c"; }

.icon-arrow-up-3:before {
  content: "\e00f"; }

.icon-arrow-right-3:before {
  content: "\e010"; }

.icon-arrow-down-3:before {
  content: "\e011"; }

.icon-arrow-left-3:before {
  content: "\e012"; }

.icon-menu-2:before {
  content: "\e00e"; }

.icon-arrow-up-4:before {
  content: "\e201"; }

.icon-arrow-right-4:before {
  content: "\e202"; }

.icon-arrow-down-4:before {
  content: "\e203"; }

.icon-arrow-left-4:before {
  content: "\e204"; }

.icon-share:before,
.icon-redo:before {
  content: "\27"; }

.icon-undo:before {
  content: "\28"; }

.icon-forward-2:before {
  content: "\e205"; }

.icon-backward-2:before,
.icon-reply:before {
  content: "\e206"; }

.icon-unblock:before,
.icon-refresh:before,
.icon-redo-2:before {
  content: "\6c"; }

.icon-undo-2:before {
  content: "\e207"; }

.icon-move:before {
  content: "\7a"; }

.icon-expand:before {
  content: "\66"; }

.icon-contract:before {
  content: "\67"; }

.icon-expand-2:before {
  content: "\68"; }

.icon-contract-2:before {
  content: "\69"; }

.icon-play:before {
  content: "\e208"; }

.icon-pause:before {
  content: "\e209"; }

.icon-stop:before {
  content: "\e210"; }

.icon-previous:before,
.icon-backward:before {
  content: "\7c"; }

.icon-next:before,
.icon-forward:before {
  content: "\7b"; }

.icon-first:before {
  content: "\7d"; }

.icon-last:before {
  content: "\e000"; }

.icon-play-circle:before {
  content: "\e00d"; }

.icon-pause-circle:before {
  content: "\e211"; }

.icon-stop-circle:before {
  content: "\e212"; }

.icon-backward-circle:before {
  content: "\e213"; }

.icon-forward-circle:before {
  content: "\e214"; }

.icon-loop:before {
  content: "\e001"; }

.icon-shuffle:before {
  content: "\e002"; }

.icon-search:before {
  content: "\53"; }

.icon-zoom-in:before {
  content: "\64"; }

.icon-zoom-out:before {
  content: "\65"; }

.icon-apply:before,
.icon-edit:before,
.icon-pencil:before {
  content: "\2b"; }

.icon-pencil-2:before {
  content: "\2c"; }

.icon-brush:before {
  content: "\3b"; }

.icon-save-new:before,
.icon-plus-2:before {
  content: "\5d"; }

.icon-minus-sign:before,
.icon-minus-2:before {
  content: "\5e"; }

.icon-delete:before,
.icon-remove:before,
.icon-cancel-2:before {
  content: "\49"; }

.icon-publish:before,
.icon-save:before,
.icon-ok:before,
.icon-checkmark:before {
  content: "\47"; }

.icon-new:before,
.icon-plus:before {
  content: "\2a"; }

.icon-plus-circle:before {
  content: "\e215"; }

.icon-minus:before,
.icon-not-ok:before {
  content: "\4b"; }

.icon-ban-circle:before,
.icon-minus-circle:before {
  content: "\e216"; }

.icon-unpublish:before,
.icon-cancel:before {
  content: "\4a"; }

.icon-cancel-circle:before {
  content: "\e217"; }

.icon-checkmark-2:before {
  content: "\e218"; }

.icon-checkmark-circle:before {
  content: "\e219"; }

.icon-info:before {
  content: "\e220"; }

.icon-info-2:before,
.icon-info-circle:before {
  content: "\e221"; }

.icon-question:before,
.icon-question-sign:before,
.icon-help:before {
  content: "\45"; }

.icon-question-2:before,
.icon-question-circle:before {
  content: "\e222"; }

.icon-notification:before {
  content: "\e223"; }

.icon-notification-2:before,
.icon-notification-circle:before {
  content: "\e224"; }

.icon-pending:before,
.icon-warning:before {
  content: "\48"; }

.icon-warning-2:before,
.icon-warning-circle:before {
  content: "\e225"; }

.icon-checkbox-unchecked:before {
  content: "\3d"; }

.icon-checkin:before,
.icon-checkbox:before,
.icon-checkbox-checked:before {
  content: "\3e"; }

.icon-checkbox-partial:before {
  content: "\3f"; }

.icon-square:before {
  content: "\e226"; }

.icon-radio-unchecked:before {
  content: "\e227"; }

.icon-radio-checked:before,
.icon-generic:before {
  content: "\e228"; }

.icon-circle:before {
  content: "\e229"; }

.icon-signup:before {
  content: "\e230"; }

.icon-grid:before,
.icon-grid-view:before {
  content: "\58"; }

.icon-grid-2:before,
.icon-grid-view-2:before {
  content: "\59"; }

.icon-menu:before {
  content: "\5a"; }

.icon-list:before,
.icon-list-view:before {
  content: "\31"; }

.icon-list-2:before {
  content: "\e231"; }

.icon-menu-3:before {
  content: "\e232"; }

.icon-folder-open:before,
.icon-folder:before {
  content: "\2d"; }

.icon-folder-close:before,
.icon-folder-2:before {
  content: "\2e"; }

.icon-folder-plus:before {
  content: "\e234"; }

.icon-folder-minus:before {
  content: "\e235"; }

.icon-folder-3:before {
  content: "\e236"; }

.icon-folder-plus-2:before {
  content: "\e237"; }

.icon-folder-remove:before {
  content: "\e238"; }

.icon-file:before {
  content: "\e016"; }

.icon-file-2:before {
  content: "\e239"; }

.icon-file-add:before,
.icon-file-plus:before {
  content: "\29"; }

.icon-file-minus:before {
  content: "\e017"; }

.icon-file-check:before {
  content: "\e240"; }

.icon-file-remove:before {
  content: "\e241"; }

.icon-save-copy:before,
.icon-copy:before {
  content: "\e018"; }

.icon-stack:before {
  content: "\e242"; }

.icon-tree:before {
  content: "\e243"; }

.icon-tree-2:before {
  content: "\e244"; }

.icon-paragraph-left:before {
  content: "\e246"; }

.icon-paragraph-center:before {
  content: "\e247"; }

.icon-paragraph-right:before {
  content: "\e248"; }

.icon-paragraph-justify:before {
  content: "\e249"; }

.icon-screen:before {
  content: "\e01c"; }

.icon-tablet:before {
  content: "\e01d"; }

.icon-mobile:before {
  content: "\e01e"; }

.icon-box-add:before {
  content: "\51"; }

.icon-box-remove:before {
  content: "\52"; }

.icon-download:before {
  content: "\e021"; }

.icon-upload:before {
  content: "\e022"; }

.icon-home:before {
  content: "\21"; }

.icon-home-2:before {
  content: "\e250"; }

.icon-out-2:before,
.icon-new-tab:before {
  content: "\e024"; }

.icon-out-3:before,
.icon-new-tab-2:before {
  content: "\e251"; }

.icon-link:before {
  content: "\e252"; }

.icon-picture:before,
.icon-image:before {
  content: "\2f"; }

.icon-pictures:before,
.icon-images:before {
  content: "\30"; }

.icon-palette:before,
.icon-color-palette:before {
  content: "\e014"; }

.icon-camera:before {
  content: "\55"; }

.icon-camera-2:before,
.icon-video:before {
  content: "\e015"; }

.icon-play-2:before,
.icon-video-2:before,
.icon-youtube:before {
  content: "\56"; }

.icon-music:before {
  content: "\57"; }

.icon-user:before {
  content: "\22"; }

.icon-users:before {
  content: "\e01f"; }

.icon-vcard:before {
  content: "\6d"; }

.icon-address:before {
  content: "\70"; }

.icon-share-alt:before,
.icon-out:before {
  content: "\26"; }

.icon-enter:before {
  content: "\e257"; }

.icon-exit:before {
  content: "\e258"; }

.icon-comment:before,
.icon-comments:before {
  content: "\24"; }

.icon-comments-2:before {
  content: "\25"; }

.icon-quote:before,
.icon-quotes-left:before {
  content: "\60"; }

.icon-quote-2:before,
.icon-quotes-right:before {
  content: "\61"; }

.icon-quote-3:before,
.icon-bubble-quote:before {
  content: "\e259"; }

.icon-phone:before {
  content: "\e260"; }

.icon-phone-2:before {
  content: "\e261"; }

.icon-envelope:before,
.icon-mail:before {
  content: "\4d"; }

.icon-envelope-opened:before,
.icon-mail-2:before {
  content: "\4e"; }

.icon-unarchive:before,
.icon-drawer:before {
  content: "\4f"; }

.icon-archive:before,
.icon-drawer-2:before {
  content: "\50"; }

.icon-briefcase:before {
  content: "\e020"; }

.icon-tag:before {
  content: "\e262"; }

.icon-tag-2:before {
  content: "\e263"; }

.icon-tags:before {
  content: "\e264"; }

.icon-tags-2:before {
  content: "\e265"; }

.icon-options:before,
.icon-cog:before {
  content: "\38"; }

.icon-cogs:before {
  content: "\37"; }

.icon-screwdriver:before,
.icon-tools:before {
  content: "\36"; }

.icon-wrench:before {
  content: "\3a"; }

.icon-equalizer:before {
  content: "\39"; }

.icon-dashboard:before {
  content: "\78"; }

.icon-switch:before {
  content: "\e266"; }

.icon-filter:before {
  content: "\54"; }

.icon-purge:before,
.icon-trash:before {
  content: "\4c"; }

.icon-checkedout:before,
.icon-lock:before,
.icon-locked:before {
  content: "\23"; }

.icon-unlock:before {
  content: "\e267"; }

.icon-key:before {
  content: "\5f"; }

.icon-support:before {
  content: "\46"; }

.icon-database:before {
  content: "\62"; }

.icon-scissors:before {
  content: "\e268"; }

.icon-health:before {
  content: "\6a"; }

.icon-wand:before {
  content: "\6b"; }

.icon-eye-open:before,
.icon-eye:before {
  content: "\3c"; }

.icon-eye-close:before,
.icon-eye-blocked:before,
.icon-eye-2:before {
  content: "\e269"; }

.icon-clock:before {
  content: "\6e"; }

.icon-compass:before {
  content: "\6f"; }

.icon-broadcast:before,
.icon-connection:before,
.icon-wifi:before {
  content: "\e01b"; }

.icon-book:before {
  content: "\e271"; }

.icon-lightning:before,
.icon-flash:before {
  content: "\79"; }

.icon-print:before,
.icon-printer:before {
  content: "\e013"; }

.icon-feed:before {
  content: "\71"; }

.icon-calendar:before {
  content: "\43"; }

.icon-calendar-2:before {
  content: "\44"; }

.icon-calendar-3:before {
  content: "\e273"; }

.icon-pie:before {
  content: "\77"; }

.icon-bars:before {
  content: "\76"; }

.icon-chart:before {
  content: "\75"; }

.icon-power-cord:before {
  content: "\32"; }

.icon-cube:before {
  content: "\33"; }

.icon-puzzle:before {
  content: "\34"; }

.icon-attachment:before,
.icon-paperclip:before,
.icon-flag-2:before {
  content: "\72"; }

.icon-lamp:before {
  content: "\74"; }

.icon-pin:before,
.icon-pushpin:before {
  content: "\73"; }

.icon-location:before {
  content: "\63"; }

.icon-shield:before {
  content: "\e274"; }

.icon-flag:before {
  content: "\35"; }

.icon-flag-3:before {
  content: "\e275"; }

.icon-bookmark:before {
  content: "\e023"; }

.icon-bookmark-2:before {
  content: "\e276"; }

.icon-heart:before {
  content: "\e277"; }

.icon-heart-2:before {
  content: "\e278"; }

.icon-thumbs-up:before {
  content: "\5b"; }

.icon-thumbs-down:before {
  content: "\5c"; }

.icon-unfeatured:before,
.icon-asterisk:before,
.icon-star-empty:before {
  content: "\40"; }

.icon-star-2:before {
  content: "\41"; }

.icon-featured:before,
.icon-default:before,
.icon-star:before {
  content: "\42"; }

.icon-smiley:before,
.icon-smiley-happy:before {
  content: "\e279"; }

.icon-smiley-2:before,
.icon-smiley-happy-2:before {
  content: "\e280"; }

.icon-smiley-sad:before {
  content: "\e281"; }

.icon-smiley-sad-2:before {
  content: "\e282"; }

.icon-smiley-neutral:before {
  content: "\e283"; }

.icon-smiley-neutral-2:before {
  content: "\e284"; }

.icon-cart:before {
  content: "\e019"; }

.icon-basket:before {
  content: "\e01a"; }

.icon-credit:before {
  content: "\e286"; }

.icon-credit-2:before {
  content: "\e287"; }

.icon-expired:before {
  content: "\4b"; }

body {
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  color: #646464; }

p {
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 1.2rem; }

h1 {
  font-size: 3.5rem;
  color: #1A4884;
  letter-spacing: 0.02em;
  margin: 0;
  margin-bottom: 20px; }

h2 {
  font-size: 2.5rem;
  color: #aecaef;
  font-weight: 400;
  margin-bottom: 20px; }

h3 {
  font-size: 2rem;
  color: #aecaef;
  font-weight: 400;
  margin-bottom: 20px; }

.pagination .pagination-list {
  display: block; }
  .pagination .pagination-list li {
    display: inline-block; }
    .pagination .pagination-list li a {
      background: #bbb;
      padding: 10px;
      margin: 0 5px;
      color: white;
      line-height: 1em;
      display: block;
      text-decoration: none; }
      .pagination .pagination-list li a span {
        line-height: 1em; }
      .pagination .pagination-list li a:hover {
        background: #aaa; }
  .pagination .pagination-list li.disabled a {
    color: #bbb;
    background: #f1f3f4; }
    .pagination .pagination-list li.disabled a:hover {
      background: #f1f3f4; }

html {
  box-sizing: border-box; }

* {
  margin: 0;
  padding: 0; }

*, *:before, *:after {
  box-sizing: inherit; }

body {
  width: 100%;
  padding: 0;
  margin: 0;
  background: white !important;
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  justify-content: space-between;
  flex-direction: column; }
  body .body {
    display: block;
    width: 100%; }

.services_wrapper {
  display: flex;
  flex-direction: column; }
  @media (min-width: 992px) {
    .services_wrapper {
      flex-direction: row; } }
  
  .services_wrapper .service {
    margin: 5px 0px;
    background: #1A4884;
    text-align: center;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); }
    @media (min-width: 992px) {
    .services_wrapper .service {
        margin: 0px 10px;
    }
  }
    .services_wrapper .service h3 {
      color: #F6C016; }
    .services_wrapper .service .icon {
      margin: 10px 0px;
      display: flex;
      min-height: 106px;
      justify-content: center;
      align-items: center; }
    .services_wrapper .service p {
      color: white;
      margin-bottom: 0; }
    .services_wrapper .service:first-child {
      margin-left: 0; }
    .services_wrapper .service:last-child {
      margin-right: 0; }

#domains_for_sale {
  width: 100%;
  margin-bottom: 20px; }
  @media screen and (min-width: 992px) {
      #domains_for_sale {
          width: 50%;
      }
  }
  #domains_for_sale th {
    padding: 10px;
    background: #1A4884;
    color: #F6C016;
    width: 50%;
    font-weight: 700; }
  #domains_for_sale tr:nth-child(even) {
    background: rgba(211, 211, 211, 0.5); }
  #domains_for_sale tr {
    border-left: 1px solid #e2e2e3;
    border-right: 1px solid #e2e2e3;
    text-align: center; }
  #domains_for_sale td {
    padding: 10px; }
  #domains_for_sale tr:first-child th:first-child {
    border-top-left-radius: 5px; }
  #domains_for_sale tr:first-child th:last-child {
    border-top-right-radius: 5px; }
  #domains_for_sale tr:last-child td:first-child {
    border-bottom-left-radius: 5px; }
  #domains_for_sale tr:last-child td:last-child {
    border-bottom-right-radius: 5px; }

header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-height: 300px;
  min-height: 50px;
  padding: 10px 25px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2); }
  @media (min-width: 992px) {
    header {
      padding: 25px 100px; } }
  header .custom {
    width: 100%;
    display: flex;
    flex-direction: column; }
    @media (min-width: 992px) {
      header .custom {
        flex-direction: row;
        justify-content: space-between;} }
    header .custom .logo,
    header .custom .contact {
      /* width: 100%; */ }
      @media (min-width: 992px) {
        header .custom .logo,
        header .custom .contact {
          /* width: 50%; */ } }
    header .custom .contact {
      display: flex;
      flex-direction: row;
      justify-content: flex-start;  
      align-items: center; }
      @media (min-width: 992px) {
          header .custom .contact {
            justify-content: flex-end;   
          }
      }
      header .custom .contact [class^="icon-"] {
        color: #F6C016;
        font-size: 2rem;
        width: auto;
        height: auto;
        line-height: 1;
        margin-left: 0.5rem; }
      header .custom .contact a {
        margin: 5px 0px;
        text-decoration: none;
        color: #6E6F71; }
      header .custom .contact .contact-holder {
        display: flex;
        justify-content: center;
        align-items: center;}
    header .custom h1 {
      font-size: 3.5rem;
      letter-spacing: -0.025em; }
      header .custom h1.no-display {
        display: none; }
    header .custom img {
      height: 60px; }

nav {
  display: block;
  width: 100%;
  max-height: 300px;
  background: #1A4884;
  z-index: 999; }
  @media (min-width: 992px) {
    nav {
      padding: 0 100px; } }
  nav .nav {
    list-style-type: none;
    display: none; }
    @media (min-width: 992px) {
      nav .nav {
        display: flex;
        justify-content: space-between;
        align-items: center; } }
    nav .nav li {
      flex-grow: 1;
      border-right: 1px solid grey;
      text-align: center;
      position: relative; }
      nav .nav li.active {
          background: #F6C016;
      }
      /*
      nav .nav li.active:after {
        content: '';
        display: block;
        position: absolute;
        left: calc(50% - 5px);
        bottom: 0;
        width: 0;
        height: 0;
        border-bottom: 5px solid white;
        border-top: 5px solid transparent;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent; }
        */
      nav .nav li:last-child {
        border-right: none; }
      nav .nav li a {
        display: block;
        color: white;
        text-decoration: none;
        padding: 8px 16px; }
        nav .nav li a:hover {
          background: #F6C016;
          color: #1A4884; }
  nav .deeper.parent {
    position: relative; }
    nav .deeper.parent ul {
      position: absolute;
      display: none;
      background: #1A4884;
      z-index: 5;
      width: auto;
      min-width: 100%;
      list-style-type: none; }
      nav .deeper.parent ul li {
        border-top: 1px solid #aeafb0; }
        nav .deeper.parent ul li a {
          color: white;
          background: #F6C016; }
          nav .deeper.parent ul li a:hover {
            background: #1A4884;
            color: white; }
      nav .deeper.parent ul:after {
        content: '';
        display: block;
        position: absolute;
        left: calc(50% - 5px);
        bottom: 100%;
        width: 0;
        height: 0;
        border-bottom: 5px solid white;
        border-top: 5px solid transparent;
        border-left: 5px solid transparent;
        border-right: 5px solid transparent; }
    nav .deeper.parent:hover {
      background: #F6C016; }
      nav .deeper.parent:hover ul {
        display: block; }
  nav .accordeonck {
    height: 0; }
    nav .accordeonck ul li {
      width: 100%; }
    @media (min-width: 992px) {
      nav .accordeonck {
        display: none; } }
    nav .accordeonck [id^=accordeonck] {
      box-shadow: none !important;
      display: none; }
      nav .accordeonck [id^=accordeonck] li {
        border: none; }

[id^=accordeonck] li.parent > span span.toggler_icon {
  background: url("../../../modules/mod_accordeonmenuck/assets/plus.png") center center no-repeat !important; }

[id^=accordeonck] li.parent.open > span span.toggler_icon {
  background: url("../../../modules/mod_accordeonmenuck/assets/minus.png") center center no-repeat !important; }

.menucontrolbox {
  width: 50px;
  text-align: right;
  padding: 0 20px 10px;
  display: flex;
  align-items: center; }
  .menucontrolbox svg {
    width: 50px; }
  @media (min-width: 452px) {
    .menucontrolbox {
      padding: 0 20px;
      z-index: 40;
      height: 40px; } }
  @media (min-width: 992px) {
    .menucontrolbox {
      padding: 10px 0;
      text-align: center;
      width: 20%; } }
  @media (min-width: 992px) {
    .menucontrolbox {
      width: 50px;
      display: none; } }

#menucontrol:checked ~ nav {
  display: block;
  position: relative;
  overflow: visible;
  height: auto;
  position: absolute; }
  #menucontrol:checked ~ nav .accordeonck {
    z-index: 999;
    display: block;
    background: white;
    border: none;
    height: auto; }
  #menucontrol:checked ~ nav .accordeonck:not(.accordeonck) {
    height: auto;
    position: relative;
    border: none; }
  #menucontrol:checked ~ nav [id^=accordeonck] {
    display: block;
    border-bottom: 1px dotted #bbb;
    padding: 0;
    box-shadow: none !important; }
  #menucontrol:checked ~ nav li {
    width: 100%;
    display: block;
    position: relative;
    padding: 5px 0; }
    @media (min-width: 768px) {
      #menucontrol:checked ~ nav li {
        display: inline-block;
        padding: 0; } }
    @media (min-width: 992px) {
      #menucontrol:checked ~ nav li {
        padding: 0 2.5px 0;
        margin-left: 0; } }
  @media (min-width: 992px) {
    #menucontrol:checked ~ nav {
      position: absolute;
      left: calc(3% + 152px);
      width: calc(97% - 152px);
      padding: 11px 10px;
      margin-top: 39px;
      z-index: 40;
      border-bottom: none;
      overflow: hidden; } }
  @media (min-width: 992px) {
    #menucontrol:checked ~ nav {
      position: relative;
      width: auto;
      display: flex;
      margin-top: 14px;
      border-bottom: none;
      height: auto;
      padding: 0;
      right: 0;
      left: 0;
      background: none; } }
  @media (min-width: 1200px) {
    #menucontrol:checked ~ nav {
      margin-top: 30px; } }

.menucontrolbutton {
  margin: 20px 0;
  cursor: pointer;
  width: 50px;
  font-size: 1em;
  -webkit-transition: color 0.8s ease;
  -moz-transition: color 0.8s ease;
  -ms-transition: color 0.8s ease;
  -o-transition: color 0.8s ease;
  transition: color 0.8s ease;
  color: #646464; }
  @media (min-width: 768px) {
    .menucontrolbutton:hover, .menucontrolbutton:active, .menucontrolbutton:focus {
      color: white; } }
  .menucontrolbutton svg {
    height: 20px;
    width: 20px;
    margin: 0 10px -3px 0; }
    @media (min-width: 992px) {
      .menucontrolbutton svg {
        fill: white; } }
  @media (min-width: 992px) {
    .menucontrolbutton {
      color: white; } }

#menucontrol, #menucontrol2 {
  display: none; }

#menucontrol2:checked ~ #sub-aside {
  display: block;
  position: relative;
  overflow: visible;
  height: auto;
  padding: 10px;
  border-top: 5px solid white; }
  #menucontrol2:checked ~ #sub-aside li {
    border-color: white; }
    #menucontrol2:checked ~ #sub-aside li a {
      color: white; }
      @media (min-width: 992px) {
        #menucontrol2:checked ~ #sub-aside li a {
          color: black; } }
    @media (min-width: 992px) {
      #menucontrol2:checked ~ #sub-aside li {
        border-color: black; } }
  @media (min-width: 452px) {
    #menucontrol2:checked ~ #sub-aside {
      padding: 0 10px 0 0; } }
  @media (min-width: 768px) {
    #menucontrol2:checked ~ #sub-aside {
      border-bottom: none;
      overflow: hidden; } }
  @media (min-width: 992px) {
    #menucontrol2:checked ~ #sub-aside {
      border-bottom: none;
      height: auto;
      background: none;
      padding-right: 70px; } }

#menucontrol2 {
  display: none; }

.sector-menu {
  padding: 10px 20px;
  text-align: left; }
  .sector-menu label {
    color: white; }
  @media (min-width: 768px) {
    .sector-menu {
      width: 100%;
      display: none; } }

.hero .custom img {
  width: 100%; }
.hero .slidescontainer {
  position: relative; }
.hero .slides {
  height: 200px; }
  @media (min-width: 452px) {
    .hero .slides {
      height: 250px; } }
  @media (min-width: 768px) {
    .hero .slides {
      height: 300px; } }
  @media (min-width: 992px) {
    .hero .slides {
      height: 350px; } }
  @media (min-width: 1200px) {
    .hero .slides {
      height: 400px; } }
  @media (min-width: 1500px) {
    .hero .slides {
      height: 450px; } }
  @media (max-height: 700px) {
    .hero .slides {
      height: 20vh; } }
.hero .jg_control_wrapper {
  position: absolute;
  bottom: 50%;
  width: 100%;
  padding: 0 25px; }
  .hero .jg_control_wrapper .jg_slide_control {
    padding: 15px 30px;
    background: rgba(0, 0, 0, 0.5);
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 100; }
  .hero .jg_control_wrapper #js_prev {
    float: left; }
  .hero .jg_control_wrapper #js_next {
    float: right; }

.top {
  display: block;
  width: 100%;
  max-height: 300px;
  background: #eee; }

main #system-message-container #system-message {
  padding: 10px 20px; }
  main #system-message-container #system-message .alert {
    display: flex;
    align-items: center; }
    main #system-message-container #system-message .alert .close,
    main #system-message-container #system-message .alert .alert-heading {
      margin-right: 10px; }
@media (min-width: 768px) {
  main .section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%; }
    main .section .item {
      width: 48%; } }
@media (min-width: 992px) {
  main .section .item {
    width: 30%; } }
main .content_wrapper {
  display: flex;
  padding: 0 25px; }
@media (min-width: 992px) {
  main .content_wrapper {
    padding: 0 100px;
  }
  main .left-column.full-width {
    width: 100%;
    padding-right: 0px;
    margin-right: 0px; } }
@media (min-width: 992px) {
  main .left-column {
    width: calc(2 * (100% / 3));
    padding-right: 25px; } }
main .left-column .home_content_wrapper {
  display: flex;
  flex-direction: column; }
  @media (min-width: 992px) {
    main .left-column .home_content_wrapper {
      flex-direction: row; } }
  main .left-column .home_content_wrapper .left_content {
    width: 100%; }
    @media (min-width: 992px) {
      main .left-column .home_content_wrapper .left_content {
        width: 75%; } }
  main .left-column .home_content_wrapper .call_the_professionals {
    width: 100%;
    background: #1A4884;
    border-radius: 4px;
    padding: 10px 20px;
    margin-bottom: 20px; }
    @media (min-width: 992px) {
      main .left-column .home_content_wrapper .call_the_professionals {
        width: 25%;
        margin-left: 10px; } }
    main .left-column .home_content_wrapper .call_the_professionals h3 {
      color: #F6C016;
      text-align: center; }
    main .left-column .home_content_wrapper .call_the_professionals p {
      color: white; }
main .right-column {
  padding: 10px 20px;
  background: #6E6F71;
  color: white;
  overflow: hidden; }
  @media (min-width: 992px) {
    main .right-column {
      width: calc(100% / 3); } }
  @media (min-width: 1200px) {
    main .right-column {
      padding-right: 100px; } }
  main .right-column figure {
    margin: 0; }
  main .right-column img {
    width: 100%; }
  main .right-column h3 a {
    color: white;
    text-decoration: none;
    margin: 10px 0px;
    display: block; }
  main .right-column ul.nav {
    list-style-type: none;
    display: flex;
    flex-flow: row wrap; }
    main .right-column ul.nav li a {
      padding: 10px 20px;
      display: block;
      margin: 0px 10px 10px 0px;
      background: #1A4884;
      color: white;
      text-decoration: none;
      border: 1px solid #1A4884;
      transition: all .1s ease-in-out;
      border-radius: 4px; }
      main .right-column ul.nav li a:hover {
        color: #1A4884;
        background: white; }
@media (min-width: 992px) {
  main .side {
    width: 30%;
    margin-left: 20px;
    float: right; }
    main .side h3 {
      margin-top: 0; } }
main .img-fulltext-none {
  display: inline-block; }
main .img-fulltext-left {
  float: left;
  display: block; }
main .img-fulltext-right {
  float: right;
  display: block; }

.testimonials {
  display: block;
  width: 100%;
  padding: 25px;
  background: #6E6F71; }
  @media (min-width: 992px) {
    .testimonials {
      padding: 25px 20%; } }
  .testimonials p.readmore {
    margin-top: 25px; }

.bottom {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 25px;
  background: #1A4884; }
  @media (min-width: 992px) {
    .bottom {
      flex-direction: row;
      justify-content: space-around; } }
  .bottom .bottom_box {
    width: 100%;
    margin-bottom: 20px;
    background: white; }
    @media (min-width: 992px) {
      .bottom .bottom_box {
        width: 33%;
        margin-bottom: 0px; } }
    .bottom .bottom_box img {
      display: block;
      margin: 0 auto;
      max-width: 100%;}
    .bottom .bottom_box ul,
    .bottom .bottom_box ol {
      list-style-type: none; }
    .bottom .bottom_box:last-child {
      margin-bottom: 0px; }
    .bottom .bottom_box .title {
      background: #1A4884; }
    .bottom .bottom_box h2 {
      color: white;
      font-size: 1.5rem;
      width: 50%;
      background: #F6C016;
      border-radius: 0px 8px 0px 0px;
      margin-bottom: 0px;
      text-align: center;
      padding: 4px 8px; }
      .bottom .bottom_box h2 a {
        color: white;
        text-decoration: none; }
    .bottom .bottom_box .newsflash_inner {
      padding: 10px 20px; }
      .bottom .bottom_box .newsflash_inner h2 {
        color: #646464;
        font-size: 1.33rem;
        width: 100%;
        background: none;
        border-radius: 0px;
        margin-bottom: 0px;
        text-align: left;
        padding: 0px;}
        .bottom .bottom_box .newsflash_inner h2 a {
          color: #646464;
          text-decoration: none; }
    .bottom .bottom_box .intro_content {
      background: white;
      padding: 10px 20px; }
  @media (min-width: 992px) {
    .bottom {
      padding: 25px 100px; } }

.anseve_form fieldset {
  border: none; }
  .anseve_form fieldset input, .anseve_form fieldset textarea {
    width: 50%;
    margin: 5px 0;
    border: 1px dotted #ccc;
    padding: 5px 10px;
    line-height: 1em; }
  .anseve_form fieldset button {
    display: block;
    background: #f1f3f4;
    border: 1px dotted #ccc;
    padding: 5px; }
    @media (min-width: 992px) {
      .anseve_form fieldset button {
        width: 30%;
        margin: 0;
        margin-left: auto; } }

.gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between; }
  .gallery .jg_row .jg_photo {
    border: none; }
  @media (min-width: 452px) {
    .gallery .jg_row {
      width: 48%; } }
  @media (min-width: 992px) {
    .gallery .jg_row {
      width: 30%; } }
  @media (min-width: 992px) {
    .gallery .jg_row:last-child:nth-child(2), .gallery .jg_row:last-child:nth-child(5), .gallery .jg_row:last-child:nth-child(8) {
      margin: 0 auto 0 5%; } }
  .gallery .jg_back, .gallery .jg_category, .gallery .pagination {
    width: 100%; }

#adminForm {
  width: 100%; }
  #adminForm .tab-content #editor {
    margin-top: 25px; }
    #adminForm .tab-content #editor .mceBranding {
      display: none !important; }
  #adminForm .tab-content #images {
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 15px 0;
    width: 100%; }
    #adminForm .tab-content #images .control-group {
      width: 100%; }
    @media (min-width: 992px) {
      #adminForm .tab-content #images .control-group {
        width: 20%;
        padding: 10px 0; }
        #adminForm .tab-content #images .control-group .inputbox {
          width: 100%; }
        #adminForm .tab-content #images .control-group .media-preview {
          width: 30px; }
        #adminForm .tab-content #images .control-group #jform_images_image_intro, #adminForm .tab-content #images .control-group #jform_images_image_fulltext {
          width: calc(100% - 120px); }
        #adminForm .tab-content #images .control-group .input-prepend {
          display: flex;
          flex-wrap: wrap; }
          #adminForm .tab-content #images .control-group .input-prepend .btn {
            margin-left: 5px; }
        #adminForm .tab-content #images .control-group .control-label {
          padding-bottom: 5px; }
      #adminForm .tab-content #images .control-group:first-child, #adminForm .tab-content #images .control-group:nth-child(5) {
        width: 32%; } }
  #adminForm .tab-content #publishing {
    display: none;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 10px; }
    #adminForm .tab-content #publishing .control-group {
      width: 100%; }
    @media (min-width: 992px) {
      #adminForm .tab-content #publishing .control-group {
        width: 20%; }
      #adminForm .tab-content #publishing .control-group:first-child {
        width: 32%; } }
  #adminForm .tab-content #metadata {
    display: flex;
    justify-content: space-between;
    padding-top: 10px; }
    #adminForm .tab-content #metadata .control-group {
      width: 48%; }
      #adminForm .tab-content #metadata .control-group textarea {
        width: 100%; }
  #adminForm .tab-content #attrib-fields-0 {
    display: none; }
  #adminForm .tab-content a:not(.tab-pane a) {
    color: white;
    display: inline-block; }
  #adminForm .tab-content select {
    width: 100%; }
  #adminForm fieldset {
    padding: 30px;
    border: none; }
  #adminForm .btn-toolbar {
    margin: 25px 0px;
    display: block;
    padding-left: 30px;
    position: relative; }
    #adminForm .btn-toolbar .btn-group {
      width: auto;
      display: inline-block;
      margin: 0 auto 0 0 !important; }
      #adminForm .btn-toolbar .btn-group button {
        border: none;
        background: #6e6f72;
        padding: 10px;
        color: white; }
        #adminForm .btn-toolbar .btn-group button i {
          color: white; }
        #adminForm .btn-toolbar .btn-group button:hover {
          background: #184885; }
        #adminForm .btn-toolbar .btn-group button span {
          margin-right: 10px; }
    #adminForm .btn-toolbar .btn-group:nth-child(3) {
      display: block; }
  #adminForm .chzn-single {
    border: 1px solid #6e6f72;
    padding: 5px 10px;
    background: white !important;
    border-radius: 0 !important;
    height: 33px;
    border-radius: 0;
    width: 200px; }
    #adminForm .chzn-single div b {
      margin-top: 5px; }
  #adminForm .chzn-drop {
    width: 200px; }
  #adminForm .chzn-results {
    padding-left: 0 !important; }
    #adminForm .chzn-results .active-result {
      font-size: 16px !important; }
  #adminForm #filter-bar {
    display: flex;
    justify-content: space-between;
    width: 100%; }
    #adminForm #filter-bar .btn-group {
      width: inherit; }
  #adminForm .pagination li {
    display: inline-block; }

.jg_userpanelview {
  width: 100%; }
  .jg_userpanelview .jg-quick-edit-row .row-fluid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    .jg_userpanelview .jg-quick-edit-row .row-fluid .span3 .img-polaroid {
      margin: 10px auto;
      width: 300px;
      display: block; }
    .jg_userpanelview .jg-quick-edit-row .row-fluid .span3 a {
      margin: 20px;
      display: block; }
      .jg_userpanelview .jg-quick-edit-row .row-fluid .span3 a .img-polaroid {
        margin: 0; }
    .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 {
      margin-top: 20px; }
      .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 label, .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 .jg-editor-wrapper {
        width: 100%; }
      .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 .span3, .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 .span9 {
        margin: 5px 0; }
        .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 .span3 input, .jg_userpanelview .jg-quick-edit-row .row-fluid .span9 .span9 input {
          width: 100%; }
  .jg_userpanelview .jg_up_head .btn-group {
    display: flex;
    flex-direction: row; }

[id^="jg-title-row"] td {
  width: 10%; }
[id^="jg-title-row"] td:first-child {
  width: 2%; }
[id^="jg-title-row"] td:nth-child(2) {
  width: 11%; }
[id^="jg-title-row"] td:nth-child(3) {
  width: 4%; }
[id^="jg-title-row"] td:nth-child(4) {
  width: 45%; }
[id^="jg-title-row"] td:nth-child(5) {
  width: 20%; }
[id^="jg-title-row"] td:nth-child(6) {
  width: 20%; }
  [id^="jg-title-row"] td:nth-child(6) .pull-left {
    width: 30px;
    display: inline-block; }

#imageList thead th {
  width: 10%; }
#imageList thead th:first-child {
  width: 2%; }
#imageList thead th:nth-child(2) {
  width: 11%;
  text-align: left; }
#imageList thead th:nth-child(3) {
  width: 4%; }
#imageList thead th:nth-child(4) {
  width: 45%;
  text-align: left; }
#imageList thead th:nth-child(5) {
  width: 20%;
  text-align: left; }
#imageList thead th:nth-child(6) {
  width: 10%;
  text-align: left; }

#editor .span6 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-bottom: 10px; }
#editor #jform_title {
  width: 45%; }

#jform_publish_up, #jform_publish_down {
  width: calc(100% - 40px); }

.icon-cog {
  display: none; }
  .icon-cog:before {
    display: none; }

.dropdown-menu {
  list-style-type: none;
  padding-left: 0 !important; }
  .dropdown-menu .edit-icon span {
    margin-right: 15px; }

#versionsModal {
  width: 100%; }

#editor-xtd-buttons {
  width: 100%; }

.mceLayout, .wf-editor-container {
  width: 100% !important; }

#jform_articletext {
  width: 100% !important; }

#editor-xtd-buttons {
  margin: 5px;
  padding-left: 0 !important; }
  #editor-xtd-buttons a {
    background: #184885;
    padding: 10px;
    color: white !important;
    margin-right: 5px;
    text-decoration: none; }
    #editor-xtd-buttons a:hover {
      background: #6e6f72; }
    #editor-xtd-buttons a:not([title="Content Template"]) {
      display: none; }

.edit-icon {
  margin-left: 0 !important;
  list-style: none;
  margin: 10px 0px; }
  .edit-icon:before {
    display: none; }

.wf-editor-tabs li {
  margin-left: 0 !important; }
  .wf-editor-tabs li:before {
    display: none; }

.tab-content .tab-pane:not(#editor) a {
  color: #6e6f72;
  text-decoration: none; }
  .tab-content .tab-pane:not(#editor) a:hover {
    color: #185885; }

.nav-tabs {
  display: block;
  padding: 0; }
  .nav-tabs li {
    display: inline-block;
    padding: 0 5px; }
    .nav-tabs li a {
      background: #184885;
      color: white;
      padding: 10px;
      text-decoration: none; }
      .nav-tabs li a:hover {
        background: #6e6f72; }
  .nav-tabs .active a {
    background: #f7c116; }

.media-preview {
  display: none; }

.gallery #imageList {
  display: block;
  width: 100%; }
  .gallery #imageList thead {
    background: #184885;
    color: white;
    padding: 5px;
    display: block; }
    .gallery #imageList thead a {
      color: white;
      text-decoration: none; }

.cms {
  z-index: 999;
  padding: 15px 30px;
  background: #646464;
  width: 100%;
  text-align: center; }
  .cms .nav {
    display: block;
    list-style-type: none; }
    .cms .nav li {
      display: inline-block; }
      .cms .nav li a {
        padding: 0 10px;
        border-left: 2px solid #eee;
        text-decoration: none;
        color: #eee; }
        .cms .nav li a:hover {
          color: #c8c8c8; }
    .cms .nav li:first-child a {
      border-left: none;
      padding-left: 0; }

div.login {
  padding-left: 50px;
  margin-top: 20px; }
  div.login form fieldset {
    border: none;
    margin: 0;
    padding: 0; }
  div.login form input[type="text"],
  div.login form input[type="password"],
  div.login form button {
    padding: 5px 10px;
    border-radius: 4px;
    border: 1px solid #CCC;
    margin-bottom: 10px; }

div.forgotten {
  padding-left: 50px;
  margin-top: 20px; }
  div.forgotten a {
    display: inline-block;
    background: #184885;
    color: white;
    padding: 8px 16px;
    text-decoration: none; }

.popover {
  position: absolute;
  top: 0;
  margin-left: 11px;
  z-index: 1060;
  display: none;
  max-width: 276px;
  padding: 1px;
  text-align: left;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
  border: 1px solid #ccc;
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  white-space: normal; }
  .popover .arrow,
  .popover .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid; }
  .popover .arrow {
    border-width: 11px; }
    .popover .arrow:after {
      border-width: 10px;
      content: ""; }
  .popover.right .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, 0.25); }
    .popover.right .arrow:after {
      left: 1px;
      bottom: -10px;
      border-left-width: 0;
      border-right-color: #fff; }
  .popover .popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 0.9rem;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0; }
    .popover .popover-title:empty {
      display: none; }
  .popover .popover-content {
    padding: 9px 14px;
    font-size: 0.8rem; }

div[class^="contenttemplater-list"] .dropdown-menu li:hover {
  cursor: pointer; }
div[class^="contenttemplater-list"] .dropdown-menu li a {
  background: green;
  display: block;
  padding: 10px;
  text-decoration: none;
  color: white; }
  div[class^="contenttemplater-list"] .dropdown-menu li a:hover {
    cursor: pointer; }

/* Edit Profile Styling */
form#member-profile fieldset {
  margin: 15px;
  padding: 15px; }
form#member-profile ul {
  list-style-type: none; }

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100px;
  padding: 0 50px; }
  footer ul.footer-menu {
    list-style-type: none;
    display: flex;
    width: 100%;
    justify-content: center; }
    footer ul.footer-menu li {
      display: inline-block;
      margin: 1.5%; }
      footer ul.footer-menu li a {
        text-decoration: none;
        color: #646464;
        font-size: 1.1em; }
  footer .custom {
    width: 100%; }
    footer .custom .partners {
      padding: 40px 0;
      display: flex;
      justify-content: space-around;
      clear: both;
      flex-wrap: wrap;
      width: 60%;
      margin: 0 auto; }
      footer .custom .partners .item img {
        max-height: 50px;
        width: auto; }

/*# sourceMappingURL=style.css.map */
.hero {
    margin-bottom: 20px;
}
.slides{
    height:153px;
    text-align:left
}
@media all and (min-width: 750px){
    .slides{
        height:300px
    }
}
@media all and (min-width: 1000px){
    .slides{
        height:366px
    }
}
@media all and (min-width: 1200px){
    .slides{
        height:416px
    }
}
.slides ul{
    width:100%;
    height:100%;
    float:left;
    position:relative;
    overflow:hidden
}
.main-slide,.web-slide,.coms-slide,.mac-slide,.home-auto-slide,.backup-slide{
    position:absolute;
    width:100%;
    overflow:hidden;
    background:url("../../../images/slides/it-support2.jpg") right no-repeat;
    background-size:cover
}
.main-slide span a,.web-slide span a,.coms-slide span a,.mac-slide span a,.home-auto-slide span a,.backup-slide span a{
    background:#fbcc6e
}
@media all and (min-width: 450px){
    .main-slide,.web-slide,.coms-slide,.mac-slide,.home-auto-slide,.backup-slide{
        left:30%;
        margin-left:-30%;
        height:100%
    }
}
@media all and (min-width: 750px){
    .main-slide,.web-slide,.coms-slide,.mac-slide,.home-auto-slide,.backup-slide{
        height:100%;
        height:286px;
        left:0;
        margin-left:0
    }
}
@media all and (min-width: 1000px){
    .main-slide,.web-slide,.coms-slide,.mac-slide,.home-auto-slide,.backup-slide{
        height:100%;
        height:350px;
        left:0;
        margin-left:0
    }
}
@media all and (min-width: 1200px){
    .main-slide,.web-slide,.coms-slide,.mac-slide,.home-auto-slide,.backup-slide{
        height:100%;
        height:400px;
        left:0;
        margin-left:0
    }
}
.web-slide{
    background:url("../../../images/slides/meeting.jpg") left no-repeat;
    background-size:cover
}
.web-slide span a{
    background:#5993bd
}
.coms-slide{
    background:url("../../../images/slides/coms.jpg") center no-repeat;
    background-size:cover
}
.coms-slide span a{
    background:#59b592
}
.mac-slide{
    background:url("../../../images/slides/iphone.jpg") center no-repeat;
    background-size:cover
}
.mac-slide span a{
    background:#e27074
}
.home-auto-slide{
    background:url("../../../images/slides/home-automation.jpg") right no-repeat;
    background-size:cover
}
.home-auto-slide span a{
    background:#e0997c
}
.backup-slide{
    background:url("../../../images/slides/red.jpg") center no-repeat;
    background-size:cover
}
.backup-slide span a{
    background:#b47ac5
}
.slides li{
    opacity:0;
    -webkit-transition:opacity 1s ease;
    -moz-transition:opacity 1s ease;
    -ms-transition:opacity 1s ease;
    -o-transition:opacity 1s ease;
    transition:opacity 1s ease;
    height:100%
}
.slides li.active{
    opacity:1
}
.slides li span{
    display:block;
    margin:45px 0 45px -1000px;
    font-size:1.2em;
    font-family: 'Lato', sans-serif;
}
@media all and (min-width: 750px){
    .slides li span{
        display:inline-block;
        margin:230px 0 45px -1000px
    }
}
@media all and (min-width: 1000px){
    .slides li span{
        margin:300px 0 45px -1000px
    }
}
@media all and (min-width: 1200px){
    .slides li span{
        margin:345px 0 45px -1000px;
        font-size:1.6em
    }
}
.slides li span a{
    display:none;
    padding:10px;
    text-decoration:none;
    color:white;
    cursor:pointer;
    font-family:'Lato', sans-serif;
}
@media all and (min-width: 750px){
    .slides li span a{
        display:block
    }
}
.slides li span:nth-child(1){
    transition:margin 2s ease-in-out;
    display:inline-block
}
.slides li span:nth-child(2){
    transition:margin 2s ease-in-out;
    display:inline-block
}
.slides li span:nth-child(3){
    transition:margin 2s ease-in-out;
    display:inline-block
}
.slides li span:nth-child(4){
    transition:margin 2s ease-in-out;
    display:inline-block
}
.slides .active span{
    margin-left:0
}

/* COVID-19 Support */
.covid19-support {
    margin-top: 1.5em;
    background: rgba(211, 211, 211, 0.2);
    padding: 10px;
}

.covid19-support h3 {
    font-size: 1.4em;
}

.covid19-support p {
    font-size: 1rem;
    margin: 0.75em 0em;
}

/* Unordered Lists in Content */
ul.edit-list {
    margin-left: 20px;
}

ul.edit-list li {
    margin-bottom: 5px;
    font-weight: 400;
}

/* Testimonial Title */
h3.testimonial {
    text-align: center;
    color: white;
    font-weight: 300;
}

.bottom_box h1 {
    font-size: 1.5rem;
}

[id^=accordeonck] li.parent > span span.toggler_icon {
	background: url('../../../modules/mod_accordeonmenuck/assets/plus.png') center center no-repeat !important;
}
[id^=accordeonck] li.parent.open > span span.toggler_icon {
	background: url('../../../modules/mod_accordeonmenuck/assets/minus.png') center center no-repeat !important;
}

/* Customer Page */
h2 a {
    text-decoration: none;
    color: #aecaef;
}

/* Testimonials Page */
.test-block p.readmore a {
    text-decoration: none;
    color: #646464;
}

/* Testimonials */
.testimonials {
    width: 33%;
    padding: 0;
    background: white !important;
    display: none;
}

@media all and (min-width: 1200px) {
    .testimonials {
        display: block;   
    }
}

.testimonials .slides_control {
    width: 100% !important;
    height: 90px !important;
    position: initial !important;
}

.testimonials .slides_control .slides {
    width: 100% !important;
}

.testimonials .slides_control .slide {
    width: 75% !important;
    text-align: center;
    margin: 0 auto;
    left: 10% !important;
}

.testimonials p.readmore {
    margin-top: 5px;
    text-align: right;
    font-size: 0.9rem;
    margin-bottom: 0px;
}

.bottom_box h1 a {
    color: #1A4884;
}

.call_the_professionals h2 {
    color: #F6C016;
    text-align: center;
    font-size: 2rem;
}

.call_the_professionals h4 a {
    color: white;
    margin-bottom: 10px;
    font-size: 1.1rem;
    display: block;
}

.call_the_professionals img {
    float: none !important;
    display: block;
    margin-bottom: 10px;
}

.call_the_professionals a {
    color: white;
    display: inline-block;
    margin-bottom: 15px;
}

ul.pager.pagenav {
    list-style-type: none;
}

ul.pager.pagenav li a {
    float: left;
    position: relative;
    margin-right: 2%;
    margin-bottom: 0.2em;
    color: #242424;
    line-height: 1.2em;
    font-size: 100%;
    text-decoration: none;
}

.item.column-1 {
    overflow: hidden;
}

.blog_item_wrapper .content {
  overflow: hidden;
}
.blog_item_wrapper .content h2 {
    font-size: 1.5rem;
}
.blog_item_wrapper .content h3 {
    font-size: 1.25rem;
}
.blog_item_wrapper .content ul,
.blog_item_wrapper .content ol {
    font-size: 1.2rem;
    margin-bottom: 15px;
}
.blog_item_wrapper .title a {
    text-decoration: none;
}
.blog_item_wrapper .content .blog-header {
    display: none;
}
.blog_item_wrapper .content .blog-header h1 {
  font-size: 2rem;
  color: #aecaef;
  font-weight: 400;
  margin-bottom: 20px;
}
.blog_item_wrapper .content img {
  width: 33%;
}

#searchDomains {
  background-image: url('/images/searchicon.png'); /* Add a search icon to input */
  background-position: 10px 12px; /* Position the search icon */
  background-repeat: no-repeat; /* Do not repeat the icon image */
  width: 100%; /* Full-width */
  font-size: 16px; /* Increase font-size */
  padding: 12px 20px 12px 40px; /* Add some padding */
  border: 1px solid #ddd; /* Add a grey border */
  margin-bottom: 12px; /* Add some space below the input */
}

  @media screen and (min-width: 992px) {
      #searchDomains {
          width: 50%;
      }
  }
  
footer ul.footer-menu {
    flex-direction: column;
}

@media screen and (min-width: 992px) {
    footer ul.footer-menu {
        flex-direction: row;
    }
}

#domains_for_sale tr:last-child td:first-child,
#domains_for_sale tr:last-child td:last-child {
	border-bottom: 1px solid #e2e2e3;
}

.blog.portfolio img {
    max-width: 60%;
}

.blog.portfolio .item-image {
	display: none;
}

.blog.portfolio .portfolio-header h1 {
	font-size: 2rem;
}

.blog.portfolio .portfolio-header h2 {
	font-size: 1.5rem;
}

img.portfolio {
    max-width: 75%;
}

li.hidden-phone:not(.active) {
    display: none !important;
}
@media screen and (min-width: 768px) {
    li.hidden-phone:not(.active) {
        display: inline-block !important;
    }   
}

.left-column.full-width {
    max-width: 100%;
}

main#content ul,
main#content ol {
	padding: 0px;
	margin-bottom: 10px;
}
main#content ul li,
main#content ol li {
	line-height: 1.5;
    font-size: 1.2rem;
    margin-bottom: 5px;
}