/* This aggregate contains the following files:
modules/system/system.base.css,
modules/system/system.menus.css,
modules/system/system.messages.css,
modules/system/system.theme.css,
sites/all/modules/jquery_update/replace/ui/themes/base/minified/jquery.ui.core.min.css,
sites/all/modules/jquery_update/replace/ui/themes/base/minified/jquery.ui.theme.min.css,
sites/all/modules/jquery_update/replace/ui/themes/base/minified/jquery.ui.menu.min.css,
sites/all/modules/jquery_update/replace/ui/themes/base/minified/jquery.ui.autocomplete.min.css,
modules/comment/comment.css,
modules/field/theme/field.css,
modules/node/node.css,
modules/search/search.css,
modules/user/user.css,
sites/all/modules/views/css/views.css,
sites/all/modules/ckeditor/css/ckeditor.css,
sites/all/modules/ctools/css/ctools.css,
sites/all/modules/webform/css/webform.css,
public://spamicide/required_field.css,
sites/all/libraries/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-dune.dark.css,
sites/all/themes/da14/css/swiper.min.css,
sites/all/themes/da14/css/app.css. */

/**
   * @file
   * Generic theme-independent base styles.
   */
  
  /**
   * Autocomplete.
   *
   * @see autocomplete.js
   */
  /* Suggestion list */
  #autocomplete {
    border: 1px solid;
    overflow: hidden;
    position: absolute;
    z-index: 100;
  }
  #autocomplete ul {
    list-style: none;
    list-style-image: none;
    margin: 0;
    padding: 0;
  }
  #autocomplete li {
    background: #fff;
    color: #000;
    cursor: default;
    white-space: pre;
    zoom: 1; /* IE7 */
  }
  /* Animated throbber */
  html.js input.form-autocomplete {
    background-image: url(https://da-14.com/misc/throbber-inactive.png);
    background-position: 100% center; /* LTR */
    background-repeat: no-repeat;
  }
  html.js input.throbbing {
    background-image: url(https://da-14.com/misc/throbber-active.gif);
    background-position: 100% center; /* LTR */
  }
  
  /**
   * Collapsible fieldsets.
   *
   * @see collapse.js
   */
  html.js fieldset.collapsed {
    border-bottom-width: 0;
    border-left-width: 0;
    border-right-width: 0;
    height: 1em;
  }
  html.js fieldset.collapsed .fieldset-wrapper {
    display: none;
  }
  fieldset.collapsible {
    position: relative;
  }
  fieldset.collapsible .fieldset-legend {
    display: block;
  }
  
  /**
   * Resizable textareas.
   *
   * @see textarea.js
   */
  .form-textarea-wrapper textarea {
    display: block;
    margin: 0;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .resizable-textarea .grippie {
    background: #eee url(https://da-14.com/misc/grippie.png) no-repeat center 2px;
    border: 1px solid #ddd;
    border-top-width: 0;
    cursor: s-resize;
    height: 9px;
    overflow: hidden;
  }
  
  /**
   * TableDrag behavior.
   *
   * @see tabledrag.js
   */
  body.drag {
    cursor: move;
  }
  .draggable a.tabledrag-handle {
    cursor: move;
    float: left; /* LTR */
    height: 1.7em;
    margin-left: -1em; /* LTR */
    overflow: hidden;
    text-decoration: none;
  }
  a.tabledrag-handle:hover {
    text-decoration: none;
  }
  a.tabledrag-handle .handle {
    background: url(https://da-14.com/misc/draggable.png) no-repeat 6px 9px;
    height: 13px;
    margin: -0.4em 0.5em; /* LTR */
    padding: 0.42em 0.5em; /* LTR */
    width: 13px;
  }
  a.tabledrag-handle-hover .handle {
    background-position: 6px -11px;
  }
  div.indentation {
    float: left; /* LTR */
    height: 1.7em;
    margin: -0.4em 0.2em -0.4em -0.4em; /* LTR */
    padding: 0.42em 0 0.42em 0.6em; /* LTR */
    width: 20px;
  }
  div.tree-child {
    background: url(https://da-14.com/misc/tree.png) no-repeat 11px center; /* LTR */
  }
  div.tree-child-last {
    background: url(https://da-14.com/misc/tree-bottom.png) no-repeat 11px center; /* LTR */
  }
  div.tree-child-horizontal {
    background: url(https://da-14.com/misc/tree.png) no-repeat -11px center;
  }
  .tabledrag-toggle-weight-wrapper {
    text-align: right; /* LTR */
  }
  
  /**
   * TableHeader behavior.
   *
   * @see tableheader.js
   */
  table.sticky-header {
    background-color: #fff;
    margin-top: 0;
  }
  
  /**
   * Progress behavior.
   *
   * @see progress.js
   */
  /* Bar */
  .progress .bar {
    background-color: #fff;
    border: 1px solid;
  }
  .progress .filled {
    background-color: #000;
    height: 1.5em;
    width: 5px;
  }
  .progress .percentage {
    float: right; /* LTR */
  }
  /* Throbber */
  .ajax-progress {
    display: inline-block;
  }
  .ajax-progress .throbber {
    background: transparent url(https://da-14.com/misc/throbber-active.gif) no-repeat 0px center;
    float: left; /* LTR */
    height: 15px;
    margin: 2px;
    width: 15px;
  }
  .ajax-progress .message {
    padding-left: 20px;
  }
  tr .ajax-progress .throbber {
    margin: 0 2px;
  }
  .ajax-progress-bar {
    width: 16em;
  }
  
  /**
   * Inline items.
   */
  .container-inline div,
  .container-inline label {
    display: inline;
  }
  /* Fieldset contents always need to be rendered as block. */
  .container-inline .fieldset-wrapper {
    display: block;
  }
  
  /**
   * Prevent text wrapping.
   */
  .nowrap {
    white-space: nowrap;
  }
  
  /**
   * For anything you want to hide on page load when JS is enabled, so
   * that you can use the JS to control visibility and avoid flicker.
   */
  html.js .js-hide {
    display: none;
  }
  
  /**
   * Hide elements from all users.
   *
   * Used for elements which should not be immediately displayed to any user. An
   * example would be a collapsible fieldset that will be expanded with a click
   * from a user. The effect of this class can be toggled with the jQuery show()
   * and hide() functions.
   */
  .element-hidden {
    display: none;
  }
  
  /**
   * Hide elements visually, but keep them available for screen-readers.
   *
   * Used for information required for screen-reader users to understand and use
   * the site where visual display is undesirable. Information provided in this
   * manner should be kept concise, to avoid unnecessary burden on the user.
   * "!important" is used to prevent unintentional overrides.
   */
  .element-invisible {
    position: absolute !important;
    clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    height: 1px;
  }
  
  /**
   * The .element-focusable class extends the .element-invisible class to allow
   * the element to be focusable when navigated to via the keyboard.
   */
  .element-invisible.element-focusable:active,
  .element-invisible.element-focusable:focus {
    position: static !important;
    clip: auto;
    overflow: visible;
    height: auto;
  }
  
  /**
   * Markup free clearing.
   *
   * @see http://perishablepress.com/press/2009/12/06/new-clearfix-hack
   */
  .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  /* IE6 */
  * html .clearfix {
    height: 1%;
  }
  /* IE7 */
  *:first-child + html .clearfix {
    min-height: 1%;
  }/**/

/* Above code came from modules/system/system.base.css */

/**
   * @file
   * Styles for menus and navigation markup.
   */
  
  /**
   * Markup generated by theme_menu_tree().
   */
  ul.menu {
    border: none;
    list-style: none;
    text-align: left; /* LTR */
  }
  ul.menu li {
    margin: 0 0 0 0.5em; /* LTR */
  }
  ul li.expanded {
    list-style-image: url(https://da-14.com/misc/menu-expanded.png);
    list-style-type: circle;
  }
  ul li.collapsed {
    list-style-image: url(https://da-14.com/misc/menu-collapsed.png); /* LTR */
    list-style-type: disc;
  }
  ul li.leaf {
    list-style-image: url(https://da-14.com/misc/menu-leaf.png);
    list-style-type: square;
  }
  li.expanded,
  li.collapsed,
  li.leaf {
    padding: 0.2em 0.5em 0 0; /* LTR */
    margin: 0;
  }
  li a.active {
    color: #000;
  }
  td.menu-disabled {
    background: #ccc;
  }
  
  /**
   * Markup generated by theme_links().
   */
  ul.inline,
  ul.links.inline {
    display: inline;
    padding-left: 0;
  }
  ul.inline li {
    display: inline;
    list-style-type: none;
    padding: 0 0.5em;
  }
  
  /**
   * Markup generated by theme_breadcrumb().
   */
  .breadcrumb {
    padding-bottom: 0.5em;
  }
  
  /**
   * Markup generated by theme_menu_local_tasks().
   */
  ul.primary {
    border-bottom: 1px solid #bbb;
    border-collapse: collapse;
    height: auto;
    line-height: normal;
    list-style: none;
    margin: 5px;
    padding: 0 0 0 1em; /* LTR */
    white-space: nowrap;
  }
  ul.primary li {
    display: inline;
  }
  ul.primary li a {
    background-color: #ddd;
    border-color: #bbb;
    border-style: solid solid none solid;
    border-width: 1px;
    height: auto;
    margin-right: 0.5em; /* LTR */
    padding: 0 1em;
    text-decoration: none;
  }
  ul.primary li.active a {
    background-color: #fff;
    border: 1px solid #bbb;
    border-bottom: 1px solid #fff;
  }
  ul.primary li a:hover {
    background-color: #eee;
    border-color: #ccc;
    border-bottom-color: #eee;
  }
  ul.secondary {
    border-bottom: 1px solid #bbb;
    padding: 0.5em 1em;
    margin: 5px;
  }
  ul.secondary li {
    border-right: 1px solid #ccc; /* LTR */
    display: inline;
    padding: 0 1em;
  }
  ul.secondary a {
    padding: 0;
    text-decoration: none;
  }
  ul.secondary a.active {
    border-bottom: 4px solid #999;
  }/**/

/* Above code came from modules/system/system.menus.css */

/**
   * @file
   * Styles for system messages.
   */
  
  div.messages {
    background-position: 8px 8px; /* LTR */
    background-repeat: no-repeat;
    border: 1px solid;
    margin: 6px 0;
    padding: 10px 10px 10px 50px; /* LTR */
  }
  
  div.status {
    background-image: url(https://da-14.com/misc/message-24-ok.png);
    border-color: #be7;
  }
  div.status,
  .ok {
    color: #234600;
  }
  div.status,
  table tr.ok {
    background-color: #f8fff0;
  }
  
  div.warning {
    background-image: url(https://da-14.com/misc/message-24-warning.png);
    border-color: #ed5;
  }
  div.warning,
  .warning {
    color: #840;
  }
  div.warning,
  table tr.warning {
    background-color: #fffce5;
  }
  
  div.error {
    background-image: url(https://da-14.com/misc/message-24-error.png);
    border-color: #ed541d;
  }
  div.error,
  .error {
    color: #8c2e0b;
  }
  div.error,
  table tr.error {
    background-color: #fef5f1;
  }
  div.error p.error {
    color: #333;
  }
  
  div.messages ul {
    margin: 0 0 0 1em; /* LTR */
    padding: 0;
  }
  div.messages ul li {
    list-style-image: none;
  }/**/

/* Above code came from modules/system/system.messages.css */

/**
   * @file
   * Basic styling for common markup.
   */
  
  /**
   * HTML elements.
   */
  fieldset {
    margin-bottom: 1em;
    padding: 0.5em;
  }
  form {
    margin: 0;
    padding: 0;
  }
  hr {
    border: 1px solid gray;
    height: 1px;
  }
  img {
    border: 0;
  }
  table {
    border-collapse: collapse;
  }
  th {
    border-bottom: 3px solid #ccc;
    padding-right: 1em; /* LTR */
    text-align: left; /* LTR */
  }
  tbody {
    border-top: 1px solid #ccc;
  }
  tr.even,
  tr.odd {
    background-color: #eee;
    border-bottom: 1px solid #ccc;
    padding: 0.1em 0.6em;
  }
  
  /**
   * Markup generated by theme_tablesort_indicator().
   */
  th.active img {
    display: inline;
  }
  td.active {
    background-color: #ddd;
  }
  
  /**
   * Markup generated by theme_item_list().
   */
  .item-list .title {
    font-weight: bold;
  }
  .item-list ul {
    margin: 0 0 0.75em 0;
    padding: 0;
  }
  .item-list ul li {
    margin: 0 0 0.25em 1.5em; /* LTR */
    padding: 0;
  }
  
  /**
   * Markup generated by Form API.
   */
  .form-item,
  .form-actions {
    margin-top: 1em;
    margin-bottom: 1em;
  }
  tr.odd .form-item,
  tr.even .form-item {
    margin-top: 0;
    margin-bottom: 0;
    white-space: nowrap;
  }
  .form-item .description {
    font-size: 0.85em;
  }
  label {
    display: block;
    font-weight: bold;
  }
  label.option {
    display: inline;
    font-weight: normal;
  }
  .form-checkboxes .form-item,
  .form-radios .form-item {
    margin-top: 0.4em;
    margin-bottom: 0.4em;
  }
  .form-type-radio .description,
  .form-type-checkbox .description {
    margin-left: 2.4em;
  }
  input.form-checkbox,
  input.form-radio {
    vertical-align: middle;
  }
  .marker,
  .form-required {
    color: #f00;
  }
  .form-item input.error,
  .form-item textarea.error,
  .form-item select.error {
    border: 2px solid red;
  }
  
  /**
   * Inline items.
   */
  .container-inline .form-actions,
  .container-inline.form-actions {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  /**
   * Markup generated by theme_more_link().
   */
  .more-link {
    text-align: right; /* LTR */
  }
  
  /**
   * Markup generated by theme_more_help_link().
   */
  .more-help-link {
    text-align: right; /* LTR */
  }
  .more-help-link a {
    background: url(https://da-14.com/misc/help.png) 0 50% no-repeat; /* LTR */
    padding: 1px 0 1px 20px; /* LTR */
  }
  
  /**
   * Markup generated by theme_pager().
   */
  .item-list .pager {
    clear: both;
    text-align: center;
  }
  .item-list .pager li {
    background-image: none;
    display: inline;
    list-style-type: none;
    padding: 0.5em;
  }
  .pager-current {
    font-weight: bold;
  }
  
  /**
   * Autocomplete.
   *
   * @see autocomplete.js
   */
  /* Suggestion list */
  #autocomplete li.selected {
    background: #0072b9;
    color: #fff;
  }
  
  /**
   * Collapsible fieldsets.
   *
   * @see collapse.js
   */
  html.js fieldset.collapsible .fieldset-legend {
    background: url(https://da-14.com/misc/menu-expanded.png) 5px 65% no-repeat; /* LTR */
    padding-left: 15px; /* LTR */
  }
  html.js fieldset.collapsed .fieldset-legend {
    background-image: url(https://da-14.com/misc/menu-collapsed.png); /* LTR */
    background-position: 5px 50%; /* LTR */
  }
  .fieldset-legend span.summary {
    color: #999;
    font-size: 0.9em;
    margin-left: 0.5em;
  }
  
  /**
   * TableDrag behavior.
   *
   * @see tabledrag.js
   */
  tr.drag {
    background-color: #fffff0;
  }
  tr.drag-previous {
    background-color: #ffd;
  }
  .tabledrag-toggle-weight {
    font-size: 0.9em;
  }
  body div.tabledrag-changed-warning {
    margin-bottom: 0.5em;
  }
  
  /**
   * TableSelect behavior.
   *
   * @see tableselect.js
  */
  tr.selected td {
    background: #ffc;
  }
  td.checkbox,
  th.checkbox {
    text-align: center;
  }
  
  /**
   * Progress bar.
   *
   * @see progress.js
   */
  .progress {
    font-weight: bold;
  }
  .progress .bar {
    background: #ccc;
    border-color: #666;
    margin: 0 0.2em;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
  }
  .progress .filled {
    background: #0072b9 url(https://da-14.com/misc/progress.gif);
  }/**/

/* Above code came from modules/system/system.theme.css */

/*! jQuery UI - v1.10.2 - 2013-03-14
  * http://jqueryui.com
  * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
  
  .ui-helper-hidden{display:none}.ui-helper-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px}.ui-helper-reset{margin:0;padding:0;border:0;outline:0;line-height:1.3;text-decoration:none;font-size:100%;list-style:none}.ui-helper-clearfix:before,.ui-helper-clearfix:after{content:"";display:table;border-collapse:collapse}.ui-helper-clearfix:after{clear:both}.ui-helper-clearfix{min-height:0}.ui-helper-zfix{width:100%;height:100%;top:0;left:0;position:absolute;opacity:0;filter:Alpha(Opacity=0)}.ui-front{z-index:100}.ui-state-disabled{cursor:default!important}.ui-icon{display:block;text-indent:-99999px;overflow:hidden;background-repeat:no-repeat}.ui-widget-overlay{position:fixed;top:0;left:0;width:100%;height:100%}/**/

/* Above code came from sites/all/modules/jquery_update/replace/ui/themes/base/minified/jquery.ui.core.min.css */

/*! jQuery UI - v1.10.2 - 2013-03-14
  * http://jqueryui.com
  * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
  
  .ui-widget{font-family:Verdana,Arial,sans-serif;font-size:1.1em}.ui-widget .ui-widget{font-size:1em}.ui-widget input,.ui-widget select,.ui-widget textarea,.ui-widget button{font-family:Verdana,Arial,sans-serif;font-size:1em}.ui-widget-content{border:1px solid #aaa;background:#fff url(https://da-14.com/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_flat_75_ffffff_40x100.png) 50% 50% repeat-x;color:#222}.ui-widget-content a{color:#222}.ui-widget-header{border:1px solid #aaa;background:#ccc url(https://da-14.com/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_highlight-soft_75_cccccc_1x100.png) 50% 50% repeat-x;color:#222;font-weight:700}.ui-widget-header a{color:#222}.ui-state-default,.ui-widget-content .ui-state-default,.ui-widget-header .ui-state-default{border:1px solid #d3d3d3;background:#e6e6e6 url(https://da-14.com/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_glass_75_e6e6e6_1x400.png) 50% 50% repeat-x;font-weight:400;color:#555}.ui-state-default a,.ui-state-default a:link,.ui-state-default a:visited{color:#555;text-decoration:none}.ui-state-hover,.ui-widget-content .ui-state-hover,.ui-widget-header .ui-state-hover,.ui-state-focus,.ui-widget-content .ui-state-focus,.ui-widget-header .ui-state-focus{border:1px solid #999;background:#dadada url(https://da-14.com/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_glass_75_dadada_1x400.png) 50% 50% repeat-x;font-weight:400;color:#212121}.ui-state-hover a,.ui-state-hover a:hover,.ui-state-hover a:link,.ui-state-hover a:visited{color:#212121;text-decoration:none}.ui-state-active,.ui-widget-content .ui-state-active,.ui-widget-header .ui-state-active{border:1px solid #aaa;background:#fff url(https://da-14.com/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_glass_65_ffffff_1x400.png) 50% 50% repeat-x;font-weight:400;color:#212121}.ui-state-active a,.ui-state-active a:link,.ui-state-active a:visited{color:#212121;text-decoration:none}.ui-state-highlight,.ui-widget-content .ui-state-highlight,.ui-widget-header .ui-state-highlight{border:1px solid #fcefa1;background:#fbf9ee url(https://da-14.com/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_glass_55_fbf9ee_1x400.png) 50% 50% repeat-x;color:#363636}.ui-state-highlight a,.ui-widget-content .ui-state-highlight a,.ui-widget-header .ui-state-highlight a{color:#363636}.ui-state-error,.ui-widget-content .ui-state-error,.ui-widget-header .ui-state-error{border:1px solid #cd0a0a;background:#fef1ec url(https://da-14.com/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_glass_95_fef1ec_1x400.png) 50% 50% repeat-x;color:#cd0a0a}.ui-state-error a,.ui-widget-content .ui-state-error a,.ui-widget-header .ui-state-error a{color:#cd0a0a}.ui-state-error-text,.ui-widget-content .ui-state-error-text,.ui-widget-header .ui-state-error-text{color:#cd0a0a}.ui-priority-primary,.ui-widget-content .ui-priority-primary,.ui-widget-header .ui-priority-primary{font-weight:700}.ui-priority-secondary,.ui-widget-content .ui-priority-secondary,.ui-widget-header .ui-priority-secondary{opacity:.7;filter:Alpha(Opacity=70);font-weight:400}.ui-state-disabled,.ui-widget-content .ui-state-disabled,.ui-widget-header .ui-state-disabled{opacity:.35;filter:Alpha(Opacity=35);background-image:none}.ui-state-disabled .ui-icon{filter:Alpha(Opacity=35)}.ui-icon{width:16px;height:16px}.ui-icon,.ui-widget-content .ui-icon{background-image:url(https://da-14.com/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-icons_222222_256x240.png)}.ui-widget-header .ui-icon{background-image:url(https://da-14.com/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-icons_222222_256x240.png)}.ui-state-default .ui-icon{background-image:url(https://da-14.com/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-icons_888888_256x240.png)}.ui-state-hover .ui-icon,.ui-state-focus .ui-icon{background-image:url(https://da-14.com/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-icons_454545_256x240.png)}.ui-state-active .ui-icon{background-image:url(https://da-14.com/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-icons_454545_256x240.png)}.ui-state-highlight .ui-icon{background-image:url(https://da-14.com/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-icons_2e83ff_256x240.png)}.ui-state-error .ui-icon,.ui-state-error-text .ui-icon{background-image:url(https://da-14.com/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-icons_cd0a0a_256x240.png)}.ui-icon-blank{background-position:16px 16px}.ui-icon-carat-1-n{background-position:0 0}.ui-icon-carat-1-ne{background-position:-16px 0}.ui-icon-carat-1-e{background-position:-32px 0}.ui-icon-carat-1-se{background-position:-48px 0}.ui-icon-carat-1-s{background-position:-64px 0}.ui-icon-carat-1-sw{background-position:-80px 0}.ui-icon-carat-1-w{background-position:-96px 0}.ui-icon-carat-1-nw{background-position:-112px 0}.ui-icon-carat-2-n-s{background-position:-128px 0}.ui-icon-carat-2-e-w{background-position:-144px 0}.ui-icon-triangle-1-n{background-position:0 -16px}.ui-icon-triangle-1-ne{background-position:-16px -16px}.ui-icon-triangle-1-e{background-position:-32px -16px}.ui-icon-triangle-1-se{background-position:-48px -16px}.ui-icon-triangle-1-s{background-position:-64px -16px}.ui-icon-triangle-1-sw{background-position:-80px -16px}.ui-icon-triangle-1-w{background-position:-96px -16px}.ui-icon-triangle-1-nw{background-position:-112px -16px}.ui-icon-triangle-2-n-s{background-position:-128px -16px}.ui-icon-triangle-2-e-w{background-position:-144px -16px}.ui-icon-arrow-1-n{background-position:0 -32px}.ui-icon-arrow-1-ne{background-position:-16px -32px}.ui-icon-arrow-1-e{background-position:-32px -32px}.ui-icon-arrow-1-se{background-position:-48px -32px}.ui-icon-arrow-1-s{background-position:-64px -32px}.ui-icon-arrow-1-sw{background-position:-80px -32px}.ui-icon-arrow-1-w{background-position:-96px -32px}.ui-icon-arrow-1-nw{background-position:-112px -32px}.ui-icon-arrow-2-n-s{background-position:-128px -32px}.ui-icon-arrow-2-ne-sw{background-position:-144px -32px}.ui-icon-arrow-2-e-w{background-position:-160px -32px}.ui-icon-arrow-2-se-nw{background-position:-176px -32px}.ui-icon-arrowstop-1-n{background-position:-192px -32px}.ui-icon-arrowstop-1-e{background-position:-208px -32px}.ui-icon-arrowstop-1-s{background-position:-224px -32px}.ui-icon-arrowstop-1-w{background-position:-240px -32px}.ui-icon-arrowthick-1-n{background-position:0 -48px}.ui-icon-arrowthick-1-ne{background-position:-16px -48px}.ui-icon-arrowthick-1-e{background-position:-32px -48px}.ui-icon-arrowthick-1-se{background-position:-48px -48px}.ui-icon-arrowthick-1-s{background-position:-64px -48px}.ui-icon-arrowthick-1-sw{background-position:-80px -48px}.ui-icon-arrowthick-1-w{background-position:-96px -48px}.ui-icon-arrowthick-1-nw{background-position:-112px -48px}.ui-icon-arrowthick-2-n-s{background-position:-128px -48px}.ui-icon-arrowthick-2-ne-sw{background-position:-144px -48px}.ui-icon-arrowthick-2-e-w{background-position:-160px -48px}.ui-icon-arrowthick-2-se-nw{background-position:-176px -48px}.ui-icon-arrowthickstop-1-n{background-position:-192px -48px}.ui-icon-arrowthickstop-1-e{background-position:-208px -48px}.ui-icon-arrowthickstop-1-s{background-position:-224px -48px}.ui-icon-arrowthickstop-1-w{background-position:-240px -48px}.ui-icon-arrowreturnthick-1-w{background-position:0 -64px}.ui-icon-arrowreturnthick-1-n{background-position:-16px -64px}.ui-icon-arrowreturnthick-1-e{background-position:-32px -64px}.ui-icon-arrowreturnthick-1-s{background-position:-48px -64px}.ui-icon-arrowreturn-1-w{background-position:-64px -64px}.ui-icon-arrowreturn-1-n{background-position:-80px -64px}.ui-icon-arrowreturn-1-e{background-position:-96px -64px}.ui-icon-arrowreturn-1-s{background-position:-112px -64px}.ui-icon-arrowrefresh-1-w{background-position:-128px -64px}.ui-icon-arrowrefresh-1-n{background-position:-144px -64px}.ui-icon-arrowrefresh-1-e{background-position:-160px -64px}.ui-icon-arrowrefresh-1-s{background-position:-176px -64px}.ui-icon-arrow-4{background-position:0 -80px}.ui-icon-arrow-4-diag{background-position:-16px -80px}.ui-icon-extlink{background-position:-32px -80px}.ui-icon-newwin{background-position:-48px -80px}.ui-icon-refresh{background-position:-64px -80px}.ui-icon-shuffle{background-position:-80px -80px}.ui-icon-transfer-e-w{background-position:-96px -80px}.ui-icon-transferthick-e-w{background-position:-112px -80px}.ui-icon-folder-collapsed{background-position:0 -96px}.ui-icon-folder-open{background-position:-16px -96px}.ui-icon-document{background-position:-32px -96px}.ui-icon-document-b{background-position:-48px -96px}.ui-icon-note{background-position:-64px -96px}.ui-icon-mail-closed{background-position:-80px -96px}.ui-icon-mail-open{background-position:-96px -96px}.ui-icon-suitcase{background-position:-112px -96px}.ui-icon-comment{background-position:-128px -96px}.ui-icon-person{background-position:-144px -96px}.ui-icon-print{background-position:-160px -96px}.ui-icon-trash{background-position:-176px -96px}.ui-icon-locked{background-position:-192px -96px}.ui-icon-unlocked{background-position:-208px -96px}.ui-icon-bookmark{background-position:-224px -96px}.ui-icon-tag{background-position:-240px -96px}.ui-icon-home{background-position:0 -112px}.ui-icon-flag{background-position:-16px -112px}.ui-icon-calendar{background-position:-32px -112px}.ui-icon-cart{background-position:-48px -112px}.ui-icon-pencil{background-position:-64px -112px}.ui-icon-clock{background-position:-80px -112px}.ui-icon-disk{background-position:-96px -112px}.ui-icon-calculator{background-position:-112px -112px}.ui-icon-zoomin{background-position:-128px -112px}.ui-icon-zoomout{background-position:-144px -112px}.ui-icon-search{background-position:-160px -112px}.ui-icon-wrench{background-position:-176px -112px}.ui-icon-gear{background-position:-192px -112px}.ui-icon-heart{background-position:-208px -112px}.ui-icon-star{background-position:-224px -112px}.ui-icon-link{background-position:-240px -112px}.ui-icon-cancel{background-position:0 -128px}.ui-icon-plus{background-position:-16px -128px}.ui-icon-plusthick{background-position:-32px -128px}.ui-icon-minus{background-position:-48px -128px}.ui-icon-minusthick{background-position:-64px -128px}.ui-icon-close{background-position:-80px -128px}.ui-icon-closethick{background-position:-96px -128px}.ui-icon-key{background-position:-112px -128px}.ui-icon-lightbulb{background-position:-128px -128px}.ui-icon-scissors{background-position:-144px -128px}.ui-icon-clipboard{background-position:-160px -128px}.ui-icon-copy{background-position:-176px -128px}.ui-icon-contact{background-position:-192px -128px}.ui-icon-image{background-position:-208px -128px}.ui-icon-video{background-position:-224px -128px}.ui-icon-script{background-position:-240px -128px}.ui-icon-alert{background-position:0 -144px}.ui-icon-info{background-position:-16px -144px}.ui-icon-notice{background-position:-32px -144px}.ui-icon-help{background-position:-48px -144px}.ui-icon-check{background-position:-64px -144px}.ui-icon-bullet{background-position:-80px -144px}.ui-icon-radio-on{background-position:-96px -144px}.ui-icon-radio-off{background-position:-112px -144px}.ui-icon-pin-w{background-position:-128px -144px}.ui-icon-pin-s{background-position:-144px -144px}.ui-icon-play{background-position:0 -160px}.ui-icon-pause{background-position:-16px -160px}.ui-icon-seek-next{background-position:-32px -160px}.ui-icon-seek-prev{background-position:-48px -160px}.ui-icon-seek-end{background-position:-64px -160px}.ui-icon-seek-start{background-position:-80px -160px}.ui-icon-seek-first{background-position:-80px -160px}.ui-icon-stop{background-position:-96px -160px}.ui-icon-eject{background-position:-112px -160px}.ui-icon-volume-off{background-position:-128px -160px}.ui-icon-volume-on{background-position:-144px -160px}.ui-icon-power{background-position:0 -176px}.ui-icon-signal-diag{background-position:-16px -176px}.ui-icon-signal{background-position:-32px -176px}.ui-icon-battery-0{background-position:-48px -176px}.ui-icon-battery-1{background-position:-64px -176px}.ui-icon-battery-2{background-position:-80px -176px}.ui-icon-battery-3{background-position:-96px -176px}.ui-icon-circle-plus{background-position:0 -192px}.ui-icon-circle-minus{background-position:-16px -192px}.ui-icon-circle-close{background-position:-32px -192px}.ui-icon-circle-triangle-e{background-position:-48px -192px}.ui-icon-circle-triangle-s{background-position:-64px -192px}.ui-icon-circle-triangle-w{background-position:-80px -192px}.ui-icon-circle-triangle-n{background-position:-96px -192px}.ui-icon-circle-arrow-e{background-position:-112px -192px}.ui-icon-circle-arrow-s{background-position:-128px -192px}.ui-icon-circle-arrow-w{background-position:-144px -192px}.ui-icon-circle-arrow-n{background-position:-160px -192px}.ui-icon-circle-zoomin{background-position:-176px -192px}.ui-icon-circle-zoomout{background-position:-192px -192px}.ui-icon-circle-check{background-position:-208px -192px}.ui-icon-circlesmall-plus{background-position:0 -208px}.ui-icon-circlesmall-minus{background-position:-16px -208px}.ui-icon-circlesmall-close{background-position:-32px -208px}.ui-icon-squaresmall-plus{background-position:-48px -208px}.ui-icon-squaresmall-minus{background-position:-64px -208px}.ui-icon-squaresmall-close{background-position:-80px -208px}.ui-icon-grip-dotted-vertical{background-position:0 -224px}.ui-icon-grip-dotted-horizontal{background-position:-16px -224px}.ui-icon-grip-solid-vertical{background-position:-32px -224px}.ui-icon-grip-solid-horizontal{background-position:-48px -224px}.ui-icon-gripsmall-diagonal-se{background-position:-64px -224px}.ui-icon-grip-diagonal-se{background-position:-80px -224px}.ui-corner-all,.ui-corner-top,.ui-corner-left,.ui-corner-tl{border-top-left-radius:4px}.ui-corner-all,.ui-corner-top,.ui-corner-right,.ui-corner-tr{border-top-right-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-left,.ui-corner-bl{border-bottom-left-radius:4px}.ui-corner-all,.ui-corner-bottom,.ui-corner-right,.ui-corner-br{border-bottom-right-radius:4px}.ui-widget-overlay{background:#aaa url(https://da-14.com/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30)}.ui-widget-shadow{margin:-8px 0 0 -8px;padding:8px;background:#aaa url(https://da-14.com/sites/all/modules/jquery_update/replace/ui/themes/base/minified/images/ui-bg_flat_0_aaaaaa_40x100.png) 50% 50% repeat-x;opacity:.3;filter:Alpha(Opacity=30);border-radius:8px}/**/

/* Above code came from sites/all/modules/jquery_update/replace/ui/themes/base/minified/jquery.ui.theme.min.css */

/*! jQuery UI - v1.10.2 - 2013-03-14
  * http://jqueryui.com
  * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
  
  .ui-menu{list-style:none;padding:2px;margin:0;display:block;outline:0}.ui-menu .ui-menu{margin-top:-3px;position:absolute}.ui-menu .ui-menu-item{margin:0;padding:0;width:100%}.ui-menu .ui-menu-divider{margin:5px -2px 5px -2px;height:0;font-size:0;line-height:0;border-width:1px 0 0}.ui-menu .ui-menu-item a{text-decoration:none;display:block;padding:2px .4em;line-height:1.5;min-height:0;font-weight:400}.ui-menu .ui-menu-item a.ui-state-focus,.ui-menu .ui-menu-item a.ui-state-active{font-weight:400;margin:-1px}.ui-menu .ui-state-disabled{font-weight:400;margin:.4em 0 .2em;line-height:1.5}.ui-menu .ui-state-disabled a{cursor:default}.ui-menu-icons{position:relative}.ui-menu-icons .ui-menu-item a{position:relative;padding-left:2em}.ui-menu .ui-icon{position:absolute;top:.2em;left:.2em}.ui-menu .ui-menu-icon{position:static;float:right}/**/

/* Above code came from sites/all/modules/jquery_update/replace/ui/themes/base/minified/jquery.ui.menu.min.css */

/*! jQuery UI - v1.10.2 - 2013-03-14
  * http://jqueryui.com
  * Copyright 2013 jQuery Foundation and other contributors; Licensed MIT */
  
  .ui-autocomplete{position:absolute;top:0;left:0;cursor:default}/**/

/* Above code came from sites/all/modules/jquery_update/replace/ui/themes/base/minified/jquery.ui.autocomplete.min.css */

#comments {
    margin-top: 15px;
  }
  .indented {
    margin-left: 25px; /* LTR */
  }
  .comment-unpublished {
    background-color: #fff4f4;
  }
  .comment-preview {
    background-color: #ffffea;
  }/**/

/* Above code came from modules/comment/comment.css */

/* Field display */
  .field .field-label {
    font-weight: bold;
  }
  .field-label-inline .field-label,
  .field-label-inline .field-items {
    float:left; /*LTR*/
  }
  
  /* Form display */
  form .field-multiple-table {
    margin: 0;
  }
  form .field-multiple-table th.field-label {
    padding-left: 0; /*LTR*/
  }
  form .field-multiple-table td.field-multiple-drag {
    width: 30px;
    padding-right: 0; /*LTR*/
  }
  form .field-multiple-table td.field-multiple-drag a.tabledrag-handle {
    padding-right: .5em; /*LTR*/
  }
  
  form .field-add-more-submit {
    margin: .5em 0 0;
  }/**/

/* Above code came from modules/field/theme/field.css */

.node-unpublished {
    background-color: #fff4f4;
  }
  .preview .node {
    background-color: #ffffea;
  }
  td.revision-current {
    background: #ffc;
  }/**/

/* Above code came from modules/node/node.css */

.search-form {
    margin-bottom: 1em;
  }
  .search-form input {
    margin-top: 0;
    margin-bottom: 0;
  }
  .search-results {
    list-style: none;
  }
  .search-results p {
    margin-top: 0;
  }
  .search-results .title {
    font-size: 1.2em;
  }
  .search-results li {
    margin-bottom: 1em;
  }
  .search-results .search-snippet-info {
    padding-left: 1em; /* LTR */
  }
  .search-results .search-info {
    font-size: 0.85em;
  }
  .search-advanced .criterion {
    float: left; /* LTR */
    margin-right: 2em; /* LTR */
  }
  .search-advanced .action {
    float: left; /* LTR */
    clear: left; /* LTR */
  }/**/

/* Above code came from modules/search/search.css */

#permissions td.module {
    font-weight: bold;
  }
  #permissions td.permission {
    padding-left: 1.5em; /* LTR */
  }
  #permissions tr.odd .form-item,
  #permissions tr.even .form-item {
    white-space: normal;
  }
  #user-admin-settings fieldset .fieldset-description {
    font-size: 0.85em;
    padding-bottom: .5em;
  }
  
  /**
   * Override default textfield float to put the "Add role" button next to
   * the input textfield.
   */
  #user-admin-roles td.edit-name {
    clear: both;
  }
  #user-admin-roles .form-item-name {
    float: left; /* LTR */
    margin-right: 1em; /* LTR */
  }
  
  /**
   * Password strength indicator.
   */
  .password-strength {
    width: 17em;
    float: right;  /* LTR */
    margin-top: 1.4em;
  }
  .password-strength-title {
    display: inline;
  }
  .password-strength-text {
    float: right; /* LTR */
    font-weight: bold;
  }
  .password-indicator {
    background-color: #C4C4C4;
    height: 0.3em;
    width: 100%;
  }
  .password-indicator div {
    height: 100%;
    width: 0%;
    background-color: #47C965;
  }
  input.password-confirm,
  input.password-field {
    width: 16em;
    margin-bottom: 0.4em;
  }
  div.password-confirm {
    float: right;  /* LTR */
    margin-top: 1.5em;
    visibility: hidden;
    width: 17em;
  }
  div.form-item div.password-suggestions {
    padding: 0.2em 0.5em;
    margin: 0.7em 0;
    width: 38.5em;
    border: 1px solid #B4B4B4;
  }
  div.password-suggestions ul {
    margin-bottom: 0;
  }
  .confirm-parent,
  .password-parent {
    clear: left; /* LTR */
    margin: 0;
    width: 36.3em;
  }
  
  /* Generated by user.module but used by profile.module: */
  .profile {
    clear: both;
    margin: 1em 0;
  }
  .profile .user-picture {
    float: right; /* LTR */
    margin: 0 1em 1em 0; /* LTR */
  }
  .profile h3 {
    border-bottom: 1px solid #ccc;
  }
  .profile dl {
    margin: 0 0 1.5em 0;
  }
  .profile dt {
    margin: 0 0 0.2em 0;
    font-weight: bold;
  }
  .profile dd {
    margin: 0 0 1em 0;
  }/**/

/* Above code came from modules/user/user.css */

.views-exposed-form .views-exposed-widget {
    float: left; /* LTR */
    padding: .5em 1em 0 0; /* LTR */
  }
  
  .views-exposed-form .views-exposed-widget .form-submit {
    margin-top: 1.6em;
  }
  
  .views-exposed-form .form-item,
  .views-exposed-form .form-submit {
    margin-top: 0;
    margin-bottom: 0;
  }
  
  .views-exposed-form label {
    font-weight: bold;
  }
  
  .views-exposed-widgets {
    margin-bottom: .5em;
  }
  
  /* table style column align */
  .views-align-left {
    text-align: left;
  }
  .views-align-right {
    text-align: right;
  }
  .views-align-center {
    text-align: center;
  }
  
  /* Remove the border on tbody that system puts in */
  .views-view-grid tbody {
    border-top: none;
  }
  
  .view .progress-disabled {
    float: none;
  }/**/

/* Above code came from sites/all/modules/views/css/views.css */

/* General indentation & positioning classes */
  
  .rteindent1 {
      margin-left: 40px;
  }
  .rteindent2 {
      margin-left: 80px;
  }
  .rteindent3 {
      margin-left: 120px;
  }
  .rteindent4 {
      margin-left: 160px;
  }
  .rteleft {
      text-align: left;
  }
  .rteright {
      text-align: right;
  }
  .rtecenter {
      text-align: center;
  }
  .rtejustify {
      text-align: justify;
  }
  .ibimage_left {
      float: left;
  }
  .ibimage_right {
      float: right;
  }/**/

/* Above code came from sites/all/modules/ckeditor/css/ckeditor.css */

.ctools-locked {
    color: red;
    border: 1px solid red;
    padding: 1em;
  }
  
  .ctools-owns-lock {
    background: #FFFFDD none repeat scroll 0 0;
    border: 1px solid #F0C020;
    padding: 1em;
  }
  
  a.ctools-ajaxing,
  input.ctools-ajaxing,
  button.ctools-ajaxing,
  select.ctools-ajaxing {
    padding-right: 18px !important;
    background: url(https://da-14.com/sites/all/modules/ctools/images/status-active.gif) right center no-repeat;
  }
  
  div.ctools-ajaxing {
    float: left;
    width: 18px;
    background: url(https://da-14.com/sites/all/modules/ctools/images/status-active.gif) center center no-repeat;
  }/**/

/* Above code came from sites/all/modules/ctools/css/ctools.css */

/**
   * @file
   * Front-end styling for the display of webforms.
   */
  input.webform-calendar {
    display: none;
    padding: 3px;
    vertical-align: top;
  }
  html.js input.webform-calendar {
    display: inline;
  }
  .webform-container-inline label {
    display: inline;
    margin-right: 1em;
  }
  .webform-container-inline div,
  .webform-container-inline div.form-item {
    display: inline;
  }
  .webform-container-inline div.description {
    display: block;
  }
  .webform-container-inline div.messages {
    display: block;
    float: left;
  }
  .webform-container-inline div.ajax-progress-bar div {
    display: inherit;
  }
  .webform-container-inline.webform-component-textarea label {
    vertical-align: top;
  }
  .webform-container-inline.webform-component-textarea .form-textarea-wrapper {
    display: inline-block;
  }
  .webform-component-textarea .grippie {
    display: block;
  }
  .webform-progressbar {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
  .webform-progressbar-inner {
    height: 1em;
    background-color: #74C421;
    height: 3px;
  }
  .webform-progressbar-outer {
    position: relative;
    border: 1px solid #356900;
    width: 100%;
    height: 3px;
    margin: 0.35em -1px 2em;
    background-color: white;
  }
  .webform-progressbar-page {
    position: absolute;
    width: 7px;
    height: 7px;
    margin: -6px -4px;
    border: 1px solid #356900;
    background-color: white;
    border-radius: 5px;
  }
  .webform-progressbar-page.completed {
    background-color: #74C421;
  }
  .webform-progressbar-page.current {
    background-color: #74C421;
  }
  .webform-progressbar-page .webform-progressbar-page-number {
    display: none;
  }
  .webform-progressbar-page .webform-progressbar-page-label {
    position: relative;
    top: 10px;
    margin: 0 -10em;
  }/**/

/* Above code came from sites/all/modules/webform/css/webform.css */

div.edit-required-field-wrapper { display:none; }/**/

/* Above code came from public://spamicide/required_field.css */

/* Base16 Atelier Dune Dark - Theme */
  /* by Bram de Haan (http://atelierbram.github.io/syntax-highlighting/atelier-schemes/dune) */ 
  /* Original Base16 color scheme by Chris Kempson (https://github.com/chriskempson/base16) */
  /* https://github.com/jmblog/color-themes-for-highlightjs */
  
  /* Atelier Dune Dark Comment */
  .hljs-comment,
  .hljs-title {
    color: #999580;
  }
  
  /* Atelier Dune Dark Red */
  .hljs-variable,
  .hljs-attribute,
  .hljs-tag,
  .hljs-regexp,
  .ruby .hljs-constant,
  .xml .hljs-tag .hljs-title,
  .xml .hljs-pi,
  .xml .hljs-doctype,
  .html .hljs-doctype,
  .css .hljs-id,
  .css .hljs-class,
  .css .hljs-pseudo {
    color: #d73737;
  }
  
  /* Atelier Dune Dark Orange */
  .hljs-number,
  .hljs-preprocessor,
  .hljs-pragma,
  .hljs-built_in,
  .hljs-literal,
  .hljs-params,
  .hljs-constant {
    color: #b65611;
  }
  
  /* Atelier Dune Dark Yellow */
  .ruby .hljs-class .hljs-title,
  .css .hljs-rules .hljs-attribute {
    color: #cfb017;
  }
  
  /* Atelier Dune Dark Green */
  .hljs-string,
  .hljs-value,
  .hljs-inheritance,
  .hljs-header,
  .ruby .hljs-symbol,
  .xml .hljs-cdata {
    color: #60ac39;
  }
  
  /* Atelier Dune Dark Aqua */
  .css .hljs-hexcolor {
    color: #1fad83;
  }
  
  /* Atelier Dune Dark Blue */
  .hljs-function,
  .python .hljs-decorator,
  .python .hljs-title,
  .ruby .hljs-function .hljs-title,
  .ruby .hljs-title .hljs-keyword,
  .perl .hljs-sub,
  .javascript .hljs-title,
  .coffeescript .hljs-title {
    color: #6684e1;
  }
  
  /* Atelier Dune Dark Purple */
  .hljs-keyword,
  .javascript .hljs-function {
    color: #b854d4;
  }
  
  .hljs {
    display: block;
    background: #292824;
    color: #a6a28c;
    padding: 0.5em;
  }
  
  .coffeescript .javascript,
  .javascript .xml,
  .tex .hljs-formula,
  .xml .javascript,
  .xml .vbscript,
  .xml .css,
  .xml .hljs-cdata {
    opacity: 0.5;
  }/**/

/* Above code came from sites/all/libraries/ckeditor/plugins/codesnippet/lib/highlight/styles/atelier-dune.dark.css */

/**
   * Swiper 3.3.1
   * Most modern mobile touch slider and framework with hardware accelerated transitions
   * 
   * http://www.idangero.us/swiper/
   * 
   * Copyright 2016, Vladimir Kharlampidi
   * The iDangero.us
   * http://www.idangero.us/
   * 
   * Licensed under MIT
   * 
   * Released on: February 7, 2016
   */
  .swiper-container{margin:0 auto;position:relative;overflow:hidden;z-index:1}.swiper-container-no-flexbox .swiper-slide{float:left}.swiper-container-vertical>.swiper-wrapper{-webkit-box-orient:vertical;-moz-box-orient:vertical;-ms-flex-direction:column;-webkit-flex-direction:column;flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;display:flex;-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{-webkit-transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-o-transform:translate(0,0);-ms-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}.swiper-container-multirow>.swiper-wrapper{-webkit-box-lines:multiple;-moz-box-lines:multiple;-ms-flex-wrap:wrap;-webkit-flex-wrap:wrap;flex-wrap:wrap}.swiper-container-free-mode>.swiper-wrapper{-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-ms-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out;margin:0 auto}.swiper-slide{-webkit-flex-shrink:0;-ms-flex:0 0 auto;flex-shrink:0;width:100%;height:100%;position:relative}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{-webkit-box-align:start;-ms-flex-align:start;-webkit-align-items:flex-start;align-items:flex-start;-webkit-transition-property:-webkit-transform,height;-moz-transition-property:-moz-transform;-o-transition-property:-o-transform;-ms-transition-property:-ms-transform;transition-property:transform,height}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-wp8-horizontal{-ms-touch-action:pan-y;touch-action:pan-y}.swiper-wp8-vertical{-ms-touch-action:pan-x;touch-action:pan-x}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:27px;height:44px;margin-top:-22px;z-index:10;cursor:pointer;-moz-background-size:27px 44px;-webkit-background-size:27px 44px;background-size:27px 44px;background-position:center;background-repeat:no-repeat}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");left:10px;right:auto}.swiper-button-prev.swiper-button-black,.swiper-container-rtl .swiper-button-next.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-prev.swiper-button-white,.swiper-container-rtl .swiper-button-next.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");right:10px;left:auto}.swiper-button-next.swiper-button-black,.swiper-container-rtl .swiper-button-prev.swiper-button-black{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E")}.swiper-button-next.swiper-button-white,.swiper-container-rtl .swiper-button-prev.swiper-button-white{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E")}.swiper-pagination{position:absolute;text-align:center;-webkit-transition:.3s;-moz-transition:.3s;-o-transition:.3s;transition:.3s;-webkit-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:#000;opacity:.2}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-moz-appearance:none;-ms-appearance:none;-webkit-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-white .swiper-pagination-bullet{background:#fff}.swiper-pagination-bullet-active{opacity:1;background:#007aff}.swiper-pagination-white .swiper-pagination-bullet-active{background:#fff}.swiper-pagination-black .swiper-pagination-bullet-active{background:#000}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;-webkit-transform:translate3d(0,-50%,0);-moz-transform:translate3d(0,-50%,0);-o-transform:translate(0,-50%);-ms-transform:translate3d(0,-50%,0);transform:translate3d(0,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:5px 0;display:block}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 5px}.swiper-pagination-progress{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progress .swiper-pagination-progressbar{background:#007aff;position:absolute;left:0;top:0;width:100%;height:100%;-webkit-transform:scale(0);-ms-transform:scale(0);-o-transform:scale(0);transform:scale(0);-webkit-transform-origin:left top;-moz-transform-origin:left top;-ms-transform-origin:left top;-o-transform-origin:left top;transform-origin:left top}.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar{-webkit-transform-origin:right top;-moz-transform-origin:right top;-ms-transform-origin:right top;-o-transform-origin:right top;transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progress{width:100%;height:4px;left:0;top:0}.swiper-container-vertical>.swiper-pagination-progress{width:4px;height:100%;left:0;top:0}.swiper-pagination-progress.swiper-pagination-white{background:rgba(255,255,255,.5)}.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar{background:#fff}.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar{background:#000}.swiper-container-3d{-webkit-perspective:1200px;-moz-perspective:1200px;-o-perspective:1200px;perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{-webkit-transform-style:preserve-3d;-moz-transform-style:preserve-3d;-ms-transform-style:preserve-3d;transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(right,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:-webkit-gradient(linear,right top,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(bottom,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:-webkit-gradient(linear,left bottom,left top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,0)));background-image:-webkit-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-moz-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:-o-linear-gradient(top,rgba(0,0,0,.5),rgba(0,0,0,0));background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-coverflow .swiper-wrapper,.swiper-container-flip .swiper-wrapper{-ms-perspective:1200px}.swiper-container-cube,.swiper-container-flip{overflow:visible}.swiper-container-cube .swiper-slide,.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-cube .swiper-slide .swiper-slide,.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active,.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top,.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;-moz-backface-visibility:hidden;-ms-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-slide{visibility:hidden;-webkit-transform-origin:0 0;-moz-transform-origin:0 0;-ms-transform-origin:0 0;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube.swiper-container-rtl .swiper-slide{-webkit-transform-origin:100% 0;-moz-transform-origin:100% 0;-ms-transform-origin:100% 0;transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-fade.swiper-container-free-mode .swiper-slide{-webkit-transition-timing-function:ease-out;-moz-transition-timing-function:ease-out;-ms-transition-timing-function:ease-out;-o-transition-timing-function:ease-out;transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;-webkit-transition-property:opacity;-moz-transition-property:opacity;-o-transition-property:opacity;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;-webkit-transform-origin:50%;-moz-transform-origin:50%;transform-origin:50%;-webkit-animation:swiper-preloader-spin 1s steps(12,end) infinite;-moz-animation:swiper-preloader-spin 1s steps(12,end) infinite;animation:swiper-preloader-spin 1s steps(12,end) infinite}.swiper-lazy-preloader:after{display:block;content:"";width:100%;height:100%;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");background-position:50%;-webkit-background-size:100%;background-size:100%;background-repeat:no-repeat}.swiper-lazy-preloader-white:after{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E")}@-webkit-keyframes swiper-preloader-spin{100%{-webkit-transform:rotate(360deg)}}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}/**/

/* Above code came from sites/all/themes/da14/css/swiper.min.css */

@font-face {
    font-family: 'bariol_boldbold';
    src: url(https://da-14.com/sites/all/themes/da14/fonts/bariol_bold.eot);
    src: url(https://da-14.com/sites/all/themes/da14/fonts/bariol_bold.eot?#iefix) format("embedded-opentype"), url(https://da-14.com/sites/all/themes/da14/fonts/bariol_bold.woff2) format("woff2"), url(https://da-14.com/sites/all/themes/da14/fonts/bariol_bold.woff) format("woff"), url(https://da-14.com/sites/all/themes/da14/fonts/bariol_bold.ttf) format("truetype"), url(https://da-14.com/sites/all/themes/da14/fonts/bariol_bold.svg#bariol_boldbold) format("svg");
    font-weight: normal;
    font-style: normal; }
   @font-face {
    font-family: 'bariol_lightlight';
    src: url(https://da-14.com/sites/all/themes/da14/fonts/bariol_light.eot);
    src: url(https://da-14.com/sites/all/themes/da14/fonts/bariol_light.eot?#iefix) format("embedded-opentype"), url(https://da-14.com/sites/all/themes/da14/fonts/bariol_light.woff2) format("woff2"), url(https://da-14.com/sites/all/themes/da14/fonts/bariol_light.woff) format("woff"), url(https://da-14.com/sites/all/themes/da14/fonts/bariol_light.ttf) format("truetype"), url(https://da-14.com/sites/all/themes/da14/fonts/bariol_light.svg#bariol_lightlight) format("svg");
    font-weight: normal;
    font-style: normal; }
   @font-face {
    font-family: 'bariol_regularregular';
    src: url(https://da-14.com/sites/all/themes/da14/fonts/bariol_regular.eot);
    src: url(https://da-14.com/sites/all/themes/da14/fonts/bariol_regular.eot?#iefix) format("embedded-opentype"), url(https://da-14.com/sites/all/themes/da14/fonts/bariol_regular.woff2) format("woff2"), url(https://da-14.com/sites/all/themes/da14/fonts/bariol_regular.woff) format("woff"), url(https://da-14.com/sites/all/themes/da14/fonts/bariol_regular.ttf) format("truetype"), url(https://da-14.com/sites/all/themes/da14/fonts/bariol_regular.svg#bariol_regularregular) format("svg");
    font-weight: normal;
    font-style: normal; }
   @font-face {
    font-family: 'andale_monoregular';
    src: url(https://da-14.com/sites/all/themes/da14/fonts/andale-mono-regular.eot);
    src: url(https://da-14.com/sites/all/themes/da14/fonts/andale-mono-regular.eot?#iefix) format("embedded-opentype"), url(https://da-14.com/sites/all/themes/da14/fonts/andale-mono-regular.woff2) format("woff2"), url(https://da-14.com/sites/all/themes/da14/fonts/andale-mono-regular.woff) format("woff"), url(https://da-14.com/sites/all/themes/da14/fonts/andale-mono-regular.ttf) format("truetype"), url(https://da-14.com/sites/all/themes/da14/fonts/andale-mono-regular.svg#andale_monoregular) format("svg");
    font-weight: normal;
    font-style: normal; }
   @font-face {
    font-family: 'pt_sansregular';
    src: url(https://da-14.com/sites/all/themes/da14/fonts/pt_sans_regular.eot);
    src: url(https://da-14.com/sites/all/themes/da14/fonts/pt_sans_regular.eot?#iefix) format("embedded-opentype"), url(https://da-14.com/sites/all/themes/da14/fonts/pt_sans_regular.woff2) format("woff2"), url(https://da-14.com/sites/all/themes/da14/fonts/pt_sans_regular.woff) format("woff"), url(https://da-14.com/sites/all/themes/da14/fonts/pt_sans_regular.ttf) format("truetype"), url(https://da-14.com/sites/all/themes/da14/fonts/pt_sans_regular.svg#pt_sansregular) format("svg");
    font-weight: normal;
    font-style: normal; } 
 /*========================
         FONT SETTING
  ========================*//*========================
          VARIABLES
  ========================*/
  .menu > li > a, .reveal .main-menu li a {
    font-family: 'bariol_boldbold'; }
  
  .similar-post-blog .views-row .title-wrapper .title,
  .latest-post-blog .views-row .title-wrapper .title,
  .page-blog .views-row .title-wrapper .title {
    font-family: 'bariol_lightlight'; }
  
  .front .header .big-logo-wrapper .front-title > h1 {
    font-family: 'bariol_regularregular'; }
  
  .medium-button, .webform-client-form .form-actions .webform-submit, .page-blog .views-exposed-form .form-type-bef-checkbox > input[type="checkbox"] + label, .page-blog .view-blog-filter-tags.view-id-blog_filter_tags .filter, .explore, .footer .contact-us .phone-wrapper address, .node-type-about-us .header .description, .node-type-about-us .team-container .view-content .views-row .team-hover-wrapper .hover-container .position, .similar-post-blog .views-row .date-post,
  .latest-post-blog .views-row .date-post,
  .page-blog .views-row .date-post, .node-type-article .field-name-post-date, .view-projects .views-row .wrapper .more-info,
  .recent-project-wrapper .views-row .wrapper .more-info, .front .our_services .number-wrapper .number .info-hover .services-info, .front .clients-info .author, .large-button, [type='text'],
  [type='password'],
  [type='date'],
  [type='datetime'],
  [type='datetime-local'],
  [type='month'],
  [type='week'],
  [type='email'],
  [type='number'],
  [type='search'],
  [type='tel'],
  [type='time'],
  [type='url'],
  [type='color'],
  textarea, .webform-client-form, blockquote, .field-name-body blockquote p,
  .node-type-service .field-name-body blockquote p, .footer .contact-us .mail-wrapper .mail-link, .node-type-about-us .team-container .view-content .views-row > p, .page-services .views-row .service-hover {
    font-family: 'andale_monoregular'; }
  
  .article-paragraph-item,
  .node-type-service .field-name-body p, .article-number-list li,
  .article-list li,
  .field-name-body ul li, .node-type-about-us .team-container .view-content .views-row > .name, .node-type-article .content .field-name-body, .node-type-project .content .field-name-body, .page-services .services-preview-info, .content table.pagerer tbody tr td div.item-list ul.pager li, .footer .footer-bottom .copyright-container .copyright, .page-blog .views-exposed-form .form-type-bef-checkbox > input[type="checkbox"] + label, .page-blog .view-blog-filter-tags.view-id-blog_filter_tags .filter {
    font-family: 'pt_sansregular'; }
  
  /**
   * Foundation for Sites by ZURB
   * Version 6.2.4
   * foundation.zurb.com
   * Licensed under MIT Open Source
   */
  /*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
  /**
     * 1. Set default font family to sans-serif.
     * 2. Prevent iOS and IE text size adjust after device 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 for any HTML5 element in IE 8/9.
     * Correct `block` display not defined for `details` or `summary` in IE 10/11
     * and Firefox.
     * Correct `block` display not defined for `main` in IE 11.
     */
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  hgroup,
  main,
  menu,
  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/10.
     * Hide the `template` element in IE 8/9/10/11, Safari, and Firefox < 22.
     */
  [hidden],
  template {
    display: none; }
  
  /* Links
       ========================================================================== */
  /**
     * Remove the gray background color from active links in IE 10.
     */
  a {
    background-color: transparent; }
  
  /**
     * Improve readability of focused elements when they are also in an
     * active/hover state.
     */
  a:active,
  a:hover {
    outline: 0; }
  
  /* Text-level semantics
       ========================================================================== */
  /**
     * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
     */
  abbr[title] {
    border-bottom: 1px dotted; }
  
  /**
     * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
     */
  b,
  strong {
    font-weight: bold; }
  
  /**
     * Address styling not present in Safari and Chrome.
     */
  dfn {
    font-style: italic; }
  
  /**
     * Address variable `h1` font-size and margin within `section` and `article`
     * contexts in Firefox 4+, Safari, 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/10.
     */
  img {
    border: 0; }
  
  /**
     * Correct overflow not hidden in IE 9/10/11.
     */
  svg:not(:root) {
    overflow: hidden; }
  
  /* Grouping content
       ========================================================================== */
  /**
     * Address margin not present in IE 8/9 and Safari.
     */
  figure {
    margin: 1em 40px; }
  
  /**
     * Address differences between Firefox and other browsers.
     */
  hr {
    -webkit-box-sizing: content-box;
       -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, 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/11.
     */
  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/9/10/11, 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: not-allowed; }
  
  /**
     * 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"] {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            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 and Chrome.
     * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
     */
  input[type="search"] {
    -webkit-appearance: textfield;
    /* 1 */
    -webkit-box-sizing: content-box;
       -moz-box-sizing: content-box;
            box-sizing: content-box;
    /* 2 */ }
  
  /**
     * 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.
     * [NOTE] We don't enable this ruleset in Foundation, because we want the <fieldset> element to have plain styling.
     */
  /* 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/10/11.
     * 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/10/11.
     */
  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; }
  
  .foundation-mq {
    font-family: "small=0em&medium=40em&large=64em&xlarge=75em&xxlarge=90em"; }
  
  html {
    font-size: 100%;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box; }
  
  *,
  *::before,
  *::after {
    -webkit-box-sizing: inherit;
       -moz-box-sizing: inherit;
            box-sizing: inherit; }
  
  body {
    padding: 0;
    margin: 0;
    font-family: "bariol_regularregular", Helvetica, Roboto, Arial, sans-serif;
    font-weight: normal;
    line-height: 1.5;
    color: #000000;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  
  img {
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
    display: inline-block;
    vertical-align: middle; }
  
  textarea {
    height: auto;
    min-height: 50px;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0; }
  
  select {
    width: 100%;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0; }
  
  #map_canvas img,
  #map_canvas embed,
  #map_canvas object,
  .map_canvas img,
  .map_canvas embed,
  .map_canvas object,
  .mqa-display img,
  .mqa-display embed,
  .mqa-display object {
    max-width: none !important; }
  
  button {
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    padding: 0;
    border: 0;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    line-height: 1; }
    [data-whatinput='mouse'] button {
      outline: 0; }
  
  .is-visible {
    display: block !important; }
  
  .is-hidden {
    display: none !important; }
  
  .row {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto; }
    .row::before, .row::after {
      content: ' ';
      display: table; }
    .row::after {
      clear: both; }
    .row.collapse > .column, .row.collapse > .columns {
      padding-left: 0;
      padding-right: 0; }
    .row .row {
      margin-left: -0.625rem;
      margin-right: -0.625rem; }@media screen and (min-width: 40em) {
 .row .row {
          margin-left: -0.9375rem;
          margin-right: -0.9375rem; } 
}.row .row.collapse {
        margin-left: 0;
        margin-right: 0; }
    .row.expanded {
      max-width: none; }
      .row.expanded .row {
        margin-left: auto;
        margin-right: auto; }
  
  .column, .columns {
    width: 100%;
    float: left;
    padding-left: 0.625rem;
    padding-right: 0.625rem; }@media screen and (min-width: 40em) {
 .column, .columns {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } 
}.column:last-child:not(:first-child), .columns:last-child:not(:first-child) {
      float: right; }
    .column.end:last-child:last-child, .end.columns:last-child:last-child {
      float: left; }
  
  .column.row.row, .row.row.columns {
    float: none; }
  
  .row .column.row.row, .row .row.row.columns {
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0; }
  
  .small-1 {
    width: 8.33333%; }
  
  .small-push-1 {
    position: relative;
    left: 8.33333%; }
  
  .small-pull-1 {
    position: relative;
    left: -8.33333%; }
  
  .small-offset-0 {
    margin-left: 0%; }
  
  .small-2 {
    width: 16.66667%; }
  
  .small-push-2 {
    position: relative;
    left: 16.66667%; }
  
  .small-pull-2 {
    position: relative;
    left: -16.66667%; }
  
  .small-offset-1 {
    margin-left: 8.33333%; }
  
  .small-3 {
    width: 25%; }
  
  .small-push-3 {
    position: relative;
    left: 25%; }
  
  .small-pull-3 {
    position: relative;
    left: -25%; }
  
  .small-offset-2 {
    margin-left: 16.66667%; }
  
  .small-4 {
    width: 33.33333%; }
  
  .small-push-4 {
    position: relative;
    left: 33.33333%; }
  
  .small-pull-4 {
    position: relative;
    left: -33.33333%; }
  
  .small-offset-3 {
    margin-left: 25%; }
  
  .small-5 {
    width: 41.66667%; }
  
  .small-push-5 {
    position: relative;
    left: 41.66667%; }
  
  .small-pull-5 {
    position: relative;
    left: -41.66667%; }
  
  .small-offset-4 {
    margin-left: 33.33333%; }
  
  .small-6 {
    width: 50%; }
  
  .small-push-6 {
    position: relative;
    left: 50%; }
  
  .small-pull-6 {
    position: relative;
    left: -50%; }
  
  .small-offset-5 {
    margin-left: 41.66667%; }
  
  .small-7 {
    width: 58.33333%; }
  
  .small-push-7 {
    position: relative;
    left: 58.33333%; }
  
  .small-pull-7 {
    position: relative;
    left: -58.33333%; }
  
  .small-offset-6 {
    margin-left: 50%; }
  
  .small-8 {
    width: 66.66667%; }
  
  .small-push-8 {
    position: relative;
    left: 66.66667%; }
  
  .small-pull-8 {
    position: relative;
    left: -66.66667%; }
  
  .small-offset-7 {
    margin-left: 58.33333%; }
  
  .small-9 {
    width: 75%; }
  
  .small-push-9 {
    position: relative;
    left: 75%; }
  
  .small-pull-9 {
    position: relative;
    left: -75%; }
  
  .small-offset-8 {
    margin-left: 66.66667%; }
  
  .small-10 {
    width: 83.33333%; }
  
  .small-push-10 {
    position: relative;
    left: 83.33333%; }
  
  .small-pull-10 {
    position: relative;
    left: -83.33333%; }
  
  .small-offset-9 {
    margin-left: 75%; }
  
  .small-11 {
    width: 91.66667%; }
  
  .small-push-11 {
    position: relative;
    left: 91.66667%; }
  
  .small-pull-11 {
    position: relative;
    left: -91.66667%; }
  
  .small-offset-10 {
    margin-left: 83.33333%; }
  
  .small-12 {
    width: 100%; }
  
  .small-offset-11 {
    margin-left: 91.66667%; }
  
  .small-up-1 > .column, .small-up-1 > .columns {
    width: 100%;
    float: left; }
    .small-up-1 > .column:nth-of-type(1n), .small-up-1 > .columns:nth-of-type(1n) {
      clear: none; }
    .small-up-1 > .column:nth-of-type(1n+1), .small-up-1 > .columns:nth-of-type(1n+1) {
      clear: both; }
    .small-up-1 > .column:last-child, .small-up-1 > .columns:last-child {
      float: left; }
  
  .small-up-2 > .column, .small-up-2 > .columns {
    width: 50%;
    float: left; }
    .small-up-2 > .column:nth-of-type(1n), .small-up-2 > .columns:nth-of-type(1n) {
      clear: none; }
    .small-up-2 > .column:nth-of-type(2n+1), .small-up-2 > .columns:nth-of-type(2n+1) {
      clear: both; }
    .small-up-2 > .column:last-child, .small-up-2 > .columns:last-child {
      float: left; }
  
  .small-up-3 > .column, .small-up-3 > .columns {
    width: 33.33333%;
    float: left; }
    .small-up-3 > .column:nth-of-type(1n), .small-up-3 > .columns:nth-of-type(1n) {
      clear: none; }
    .small-up-3 > .column:nth-of-type(3n+1), .small-up-3 > .columns:nth-of-type(3n+1) {
      clear: both; }
    .small-up-3 > .column:last-child, .small-up-3 > .columns:last-child {
      float: left; }
  
  .small-up-4 > .column, .small-up-4 > .columns {
    width: 25%;
    float: left; }
    .small-up-4 > .column:nth-of-type(1n), .small-up-4 > .columns:nth-of-type(1n) {
      clear: none; }
    .small-up-4 > .column:nth-of-type(4n+1), .small-up-4 > .columns:nth-of-type(4n+1) {
      clear: both; }
    .small-up-4 > .column:last-child, .small-up-4 > .columns:last-child {
      float: left; }
  
  .small-up-5 > .column, .small-up-5 > .columns {
    width: 20%;
    float: left; }
    .small-up-5 > .column:nth-of-type(1n), .small-up-5 > .columns:nth-of-type(1n) {
      clear: none; }
    .small-up-5 > .column:nth-of-type(5n+1), .small-up-5 > .columns:nth-of-type(5n+1) {
      clear: both; }
    .small-up-5 > .column:last-child, .small-up-5 > .columns:last-child {
      float: left; }
  
  .small-up-6 > .column, .small-up-6 > .columns {
    width: 16.66667%;
    float: left; }
    .small-up-6 > .column:nth-of-type(1n), .small-up-6 > .columns:nth-of-type(1n) {
      clear: none; }
    .small-up-6 > .column:nth-of-type(6n+1), .small-up-6 > .columns:nth-of-type(6n+1) {
      clear: both; }
    .small-up-6 > .column:last-child, .small-up-6 > .columns:last-child {
      float: left; }
  
  .small-up-7 > .column, .small-up-7 > .columns {
    width: 14.28571%;
    float: left; }
    .small-up-7 > .column:nth-of-type(1n), .small-up-7 > .columns:nth-of-type(1n) {
      clear: none; }
    .small-up-7 > .column:nth-of-type(7n+1), .small-up-7 > .columns:nth-of-type(7n+1) {
      clear: both; }
    .small-up-7 > .column:last-child, .small-up-7 > .columns:last-child {
      float: left; }
  
  .small-up-8 > .column, .small-up-8 > .columns {
    width: 12.5%;
    float: left; }
    .small-up-8 > .column:nth-of-type(1n), .small-up-8 > .columns:nth-of-type(1n) {
      clear: none; }
    .small-up-8 > .column:nth-of-type(8n+1), .small-up-8 > .columns:nth-of-type(8n+1) {
      clear: both; }
    .small-up-8 > .column:last-child, .small-up-8 > .columns:last-child {
      float: left; }
  
  .small-collapse > .column, .small-collapse > .columns {
    padding-left: 0;
    padding-right: 0; }
  
  .small-collapse .row {
    margin-left: 0;
    margin-right: 0; }
  
  .expanded.row .small-collapse.row {
    margin-left: 0;
    margin-right: 0; }
  
  .small-uncollapse > .column, .small-uncollapse > .columns {
    padding-left: 0.625rem;
    padding-right: 0.625rem; }
  
  .small-centered {
    margin-left: auto;
    margin-right: auto; }
    .small-centered, .small-centered:last-child:not(:first-child) {
      float: none;
      clear: both; }
  
  .small-uncentered,
  .small-push-0,
  .small-pull-0 {
    position: static;
    margin-left: 0;
    margin-right: 0;
    float: left; }@media screen and (min-width: 40em) {
 .medium-1 {
      width: 8.33333%; }
    .medium-push-1 {
      position: relative;
      left: 8.33333%; }
    .medium-pull-1 {
      position: relative;
      left: -8.33333%; }
    .medium-offset-0 {
      margin-left: 0%; }
    .medium-2 {
      width: 16.66667%; }
    .medium-push-2 {
      position: relative;
      left: 16.66667%; }
    .medium-pull-2 {
      position: relative;
      left: -16.66667%; }
    .medium-offset-1 {
      margin-left: 8.33333%; }
    .medium-3 {
      width: 25%; }
    .medium-push-3 {
      position: relative;
      left: 25%; }
    .medium-pull-3 {
      position: relative;
      left: -25%; }
    .medium-offset-2 {
      margin-left: 16.66667%; }
    .medium-4 {
      width: 33.33333%; }
    .medium-push-4 {
      position: relative;
      left: 33.33333%; }
    .medium-pull-4 {
      position: relative;
      left: -33.33333%; }
    .medium-offset-3 {
      margin-left: 25%; }
    .medium-5 {
      width: 41.66667%; }
    .medium-push-5 {
      position: relative;
      left: 41.66667%; }
    .medium-pull-5 {
      position: relative;
      left: -41.66667%; }
    .medium-offset-4 {
      margin-left: 33.33333%; }
    .medium-6 {
      width: 50%; }
    .medium-push-6 {
      position: relative;
      left: 50%; }
    .medium-pull-6 {
      position: relative;
      left: -50%; }
    .medium-offset-5 {
      margin-left: 41.66667%; }
    .medium-7 {
      width: 58.33333%; }
    .medium-push-7 {
      position: relative;
      left: 58.33333%; }
    .medium-pull-7 {
      position: relative;
      left: -58.33333%; }
    .medium-offset-6 {
      margin-left: 50%; }
    .medium-8 {
      width: 66.66667%; }
    .medium-push-8 {
      position: relative;
      left: 66.66667%; }
    .medium-pull-8 {
      position: relative;
      left: -66.66667%; }
    .medium-offset-7 {
      margin-left: 58.33333%; }
    .medium-9 {
      width: 75%; }
    .medium-push-9 {
      position: relative;
      left: 75%; }
    .medium-pull-9 {
      position: relative;
      left: -75%; }
    .medium-offset-8 {
      margin-left: 66.66667%; }
    .medium-10 {
      width: 83.33333%; }
    .medium-push-10 {
      position: relative;
      left: 83.33333%; }
    .medium-pull-10 {
      position: relative;
      left: -83.33333%; }
    .medium-offset-9 {
      margin-left: 75%; }
    .medium-11 {
      width: 91.66667%; }
    .medium-push-11 {
      position: relative;
      left: 91.66667%; }
    .medium-pull-11 {
      position: relative;
      left: -91.66667%; }
    .medium-offset-10 {
      margin-left: 83.33333%; }
    .medium-12 {
      width: 100%; }
    .medium-offset-11 {
      margin-left: 91.66667%; }
    .medium-up-1 > .column, .medium-up-1 > .columns {
      width: 100%;
      float: left; }
      .medium-up-1 > .column:nth-of-type(1n), .medium-up-1 > .columns:nth-of-type(1n) {
        clear: none; }
      .medium-up-1 > .column:nth-of-type(1n+1), .medium-up-1 > .columns:nth-of-type(1n+1) {
        clear: both; }
      .medium-up-1 > .column:last-child, .medium-up-1 > .columns:last-child {
        float: left; }
    .medium-up-2 > .column, .medium-up-2 > .columns {
      width: 50%;
      float: left; }
      .medium-up-2 > .column:nth-of-type(1n), .medium-up-2 > .columns:nth-of-type(1n) {
        clear: none; }
      .medium-up-2 > .column:nth-of-type(2n+1), .medium-up-2 > .columns:nth-of-type(2n+1) {
        clear: both; }
      .medium-up-2 > .column:last-child, .medium-up-2 > .columns:last-child {
        float: left; }
    .medium-up-3 > .column, .medium-up-3 > .columns {
      width: 33.33333%;
      float: left; }
      .medium-up-3 > .column:nth-of-type(1n), .medium-up-3 > .columns:nth-of-type(1n) {
        clear: none; }
      .medium-up-3 > .column:nth-of-type(3n+1), .medium-up-3 > .columns:nth-of-type(3n+1) {
        clear: both; }
      .medium-up-3 > .column:last-child, .medium-up-3 > .columns:last-child {
        float: left; }
    .medium-up-4 > .column, .medium-up-4 > .columns {
      width: 25%;
      float: left; }
      .medium-up-4 > .column:nth-of-type(1n), .medium-up-4 > .columns:nth-of-type(1n) {
        clear: none; }
      .medium-up-4 > .column:nth-of-type(4n+1), .medium-up-4 > .columns:nth-of-type(4n+1) {
        clear: both; }
      .medium-up-4 > .column:last-child, .medium-up-4 > .columns:last-child {
        float: left; }
    .medium-up-5 > .column, .medium-up-5 > .columns {
      width: 20%;
      float: left; }
      .medium-up-5 > .column:nth-of-type(1n), .medium-up-5 > .columns:nth-of-type(1n) {
        clear: none; }
      .medium-up-5 > .column:nth-of-type(5n+1), .medium-up-5 > .columns:nth-of-type(5n+1) {
        clear: both; }
      .medium-up-5 > .column:last-child, .medium-up-5 > .columns:last-child {
        float: left; }
    .medium-up-6 > .column, .medium-up-6 > .columns {
      width: 16.66667%;
      float: left; }
      .medium-up-6 > .column:nth-of-type(1n), .medium-up-6 > .columns:nth-of-type(1n) {
        clear: none; }
      .medium-up-6 > .column:nth-of-type(6n+1), .medium-up-6 > .columns:nth-of-type(6n+1) {
        clear: both; }
      .medium-up-6 > .column:last-child, .medium-up-6 > .columns:last-child {
        float: left; }
    .medium-up-7 > .column, .medium-up-7 > .columns {
      width: 14.28571%;
      float: left; }
      .medium-up-7 > .column:nth-of-type(1n), .medium-up-7 > .columns:nth-of-type(1n) {
        clear: none; }
      .medium-up-7 > .column:nth-of-type(7n+1), .medium-up-7 > .columns:nth-of-type(7n+1) {
        clear: both; }
      .medium-up-7 > .column:last-child, .medium-up-7 > .columns:last-child {
        float: left; }
    .medium-up-8 > .column, .medium-up-8 > .columns {
      width: 12.5%;
      float: left; }
      .medium-up-8 > .column:nth-of-type(1n), .medium-up-8 > .columns:nth-of-type(1n) {
        clear: none; }
      .medium-up-8 > .column:nth-of-type(8n+1), .medium-up-8 > .columns:nth-of-type(8n+1) {
        clear: both; }
      .medium-up-8 > .column:last-child, .medium-up-8 > .columns:last-child {
        float: left; }
    .medium-collapse > .column, .medium-collapse > .columns {
      padding-left: 0;
      padding-right: 0; }
    .medium-collapse .row {
      margin-left: 0;
      margin-right: 0; }
    .expanded.row .medium-collapse.row {
      margin-left: 0;
      margin-right: 0; }
    .medium-uncollapse > .column, .medium-uncollapse > .columns {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; }
    .medium-centered {
      margin-left: auto;
      margin-right: auto; }
      .medium-centered, .medium-centered:last-child:not(:first-child) {
        float: none;
        clear: both; }
    .medium-uncentered,
    .medium-push-0,
    .medium-pull-0 {
      position: static;
      margin-left: 0;
      margin-right: 0;
      float: left; } 
}@media screen and (min-width: 64em) {
 .large-1 {
      width: 8.33333%; }
    .large-push-1 {
      position: relative;
      left: 8.33333%; }
    .large-pull-1 {
      position: relative;
      left: -8.33333%; }
    .large-offset-0 {
      margin-left: 0%; }
    .large-2 {
      width: 16.66667%; }
    .large-push-2 {
      position: relative;
      left: 16.66667%; }
    .large-pull-2 {
      position: relative;
      left: -16.66667%; }
    .large-offset-1 {
      margin-left: 8.33333%; }
    .large-3 {
      width: 25%; }
    .large-push-3 {
      position: relative;
      left: 25%; }
    .large-pull-3 {
      position: relative;
      left: -25%; }
    .large-offset-2 {
      margin-left: 16.66667%; }
    .large-4 {
      width: 33.33333%; }
    .large-push-4 {
      position: relative;
      left: 33.33333%; }
    .large-pull-4 {
      position: relative;
      left: -33.33333%; }
    .large-offset-3 {
      margin-left: 25%; }
    .large-5 {
      width: 41.66667%; }
    .large-push-5 {
      position: relative;
      left: 41.66667%; }
    .large-pull-5 {
      position: relative;
      left: -41.66667%; }
    .large-offset-4 {
      margin-left: 33.33333%; }
    .large-6 {
      width: 50%; }
    .large-push-6 {
      position: relative;
      left: 50%; }
    .large-pull-6 {
      position: relative;
      left: -50%; }
    .large-offset-5 {
      margin-left: 41.66667%; }
    .large-7 {
      width: 58.33333%; }
    .large-push-7 {
      position: relative;
      left: 58.33333%; }
    .large-pull-7 {
      position: relative;
      left: -58.33333%; }
    .large-offset-6 {
      margin-left: 50%; }
    .large-8 {
      width: 66.66667%; }
    .large-push-8 {
      position: relative;
      left: 66.66667%; }
    .large-pull-8 {
      position: relative;
      left: -66.66667%; }
    .large-offset-7 {
      margin-left: 58.33333%; }
    .large-9 {
      width: 75%; }
    .large-push-9 {
      position: relative;
      left: 75%; }
    .large-pull-9 {
      position: relative;
      left: -75%; }
    .large-offset-8 {
      margin-left: 66.66667%; }
    .large-10 {
      width: 83.33333%; }
    .large-push-10 {
      position: relative;
      left: 83.33333%; }
    .large-pull-10 {
      position: relative;
      left: -83.33333%; }
    .large-offset-9 {
      margin-left: 75%; }
    .large-11 {
      width: 91.66667%; }
    .large-push-11 {
      position: relative;
      left: 91.66667%; }
    .large-pull-11 {
      position: relative;
      left: -91.66667%; }
    .large-offset-10 {
      margin-left: 83.33333%; }
    .large-12 {
      width: 100%; }
    .large-offset-11 {
      margin-left: 91.66667%; }
    .large-up-1 > .column, .large-up-1 > .columns {
      width: 100%;
      float: left; }
      .large-up-1 > .column:nth-of-type(1n), .large-up-1 > .columns:nth-of-type(1n) {
        clear: none; }
      .large-up-1 > .column:nth-of-type(1n+1), .large-up-1 > .columns:nth-of-type(1n+1) {
        clear: both; }
      .large-up-1 > .column:last-child, .large-up-1 > .columns:last-child {
        float: left; }
    .large-up-2 > .column, .large-up-2 > .columns {
      width: 50%;
      float: left; }
      .large-up-2 > .column:nth-of-type(1n), .large-up-2 > .columns:nth-of-type(1n) {
        clear: none; }
      .large-up-2 > .column:nth-of-type(2n+1), .large-up-2 > .columns:nth-of-type(2n+1) {
        clear: both; }
      .large-up-2 > .column:last-child, .large-up-2 > .columns:last-child {
        float: left; }
    .large-up-3 > .column, .large-up-3 > .columns {
      width: 33.33333%;
      float: left; }
      .large-up-3 > .column:nth-of-type(1n), .large-up-3 > .columns:nth-of-type(1n) {
        clear: none; }
      .large-up-3 > .column:nth-of-type(3n+1), .large-up-3 > .columns:nth-of-type(3n+1) {
        clear: both; }
      .large-up-3 > .column:last-child, .large-up-3 > .columns:last-child {
        float: left; }
    .large-up-4 > .column, .large-up-4 > .columns {
      width: 25%;
      float: left; }
      .large-up-4 > .column:nth-of-type(1n), .large-up-4 > .columns:nth-of-type(1n) {
        clear: none; }
      .large-up-4 > .column:nth-of-type(4n+1), .large-up-4 > .columns:nth-of-type(4n+1) {
        clear: both; }
      .large-up-4 > .column:last-child, .large-up-4 > .columns:last-child {
        float: left; }
    .large-up-5 > .column, .large-up-5 > .columns {
      width: 20%;
      float: left; }
      .large-up-5 > .column:nth-of-type(1n), .large-up-5 > .columns:nth-of-type(1n) {
        clear: none; }
      .large-up-5 > .column:nth-of-type(5n+1), .large-up-5 > .columns:nth-of-type(5n+1) {
        clear: both; }
      .large-up-5 > .column:last-child, .large-up-5 > .columns:last-child {
        float: left; }
    .large-up-6 > .column, .large-up-6 > .columns {
      width: 16.66667%;
      float: left; }
      .large-up-6 > .column:nth-of-type(1n), .large-up-6 > .columns:nth-of-type(1n) {
        clear: none; }
      .large-up-6 > .column:nth-of-type(6n+1), .large-up-6 > .columns:nth-of-type(6n+1) {
        clear: both; }
      .large-up-6 > .column:last-child, .large-up-6 > .columns:last-child {
        float: left; }
    .large-up-7 > .column, .large-up-7 > .columns {
      width: 14.28571%;
      float: left; }
      .large-up-7 > .column:nth-of-type(1n), .large-up-7 > .columns:nth-of-type(1n) {
        clear: none; }
      .large-up-7 > .column:nth-of-type(7n+1), .large-up-7 > .columns:nth-of-type(7n+1) {
        clear: both; }
      .large-up-7 > .column:last-child, .large-up-7 > .columns:last-child {
        float: left; }
    .large-up-8 > .column, .large-up-8 > .columns {
      width: 12.5%;
      float: left; }
      .large-up-8 > .column:nth-of-type(1n), .large-up-8 > .columns:nth-of-type(1n) {
        clear: none; }
      .large-up-8 > .column:nth-of-type(8n+1), .large-up-8 > .columns:nth-of-type(8n+1) {
        clear: both; }
      .large-up-8 > .column:last-child, .large-up-8 > .columns:last-child {
        float: left; }
    .large-collapse > .column, .large-collapse > .columns {
      padding-left: 0;
      padding-right: 0; }
    .large-collapse .row {
      margin-left: 0;
      margin-right: 0; }
    .expanded.row .large-collapse.row {
      margin-left: 0;
      margin-right: 0; }
    .large-uncollapse > .column, .large-uncollapse > .columns {
      padding-left: 0.9375rem;
      padding-right: 0.9375rem; }
    .large-centered {
      margin-left: auto;
      margin-right: auto; }
      .large-centered, .large-centered:last-child:not(:first-child) {
        float: none;
        clear: both; }
    .large-uncentered,
    .large-push-0,
    .large-pull-0 {
      position: static;
      margin-left: 0;
      margin-right: 0;
      float: left; } 
}div,
  dl,
  dt,
  dd,
  ul,
  ol,
  li,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  pre,
  form,
  p,
  blockquote,
  th,
  td {
    margin: 0;
    padding: 0; }
  
  p {
    font-size: inherit;
    line-height: 1.6;
    margin-bottom: 1rem;
    text-rendering: optimizeLegibility; }
  
  em,
  i {
    font-style: italic;
    line-height: inherit; }
  
  strong,
  b {
    font-weight: bold;
    line-height: inherit; }
  
  small {
    font-size: 80%;
    line-height: inherit; }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "bariol_regularregular", Helvetica, Roboto, Arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    color: inherit;
    text-rendering: optimizeLegibility;
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.4; }
    h1 small,
    h2 small,
    h3 small,
    h4 small,
    h5 small,
    h6 small {
      color: #cacaca;
      line-height: 0; }
  
  h1 {
    font-size: 1.5rem; }
  
  h2 {
    font-size: 1.25rem; }
  
  h3 {
    font-size: 1.1875rem; }
  
  h4 {
    font-size: 1.125rem; }
  
  h5 {
    font-size: 1.0625rem; }
  
  h6 {
    font-size: 1rem; }@media screen and (min-width: 40em) {
 h1 {
      font-size: 3rem; }
    h2 {
      font-size: 2.5rem; }
    h3 {
      font-size: 1.9375rem; }
    h4 {
      font-size: 1.5625rem; }
    h5 {
      font-size: 1.25rem; }
    h6 {
      font-size: 1rem; } 
}a {
    color: #2199e8;
    text-decoration: none;
    line-height: inherit;
    cursor: pointer; }
    a:hover, a:focus {
      color: #1585cf; }
    a img {
      border: 0; }
  
  hr {
    max-width: 75rem;
    height: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1px solid #cacaca;
    border-left: 0;
    margin: 1.25rem auto;
    clear: both; }
  
  ul,
  ol,
  dl {
    line-height: 1.6;
    margin-bottom: 1rem;
    list-style-position: outside; }
  
  li {
    font-size: inherit; }
  
  ul {
    list-style-type: disc;
    margin-left: 1.25rem; }
  
  ol {
    margin-left: 1.25rem; }
  
  ul ul, ol ul, ul ol, ol ol {
    margin-left: 1.25rem;
    margin-bottom: 0; }
  
  dl {
    margin-bottom: 1rem; }
    dl dt {
      margin-bottom: 0.3rem;
      font-weight: bold; }
  
  blockquote {
    margin: 0 0 1rem;
    padding: 0.5625rem 1.25rem 0 1.1875rem;
    border-left: 1px solid #cacaca; }
    blockquote, blockquote p {
      line-height: 1.6;
      color: #8a8a8a; }
  
  cite {
    display: block;
    font-size: 0.8125rem;
    color: #8a8a8a; }
    cite:before {
      content: '\2014 \0020'; }
  
  abbr {
    color: #000000;
    cursor: help;
    border-bottom: 1px dotted #0a0a0a; }
  
  code {
    font-family: Consolas, "Liberation Mono", Courier, monospace;
    font-weight: normal;
    color: #0a0a0a;
    background-color: #e6e6e6;
    border: 1px solid #cacaca;
    padding: 0.125rem 0.3125rem 0.0625rem; }
  
  kbd {
    padding: 0.125rem 0.25rem 0;
    margin: 0;
    background-color: #e6e6e6;
    color: #0a0a0a;
    font-family: Consolas, "Liberation Mono", Courier, monospace; }
  
  .subheader {
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
    line-height: 1.4;
    color: #8a8a8a; }
  
  .lead {
    font-size: 125%;
    line-height: 1.6; }
  
  .stat {
    font-size: 2.5rem;
    line-height: 1; }
    p + .stat {
      margin-top: -1rem; }
  
  .no-bullet {
    margin-left: 0;
    list-style: none; }
  
  .text-left {
    text-align: left; }
  
  .text-right {
    text-align: right; }
  
  .text-center {
    text-align: center; }
  
  .text-justify {
    text-align: justify; }@media screen and (min-width: 40em) {
 .medium-text-left {
      text-align: left; }
    .medium-text-right {
      text-align: right; }
    .medium-text-center {
      text-align: center; }
    .medium-text-justify {
      text-align: justify; } 
}@media screen and (min-width: 64em) {
 .large-text-left {
      text-align: left; }
    .large-text-right {
      text-align: right; }
    .large-text-center {
      text-align: center; }
    .large-text-justify {
      text-align: justify; } 
}.show-for-print {
    display: none !important; }@media print {
 * {
      background: transparent !important;
      color: black !important;
      -webkit-box-shadow: none !important;
         -moz-box-shadow: none !important;
              box-shadow: none !important;
      text-shadow: none !important; }
    .show-for-print {
      display: block !important; }
    .hide-for-print {
      display: none !important; }
    table.show-for-print {
      display: table !important; }
    thead.show-for-print {
      display: table-header-group !important; }
    tbody.show-for-print {
      display: table-row-group !important; }
    tr.show-for-print {
      display: table-row !important; }
    td.show-for-print {
      display: table-cell !important; }
    th.show-for-print {
      display: table-cell !important; }
    a,
    a:visited {
      text-decoration: underline; }
    a[href]:after {
      content: " (" attr(href) ")"; }
    .ir a:after,
    a[href^='javascript:']:after,
    a[href^='#']:after {
      content: ''; }
    abbr[title]:after {
      content: " (" attr(title) ")"; }
    pre,
    blockquote {
      border: 1px solid #8a8a8a;
      page-break-inside: avoid; }
    thead {
      display: table-header-group; }
    tr,
    img {
      page-break-inside: avoid; }
    img {
      max-width: 100% !important; }
    @page {
      margin: 0.5cm; }
    p,
    h2,
    h3 {
      orphans: 3;
      widows: 3; }
    h2,
    h3 {
      page-break-after: avoid; } 
}.button {
    display: inline-block;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    -o-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    -moz-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    vertical-align: middle;
    border: 1px solid transparent;
    -webkit-border-radius: 0.125rem;
       -moz-border-radius: 0.125rem;
            border-radius: 0.125rem;
    padding: 0.625rem 2.5rem;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    background-color: #0094de;
    color: #fefefe; }
    [data-whatinput='mouse'] .button {
      outline: 0; }
    .button:hover, .button:focus {
      background-color: #0087ca;
      color: #fefefe; }
    .button.tiny {
      font-size: 0.6rem; }
    .button.small {
      font-size: 0.75rem; }
    .button.large {
      font-size: 1.25rem; }
    .button.expanded {
      display: block;
      width: 100%;
      margin-left: 0;
      margin-right: 0; }
    .button.primary {
      background-color: #2199e8;
      color: #fefefe; }
      .button.primary:hover, .button.primary:focus {
        background-color: #147cc0;
        color: #fefefe; }
    .button.secondary {
      background-color: #777;
      color: #fefefe; }
      .button.secondary:hover, .button.secondary:focus {
        background-color: #5f5f5f;
        color: #fefefe; }
    .button.success {
      background-color: #3adb76;
      color: #fefefe; }
      .button.success:hover, .button.success:focus {
        background-color: #22bb5b;
        color: #fefefe; }
    .button.warning {
      background-color: #ffae00;
      color: #fefefe; }
      .button.warning:hover, .button.warning:focus {
        background-color: #cc8b00;
        color: #fefefe; }
    .button.alert {
      background-color: #ec5840;
      color: #fefefe; }
      .button.alert:hover, .button.alert:focus {
        background-color: #da3116;
        color: #fefefe; }
    .button.hollow {
      border: 1px solid #2199e8;
      color: #2199e8; }
      .button.hollow, .button.hollow:hover, .button.hollow:focus {
        background-color: transparent; }
      .button.hollow:hover, .button.hollow:focus {
        border-color: #0c4d78;
        color: #0c4d78; }
      .button.hollow.primary {
        border: 1px solid #2199e8;
        color: #2199e8; }
        .button.hollow.primary:hover, .button.hollow.primary:focus {
          border-color: #0c4d78;
          color: #0c4d78; }
      .button.hollow.secondary {
        border: 1px solid #777;
        color: #777; }
        .button.hollow.secondary:hover, .button.hollow.secondary:focus {
          border-color: #3c3c3c;
          color: #3c3c3c; }
      .button.hollow.success {
        border: 1px solid #3adb76;
        color: #3adb76; }
        .button.hollow.success:hover, .button.hollow.success:focus {
          border-color: #157539;
          color: #157539; }
      .button.hollow.warning {
        border: 1px solid #ffae00;
        color: #ffae00; }
        .button.hollow.warning:hover, .button.hollow.warning:focus {
          border-color: #805700;
          color: #805700; }
      .button.hollow.alert {
        border: 1px solid #ec5840;
        color: #ec5840; }
        .button.hollow.alert:hover, .button.hollow.alert:focus {
          border-color: #881f0e;
          color: #881f0e; }
    .button.disabled, .button[disabled] {
      opacity: 0.25;
      cursor: not-allowed; }
      .button.disabled:hover, .button.disabled:focus, .button[disabled]:hover, .button[disabled]:focus {
        background-color: #2199e8;
        color: #fefefe; }
      .button.disabled.primary, .button[disabled].primary {
        opacity: 0.25;
        cursor: not-allowed; }
        .button.disabled.primary:hover, .button.disabled.primary:focus, .button[disabled].primary:hover, .button[disabled].primary:focus {
          background-color: #2199e8;
          color: #fefefe; }
      .button.disabled.secondary, .button[disabled].secondary {
        opacity: 0.25;
        cursor: not-allowed; }
        .button.disabled.secondary:hover, .button.disabled.secondary:focus, .button[disabled].secondary:hover, .button[disabled].secondary:focus {
          background-color: #777;
          color: #fefefe; }
      .button.disabled.success, .button[disabled].success {
        opacity: 0.25;
        cursor: not-allowed; }
        .button.disabled.success:hover, .button.disabled.success:focus, .button[disabled].success:hover, .button[disabled].success:focus {
          background-color: #3adb76;
          color: #fefefe; }
      .button.disabled.warning, .button[disabled].warning {
        opacity: 0.25;
        cursor: not-allowed; }
        .button.disabled.warning:hover, .button.disabled.warning:focus, .button[disabled].warning:hover, .button[disabled].warning:focus {
          background-color: #ffae00;
          color: #fefefe; }
      .button.disabled.alert, .button[disabled].alert {
        opacity: 0.25;
        cursor: not-allowed; }
        .button.disabled.alert:hover, .button.disabled.alert:focus, .button[disabled].alert:hover, .button[disabled].alert:focus {
          background-color: #ec5840;
          color: #fefefe; }
    .button.dropdown::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border: inset 0.4em;
      border-color: #fefefe transparent transparent;
      border-top-style: solid;
      border-bottom-width: 0;
      position: relative;
      top: 0.4em;
      float: right;
      margin-left: 2.5rem;
      display: inline-block; }
    .button.arrow-only::after {
      margin-left: 0;
      float: none;
      top: -0.1em; }
  
  [type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
  textarea {
    display: block;
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 2.4375rem;
    padding: 0.5rem;
    border: 1px solid #cacaca;
    margin: 0 0 1rem;
    font-family: inherit;
    font-size: 1rem;
    color: #0a0a0a;
    background-color: #fefefe;
    -webkit-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
       -moz-box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
            box-shadow: inset 0 1px 2px rgba(10, 10, 10, 0.1);
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    -o-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    -moz-transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -moz-box-shadow 0.5s;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s, -moz-box-shadow 0.5s;
    -webkit-appearance: none;
    -moz-appearance: none; }
    [type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
    textarea:focus {
      border: 1px solid #8a8a8a;
      background-color: #fefefe;
      outline: none;
      -webkit-box-shadow: 0 0 5px #cacaca;
         -moz-box-shadow: 0 0 5px #cacaca;
              box-shadow: 0 0 5px #cacaca;
      -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
      transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
      -o-transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
      -moz-transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -moz-box-shadow 0.5s;
      transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
      transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s, -moz-box-shadow 0.5s; }
  
  textarea {
    max-width: 100%; }
    textarea[rows] {
      height: auto; }
  
  input::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: #cacaca; }
  
  input:-moz-placeholder,
  textarea:-moz-placeholder {
    color: #cacaca; }
  
  input::-moz-placeholder,
  textarea::-moz-placeholder {
    color: #cacaca; }
  
  input:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: #cacaca; }
  
  input::placeholder,
  textarea::placeholder {
    color: #cacaca; }
  
  input:disabled, input[readonly],
  textarea:disabled,
  textarea[readonly] {
    background-color: #e6e6e6;
    cursor: default; }
  
  [type='submit'],
  [type='button'] {
    -webkit-border-radius: 0.125rem;
       -moz-border-radius: 0.125rem;
            border-radius: 0.125rem;
    -webkit-appearance: none;
    -moz-appearance: none; }
  
  input[type='search'] {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
            box-sizing: border-box; }
  
  [type='file'],
  [type='checkbox'],
  [type='radio'] {
    margin: 0 0 1rem; }
  
  [type='checkbox'] + label,
  [type='radio'] + label {
    display: inline-block;
    margin-left: 0.5rem;
    margin-right: 1rem;
    margin-bottom: 0;
    vertical-align: baseline; }
    [type='checkbox'] + label[for],
    [type='radio'] + label[for] {
      cursor: pointer; }
  
  label > [type='checkbox'],
  label > [type='radio'] {
    margin-right: 0.5rem; }
  
  [type='file'] {
    width: 100%; }
  
  label {
    display: block;
    margin: 0;
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 1.8;
    color: #0a0a0a; }
    label.middle {
      margin: 0 0 1rem;
      padding: 0.5625rem 0; }
  
  .help-text {
    margin-top: -0.5rem;
    font-size: 0.8125rem;
    font-style: italic;
    color: #0a0a0a; }
  
  .input-group {
    display: table;
    width: 100%;
    margin-bottom: 1rem; }
    .input-group > :first-child {
      -webkit-border-radius: 0 0 0 0;
         -moz-border-radius: 0 0 0 0;
              border-radius: 0 0 0 0; }
    .input-group > :last-child > * {
      -webkit-border-radius: 0 0 0 0;
         -moz-border-radius: 0 0 0 0;
              border-radius: 0 0 0 0; }
  
  .input-group-label, .input-group-field, .input-group-button {
    margin: 0;
    white-space: nowrap;
    display: table-cell;
    vertical-align: middle; }
  
  .input-group-label {
    text-align: center;
    padding: 0 1rem;
    background: #e6e6e6;
    color: #0a0a0a;
    border: 1px solid #cacaca;
    white-space: nowrap;
    width: 1%;
    height: 100%; }
    .input-group-label:first-child {
      border-right: 0; }
    .input-group-label:last-child {
      border-left: 0; }
  
  .input-group-field {
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    height: 2.5rem; }
  
  .input-group-button {
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    height: 100%;
    width: 1%; }
    .input-group-button a,
    .input-group-button input,
    .input-group-button button {
      margin: 0; }
  
  .input-group .input-group-button {
    display: table-cell; }
  
  fieldset {
    border: 0;
    padding: 0;
    margin: 0; }
  
  legend {
    margin-bottom: 0.5rem;
    max-width: 100%; }
  
  .fieldset {
    border: 1px solid #cacaca;
    padding: 1.25rem;
    margin: 1.125rem 0; }
    .fieldset legend {
      background: #ffffff;
      padding: 0 0.1875rem;
      margin: 0;
      margin-left: -0.1875rem; }
  
  select {
    height: 2.4375rem;
    padding: 0.5rem;
    border: 1px solid #cacaca;
    margin: 0 0 1rem;
    font-size: 1rem;
    font-family: inherit;
    line-height: normal;
    color: #0a0a0a;
    background-color: #fefefe;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
    -moz-background-size: 9px 6px;
      -o-background-size: 9px 6px;
         background-size: 9px 6px;
    background-position: right -1rem center;
    -moz-background-origin: content-box;
      -o-background-origin: content-box;
         background-origin: content-box;
    background-repeat: no-repeat;
    padding-right: 1.5rem; }@media screen and (min-width: 0\0) {
 select {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg=="); } 
}select:disabled {
      background-color: #e6e6e6;
      cursor: default; }
    select::-ms-expand {
      display: none; }
    select[multiple] {
      height: auto;
      background-image: none; }
  
  .is-invalid-input:not(:focus) {
    background-color: rgba(236, 88, 64, 0.1);
    border-color: #ec5840; }
  
  .is-invalid-label {
    color: #ec5840; }
  
  .form-error {
    display: none;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    color: #ec5840; }
    .form-error.is-visible {
      display: block; }
  
  .accordion {
    list-style-type: none;
    background: #fefefe;
    margin-left: 0; }
  
  .accordion-item:first-child > :first-child {
    -webkit-border-radius: 0 0 0 0;
       -moz-border-radius: 0 0 0 0;
            border-radius: 0 0 0 0; }
  
  .accordion-item:last-child > :last-child {
    -webkit-border-radius: 0 0 0 0;
       -moz-border-radius: 0 0 0 0;
            border-radius: 0 0 0 0; }
  
  .accordion-title {
    display: block;
    padding: 1.25rem 1rem;
    line-height: 1;
    font-size: 0.75rem;
    color: #2199e8;
    position: relative;
    border: 1px solid #e6e6e6;
    border-bottom: 0; }
    :last-child:not(.is-active) > .accordion-title {
      -webkit-border-radius: 0 0 0 0;
         -moz-border-radius: 0 0 0 0;
              border-radius: 0 0 0 0;
      border-bottom: 1px solid #e6e6e6; }
    .accordion-title:hover, .accordion-title:focus {
      background-color: #e6e6e6; }
    .accordion-title::before {
      content: '+';
      position: absolute;
      right: 1rem;
      top: 50%;
      margin-top: -0.5rem; }
    .is-active > .accordion-title::before {
      content: '–'; }
  
  .accordion-content {
    padding: 1rem;
    display: none;
    border: 1px solid #e6e6e6;
    border-bottom: 0;
    background-color: #fefefe;
    color: #2199e8; }
    :last-child > .accordion-content:last-child {
      border-bottom: 1px solid #e6e6e6; }
  
  .is-accordion-submenu-parent > a {
    position: relative; }
    .is-accordion-submenu-parent > a::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border: inset 6px;
      border-color: #2199e8 transparent transparent;
      border-top-style: solid;
      border-bottom-width: 0;
      position: absolute;
      top: 50%;
      margin-top: -4px;
      right: 1rem; }
  
  .is-accordion-submenu-parent[aria-expanded='true'] > a::after {
    -webkit-transform-origin: 50% 50%;
       -moz-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
         -o-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
    -webkit-transform: scaleY(-1);
       -moz-transform: scaleY(-1);
        -ms-transform: scaleY(-1);
         -o-transform: scaleY(-1);
            transform: scaleY(-1); }
  
  .badge {
    display: inline-block;
    padding: 0.3em;
    min-width: 2.1em;
    font-size: 0.6rem;
    text-align: center;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background: #2199e8;
    color: #fefefe; }
    .badge.secondary {
      background: #777;
      color: #fefefe; }
    .badge.success {
      background: #3adb76;
      color: #fefefe; }
    .badge.warning {
      background: #ffae00;
      color: #fefefe; }
    .badge.alert {
      background: #ec5840;
      color: #fefefe; }
  
  .breadcrumbs {
    list-style: none;
    margin: 0 0 1rem 0; }
    .breadcrumbs::before, .breadcrumbs::after {
      content: ' ';
      display: table; }
    .breadcrumbs::after {
      clear: both; }
    .breadcrumbs li {
      float: left;
      color: #0a0a0a;
      font-size: 0.6875rem;
      cursor: default;
      text-transform: uppercase; }
      .breadcrumbs li:not(:last-child)::after {
        color: #cacaca;
        content: "/";
        margin: 0 0.75rem;
        position: relative;
        top: 1px;
        opacity: 1; }
    .breadcrumbs a {
      color: #2199e8; }
      .breadcrumbs a:hover {
        text-decoration: underline; }
    .breadcrumbs .disabled {
      color: #cacaca;
      cursor: not-allowed; }
  
  .button-group {
    margin-bottom: 1rem;
    font-size: 0; }
    .button-group::before, .button-group::after {
      content: ' ';
      display: table; }
    .button-group::after {
      clear: both; }
    .button-group .button {
      margin: 0;
      margin-right: 1px;
      margin-bottom: 1px;
      font-size: 0.9rem; }
      .button-group .button:last-child {
        margin-right: 0; }
    .button-group.tiny .button {
      font-size: 0.6rem; }
    .button-group.small .button {
      font-size: 0.75rem; }
    .button-group.large .button {
      font-size: 1.25rem; }
    .button-group.expanded {
      margin-right: -1px; }
      .button-group.expanded::before, .button-group.expanded::after {
        display: none; }
      .button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button {
        display: inline-block;
        width: -webkit-calc(50% - 1px);
        width: -moz-calc(50% - 1px);
        width: calc(50% - 1px);
        margin-right: 1px; }
        .button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child {
          margin-right: -6px; }
      .button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button {
        display: inline-block;
        width: -webkit-calc(33.33333% - 1px);
        width: -moz-calc(33.33333% - 1px);
        width: calc(33.33333% - 1px);
        margin-right: 1px; }
        .button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child {
          margin-right: -6px; }
      .button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button {
        display: inline-block;
        width: -webkit-calc(25% - 1px);
        width: -moz-calc(25% - 1px);
        width: calc(25% - 1px);
        margin-right: 1px; }
        .button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child {
          margin-right: -6px; }
      .button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button {
        display: inline-block;
        width: -webkit-calc(20% - 1px);
        width: -moz-calc(20% - 1px);
        width: calc(20% - 1px);
        margin-right: 1px; }
        .button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child {
          margin-right: -6px; }
      .button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button {
        display: inline-block;
        width: -webkit-calc(16.66667% - 1px);
        width: -moz-calc(16.66667% - 1px);
        width: calc(16.66667% - 1px);
        margin-right: 1px; }
        .button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child {
          margin-right: -6px; }
    .button-group.primary .button {
      background-color: #2199e8;
      color: #fefefe; }
      .button-group.primary .button:hover, .button-group.primary .button:focus {
        background-color: #147cc0;
        color: #fefefe; }
    .button-group.secondary .button {
      background-color: #777;
      color: #fefefe; }
      .button-group.secondary .button:hover, .button-group.secondary .button:focus {
        background-color: #5f5f5f;
        color: #fefefe; }
    .button-group.success .button {
      background-color: #3adb76;
      color: #fefefe; }
      .button-group.success .button:hover, .button-group.success .button:focus {
        background-color: #22bb5b;
        color: #fefefe; }
    .button-group.warning .button {
      background-color: #ffae00;
      color: #fefefe; }
      .button-group.warning .button:hover, .button-group.warning .button:focus {
        background-color: #cc8b00;
        color: #fefefe; }
    .button-group.alert .button {
      background-color: #ec5840;
      color: #fefefe; }
      .button-group.alert .button:hover, .button-group.alert .button:focus {
        background-color: #da3116;
        color: #fefefe; }
    .button-group.stacked .button, .button-group.stacked-for-small .button, .button-group.stacked-for-medium .button {
      width: 100%; }
      .button-group.stacked .button:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-medium .button:last-child {
        margin-bottom: 0; }@media screen and (min-width: 40em) {
 .button-group.stacked-for-small .button {
        width: auto;
        margin-bottom: 0; } 
}@media screen and (min-width: 64em) {
 .button-group.stacked-for-medium .button {
        width: auto;
        margin-bottom: 0; } 
}@media screen and (max-width: 39.9375em) {
 .button-group.stacked-for-small.expanded {
        display: block; }
        .button-group.stacked-for-small.expanded .button {
          display: block;
          margin-right: 0; } 
}.callout {
    margin: 0 0 1rem 0;
    padding: 1rem;
    border: 1px solid rgba(10, 10, 10, 0.25);
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    position: relative;
    color: #000000;
    background-color: white; }
    .callout > :first-child {
      margin-top: 0; }
    .callout > :last-child {
      margin-bottom: 0; }
    .callout.primary {
      background-color: #def0fc; }
    .callout.secondary {
      background-color: #ebebeb; }
    .callout.success {
      background-color: #e1faea; }
    .callout.warning {
      background-color: #fff3d9; }
    .callout.alert {
      background-color: #fce6e2; }
    .callout.small {
      padding-top: 0.5rem;
      padding-right: 0.5rem;
      padding-bottom: 0.5rem;
      padding-left: 0.5rem; }
    .callout.large {
      padding-top: 3rem;
      padding-right: 3rem;
      padding-bottom: 3rem;
      padding-left: 3rem; }
  
  .close-button {
    position: absolute;
    color: #8a8a8a;
    right: 1rem;
    top: 0.5rem;
    font-size: 2em;
    line-height: 1;
    cursor: pointer; }
    [data-whatinput='mouse'] .close-button {
      outline: 0; }
    .close-button:hover, .close-button:focus {
      color: #0a0a0a; }
  
  .menu {
    margin: 0;
    list-style-type: none; }
    .menu > li {
      display: table-cell;
      vertical-align: middle; }
      [data-whatinput='mouse'] .menu > li {
        outline: 0; }
    .menu > li > a {
      display: block;
      padding: 0.7rem 1rem;
      line-height: 1; }
    .menu input,
    .menu a,
    .menu button {
      margin-bottom: 0; }
    .menu > li > a img,
    .menu > li > a i,
    .menu > li > a svg {
      vertical-align: middle; }
      .menu > li > a img + span,
      .menu > li > a i + span,
      .menu > li > a svg + span {
        vertical-align: middle; }
    .menu > li > a img,
    .menu > li > a i,
    .menu > li > a svg {
      margin-right: 0.25rem;
      display: inline-block; }
    .menu > li {
      display: table-cell; }
    .menu.vertical > li {
      display: block; }@media screen and (min-width: 40em) {
 .menu.medium-horizontal > li {
        display: table-cell; }
      .menu.medium-vertical > li {
        display: block; } 
}@media screen and (min-width: 64em) {
 .menu.large-horizontal > li {
        display: table-cell; }
      .menu.large-vertical > li {
        display: block; } 
}.menu.simple li {
      line-height: 1;
      display: inline-block;
      margin-right: 1rem; }
    .menu.simple a {
      padding: 0; }
    .menu.align-right::before, .menu.align-right::after {
      content: ' ';
      display: table; }
    .menu.align-right::after {
      clear: both; }
    .menu.align-right > li {
      float: right; }
    .menu.expanded {
      width: 100%;
      display: table;
      table-layout: fixed; }
      .menu.expanded > li:first-child:last-child {
        width: 100%; }
    .menu.icon-top > li > a {
      text-align: center; }
      .menu.icon-top > li > a img,
      .menu.icon-top > li > a i,
      .menu.icon-top > li > a svg {
        display: block;
        margin: 0 auto 0.25rem; }
    .menu.nested {
      margin-left: 1rem; }
    .menu .active > a {
      color: #fefefe;
      background: #2199e8; }
  
  .menu-text {
    font-weight: bold;
    color: inherit;
    line-height: 1;
    padding-top: 0;
    padding-bottom: 0;
    padding: 0.7rem 1rem; }
  
  .menu-centered {
    text-align: center; }
    .menu-centered > .menu {
      display: inline-block; }
  
  .no-js [data-responsive-menu] ul {
    display: none; }
  
  .menu-icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    width: 20px;
    height: 16px; }
    .menu-icon::after {
      content: '';
      position: absolute;
      display: block;
      width: 100%;
      height: 2px;
      background: #fefefe;
      top: 0;
      left: 0;
      -webkit-box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
         -moz-box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe;
              box-shadow: 0 7px 0 #fefefe, 0 14px 0 #fefefe; }
    .menu-icon:hover::after {
      background: #cacaca;
      -webkit-box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
         -moz-box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca;
              box-shadow: 0 7px 0 #cacaca, 0 14px 0 #cacaca; }
  
  .menu-icon.dark {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
    width: 20px;
    height: 16px; }
    .menu-icon.dark::after {
      content: '';
      position: absolute;
      display: block;
      width: 100%;
      height: 2px;
      background: #0a0a0a;
      top: 0;
      left: 0;
      -webkit-box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
         -moz-box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a;
              box-shadow: 0 7px 0 #0a0a0a, 0 14px 0 #0a0a0a; }
    .menu-icon.dark:hover::after {
      background: #8a8a8a;
      -webkit-box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
         -moz-box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a;
              box-shadow: 0 7px 0 #8a8a8a, 0 14px 0 #8a8a8a; }
  
  .is-drilldown {
    position: relative;
    overflow: hidden; }
    .is-drilldown li {
      display: block !important; }
  
  .is-drilldown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: -1;
    width: 100%;
    background: #fefefe;
    -webkit-transition: -webkit-transform 0.15s linear;
    transition: -webkit-transform 0.15s linear;
    -o-transition: -o-transform 0.15s linear;
    -moz-transition: transform 0.15s linear, -moz-transform 0.15s linear;
    transition: transform 0.15s linear;
    transition: transform 0.15s linear, -webkit-transform 0.15s linear, -moz-transform 0.15s linear, -o-transform 0.15s linear; }
    .is-drilldown-submenu.is-active {
      z-index: 1;
      display: block;
      -webkit-transform: translateX(-100%);
         -moz-transform: translateX(-100%);
          -ms-transform: translateX(-100%);
           -o-transform: translateX(-100%);
              transform: translateX(-100%); }
    .is-drilldown-submenu.is-closing {
      -webkit-transform: translateX(100%);
         -moz-transform: translateX(100%);
          -ms-transform: translateX(100%);
           -o-transform: translateX(100%);
              transform: translateX(100%); }
  
  .is-drilldown-submenu-parent > a {
    position: relative; }
    .is-drilldown-submenu-parent > a::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border: inset 6px;
      border-color: transparent transparent transparent #2199e8;
      border-left-style: solid;
      border-right-width: 0;
      position: absolute;
      top: 50%;
      margin-top: -6px;
      right: 1rem; }
  
  .js-drilldown-back > a::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    border-color: transparent #2199e8 transparent transparent;
    border-right-style: solid;
    border-left-width: 0;
    border-left-width: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.75rem; }
  
  .dropdown-pane {
    background-color: #ffffff;
    border: 1px solid #cacaca;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    display: block;
    font-size: 1rem;
    padding: 1rem;
    position: absolute;
    visibility: hidden;
    width: 300px;
    z-index: 10; }
    .dropdown-pane.is-open {
      visibility: visible; }
  
  .dropdown-pane.tiny {
    width: 100px; }
  
  .dropdown-pane.small {
    width: 200px; }
  
  .dropdown-pane.large {
    width: 400px; }
  
  .dropdown.menu > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 0;
    top: 100%; }
  
  .dropdown.menu > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 0;
    top: 100%; }
  
  .dropdown.menu > li.is-dropdown-submenu-parent > a {
    padding-right: 1.5rem;
    position: relative; }
  
  .dropdown.menu > li.is-dropdown-submenu-parent > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: #2199e8 transparent transparent;
    border-top-style: solid;
    border-bottom-width: 0;
    right: 5px;
    margin-top: -2px; }
  
  [data-whatinput='mouse'] .dropdown.menu a {
    outline: 0; }
  
  .no-js .dropdown.menu ul {
    display: none; }
  
  .dropdown.menu.vertical > li .is-dropdown-submenu {
    top: 0; }
  
  .dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
    left: auto;
    right: 100%; }
  
  .dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%; }
  
  .dropdown.menu.vertical > li > a::after {
    right: 14px;
    margin-top: -3px; }
  
  .dropdown.menu.vertical > li.opens-left > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent #2199e8 transparent transparent;
    border-right-style: solid;
    border-left-width: 0; }
  
  .dropdown.menu.vertical > li.opens-right > a::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border: inset 5px;
    border-color: transparent transparent transparent #2199e8;
    border-left-style: solid;
    border-right-width: 0; }@media screen and (min-width: 40em) {
 .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
      left: auto;
      right: 0;
      top: 100%; }
    .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
      right: auto;
      left: 0;
      top: 100%; }
    .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
      padding-right: 1.5rem;
      position: relative; }
    .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border: inset 5px;
      border-color: #2199e8 transparent transparent;
      border-top-style: solid;
      border-bottom-width: 0;
      right: 5px;
      margin-top: -2px; }
    .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
      top: 0; }
    .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
      left: auto;
      right: 100%; }
    .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
      right: auto;
      left: 100%; }
    .dropdown.menu.medium-vertical > li > a::after {
      right: 14px;
      margin-top: -3px; }
    .dropdown.menu.medium-vertical > li.opens-left > a::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border: inset 5px;
      border-color: transparent #2199e8 transparent transparent;
      border-right-style: solid;
      border-left-width: 0; }
    .dropdown.menu.medium-vertical > li.opens-right > a::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border: inset 5px;
      border-color: transparent transparent transparent #2199e8;
      border-left-style: solid;
      border-right-width: 0; } 
}@media screen and (min-width: 64em) {
 .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
      left: auto;
      right: 0;
      top: 100%; }
    .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
      right: auto;
      left: 0;
      top: 100%; }
    .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
      padding-right: 1.5rem;
      position: relative; }
    .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border: inset 5px;
      border-color: #2199e8 transparent transparent;
      border-top-style: solid;
      border-bottom-width: 0;
      right: 5px;
      margin-top: -2px; }
    .dropdown.menu.large-vertical > li .is-dropdown-submenu {
      top: 0; }
    .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
      left: auto;
      right: 100%; }
    .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
      right: auto;
      left: 100%; }
    .dropdown.menu.large-vertical > li > a::after {
      right: 14px;
      margin-top: -3px; }
    .dropdown.menu.large-vertical > li.opens-left > a::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border: inset 5px;
      border-color: transparent #2199e8 transparent transparent;
      border-right-style: solid;
      border-left-width: 0; }
    .dropdown.menu.large-vertical > li.opens-right > a::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border: inset 5px;
      border-color: transparent transparent transparent #2199e8;
      border-left-style: solid;
      border-right-width: 0; } 
}.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
    top: 100%;
    left: auto;
    right: 0; }
  
  .is-dropdown-menu.vertical {
    width: 100px; }
    .is-dropdown-menu.vertical.align-right {
      float: right; }
  
  .is-dropdown-submenu-parent {
    position: relative; }
    .is-dropdown-submenu-parent a::after {
      position: absolute;
      top: 50%;
      right: 5px;
      margin-top: -2px; }
    .is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
      top: 100%;
      left: auto; }
    .is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
      left: auto;
      right: 100%; }
    .is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
      right: auto;
      left: 100%; }
  
  .is-dropdown-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 200px;
    z-index: 1;
    background: #fefefe;
    border: 1px solid #cacaca; }
    .is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
      right: 14px;
      margin-top: -3px; }
    .is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border: inset 5px;
      border-color: transparent #2199e8 transparent transparent;
      border-right-style: solid;
      border-left-width: 0; }
    .is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border: inset 5px;
      border-color: transparent transparent transparent #2199e8;
      border-left-style: solid;
      border-right-width: 0; }
    .is-dropdown-submenu .is-dropdown-submenu {
      margin-top: -1px; }
    .is-dropdown-submenu > li {
      width: 100%; }
    .is-dropdown-submenu.js-dropdown-active {
      display: block; }
  
  .flex-video {
    position: relative;
    height: 0;
    padding-bottom: 75%;
    margin-bottom: 1rem;
    overflow: hidden; }
    .flex-video iframe,
    .flex-video object,
    .flex-video embed,
    .flex-video video {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
    .flex-video.widescreen {
      padding-bottom: 56.25%; }
    .flex-video.vimeo {
      padding-top: 0; }
  
  .label {
    display: inline-block;
    padding: 0.33333rem 0.5rem;
    font-size: 0.8rem;
    line-height: 1;
    white-space: nowrap;
    cursor: default;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    background: #2199e8;
    color: #fefefe; }
    .label.secondary {
      background: #777;
      color: #fefefe; }
    .label.success {
      background: #3adb76;
      color: #fefefe; }
    .label.warning {
      background: #ffae00;
      color: #fefefe; }
    .label.alert {
      background: #ec5840;
      color: #fefefe; }
  
  .media-object {
    margin-bottom: 1rem;
    display: block; }
    .media-object img {
      max-width: none; }@media screen and (max-width: 39.9375em) {
 .media-object.stack-for-small .media-object-section {
        padding: 0;
        padding-bottom: 1rem;
        display: block; }
        .media-object.stack-for-small .media-object-section img {
          width: 100%; } 
}.media-object-section {
    display: table-cell;
    vertical-align: top; }
    .media-object-section:first-child {
      padding-right: 1rem; }
    .media-object-section:last-child:not(:nth-child(2)) {
      padding-left: 1rem; }
    .media-object-section > :last-child {
      margin-bottom: 0; }
    .media-object-section.middle {
      vertical-align: middle; }
    .media-object-section.bottom {
      vertical-align: bottom; }
  
  html,
  body {
    height: 100%; }
  
  .off-canvas-wrapper {
    width: 100%;
    overflow-x: hidden;
    position: relative;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-overflow-scrolling: auto; }
  
  .off-canvas-wrapper-inner {
    position: relative;
    width: 100%;
    min-height: 100%;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: -o-transform 0.5s ease;
    -moz-transition: transform 0.5s ease, -moz-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease, -moz-transform 0.5s ease, -o-transform 0.5s ease; }
    .off-canvas-wrapper-inner::before, .off-canvas-wrapper-inner::after {
      content: ' ';
      display: table; }
    .off-canvas-wrapper-inner::after {
      clear: both; }
  
  .off-canvas-content,
  .off-canvas-content {
    min-height: 100%;
    background: #ffffff;
    -webkit-transition: -webkit-transform 0.5s ease;
    transition: -webkit-transform 0.5s ease;
    -o-transition: -o-transform 0.5s ease;
    -moz-transition: transform 0.5s ease, -moz-transform 0.5s ease;
    transition: transform 0.5s ease;
    transition: transform 0.5s ease, -webkit-transform 0.5s ease, -moz-transform 0.5s ease, -o-transform 0.5s ease;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden;
    z-index: 1;
    padding-bottom: 0.1px;
    -webkit-box-shadow: 0 0 10px rgba(10, 10, 10, 0.5);
       -moz-box-shadow: 0 0 10px rgba(10, 10, 10, 0.5);
            box-shadow: 0 0 10px rgba(10, 10, 10, 0.5); }
  
  .js-off-canvas-exit {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(254, 254, 254, 0.25);
    cursor: pointer;
    -webkit-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    -moz-transition: background 0.5s ease;
    transition: background 0.5s ease; }
  
  .off-canvas {
    position: absolute;
    background: #e6e6e6;
    z-index: -1;
    max-height: 100%;
    overflow-y: auto;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0); }
    [data-whatinput='mouse'] .off-canvas {
      outline: 0; }
    .off-canvas.position-left {
      left: -250px;
      top: 0;
      width: 250px; }
      .is-open-left {
        -webkit-transform: translateX(250px);
           -moz-transform: translateX(250px);
            -ms-transform: translateX(250px);
             -o-transform: translateX(250px);
                transform: translateX(250px); }
    .off-canvas.position-right {
      right: -250px;
      top: 0;
      width: 250px; }
      .is-open-right {
        -webkit-transform: translateX(-250px);
           -moz-transform: translateX(-250px);
            -ms-transform: translateX(-250px);
             -o-transform: translateX(-250px);
                transform: translateX(-250px); }@media screen and (min-width: 40em) {
 .position-left.reveal-for-medium {
      left: 0;
      z-index: auto;
      position: fixed; }
      .position-left.reveal-for-medium ~ .off-canvas-content {
        margin-left: 250px; }
    .position-right.reveal-for-medium {
      right: 0;
      z-index: auto;
      position: fixed; }
      .position-right.reveal-for-medium ~ .off-canvas-content {
        margin-right: 250px; } 
}@media screen and (min-width: 64em) {
 .position-left.reveal-for-large {
      left: 0;
      z-index: auto;
      position: fixed; }
      .position-left.reveal-for-large ~ .off-canvas-content {
        margin-left: 250px; }
    .position-right.reveal-for-large {
      right: 0;
      z-index: auto;
      position: fixed; }
      .position-right.reveal-for-large ~ .off-canvas-content {
        margin-right: 250px; } 
}.orbit {
    position: relative; }
  
  .orbit-container {
    position: relative;
    margin: 0;
    overflow: hidden;
    list-style: none; }
  
  .orbit-slide {
    width: 100%;
    max-height: 100%; }
    .orbit-slide.no-motionui.is-active {
      top: 0;
      left: 0; }
  
  .orbit-figure {
    margin: 0; }
  
  .orbit-image {
    margin: 0;
    width: 100%;
    max-width: 100%; }
  
  .orbit-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 1rem;
    margin-bottom: 0;
    color: #fefefe;
    background-color: rgba(10, 10, 10, 0.5); }
  
  .orbit-previous, .orbit-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 10;
    padding: 1rem;
    color: #fefefe; }
    [data-whatinput='mouse'] .orbit-previous, [data-whatinput='mouse'] .orbit-next {
      outline: 0; }
    .orbit-previous:hover, .orbit-next:hover, .orbit-previous:active, .orbit-next:active, .orbit-previous:focus, .orbit-next:focus {
      background-color: rgba(10, 10, 10, 0.5); }
  
  .orbit-previous {
    left: 0; }
  
  .orbit-next {
    left: auto;
    right: 0; }
  
  .orbit-bullets {
    position: relative;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    text-align: center; }
    [data-whatinput='mouse'] .orbit-bullets {
      outline: 0; }
    .orbit-bullets button {
      width: 1.2rem;
      height: 1.2rem;
      margin: 0.1rem;
      background-color: #cacaca;
      -webkit-border-radius: 50%;
         -moz-border-radius: 50%;
              border-radius: 50%; }
      .orbit-bullets button:hover {
        background-color: #8a8a8a; }
      .orbit-bullets button.is-active {
        background-color: #8a8a8a; }
  
  .pagination {
    margin-left: 0;
    margin-bottom: 1rem; }
    .pagination::before, .pagination::after {
      content: ' ';
      display: table; }
    .pagination::after {
      clear: both; }
    .pagination li {
      font-size: 0.875rem;
      margin-right: 0.0625rem;
      -webkit-border-radius: 0;
         -moz-border-radius: 0;
              border-radius: 0;
      display: none; }
      .pagination li:last-child, .pagination li:first-child {
        display: inline-block; }@media screen and (min-width: 40em) {
 .pagination li {
          display: inline-block; } 
}.pagination a,
    .pagination button {
      color: #0a0a0a;
      display: block;
      padding: 0.1875rem 0.625rem;
      -webkit-border-radius: 0;
         -moz-border-radius: 0;
              border-radius: 0; }
      .pagination a:hover,
      .pagination button:hover {
        background: #e6e6e6; }
    .pagination .current {
      padding: 0.1875rem 0.625rem;
      background: #2199e8;
      color: #fefefe;
      cursor: default; }
    .pagination .disabled {
      padding: 0.1875rem 0.625rem;
      color: #cacaca;
      cursor: not-allowed; }
      .pagination .disabled:hover {
        background: transparent; }
    .pagination .ellipsis::after {
      content: '\2026';
      padding: 0.1875rem 0.625rem;
      color: #0a0a0a; }
  
  .pagination-previous a::before,
  .pagination-previous.disabled::before {
    content: '\00ab';
    display: inline-block;
    margin-right: 0.5rem; }
  
  .pagination-next a::after,
  .pagination-next.disabled::after {
    content: '\00bb';
    display: inline-block;
    margin-left: 0.5rem; }
  
  .progress {
    background-color: #cacaca;
    height: 1rem;
    margin-bottom: 1rem;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0; }
    .progress.primary .progress-meter {
      background-color: #2199e8; }
    .progress.secondary .progress-meter {
      background-color: #777; }
    .progress.success .progress-meter {
      background-color: #3adb76; }
    .progress.warning .progress-meter {
      background-color: #ffae00; }
    .progress.alert .progress-meter {
      background-color: #ec5840; }
  
  .progress-meter {
    position: relative;
    display: block;
    width: 0%;
    height: 100%;
    background-color: #2199e8; }
  
  .progress-meter-text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    position: absolute;
    margin: 0;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fefefe;
    white-space: nowrap; }
  
  .slider {
    position: relative;
    height: 0.5rem;
    margin-top: 1.25rem;
    margin-bottom: 2.25rem;
    background-color: #e6e6e6;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -ms-touch-action: none;
        touch-action: none; }
  
  .slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    max-width: 100%;
    height: 0.5rem;
    background-color: #cacaca;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out; }
    .slider-fill.is-dragging {
      -webkit-transition: all 0s linear;
      -o-transition: all 0s linear;
      -moz-transition: all 0s linear;
      transition: all 0s linear; }
  
  .slider-handle {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    position: absolute;
    left: 0;
    z-index: 1;
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    background-color: #2199e8;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0; }
    [data-whatinput='mouse'] .slider-handle {
      outline: 0; }
    .slider-handle:hover {
      background-color: #1583cc; }
    .slider-handle.is-dragging {
      -webkit-transition: all 0s linear;
      -o-transition: all 0s linear;
      -moz-transition: all 0s linear;
      transition: all 0s linear; }
  
  .slider.disabled,
  .slider[disabled] {
    opacity: 0.25;
    cursor: not-allowed; }
  
  .slider.vertical {
    display: inline-block;
    width: 0.5rem;
    height: 12.5rem;
    margin: 0 1.25rem;
    -webkit-transform: scale(1, -1);
       -moz-transform: scale(1, -1);
        -ms-transform: scale(1, -1);
         -o-transform: scale(1, -1);
            transform: scale(1, -1); }
    .slider.vertical .slider-fill {
      top: 0;
      width: 0.5rem;
      max-height: 100%; }
    .slider.vertical .slider-handle {
      position: absolute;
      top: 0;
      left: 50%;
      width: 1.4rem;
      height: 1.4rem;
      -webkit-transform: translateX(-50%);
         -moz-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
           -o-transform: translateX(-50%);
              transform: translateX(-50%); }
  
  .sticky-container {
    position: relative; }
  
  .sticky {
    position: absolute;
    z-index: 0;
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0); }
  
  .sticky.is-stuck {
    position: fixed;
    z-index: 5; }
    .sticky.is-stuck.is-at-top {
      top: 0; }
    .sticky.is-stuck.is-at-bottom {
      bottom: 0; }
  
  .sticky.is-anchored {
    position: absolute;
    left: auto;
    right: auto; }
    .sticky.is-anchored.is-at-bottom {
      bottom: 0; }
  
  body.is-reveal-open {
    overflow: hidden; }
  
  html.is-reveal-open,
  html.is-reveal-open body {
    min-height: 100%;
    overflow: hidden;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none; }
  
  .reveal-overlay {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1005;
    background-color: rgba(10, 10, 10, 0.45);
    overflow-y: scroll; }
  
  .reveal {
    display: none;
    z-index: 1006;
    padding: 1rem;
    border: 1px solid #cacaca;
    background-color: #fefefe;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    position: relative;
    top: 100px;
    margin-left: auto;
    margin-right: auto;
    overflow-y: auto; }
    [data-whatinput='mouse'] .reveal {
      outline: 0; }@media screen and (min-width: 40em) {
 .reveal {
        min-height: 0; } 
}.reveal .column, .reveal .columns,
    .reveal .columns {
      min-width: 0; }
    .reveal > :last-child {
      margin-bottom: 0; }@media screen and (min-width: 40em) {
 .reveal {
        width: 600px;
        max-width: 75rem; } 
}@media screen and (min-width: 40em) {
 .reveal .reveal {
        left: auto;
        right: auto;
        margin: 0 auto; } 
}.reveal.collapse {
      padding: 0; }@media screen and (min-width: 40em) {
 .reveal.tiny {
        width: 30%;
        max-width: 75rem; } 
}@media screen and (min-width: 40em) {
 .reveal.small {
        width: 50%;
        max-width: 75rem; } 
}@media screen and (min-width: 40em) {
 .reveal.large {
        width: 90%;
        max-width: 75rem; } 
}.reveal.full {
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      height: 100vh;
      min-height: 100vh;
      max-width: none;
      margin-left: 0;
      border: 0;
      -webkit-border-radius: 0;
         -moz-border-radius: 0;
              border-radius: 0; }@media screen and (max-width: 39.9375em) {
 .reveal {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        height: 100vh;
        min-height: 100vh;
        max-width: none;
        margin-left: 0;
        border: 0;
        -webkit-border-radius: 0;
           -moz-border-radius: 0;
                border-radius: 0; } 
}.reveal.without-overlay {
      position: fixed; }
  
  .switch {
    height: 2rem;
    margin-bottom: 1rem;
    outline: 0;
    position: relative;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    color: #fefefe;
    font-weight: bold;
    font-size: 0.875rem; }
  
  .switch-input {
    opacity: 0;
    position: absolute;
    margin-bottom: 0; }
  
  .switch-paddle {
    background: #cacaca;
    cursor: pointer;
    display: block;
    position: relative;
    width: 4rem;
    height: 2rem;
    -webkit-transition: all 0.25s ease-out;
    -o-transition: all 0.25s ease-out;
    -moz-transition: all 0.25s ease-out;
    transition: all 0.25s ease-out;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    color: inherit;
    font-weight: inherit; }
    input + .switch-paddle {
      margin: 0; }
    .switch-paddle::after {
      background: #fefefe;
      content: '';
      display: block;
      position: absolute;
      height: 1.5rem;
      left: 0.25rem;
      top: 0.25rem;
      width: 1.5rem;
      -webkit-transition: all 0.25s ease-out;
      -o-transition: all 0.25s ease-out;
      -moz-transition: all 0.25s ease-out;
      transition: all 0.25s ease-out;
      -webkit-transform: translate3d(0, 0, 0);
         -moz-transform: translate3d(0, 0, 0);
              transform: translate3d(0, 0, 0);
      -webkit-border-radius: 0;
         -moz-border-radius: 0;
              border-radius: 0; }
    input:checked ~ .switch-paddle {
      background: #2199e8; }
      input:checked ~ .switch-paddle::after {
        left: 2.25rem; }
    [data-whatinput='mouse'] input:focus ~ .switch-paddle {
      outline: 0; }
  
  .switch-active, .switch-inactive {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
       -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%); }
  
  .switch-active {
    left: 8%;
    display: none; }
    input:checked + label > .switch-active {
      display: block; }
  
  .switch-inactive {
    right: 15%; }
    input:checked + label > .switch-inactive {
      display: none; }
  
  .switch.tiny {
    height: 1.5rem; }
    .switch.tiny .switch-paddle {
      width: 3rem;
      height: 1.5rem;
      font-size: 0.625rem; }
    .switch.tiny .switch-paddle::after {
      width: 1rem;
      height: 1rem; }
    .switch.tiny input:checked ~ .switch-paddle::after {
      left: 1.75rem; }
  
  .switch.small {
    height: 1.75rem; }
    .switch.small .switch-paddle {
      width: 3.5rem;
      height: 1.75rem;
      font-size: 0.75rem; }
    .switch.small .switch-paddle::after {
      width: 1.25rem;
      height: 1.25rem; }
    .switch.small input:checked ~ .switch-paddle::after {
      left: 2rem; }
  
  .switch.large {
    height: 2.5rem; }
    .switch.large .switch-paddle {
      width: 5rem;
      height: 2.5rem;
      font-size: 1rem; }
    .switch.large .switch-paddle::after {
      width: 2rem;
      height: 2rem; }
    .switch.large input:checked ~ .switch-paddle::after {
      left: 2.75rem; }
  
  table {
    width: 100%;
    margin-bottom: 1rem;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0; }
    table thead,
    table tbody,
    table tfoot {
      border: 1px solid #f1f1f1;
      background-color: #fefefe; }
    table caption {
      font-weight: bold;
      padding: 0.5rem 0.625rem 0.625rem; }
    table thead {
      background: #f8f8f8;
      color: #000000; }
    table tfoot {
      background: #f1f1f1;
      color: #000000; }
    table thead tr,
    table tfoot tr {
      background: transparent; }
    table thead th,
    table thead td,
    table tfoot th,
    table tfoot td {
      padding: 0.5rem 0.625rem 0.625rem;
      font-weight: bold;
      text-align: left; }
    table tbody tr:nth-child(even) {
      background-color: #f1f1f1; }
    table tbody th,
    table tbody td {
      padding: 0.5rem 0.625rem 0.625rem; }@media screen and (max-width: 63.9375em) {
 table.stack thead {
      display: none; }
    table.stack tfoot {
      display: none; }
    table.stack tr,
    table.stack th,
    table.stack td {
      display: block; }
    table.stack td {
      border-top: 0; } 
}table.scroll {
    display: block;
    width: 100%;
    overflow-x: auto; }
  
  table.hover thead tr:hover {
    background-color: #f3f3f3; }
  
  table.hover tfoot tr:hover {
    background-color: #ececec; }
  
  table.hover tbody tr:hover {
    background-color: #f9f9f9; }
  
  table.hover tbody tr:nth-of-type(even):hover {
    background-color: #ececec; }
  
  .table-scroll {
    overflow-x: auto; }
    .table-scroll table {
      width: auto; }
  
  .tabs {
    margin: 0;
    list-style-type: none;
    background: #fefefe;
    border: 1px solid #e6e6e6; }
    .tabs::before, .tabs::after {
      content: ' ';
      display: table; }
    .tabs::after {
      clear: both; }
  
  .tabs.vertical > li {
    width: auto;
    float: none;
    display: block; }
  
  .tabs.simple > li > a {
    padding: 0; }
    .tabs.simple > li > a:hover {
      background: transparent; }
  
  .tabs.primary {
    background: #2199e8; }
    .tabs.primary > li > a {
      color: #fefefe; }
      .tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
        background: #1893e4; }
  
  .tabs-title {
    float: left; }
    .tabs-title > a {
      display: block;
      padding: 1.25rem 1.5rem;
      line-height: 1;
      font-size: 0.75rem; }
      .tabs-title > a:hover {
        background: #fefefe; }
      .tabs-title > a:focus, .tabs-title > a[aria-selected='true'] {
        background: #e6e6e6; }
  
  .tabs-content {
    background: #fefefe;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    transition: all 0.5s ease;
    border: 1px solid #e6e6e6;
    border-top: 0; }
  
  .tabs-content.vertical {
    border: 1px solid #e6e6e6;
    border-left: 0; }
  
  .tabs-panel {
    display: none;
    padding: 1rem; }
    .tabs-panel.is-active {
      display: block; }
  
  .thumbnail {
    border: solid 4px #fefefe;
    -webkit-box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
       -moz-box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
            box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.2);
    display: inline-block;
    line-height: 0;
    max-width: 100%;
    -webkit-transition: -webkit-box-shadow 200ms ease-out;
    transition: -webkit-box-shadow 200ms ease-out;
    -o-transition: box-shadow 200ms ease-out;
    -moz-transition: box-shadow 200ms ease-out, -moz-box-shadow 200ms ease-out;
    transition: box-shadow 200ms ease-out;
    transition: box-shadow 200ms ease-out, -webkit-box-shadow 200ms ease-out, -moz-box-shadow 200ms ease-out;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0;
    margin-bottom: 1rem; }
    .thumbnail:hover, .thumbnail:focus {
      -webkit-box-shadow: 0 0 6px 1px rgba(33, 153, 232, 0.5);
         -moz-box-shadow: 0 0 6px 1px rgba(33, 153, 232, 0.5);
              box-shadow: 0 0 6px 1px rgba(33, 153, 232, 0.5); }
  
  .title-bar {
    background: #0a0a0a;
    color: #fefefe;
    padding: 0.5rem; }
    .title-bar::before, .title-bar::after {
      content: ' ';
      display: table; }
    .title-bar::after {
      clear: both; }
    .title-bar .menu-icon {
      margin-left: 0.25rem;
      margin-right: 0.25rem; }
  
  .title-bar-left {
    float: left; }
  
  .title-bar-right {
    float: right;
    text-align: right; }
  
  .title-bar-title {
    font-weight: bold;
    vertical-align: middle;
    display: inline-block; }
  
  .has-tip {
    border-bottom: dotted 1px #8a8a8a;
    font-weight: bold;
    position: relative;
    display: inline-block;
    cursor: help; }
  
  .tooltip {
    background-color: #0a0a0a;
    color: #fefefe;
    font-size: 80%;
    padding: 0.75rem;
    position: absolute;
    z-index: 10;
    top: -webkit-calc(100% + 0.6495rem);
    top: -moz-calc(100% + 0.6495rem);
    top: calc(100% + 0.6495rem);
    max-width: 10rem !important;
    -webkit-border-radius: 0;
       -moz-border-radius: 0;
            border-radius: 0; }
    .tooltip::before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border: inset 0.75rem;
      border-color: transparent transparent #0a0a0a;
      border-bottom-style: solid;
      border-top-width: 0;
      bottom: 100%;
      position: absolute;
      left: 50%;
      -webkit-transform: translateX(-50%);
         -moz-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
           -o-transform: translateX(-50%);
              transform: translateX(-50%); }
    .tooltip.top::before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border: inset 0.75rem;
      border-color: #0a0a0a transparent transparent;
      border-top-style: solid;
      border-bottom-width: 0;
      top: 100%;
      bottom: auto; }
    .tooltip.left::before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border: inset 0.75rem;
      border-color: transparent transparent transparent #0a0a0a;
      border-left-style: solid;
      border-right-width: 0;
      bottom: auto;
      left: 100%;
      top: 50%;
      -webkit-transform: translateY(-50%);
         -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
           -o-transform: translateY(-50%);
              transform: translateY(-50%); }
    .tooltip.right::before {
      content: '';
      display: block;
      width: 0;
      height: 0;
      border: inset 0.75rem;
      border-color: transparent #0a0a0a transparent transparent;
      border-right-style: solid;
      border-left-width: 0;
      bottom: auto;
      left: auto;
      right: 100%;
      top: 50%;
      -webkit-transform: translateY(-50%);
         -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
           -o-transform: translateY(-50%);
              transform: translateY(-50%); }
  
  .top-bar {
    padding: 0.5rem; }
    .top-bar::before, .top-bar::after {
      content: ' ';
      display: table; }
    .top-bar::after {
      clear: both; }
    .top-bar,
    .top-bar ul {
      background-color: #e6e6e6; }
    .top-bar input {
      max-width: 200px;
      margin-right: 1rem; }
    .top-bar .input-group-field {
      width: 100%;
      margin-right: 0; }
    .top-bar input.button {
      width: auto; }
    .top-bar .top-bar-left,
    .top-bar .top-bar-right {
      width: 100%; }@media screen and (min-width: 40em) {
 .top-bar .top-bar-left,
      .top-bar .top-bar-right {
        width: auto; } 
}@media screen and (max-width: 63.9375em) {
 .top-bar.stacked-for-medium .top-bar-left,
      .top-bar.stacked-for-medium .top-bar-right {
        width: 100%; } 
}@media screen and (max-width: 74.9375em) {
 .top-bar.stacked-for-large .top-bar-left,
      .top-bar.stacked-for-large .top-bar-right {
        width: 100%; } 
}.top-bar-title {
    float: left;
    margin-right: 1rem; }
  
  .top-bar-left {
    float: left; }
  
  .top-bar-right {
    float: right; }
  
  .hide {
    display: none !important; }
  
  .invisible {
    visibility: hidden; }@media screen and (max-width: 39.9375em) {
 .hide-for-small-only {
      display: none !important; } 
}@media screen and (max-width: 0em), screen and (min-width: 40em) {
 .show-for-small-only {
      display: none !important; } 
}@media screen and (min-width: 40em) {
 .hide-for-medium {
      display: none !important; } 
}@media screen and (max-width: 39.9375em) {
 .show-for-medium {
      display: none !important; } 
}@media screen and (min-width: 40em) and (max-width: 63.9375em) {
 .hide-for-medium-only {
      display: none !important; } 
}@media screen and (max-width: 39.9375em), screen and (min-width: 64em) {
 .show-for-medium-only {
      display: none !important; } 
}@media screen and (min-width: 64em) {
 .hide-for-large {
      display: none !important; } 
}@media screen and (max-width: 63.9375em) {
 .show-for-large {
      display: none !important; } 
}@media screen and (min-width: 64em) and (max-width: 74.9375em) {
 .hide-for-large-only {
      display: none !important; } 
}@media screen and (max-width: 63.9375em), screen and (min-width: 75em) {
 .show-for-large-only {
      display: none !important; } 
}.show-for-sr,
  .show-on-focus {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0); }
  
  .show-on-focus:active, .show-on-focus:focus {
    position: static !important;
    height: auto;
    width: auto;
    overflow: visible;
    clip: auto; }
  
  .show-for-landscape,
  .hide-for-portrait {
    display: block !important; }@media screen and (orientation: landscape) {
 .show-for-landscape,
      .hide-for-portrait {
        display: block !important; } 
}@media screen and (orientation: portrait) {
 .show-for-landscape,
      .hide-for-portrait {
        display: none !important; } 
}.hide-for-landscape,
  .show-for-portrait {
    display: none !important; }@media screen and (orientation: landscape) {
 .hide-for-landscape,
      .show-for-portrait {
        display: none !important; } 
}@media screen and (orientation: portrait) {
 .hide-for-landscape,
      .show-for-portrait {
        display: block !important; } 
}.float-left {
    float: left !important; }
  
  .float-right {
    float: right !important; }
  
  .float-center {
    display: block;
    margin-left: auto;
    margin-right: auto; }
  
  .clearfix::before, .clearfix::after {
    content: ' ';
    display: table; }
  
  .clearfix::after {
    clear: both; }
  
  .slide-in-down.mui-enter {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
         -o-transform: translateY(-100%);
            transform: translateY(-100%);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden; }
  
  .slide-in-down.mui-enter.mui-enter-active {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0); }
  
  .slide-in-left.mui-enter {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: translateX(-100%);
       -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
         -o-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden; }
  
  .slide-in-left.mui-enter.mui-enter-active {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0); }
  
  .slide-in-up.mui-enter {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: translateY(100%);
       -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
         -o-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden; }
  
  .slide-in-up.mui-enter.mui-enter-active {
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0); }
  
  .slide-in-right.mui-enter {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
         -o-transform: translateX(100%);
            transform: translateX(100%);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden; }
  
  .slide-in-right.mui-enter.mui-enter-active {
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0); }
  
  .slide-out-down.mui-leave {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden; }
  
  .slide-out-down.mui-leave.mui-leave-active {
    -webkit-transform: translateY(100%);
       -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
         -o-transform: translateY(100%);
            transform: translateY(100%); }
  
  .slide-out-right.mui-leave {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden; }
  
  .slide-out-right.mui-leave.mui-leave-active {
    -webkit-transform: translateX(100%);
       -moz-transform: translateX(100%);
        -ms-transform: translateX(100%);
         -o-transform: translateX(100%);
            transform: translateX(100%); }
  
  .slide-out-up.mui-leave {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden; }
  
  .slide-out-up.mui-leave.mui-leave-active {
    -webkit-transform: translateY(-100%);
       -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
         -o-transform: translateY(-100%);
            transform: translateY(-100%); }
  
  .slide-out-left.mui-leave {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: translateX(0);
       -moz-transform: translateX(0);
        -ms-transform: translateX(0);
         -o-transform: translateX(0);
            transform: translateX(0);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    -webkit-backface-visibility: hidden;
       -moz-backface-visibility: hidden;
            backface-visibility: hidden; }
  
  .slide-out-left.mui-leave.mui-leave-active {
    -webkit-transform: translateX(-100%);
       -moz-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
         -o-transform: translateX(-100%);
            transform: translateX(-100%); }
  
  .fade-in.mui-enter {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    opacity: 0;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    -moz-transition-property: opacity;
    transition-property: opacity; }
  
  .fade-in.mui-enter.mui-enter-active {
    opacity: 1; }
  
  .fade-out.mui-leave {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    opacity: 1;
    -webkit-transition-property: opacity;
    -o-transition-property: opacity;
    -moz-transition-property: opacity;
    transition-property: opacity; }
  
  .fade-out.mui-leave.mui-leave-active {
    opacity: 0; }
  
  .hinge-in-from-top.mui-enter {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: perspective(2000px) rotateX(-90deg);
       -moz-transform: perspective(2000px) rotateX(-90deg);
            transform: perspective(2000px) rotateX(-90deg);
    -webkit-transform-origin: top;
       -moz-transform-origin: top;
        -ms-transform-origin: top;
         -o-transform-origin: top;
            transform-origin: top;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 0; }
  
  .hinge-in-from-top.mui-enter.mui-enter-active {
    -webkit-transform: perspective(2000px) rotate(0deg);
       -moz-transform: perspective(2000px) rotate(0deg);
            transform: perspective(2000px) rotate(0deg);
    opacity: 1; }
  
  .hinge-in-from-right.mui-enter {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: perspective(2000px) rotateY(-90deg);
       -moz-transform: perspective(2000px) rotateY(-90deg);
            transform: perspective(2000px) rotateY(-90deg);
    -webkit-transform-origin: right;
       -moz-transform-origin: right;
        -ms-transform-origin: right;
         -o-transform-origin: right;
            transform-origin: right;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 0; }
  
  .hinge-in-from-right.mui-enter.mui-enter-active {
    -webkit-transform: perspective(2000px) rotate(0deg);
       -moz-transform: perspective(2000px) rotate(0deg);
            transform: perspective(2000px) rotate(0deg);
    opacity: 1; }
  
  .hinge-in-from-bottom.mui-enter {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: perspective(2000px) rotateX(90deg);
       -moz-transform: perspective(2000px) rotateX(90deg);
            transform: perspective(2000px) rotateX(90deg);
    -webkit-transform-origin: bottom;
       -moz-transform-origin: bottom;
        -ms-transform-origin: bottom;
         -o-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 0; }
  
  .hinge-in-from-bottom.mui-enter.mui-enter-active {
    -webkit-transform: perspective(2000px) rotate(0deg);
       -moz-transform: perspective(2000px) rotate(0deg);
            transform: perspective(2000px) rotate(0deg);
    opacity: 1; }
  
  .hinge-in-from-left.mui-enter {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: perspective(2000px) rotateY(90deg);
       -moz-transform: perspective(2000px) rotateY(90deg);
            transform: perspective(2000px) rotateY(90deg);
    -webkit-transform-origin: left;
       -moz-transform-origin: left;
        -ms-transform-origin: left;
         -o-transform-origin: left;
            transform-origin: left;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 0; }
  
  .hinge-in-from-left.mui-enter.mui-enter-active {
    -webkit-transform: perspective(2000px) rotate(0deg);
       -moz-transform: perspective(2000px) rotate(0deg);
            transform: perspective(2000px) rotate(0deg);
    opacity: 1; }
  
  .hinge-in-from-middle-x.mui-enter {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: perspective(2000px) rotateX(-90deg);
       -moz-transform: perspective(2000px) rotateX(-90deg);
            transform: perspective(2000px) rotateX(-90deg);
    -webkit-transform-origin: center;
       -moz-transform-origin: center;
        -ms-transform-origin: center;
         -o-transform-origin: center;
            transform-origin: center;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 0; }
  
  .hinge-in-from-middle-x.mui-enter.mui-enter-active {
    -webkit-transform: perspective(2000px) rotate(0deg);
       -moz-transform: perspective(2000px) rotate(0deg);
            transform: perspective(2000px) rotate(0deg);
    opacity: 1; }
  
  .hinge-in-from-middle-y.mui-enter {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: perspective(2000px) rotateY(-90deg);
       -moz-transform: perspective(2000px) rotateY(-90deg);
            transform: perspective(2000px) rotateY(-90deg);
    -webkit-transform-origin: center;
       -moz-transform-origin: center;
        -ms-transform-origin: center;
         -o-transform-origin: center;
            transform-origin: center;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 0; }
  
  .hinge-in-from-middle-y.mui-enter.mui-enter-active {
    -webkit-transform: perspective(2000px) rotate(0deg);
       -moz-transform: perspective(2000px) rotate(0deg);
            transform: perspective(2000px) rotate(0deg);
    opacity: 1; }
  
  .hinge-out-from-top.mui-leave {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: perspective(2000px) rotate(0deg);
       -moz-transform: perspective(2000px) rotate(0deg);
            transform: perspective(2000px) rotate(0deg);
    -webkit-transform-origin: top;
       -moz-transform-origin: top;
        -ms-transform-origin: top;
         -o-transform-origin: top;
            transform-origin: top;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 1; }
  
  .hinge-out-from-top.mui-leave.mui-leave-active {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
       -moz-transform: perspective(2000px) rotateX(-90deg);
            transform: perspective(2000px) rotateX(-90deg);
    opacity: 0; }
  
  .hinge-out-from-right.mui-leave {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: perspective(2000px) rotate(0deg);
       -moz-transform: perspective(2000px) rotate(0deg);
            transform: perspective(2000px) rotate(0deg);
    -webkit-transform-origin: right;
       -moz-transform-origin: right;
        -ms-transform-origin: right;
         -o-transform-origin: right;
            transform-origin: right;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 1; }
  
  .hinge-out-from-right.mui-leave.mui-leave-active {
    -webkit-transform: perspective(2000px) rotateY(-90deg);
       -moz-transform: perspective(2000px) rotateY(-90deg);
            transform: perspective(2000px) rotateY(-90deg);
    opacity: 0; }
  
  .hinge-out-from-bottom.mui-leave {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: perspective(2000px) rotate(0deg);
       -moz-transform: perspective(2000px) rotate(0deg);
            transform: perspective(2000px) rotate(0deg);
    -webkit-transform-origin: bottom;
       -moz-transform-origin: bottom;
        -ms-transform-origin: bottom;
         -o-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 1; }
  
  .hinge-out-from-bottom.mui-leave.mui-leave-active {
    -webkit-transform: perspective(2000px) rotateX(90deg);
       -moz-transform: perspective(2000px) rotateX(90deg);
            transform: perspective(2000px) rotateX(90deg);
    opacity: 0; }
  
  .hinge-out-from-left.mui-leave {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: perspective(2000px) rotate(0deg);
       -moz-transform: perspective(2000px) rotate(0deg);
            transform: perspective(2000px) rotate(0deg);
    -webkit-transform-origin: left;
       -moz-transform-origin: left;
        -ms-transform-origin: left;
         -o-transform-origin: left;
            transform-origin: left;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 1; }
  
  .hinge-out-from-left.mui-leave.mui-leave-active {
    -webkit-transform: perspective(2000px) rotateY(90deg);
       -moz-transform: perspective(2000px) rotateY(90deg);
            transform: perspective(2000px) rotateY(90deg);
    opacity: 0; }
  
  .hinge-out-from-middle-x.mui-leave {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: perspective(2000px) rotate(0deg);
       -moz-transform: perspective(2000px) rotate(0deg);
            transform: perspective(2000px) rotate(0deg);
    -webkit-transform-origin: center;
       -moz-transform-origin: center;
        -ms-transform-origin: center;
         -o-transform-origin: center;
            transform-origin: center;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 1; }
  
  .hinge-out-from-middle-x.mui-leave.mui-leave-active {
    -webkit-transform: perspective(2000px) rotateX(-90deg);
       -moz-transform: perspective(2000px) rotateX(-90deg);
            transform: perspective(2000px) rotateX(-90deg);
    opacity: 0; }
  
  .hinge-out-from-middle-y.mui-leave {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: perspective(2000px) rotate(0deg);
       -moz-transform: perspective(2000px) rotate(0deg);
            transform: perspective(2000px) rotate(0deg);
    -webkit-transform-origin: center;
       -moz-transform-origin: center;
        -ms-transform-origin: center;
         -o-transform-origin: center;
            transform-origin: center;
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 1; }
  
  .hinge-out-from-middle-y.mui-leave.mui-leave-active {
    -webkit-transform: perspective(2000px) rotateY(-90deg);
       -moz-transform: perspective(2000px) rotateY(-90deg);
            transform: perspective(2000px) rotateY(-90deg);
    opacity: 0; }
  
  .scale-in-up.mui-enter {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: scale(0.5);
       -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
         -o-transform: scale(0.5);
            transform: scale(0.5);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 0; }
  
  .scale-in-up.mui-enter.mui-enter-active {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  
  .scale-in-down.mui-enter {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: scale(1.5);
       -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
         -o-transform: scale(1.5);
            transform: scale(1.5);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 0; }
  
  .scale-in-down.mui-enter.mui-enter-active {
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    opacity: 1; }
  
  .scale-out-up.mui-leave {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 1; }
  
  .scale-out-up.mui-leave.mui-leave-active {
    -webkit-transform: scale(1.5);
       -moz-transform: scale(1.5);
        -ms-transform: scale(1.5);
         -o-transform: scale(1.5);
            transform: scale(1.5);
    opacity: 0; }
  
  .scale-out-down.mui-leave {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: scale(1);
       -moz-transform: scale(1);
        -ms-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 1; }
  
  .scale-out-down.mui-leave.mui-leave-active {
    -webkit-transform: scale(0.5);
       -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
         -o-transform: scale(0.5);
            transform: scale(0.5);
    opacity: 0; }
  
  .spin-in.mui-enter {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: rotate(-0.75turn);
       -moz-transform: rotate(-0.75turn);
        -ms-transform: rotate(-0.75turn);
         -o-transform: rotate(-0.75turn);
            transform: rotate(-0.75turn);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 0; }
  
  .spin-in.mui-enter.mui-enter-active {
    -webkit-transform: rotate(0);
       -moz-transform: rotate(0);
        -ms-transform: rotate(0);
         -o-transform: rotate(0);
            transform: rotate(0);
    opacity: 1; }
  
  .spin-out.mui-leave {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: rotate(0);
       -moz-transform: rotate(0);
        -ms-transform: rotate(0);
         -o-transform: rotate(0);
            transform: rotate(0);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 1; }
  
  .spin-out.mui-leave.mui-leave-active {
    -webkit-transform: rotate(0.75turn);
       -moz-transform: rotate(0.75turn);
        -ms-transform: rotate(0.75turn);
         -o-transform: rotate(0.75turn);
            transform: rotate(0.75turn);
    opacity: 0; }
  
  .spin-in-ccw.mui-enter {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: rotate(0.75turn);
       -moz-transform: rotate(0.75turn);
        -ms-transform: rotate(0.75turn);
         -o-transform: rotate(0.75turn);
            transform: rotate(0.75turn);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 0; }
  
  .spin-in-ccw.mui-enter.mui-enter-active {
    -webkit-transform: rotate(0);
       -moz-transform: rotate(0);
        -ms-transform: rotate(0);
         -o-transform: rotate(0);
            transform: rotate(0);
    opacity: 1; }
  
  .spin-out-ccw.mui-leave {
    -webkit-transition-duration: 500ms;
       -moz-transition-duration: 500ms;
         -o-transition-duration: 500ms;
            transition-duration: 500ms;
    -webkit-transition-timing-function: linear;
       -moz-transition-timing-function: linear;
         -o-transition-timing-function: linear;
            transition-timing-function: linear;
    -webkit-transform: rotate(0);
       -moz-transform: rotate(0);
        -ms-transform: rotate(0);
         -o-transform: rotate(0);
            transform: rotate(0);
    -webkit-transition-property: opacity, -webkit-transform;
    transition-property: opacity, -webkit-transform;
    -o-transition-property: opacity, -o-transform;
    -moz-transition-property: transform, opacity, -moz-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform, -moz-transform, -o-transform;
    opacity: 1; }
  
  .spin-out-ccw.mui-leave.mui-leave-active {
    -webkit-transform: rotate(-0.75turn);
       -moz-transform: rotate(-0.75turn);
        -ms-transform: rotate(-0.75turn);
         -o-transform: rotate(-0.75turn);
            transform: rotate(-0.75turn);
    opacity: 0; }
  
  .slow {
    -webkit-transition-duration: 750ms !important;
       -moz-transition-duration: 750ms !important;
         -o-transition-duration: 750ms !important;
            transition-duration: 750ms !important; }
  
  .fast {
    -webkit-transition-duration: 250ms !important;
       -moz-transition-duration: 250ms !important;
         -o-transition-duration: 250ms !important;
            transition-duration: 250ms !important; }
  
  .linear {
    -webkit-transition-timing-function: linear !important;
       -moz-transition-timing-function: linear !important;
         -o-transition-timing-function: linear !important;
            transition-timing-function: linear !important; }
  
  .ease {
    -webkit-transition-timing-function: ease !important;
       -moz-transition-timing-function: ease !important;
         -o-transition-timing-function: ease !important;
            transition-timing-function: ease !important; }
  
  .ease-in {
    -webkit-transition-timing-function: ease-in !important;
       -moz-transition-timing-function: ease-in !important;
         -o-transition-timing-function: ease-in !important;
            transition-timing-function: ease-in !important; }
  
  .ease-out {
    -webkit-transition-timing-function: ease-out !important;
       -moz-transition-timing-function: ease-out !important;
         -o-transition-timing-function: ease-out !important;
            transition-timing-function: ease-out !important; }
  
  .ease-in-out {
    -webkit-transition-timing-function: ease-in-out !important;
       -moz-transition-timing-function: ease-in-out !important;
         -o-transition-timing-function: ease-in-out !important;
            transition-timing-function: ease-in-out !important; }
  
  .bounce-in {
    -webkit-transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
       -moz-transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
         -o-transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
            transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; }
  
  .bounce-out {
    -webkit-transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
       -moz-transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
         -o-transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
            transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; }
  
  .bounce-in-out {
    -webkit-transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
       -moz-transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
         -o-transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
            transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; }
  
  .short-delay {
    -webkit-transition-delay: 300ms !important;
       -moz-transition-delay: 300ms !important;
         -o-transition-delay: 300ms !important;
            transition-delay: 300ms !important; }
  
  .long-delay {
    -webkit-transition-delay: 700ms !important;
       -moz-transition-delay: 700ms !important;
         -o-transition-delay: 700ms !important;
            transition-delay: 700ms !important; }
  
  .shake {
    -webkit-animation-name: shake-7;
       -moz-animation-name: shake-7;
         -o-animation-name: shake-7;
            animation-name: shake-7; }
  
  @-webkit-keyframes shake-7 {
    0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
      -webkit-transform: translateX(7%);
              transform: translateX(7%); }
    5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
      -webkit-transform: translateX(-7%);
              transform: translateX(-7%); } }
  
  @-moz-keyframes shake-7 {
    0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
      -moz-transform: translateX(7%);
           transform: translateX(7%); }
    5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
      -moz-transform: translateX(-7%);
           transform: translateX(-7%); } }
  
  @-o-keyframes shake-7 {
    0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
      -o-transform: translateX(7%);
         transform: translateX(7%); }
    5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
      -o-transform: translateX(-7%);
         transform: translateX(-7%); } }
  
  @keyframes shake-7 {
    0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
      -webkit-transform: translateX(7%);
         -moz-transform: translateX(7%);
           -o-transform: translateX(7%);
              transform: translateX(7%); }
    5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
      -webkit-transform: translateX(-7%);
         -moz-transform: translateX(-7%);
           -o-transform: translateX(-7%);
              transform: translateX(-7%); } }
  
  .spin-cw {
    -webkit-animation-name: spin-cw-1turn;
       -moz-animation-name: spin-cw-1turn;
         -o-animation-name: spin-cw-1turn;
            animation-name: spin-cw-1turn; }
  
  @-webkit-keyframes spin-cw-1turn {
    0% {
      -webkit-transform: rotate(-1turn);
              transform: rotate(-1turn); }
    100% {
      -webkit-transform: rotate(0);
              transform: rotate(0); } }
  
  @-moz-keyframes spin-cw-1turn {
    0% {
      -moz-transform: rotate(-1turn);
           transform: rotate(-1turn); }
    100% {
      -moz-transform: rotate(0);
           transform: rotate(0); } }
  
  @-o-keyframes spin-cw-1turn {
    0% {
      -o-transform: rotate(-1turn);
         transform: rotate(-1turn); }
    100% {
      -o-transform: rotate(0);
         transform: rotate(0); } }
  
  @keyframes spin-cw-1turn {
    0% {
      -webkit-transform: rotate(-1turn);
         -moz-transform: rotate(-1turn);
           -o-transform: rotate(-1turn);
              transform: rotate(-1turn); }
    100% {
      -webkit-transform: rotate(0);
         -moz-transform: rotate(0);
           -o-transform: rotate(0);
              transform: rotate(0); } }
  
  .spin-ccw {
    -webkit-animation-name: spin-cw-1turn;
       -moz-animation-name: spin-cw-1turn;
         -o-animation-name: spin-cw-1turn;
            animation-name: spin-cw-1turn; }
  
  @keyframes spin-cw-1turn {
    0% {
      -webkit-transform: rotate(0);
         -moz-transform: rotate(0);
           -o-transform: rotate(0);
              transform: rotate(0); }
    100% {
      -webkit-transform: rotate(1turn);
         -moz-transform: rotate(1turn);
           -o-transform: rotate(1turn);
              transform: rotate(1turn); } }
  
  .wiggle {
    -webkit-animation-name: wiggle-7deg;
       -moz-animation-name: wiggle-7deg;
         -o-animation-name: wiggle-7deg;
            animation-name: wiggle-7deg; }
  
  @-webkit-keyframes wiggle-7deg {
    40%, 50%, 60% {
      -webkit-transform: rotate(7deg);
              transform: rotate(7deg); }
    35%, 45%, 55%, 65% {
      -webkit-transform: rotate(-7deg);
              transform: rotate(-7deg); }
    0%, 30%, 70%, 100% {
      -webkit-transform: rotate(0);
              transform: rotate(0); } }
  
  @-moz-keyframes wiggle-7deg {
    40%, 50%, 60% {
      -moz-transform: rotate(7deg);
           transform: rotate(7deg); }
    35%, 45%, 55%, 65% {
      -moz-transform: rotate(-7deg);
           transform: rotate(-7deg); }
    0%, 30%, 70%, 100% {
      -moz-transform: rotate(0);
           transform: rotate(0); } }
  
  @-o-keyframes wiggle-7deg {
    40%, 50%, 60% {
      -o-transform: rotate(7deg);
         transform: rotate(7deg); }
    35%, 45%, 55%, 65% {
      -o-transform: rotate(-7deg);
         transform: rotate(-7deg); }
    0%, 30%, 70%, 100% {
      -o-transform: rotate(0);
         transform: rotate(0); } }
  
  @keyframes wiggle-7deg {
    40%, 50%, 60% {
      -webkit-transform: rotate(7deg);
         -moz-transform: rotate(7deg);
           -o-transform: rotate(7deg);
              transform: rotate(7deg); }
    35%, 45%, 55%, 65% {
      -webkit-transform: rotate(-7deg);
         -moz-transform: rotate(-7deg);
           -o-transform: rotate(-7deg);
              transform: rotate(-7deg); }
    0%, 30%, 70%, 100% {
      -webkit-transform: rotate(0);
         -moz-transform: rotate(0);
           -o-transform: rotate(0);
              transform: rotate(0); } }
  
  .shake,
  .spin-cw,
  .spin-ccw,
  .wiggle {
    -webkit-animation-duration: 500ms;
       -moz-animation-duration: 500ms;
         -o-animation-duration: 500ms;
            animation-duration: 500ms; }
  
  .infinite {
    -webkit-animation-iteration-count: infinite;
       -moz-animation-iteration-count: infinite;
         -o-animation-iteration-count: infinite;
            animation-iteration-count: infinite; }
  
  .slow {
    -webkit-animation-duration: 750ms !important;
       -moz-animation-duration: 750ms !important;
         -o-animation-duration: 750ms !important;
            animation-duration: 750ms !important; }
  
  .fast {
    -webkit-animation-duration: 250ms !important;
       -moz-animation-duration: 250ms !important;
         -o-animation-duration: 250ms !important;
            animation-duration: 250ms !important; }
  
  .linear {
    -webkit-animation-timing-function: linear !important;
       -moz-animation-timing-function: linear !important;
         -o-animation-timing-function: linear !important;
            animation-timing-function: linear !important; }
  
  .ease {
    -webkit-animation-timing-function: ease !important;
       -moz-animation-timing-function: ease !important;
         -o-animation-timing-function: ease !important;
            animation-timing-function: ease !important; }
  
  .ease-in {
    -webkit-animation-timing-function: ease-in !important;
       -moz-animation-timing-function: ease-in !important;
         -o-animation-timing-function: ease-in !important;
            animation-timing-function: ease-in !important; }
  
  .ease-out {
    -webkit-animation-timing-function: ease-out !important;
       -moz-animation-timing-function: ease-out !important;
         -o-animation-timing-function: ease-out !important;
            animation-timing-function: ease-out !important; }
  
  .ease-in-out {
    -webkit-animation-timing-function: ease-in-out !important;
       -moz-animation-timing-function: ease-in-out !important;
         -o-animation-timing-function: ease-in-out !important;
            animation-timing-function: ease-in-out !important; }
  
  .bounce-in {
    -webkit-animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
       -moz-animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
         -o-animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
            animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important; }
  
  .bounce-out {
    -webkit-animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
       -moz-animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
         -o-animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
            animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important; }
  
  .bounce-in-out {
    -webkit-animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
       -moz-animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
         -o-animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
            animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important; }
  
  .short-delay {
    -webkit-animation-delay: 300ms !important;
       -moz-animation-delay: 300ms !important;
         -o-animation-delay: 300ms !important;
            animation-delay: 300ms !important; }
  
  .long-delay {
    -webkit-animation-delay: 700ms !important;
       -moz-animation-delay: 700ms !important;
         -o-animation-delay: 700ms !important;
            animation-delay: 700ms !important; }
  
  /*
  SCSS variables are information about icon's compiled state, stored under its original file name
  
  .icon-home {
    width: $icon-home-width;
  }
  
  The large array-like variables contain all information about a single icon
  $icon-home: x y offset_x offset_y width height total_width total_height image_path;
  
  At the bottom of this section, we provide information about the spritesheet itself
  $spritesheet: width height image $spritesheet-sprites;
  */
  /*
  The provided mixins are intended to be used with the array-like variables
  
  .icon-home {
    @include sprite-width($icon-home);
  }
  
  .icon-email {
    @include sprite($icon-email);
  }
  
  Example usage in HTML:
  
  `display: block` sprite:
  <div class="icon-home"></div>
  
  To change `display` (e.g. `display: inline-block;`), we suggest using a common CSS class:
  
  // CSS
  .icon {
    display: inline-block;
  }
  
  // HTML
  <i class="icon icon-home"></i>
  */
  /*
  The `sprites` mixin generates identical output to the CSS template
    but can be overridden inside of SCSS
  
  @include sprites($spritesheet-sprites);
  */
  /*========================
          MODULES
  ========================*/
  *:focus {
    outline: none; }
  
  .title, .page-node-3 .wrapper .message-404, .page-services .views-row .title-section, .front .our_services .number-wrapper .number .wrapper > p.uppercase, .front .clients-info .quote {
    font-size: 1.875rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 4px; }@media screen and (max-width: 39.9375em) {
 .title, .page-node-3 .wrapper .message-404, .page-services .views-row .title-section, .front .our_services .number-wrapper .number .wrapper > p.uppercase, .front .clients-info .quote {
        font-size: 1.25rem; } 
}.title-section, .article-title, .adventages-wrapper .adventages .title, .modal-wrapper h2, .footer .contact-us h2,
  .footer .ask-form h2, .node-type-about-us .team-container .view-content .views-row .team-hover-wrapper .hover-container .name, .view-projects .views-row .hover-wrapper .title,
  .recent-project-wrapper .views-row .hover-wrapper .title, .view-projects .views-row .wrapper > h2,
  .recent-project-wrapper .views-row .wrapper > h2, .front .our_services .number-wrapper .number .wrapper > p {
    font-size: 1.25rem;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 2px; }
  
  .article-paragraph-item,
  .node-type-service .field-name-body p, .article-number-list li,
  .article-list li,
  .field-name-body ul li, .node-type-about-us .team-container .view-content .views-row > .name, .node-type-article .content .field-name-body, .node-type-project .content .field-name-body, .page-services .services-preview-info {
    font-size: 1rem;
    color: #000000; }
  
  .medium-button, .webform-client-form .form-actions .webform-submit, .page-blog .views-exposed-form .form-type-bef-checkbox > input[type="checkbox"] + label, .page-blog .view-blog-filter-tags.view-id-blog_filter_tags .filter {
    font-size: 0.9375rem; }
  
  .explore, .footer .contact-us .phone-wrapper address, .node-type-about-us .header .description, .node-type-about-us .team-container .view-content .views-row .team-hover-wrapper .hover-container .position, .similar-post-blog .views-row .date-post,
  .latest-post-blog .views-row .date-post,
  .page-blog .views-row .date-post, .node-type-article .field-name-post-date, .view-projects .views-row .wrapper .more-info,
  .recent-project-wrapper .views-row .wrapper .more-info, .front .our_services .number-wrapper .number .info-hover .services-info {
    font-size: 0.8125rem; }
  
  .front .clients-info .author {
    font-size: 0.8125rem; }
  
  .large-button {
    font-size: 0.8125rem;
    color: #a4b0b7; }
  
  [type='text'],
  [type='password'],
  [type='date'],
  [type='datetime'],
  [type='datetime-local'],
  [type='month'],
  [type='week'],
  [type='email'],
  [type='number'],
  [type='search'],
  [type='tel'],
  [type='time'],
  [type='url'],
  [type='color'],
  textarea, .webform-client-form {
    font-size: 1rem; }
  
  .large-button {
    display: inline-block;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    -o-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    -moz-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    vertical-align: middle;
    border: 1px solid transparent;
    -webkit-border-radius: 0.125rem;
       -moz-border-radius: 0.125rem;
            border-radius: 0.125rem;
    padding: 0.625rem 2.5rem;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    background-color: #0094de;
    color: #fefefe;
    color: #ffffff; }
    [data-whatinput='mouse'] .large-button {
      outline: 0; }
    .large-button:hover, .large-button:focus {
      background-color: #0087ca;
      color: #fefefe; }
  
  .medium-button, .webform-client-form .form-actions .webform-submit, .page-blog .views-exposed-form .form-type-bef-checkbox > input[type="checkbox"] + label, .page-blog .view-blog-filter-tags.view-id-blog_filter_tags .filter {
    display: inline-block;
    text-align: center;
    line-height: 1;
    cursor: pointer;
    -webkit-appearance: none;
    -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    -o-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    -moz-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    vertical-align: middle;
    border: 1px solid transparent;
    -webkit-border-radius: 0.125rem;
       -moz-border-radius: 0.125rem;
            border-radius: 0.125rem;
    padding: 0.625rem 2.5rem;
    margin: 0 0 1rem 0;
    font-size: 0.9rem;
    background-color: #0094de;
    color: #fefefe;
    color: #ffffff;
    font-size: 0.9375rem;
    padding: 8px 20px; }
    [data-whatinput='mouse'] .medium-button, [data-whatinput='mouse'] .webform-client-form .form-actions .webform-submit, .webform-client-form .form-actions [data-whatinput='mouse'] .webform-submit, [data-whatinput='mouse'] .page-blog .views-exposed-form .form-type-bef-checkbox > input[type="checkbox"] + label, .page-blog .views-exposed-form [data-whatinput='mouse'] .form-type-bef-checkbox > input[type="checkbox"] + label, [data-whatinput='mouse'] .page-blog .view-blog-filter-tags.view-id-blog_filter_tags .filter, .page-blog .view-blog-filter-tags.view-id-blog_filter_tags [data-whatinput='mouse'] .filter {
      outline: 0; }
    .medium-button:hover, .webform-client-form .form-actions .webform-submit:hover, .page-blog .views-exposed-form .form-type-bef-checkbox > input[type="checkbox"] + label:hover, .page-blog .view-blog-filter-tags.view-id-blog_filter_tags .filter:hover, .medium-button:focus, .webform-client-form .form-actions .webform-submit:focus, .page-blog .views-exposed-form .form-type-bef-checkbox > input[type="checkbox"] + label:focus, .page-blog .view-blog-filter-tags.view-id-blog_filter_tags .filter:focus {
      background-color: #0087ca;
      color: #fefefe; }
  
  .large-button {
    margin: 0; }
  
  .medium-button {
    margin: 0; }
  
  .title-section {
    text-align: center;
    letter-spacing: 4px; }
    .title-section.underline {
      position: relative;
      padding-bottom: 15px; }
      .title-section.underline:after {
        content: '';
        position: absolute;
        display: inline-block;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
           -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
             -o-transform: translateX(-50%);
                transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background-color: #0094de;
        -webkit-border-radius: 1.5px;
           -moz-border-radius: 1.5px;
                border-radius: 1.5px; }
  
  .uppercase {
    text-transform: uppercase; }
  
  .icon {
    display: inline-block; }
  
  .swiper-container {
    width: 100%;
    height: auto; }
  
  .explore {
    opacity: 0.6; }
  
  .title {
    text-align: center;
    position: relative;
    padding-bottom: 15px;
    margin: 80px auto 55px;
    max-width: 720px; }@media screen and (max-width: 39.9375em) {
 .title {
        margin: 50px auto 35px; } 
}.title:after {
      content: '';
      position: absolute;
      display: inline-block;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
         -moz-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
           -o-transform: translateX(-50%);
              transform: translateX(-50%);
      width: 40px;
      height: 3px;
      background-color: #0094de;
      -webkit-border-radius: 1.5px;
         -moz-border-radius: 1.5px;
              border-radius: 1.5px; }
  
  .slideshowPlugin,
  .article-title,
  .article-paragraph-item,
  .node-type-service .field-name-body p {
    margin-bottom: 30px; }
  
  .article-image-container {
    margin: 40px 0; }
  
  .article-paragraph-item,
  .node-type-service .field-name-body p {
    color: #000000; }
    .article-paragraph-item.last, .article-paragraph-item.pre-list,
    .node-type-service .field-name-body p.last,
    .node-type-service .field-name-body p.pre-list {
      margin-bottom: 0; }
  
  .article-number-list,
  .article-list,
  .field-name-body ul {
    margin: 20px 0 25px 30px;
    list-style: none;
    color: #000000; }
    .article-number-list li,
    .article-list li,
    .field-name-body ul li {
      color: #000000;
      position: relative;
      padding-left: 20px; }
      .article-number-list li:before,
      .article-list li:before,
      .field-name-body ul li:before {
        position: absolute;
        content: '';
        top: 9px;
        left: 0;
        width: 6px;
        height: 6px;
        background-color: #0094de; }
  
  .article-number-list {
    list-style: decimal; }
  
  blockquote {
    margin: 0 0 1.875rem 0.625rem;
    padding: 0;
    border-left: 0;
    text-align: left;
    font-size: 0.875rem; }
    blockquote span {
      background-color: #0094de;
      color: #ffffff;
      -webkit-box-shadow: 0.625rem 0 0 #0094de, -0.625rem 0 0 #0094de;
         -moz-box-shadow: 0.625rem 0 0 #0094de, -0.625rem 0 0 #0094de;
              box-shadow: 0.625rem 0 0 #0094de, -0.625rem 0 0 #0094de;
      -webkit-box-decoration-break: clone;
              box-decoration-break: clone; }
  
  .field-name-body blockquote p,
  .node-type-service .field-name-body blockquote p {
    display: inline;
    font-size: 0.875rem;
    background-color: #0094de;
    color: #ffffff;
    -webkit-box-shadow: 0.625rem 0 0 #0094de, -0.625rem 0 0 #0094de;
       -moz-box-shadow: 0.625rem 0 0 #0094de, -0.625rem 0 0 #0094de;
            box-shadow: 0.625rem 0 0 #0094de, -0.625rem 0 0 #0094de;
    -webkit-box-decoration-break: clone;
            box-decoration-break: clone; }
  
  .article-title {
    text-align: center;
    letter-spacing: 2px;
    margin-top: 50px; }
  
  .content table.pagerer {
    margin: 20px 0 30px 0;
    width: 100%; }@media screen and (max-width: 39.9375em) {
 .content table.pagerer {
        margin: 30px 0 40px 0; } 
}.content table.pagerer tbody tr td div.item-list ul.pager li {
      color: #282f33;
      font-size: 1.25rem; }
      .content table.pagerer tbody tr td div.item-list ul.pager li a {
        color: currentColor; }
      .content table.pagerer tbody tr td div.item-list ul.pager li.pager-current {
        font-weight: normal;
        color: #0094de; }
  
  .go-up {
    position: fixed;
    bottom: 70px;
    overflow: hidden;
    white-space: nowrap;
    visibility: hidden;
    background-color: #eff1f1;
    color: #282f33;
    font-size: 0.8125rem;
    padding: 5px 20px;
    opacity: 0;
    left: 50%;
    margin-left: 500px;
    z-index: 99;
    -webkit-transition: background-color .5s 0s, visibility 0s .3s;
    -o-transition: background-color .5s 0s, visibility 0s .3s;
    -moz-transition: background-color .5s 0s, visibility 0s .3s;
    transition: background-color .5s 0s, visibility 0s .3s; }@media screen and (max-width: 79.375em) {
 .go-up {
        left: 40%; } 
}@media screen and (max-width: 63.9375em) {
 .go-up {
        display: none; } 
}.go-up:hover {
      background-color: #e3e8e8;
      color: inherit; }
    .go-up.is-visible {
      /* the button becomes visible */
      visibility: visible;
      opacity: 1; }
  
  .tabs {
    border: 0; }
  
  .icon-arrow-down-opacity,
  .arrow-down {
    display: inline-block;
    position: absolute;
    bottom: 80px;
    left: 50%;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%); }
    .icon-arrow-down-opacity:hover,
    .arrow-down:hover {
      cursor: pointer; }
  
  .region-header:before, .region-header:after {
    content: '';
    display: table;
    clear: right; }
  
  .field-name-social-buttons {
    text-align: center;
    margin: 60px 0 40px 0; }
    .field-name-social-buttons .field-item.even {
      position: relative;
      height: 40px; }
      .field-name-social-buttons .field-item.even .a2a_kit {
        position: absolute;
        left: 0;
        bottom: 0;
        line-height: initial !important; }
      .field-name-social-buttons .field-item.even .a2a_button_facebook,
      .field-name-social-buttons .field-item.even .a2a_button_twitter {
        display: inline-block;
        float: none;
        margin: 0 5px;
        width: 30px;
        height: 30px; }
        .field-name-social-buttons .field-item.even .a2a_button_facebook span,
        .field-name-social-buttons .field-item.even .a2a_button_twitter span {
          display: none; }
      .field-name-social-buttons .field-item.even .a2a_button_facebook {
        background: url("data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48ZGVmcz48c3R5bGU+LmNscy0xLC5jbHMtMntmaWxsOiMyODJmMzM7ZmlsbC1ydWxlOmV2ZW5vZGR9LmNscy0ye2ZpbGw6I2ZmZn08L3N0eWxlPjwvZGVmcz48cGF0aCBpZD0iRWxsaXBzZV8xX2NvcHlfNiIgZGF0YS1uYW1lPSJFbGxpcHNlIDEgY29weSA2IiBjbGFzcz0iY2xzLTEiIGQ9Ik0xNiAxQTE1IDE1IDAgMSAxIDEgMTYgMTUgMTUgMCAwIDEgMTYgMXptNDAgMGExNSAxNSAwIDEgMS0xNSAxNUExNSAxNSAwIDAgMSA1NiAxem00MCAwYTE1IDE1IDAgMSAxLTE1IDE1QTE1IDE1IDAgMCAxIDk2IDF6bTQwIDBhMTUgMTUgMCAxIDEtMTUgMTUgMTUgMTUgMCAwIDEgMTUtMTV6Ii8+PHBhdGggaWQ9Imljb25fY29weV8zIiBkYXRhLW5hbWU9Imljb24gY29weSAzIiBjbGFzcz0iY2xzLTIiIGQ9Ik0xNC4zMjEgMTcuNjN2Ny4zMzVsMy43MzkuMDI4LS4wMTQtNy4zODUgMi4zMDktLjAxNEwyMSAxNC40MWgtMi45NTh2LTIuMzUxYS43NzIuNzcyIDAgMCAxIC42NS0uODgzbDEuNzIyLjAyNC0uMDU4LTMuMTc5LTMuNDA4LS4wMTRhMy4xNDYgMy4xNDYgMCAwIDAtMi42MjUgMi45NzNsLS4wMjkgMy40MTMtMi4yOTQuMDQzdjMuMTgxeiIvPjxwYXRoIGlkPSJpY29uX2NvcHlfNCIgZGF0YS1uYW1lPSJpY29uIGNvcHkgNCIgY2xhc3M9ImNscy0yIiBkPSJNNjQuOTg5IDExLjUzMWE2LjU1NiA2LjU1NiAwIDAgMS0xLjg4My41MTcgMy4yOSAzLjI5IDAgMCAwIDEuNDQyLTEuODE1IDYuNTUyIDYuNTUyIDAgMCAxLTIuMDgyLjggMy4yODMgMy4yODMgMCAwIDAtNS41ODggMi45OTUgOS4zMDYgOS4zMDYgMCAwIDEtNi43NTktMy40MyAzLjI5IDMuMjkgMCAwIDAgMS4wMTYgNC4zODIgMy4yNiAzLjI2IDAgMCAxLTEuNDg1LS40MXYuMDQxYTMuMjg1IDMuMjg1IDAgMCAwIDIuNjMxIDMuMjE5IDMuMzEzIDMuMzEzIDAgMCAxLS44NjQuMTE1IDMuMjIgMy4yMiAwIDAgMS0uNjE3LS4wNTkgMy4yODMgMy4yODMgMCAwIDAgMy4wNjMgMi4yNzkgNi41NzcgNi41NzcgMCAwIDEtNC4wNzIgMS40MDUgNi44NjUgNi44NjUgMCAwIDEtLjc4Mi0uMDQ1IDkuMzIzIDkuMzIzIDAgMCAwIDE0LjM1NS03Ljg2NmMwLS4xNDIgMC0uMjgzLS4wMS0uNDI0YTYuNjM3IDYuNjM3IDAgMCAwIDEuNjM2LTEuN3oiLz48cGF0aCBpZD0iaWNvbl9jb3B5XzUiIGRhdGEtbmFtZT0iaWNvbiBjb3B5IDUiIGNsYXNzPSJjbHMtMiIgZD0iTTEwMC40IDIzdi00Ljk2NmMwLTEuMTc4LS41MzctMS45ODItMS41NjktMS45ODJhMS42NTQgMS42NTQgMCAwIDAtMS41MjYgMS4wNjUgMiAyIDAgMCAwLS4wMjYuNjc3djUuMmgtMi42di02LjI0YTYuNjIyIDYuNjIyIDAgMCAwLS41Mi0yLjZoMi42djEuMDRsLjEzLjAxNGEzLjE3OSAzLjE3OSAwIDAgMSAyLjgzMi0xLjQ2NkMxMDEuNTk0IDEzLjc0MiAxMDMgMTUgMTAzIDE3LjdWMjNoLTIuNnpNOTAgMTQuMTU1aDMuMTJ2OC44NEg5MHYtOC44NHptMS41MS0xLjMyYTEuNDI0IDEuNDI0IDAgMSAxIDEuNTM4LTEuNDIxIDEuNDE5IDEuNDE5IDAgMCAxLTEuNTM4IDEuNDIxeiIvPjxwYXRoIGlkPSJpY29uX2NvcHlfNiIgZGF0YS1uYW1lPSJpY29uIGNvcHkgNiIgY2xhc3M9ImNscy0yIiBkPSJNMTM2LjI4MSA1LjUzMWExMS44NjkgMTEuODY5IDAgMCAxIDEyIDExLjczNCAxMiAxMiAwIDAgMS0yNCAwIDExLjg3IDExLjg3IDAgMCAxIDEyLTExLjczNHptMCA1Ljg0NGE1Ljg3NiA1Ljg3NiAwIDEgMS02IDUuODc1IDUuOTM4IDUuOTM4IDAgMCAxIDYtNS44NzV6TTEyMCAzaDM2djE0LjI1aC0zNlYzem0yMi40MzggNS4wMzFoMS40MDZhMSAxIDAgMCAxIDEgMXYxLjM0NGExIDEgMCAwIDEtMSAxaC0xLjQwNmExIDEgMCAwIDEtMS0xVjkuMDMxYTEgMSAwIDAgMSAxLTF6bS02LjEzOCA0LjE4OGE1LjAzMiA1LjAzMiAwIDEgMS01LjE0MSA1LjAzMSA1LjA4NyA1LjA4NyAwIDAgMSA1LjE0MS01LjAzMXptLS4wMTYgMi41MzFhMi41MTYgMi41MTYgMCAxIDEtMi41NjIgMi41MTYgMi41NCAyLjU0IDAgMCAxIDIuNTU5LTIuNTE2eiIvPjwvc3ZnPg==") no-repeat center/cover;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        transition: all .5s; }
        .field-name-social-buttons .field-item.even .a2a_button_facebook:hover {
          background: url("data:image/svg+xml;utf8;base64,PHN2ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM0ODY0OWR9LmNscy0ye2ZpbGw6I2ZhZmRmZjtmaWxsLXJ1bGU6ZXZlbm9kZH08L3N0eWxlPjwvZGVmcz48dGl0bGU+ZGEtMTRfZmFjZWJvb2tfaG92ZXI8L3RpdGxlPjxjaXJjbGUgY2xhc3M9ImNscy0xIiBjeD0iMTUiIGN5PSIxNSIgcj0iMTUiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xMy4zMiAxNy4zMnY3LjMzaDMuNzRWMTcuM2gyLjMxbC42My0zLjJoLTN2LTIuMzVhLjc3Ljc3IDAgMCAxIC42NS0uODhoMS43MmwtLjAyLTMuMTZoLTMuNGEzLjE1IDMuMTUgMCAwIDAtMi42MyAzdjMuNDFoLTIuMjl2My4xOGgyLjMyeiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLS41IC0uNSkiLz48L3N2Zz4=") no-repeat center/cover; }
      .field-name-social-buttons .field-item.even .a2a_button_twitter {
        background: url("data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48ZGVmcz48c3R5bGU+LmNscy0xLC5jbHMtMntmaWxsOiMyODJmMzM7ZmlsbC1ydWxlOmV2ZW5vZGR9LmNscy0ye2ZpbGw6I2ZmZn08L3N0eWxlPjwvZGVmcz48cGF0aCBpZD0iRWxsaXBzZV8xX2NvcHlfNiIgZGF0YS1uYW1lPSJFbGxpcHNlIDEgY29weSA2IiBjbGFzcz0iY2xzLTEiIGQ9Ik0tMjQgMUExNSAxNSAwIDAgMS05IDE2YTE1IDE1IDAgMCAxLTE1IDE1IDE1IDE1IDAgMCAxLTE1LTE1QTE1IDE1IDAgMCAxLTI0IDF6bTQwIDBBMTUgMTUgMCAxIDEgMSAxNiAxNSAxNSAwIDAgMSAxNiAxem00MCAwYTE1IDE1IDAgMSAxLTE1IDE1QTE1IDE1IDAgMCAxIDU2IDF6bTQwIDBhMTUgMTUgMCAxIDEtMTUgMTVBMTUgMTUgMCAwIDEgOTYgMXoiLz48cGF0aCBpZD0iaWNvbl9jb3B5XzMiIGRhdGEtbmFtZT0iaWNvbiBjb3B5IDMiIGNsYXNzPSJjbHMtMiIgZD0iTS0yNS42NzkgMTcuNjN2Ny4zMzVsMy43MzkuMDI4LS4wMTQtNy4zODUgMi4zMDktLjAxNC42NDUtMy4xODRoLTIuOTU3di0yLjM1MWEuNzcyLjc3MiAwIDAgMSAuNjUtLjg4M2wxLjcyMi4wMjktLjA1OC0zLjE4NC0zLjQwOC0uMDE0YTMuMTQ2IDMuMTQ2IDAgMCAwLTIuNjI1IDIuOTczbC0uMDI5IDMuNDEzLTIuMjk1LjA0M3YzLjE4MXoiLz48cGF0aCBpZD0iaWNvbl9jb3B5XzQiIGRhdGEtbmFtZT0iaWNvbiBjb3B5IDQiIGNsYXNzPSJjbHMtMiIgZD0iTTI0Ljk4OSAxMS41MzFhNi41NTYgNi41NTYgMCAwIDEtMS44ODQuNTE3IDMuMjkgMy4yOSAwIDAgMCAxLjQ0Mi0xLjgxNSA2LjU1MiA2LjU1MiAwIDAgMS0yLjA4Mi44IDMuMjgzIDMuMjgzIDAgMCAwLTUuNTg4IDIuOTk1IDkuMzA2IDkuMzA2IDAgMCAxLTYuNzU5LTMuNDMgMy4yOSAzLjI5IDAgMCAwIDEuMDE2IDQuMzgyIDMuMjYgMy4yNiAwIDAgMS0xLjQ4NS0uNDF2LjA0MWEzLjI4NSAzLjI4NSAwIDAgMCAyLjYzMSAzLjIxOSAzLjMxMyAzLjMxMyAwIDAgMS0uODY0LjExNSAzLjIyIDMuMjIgMCAwIDEtLjYxNy0uMDU5IDMuMjgzIDMuMjgzIDAgMCAwIDMuMDYzIDIuMjc5QTYuNTc3IDYuNTc3IDAgMCAxIDkuNzkgMjEuNTdhNi44NjYgNi44NjYgMCAwIDEtLjc4Mi0uMDQ1IDkuMzIzIDkuMzIzIDAgMCAwIDE0LjM1NS03Ljg2NmMwLS4xNDIgMC0uMjgzLS4wMS0uNDI0YTYuNjM3IDYuNjM3IDAgMCAwIDEuNjM2LTEuN3oiLz48cGF0aCBpZD0iaWNvbl9jb3B5XzUiIGRhdGEtbmFtZT0iaWNvbiBjb3B5IDUiIGNsYXNzPSJjbHMtMiIgZD0iTTYwLjQgMjN2LTQuOTY2YzAtMS4xNzgtLjUzNi0xLjk4Mi0xLjU2OS0xLjk4MmExLjY1NCAxLjY1NCAwIDAgMC0xLjUyNiAxLjA2NSAyIDIgMCAwIDAtLjAyNi42Nzd2NS4yaC0yLjZ2LTYuMjRhNi42MjIgNi42MjIgMCAwIDAtLjUyLTIuNmgyLjZ2MS4wNGwuMTMuMDE0YTMuMTc5IDMuMTc5IDAgMCAxIDIuODMxLTEuNDY2QzYxLjU5NCAxMy43NDIgNjMgMTUgNjMgMTcuN1YyM2gtMi42ek01MCAxNC4xNTVoMy4xMnY4Ljg0SDUwdi04Ljg0em0xLjUxLTEuMzJhMS40MjQgMS40MjQgMCAxIDEgMS41MzgtMS40MjEgMS40MTkgMS40MTkgMCAwIDEtMS41MzggMS40MjF6Ii8+PHBhdGggaWQ9Imljb25fY29weV82IiBkYXRhLW5hbWU9Imljb24gY29weSA2IiBjbGFzcz0iY2xzLTIiIGQ9Ik05Ni4yODEgNS41MzFhMTEuODY5IDExLjg2OSAwIDAgMSAxMiAxMS43MzQgMTIgMTIgMCAwIDEtMjQgMCAxMS44NjkgMTEuODY5IDAgMCAxIDEyLTExLjczNHptMCA1Ljg0NGE1Ljg3NiA1Ljg3NiAwIDEgMS02IDUuODc1IDUuOTM4IDUuOTM4IDAgMCAxIDYtNS44NzV6TTgwIDNoMzZ2MTQuMjVIODBWM3ptMjIuNDM4IDUuMDMxaDEuNDA2YTEgMSAwIDAgMSAxIDF2MS4zNDRhMSAxIDAgMCAxLTEgMWgtMS40MDZhMSAxIDAgMCAxLTEtMVY5LjAzMWExIDEgMCAwIDEgMS0xek05Ni4zIDEyLjIxOWE1LjAzMiA1LjAzMiAwIDEgMS01LjE0MSA1LjAzMSA1LjA4NyA1LjA4NyAwIDAgMSA1LjE0MS01LjAzMXptLS4wMTkgMi41MzFhMi41MTYgMi41MTYgMCAxIDEtMi41NjIgMi41MTYgMi41MzkgMi41MzkgMCAwIDEgMi41NjItMi41MTZ6Ii8+PC9zdmc+") no-repeat center/cover;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        transition: all .5s; }
        .field-name-social-buttons .field-item.even .a2a_button_twitter:hover {
          background: url("data:image/svg+xml;utf8;base64,PHN2ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1NWFjZWV9LmNscy0ye2ZpbGw6I2ZmZn08L3N0eWxlPjwvZGVmcz48dGl0bGU+ZGEtMTRfdHdpdHRlcl9ob3ZlcjwvdGl0bGU+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxNSIgY3k9IjE1IiByPSIxNSIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTIzLjggMTEuNDFhNi41NSA2LjU1IDAgMCAxLTEuODguNTIgMy4yOSAzLjI5IDAgMCAwIDEuNDQtMS44MiA2LjU1IDYuNTUgMCAwIDEtMi4wOC44IDMuMjggMy4yOCAwIDAgMC01LjU5IDMgOS4zMSA5LjMxIDAgMCAxLTYuNzYtMy40MyAzLjI5IDMuMjkgMCAwIDAgMSA0LjM4IDMuMjYgMy4yNiAwIDAgMS0xLjQ5LS40MSAzLjI4IDMuMjggMCAwIDAgMi42MyAzLjIyIDMuMzEgMy4zMSAwIDAgMS0uODYuMTEgMy4yMSAzLjIxIDAgMCAxLS42Mi0uMDZBMy4yOCAzLjI4IDAgMCAwIDEyLjY3IDIwYTYuNTggNi41OCAwIDAgMS00LjA3IDEuNDQgNi44OSA2Ljg5IDAgMCAxLS43OCAwIDkuMzIgOS4zMiAwIDAgMCAxNC4zNi03Ljg3di0uNDJhNi42NCA2LjY0IDAgMCAwIDEuNjQtMS43eiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLS41IC0uNSkiLz48L3N2Zz4=") no-repeat center/cover; }
      .field-name-social-buttons .field-item.even .hire-us {
        position: absolute;
        right: 0;
        bottom: 0;
        margin-top: 0;
        padding: 8px 50px; }@media screen and (max-width: 39.9375em) {
 .field-name-social-buttons .field-item.even .a2a_kit,
        .field-name-social-buttons .field-item.even .hire-us {
          position: relative; } 
}@media screen and (max-width: 39.9375em) {
 .field-name-social-buttons .field-item.even .a2a_kit {
          margin-bottom: 20px; } 
}.ajax-progress-throbber {
    display: none; }
  
  .logo {
    position: relative;
    z-index: 10; }
  
  svg {
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
    display: inline-block;
    vertical-align: middle; }@media screen and (max-width: 74.375em) {
 .ask-form {
      padding-bottom: 30px; }
      .ask-form .field-suffix {
        margin-top: 30px;
        display: inline-block; } 
}.block-instagram-block .group {
    width: 50%;
    float: left;
    padding-left: 0.625rem;
    padding-right: 0.625rem; }@media screen and (min-width: 40em) {
 .block-instagram-block .group {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } 
}.block-instagram-block .group:last-child:not(:first-child) {
      float: right; }
    .block-instagram-block .group img {
      width: 100% !important;
      height: auto !important; }
  
  .twiter-wrapper {
    position: relative;
    top: 0;
    display: block;
    width: 540px;
    height: 585px;
    overflow: hidden;
    background-color: #ffffff; }
    .twiter-wrapper iframe {
      display: block !important;
      margin: 0 auto; }@media screen and (max-width: 71.25em) {
 .twiter-wrapper {
        width: 100%;
        height: 552px; } 
}@media screen and (max-width: 51.875em) {
 .twiter-wrapper {
        height: 452px; } 
}@media screen and (max-width: 40em) {
 .twiter-wrapper {
        height: 330px; } 
}.table-wrapper {
    overflow-x: auto; }@media screen and (max-width: 39.9375em) {
 .page-blog #content,
    .node-type-article #content,
    .page-services #content,
    .node-type-service #content,
    .page-projects #content,
    .node-type-project #content {
      padding-left: 25px;
      padding-right: 25px; } 
}@media screen and (max-width: 39.9375em) {
 .node-type-article .similar-post-blog .view-content {
      padding-left: 25px !important;
      padding-right: 25px !important; } 
}.tabs.primary {
    background: transparent; }
  
  .tabs.primary > li > a, .title-bar, .tooltip {
    color: #000000;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s; }
    .tabs.primary > li > a:hover, .title-bar:hover, .tooltip:hover {
      background: #bbb; }
  
  .page-user form {
    max-width: 600px;
    margin: 100px auto; }
  
  .page-user input[type='submit'] {
    color: #ffffff;
    font-size: .8125rem;
    padding: 1px 29px;
    margin: 0;
    border: 0;
    line-height: 20px;
    background-color: #0094de;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s; }
    .page-user input[type='submit']:hover {
      background-color: #0087ca; }
  
  .no-scroll {
    overflow: hidden; }
  
  /*.field-name-body {
      pre {
          background-color: #e6e6e6;
          margin-bottom: 1em;
  
          code {
              background-color: transparent;
              border: 0;
          }
      }
  }*/
  .content table {
    width: auto; }
  
  .content .code-snippet {
    margin-bottom: 16px; }
  
  .social-fixed {
    position: fixed;
    top: 150px;
    left: 40%;
    margin-left: -325px;
    visibility: hidden;
    color: #282f33;
    font-size: 0.8125rem;
    opacity: 0;
    z-index: 99;
    -webkit-transition: visibility .5s;
    -o-transition: visibility .5s;
    -moz-transition: visibility .5s;
    transition: visibility .5s; }
    .social-fixed.is-visible {
      /* the share block becomes visible */
      visibility: visible;
      opacity: 1; }
    .social-fixed .wrapper-for-mobile {
      width: 100%;
      float: none; }
    .social-fixed span {
      display: block;
      line-height: initial;
      text-transform: uppercase;
      text-align: center;
      color: #a4b0b7; }
    .social-fixed .custom_button_twitter,
    .social-fixed .custom_button_facebook,
    .social-fixed .custom_button_linkedin,
    .social-fixed .custom_button_google_plus {
      display: block;
      float: none;
      margin: 12px 5px 0;
      width: 30px;
      height: 30px;
      float: left !important;
      clear: left; }
      .social-fixed .custom_button_twitter span,
      .social-fixed .custom_button_facebook span,
      .social-fixed .custom_button_linkedin span,
      .social-fixed .custom_button_google_plus span {
        display: none; }
    .social-fixed .custom_button_facebook {
      background: url("data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48ZGVmcz48c3R5bGU+LmNscy0xLC5jbHMtMntmaWxsOiMyODJmMzM7ZmlsbC1ydWxlOmV2ZW5vZGR9LmNscy0ye2ZpbGw6I2ZmZn08L3N0eWxlPjwvZGVmcz48cGF0aCBpZD0iRWxsaXBzZV8xX2NvcHlfNiIgZGF0YS1uYW1lPSJFbGxpcHNlIDEgY29weSA2IiBjbGFzcz0iY2xzLTEiIGQ9Ik0xNiAxQTE1IDE1IDAgMSAxIDEgMTYgMTUgMTUgMCAwIDEgMTYgMXptNDAgMGExNSAxNSAwIDEgMS0xNSAxNUExNSAxNSAwIDAgMSA1NiAxem00MCAwYTE1IDE1IDAgMSAxLTE1IDE1QTE1IDE1IDAgMCAxIDk2IDF6bTQwIDBhMTUgMTUgMCAxIDEtMTUgMTUgMTUgMTUgMCAwIDEgMTUtMTV6Ii8+PHBhdGggaWQ9Imljb25fY29weV8zIiBkYXRhLW5hbWU9Imljb24gY29weSAzIiBjbGFzcz0iY2xzLTIiIGQ9Ik0xNC4zMjEgMTcuNjN2Ny4zMzVsMy43MzkuMDI4LS4wMTQtNy4zODUgMi4zMDktLjAxNEwyMSAxNC40MWgtMi45NTh2LTIuMzUxYS43NzIuNzcyIDAgMCAxIC42NS0uODgzbDEuNzIyLjAyNC0uMDU4LTMuMTc5LTMuNDA4LS4wMTRhMy4xNDYgMy4xNDYgMCAwIDAtMi42MjUgMi45NzNsLS4wMjkgMy40MTMtMi4yOTQuMDQzdjMuMTgxeiIvPjxwYXRoIGlkPSJpY29uX2NvcHlfNCIgZGF0YS1uYW1lPSJpY29uIGNvcHkgNCIgY2xhc3M9ImNscy0yIiBkPSJNNjQuOTg5IDExLjUzMWE2LjU1NiA2LjU1NiAwIDAgMS0xLjg4My41MTcgMy4yOSAzLjI5IDAgMCAwIDEuNDQyLTEuODE1IDYuNTUyIDYuNTUyIDAgMCAxLTIuMDgyLjggMy4yODMgMy4yODMgMCAwIDAtNS41ODggMi45OTUgOS4zMDYgOS4zMDYgMCAwIDEtNi43NTktMy40MyAzLjI5IDMuMjkgMCAwIDAgMS4wMTYgNC4zODIgMy4yNiAzLjI2IDAgMCAxLTEuNDg1LS40MXYuMDQxYTMuMjg1IDMuMjg1IDAgMCAwIDIuNjMxIDMuMjE5IDMuMzEzIDMuMzEzIDAgMCAxLS44NjQuMTE1IDMuMjIgMy4yMiAwIDAgMS0uNjE3LS4wNTkgMy4yODMgMy4yODMgMCAwIDAgMy4wNjMgMi4yNzkgNi41NzcgNi41NzcgMCAwIDEtNC4wNzIgMS40MDUgNi44NjUgNi44NjUgMCAwIDEtLjc4Mi0uMDQ1IDkuMzIzIDkuMzIzIDAgMCAwIDE0LjM1NS03Ljg2NmMwLS4xNDIgMC0uMjgzLS4wMS0uNDI0YTYuNjM3IDYuNjM3IDAgMCAwIDEuNjM2LTEuN3oiLz48cGF0aCBpZD0iaWNvbl9jb3B5XzUiIGRhdGEtbmFtZT0iaWNvbiBjb3B5IDUiIGNsYXNzPSJjbHMtMiIgZD0iTTEwMC40IDIzdi00Ljk2NmMwLTEuMTc4LS41MzctMS45ODItMS41NjktMS45ODJhMS42NTQgMS42NTQgMCAwIDAtMS41MjYgMS4wNjUgMiAyIDAgMCAwLS4wMjYuNjc3djUuMmgtMi42di02LjI0YTYuNjIyIDYuNjIyIDAgMCAwLS41Mi0yLjZoMi42djEuMDRsLjEzLjAxNGEzLjE3OSAzLjE3OSAwIDAgMSAyLjgzMi0xLjQ2NkMxMDEuNTk0IDEzLjc0MiAxMDMgMTUgMTAzIDE3LjdWMjNoLTIuNnpNOTAgMTQuMTU1aDMuMTJ2OC44NEg5MHYtOC44NHptMS41MS0xLjMyYTEuNDI0IDEuNDI0IDAgMSAxIDEuNTM4LTEuNDIxIDEuNDE5IDEuNDE5IDAgMCAxLTEuNTM4IDEuNDIxeiIvPjxwYXRoIGlkPSJpY29uX2NvcHlfNiIgZGF0YS1uYW1lPSJpY29uIGNvcHkgNiIgY2xhc3M9ImNscy0yIiBkPSJNMTM2LjI4MSA1LjUzMWExMS44NjkgMTEuODY5IDAgMCAxIDEyIDExLjczNCAxMiAxMiAwIDAgMS0yNCAwIDExLjg3IDExLjg3IDAgMCAxIDEyLTExLjczNHptMCA1Ljg0NGE1Ljg3NiA1Ljg3NiAwIDEgMS02IDUuODc1IDUuOTM4IDUuOTM4IDAgMCAxIDYtNS44NzV6TTEyMCAzaDM2djE0LjI1aC0zNlYzem0yMi40MzggNS4wMzFoMS40MDZhMSAxIDAgMCAxIDEgMXYxLjM0NGExIDEgMCAwIDEtMSAxaC0xLjQwNmExIDEgMCAwIDEtMS0xVjkuMDMxYTEgMSAwIDAgMSAxLTF6bS02LjEzOCA0LjE4OGE1LjAzMiA1LjAzMiAwIDEgMS01LjE0MSA1LjAzMSA1LjA4NyA1LjA4NyAwIDAgMSA1LjE0MS01LjAzMXptLS4wMTYgMi41MzFhMi41MTYgMi41MTYgMCAxIDEtMi41NjIgMi41MTYgMi41NCAyLjU0IDAgMCAxIDIuNTU5LTIuNTE2eiIvPjwvc3ZnPg==") no-repeat center/cover;
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s; }
      .social-fixed .custom_button_facebook:hover {
        background: url("data:image/svg+xml;utf8;base64,PHN2ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM0ODY0OWR9LmNscy0ye2ZpbGw6I2ZhZmRmZjtmaWxsLXJ1bGU6ZXZlbm9kZH08L3N0eWxlPjwvZGVmcz48dGl0bGU+ZGEtMTRfZmFjZWJvb2tfaG92ZXI8L3RpdGxlPjxjaXJjbGUgY2xhc3M9ImNscy0xIiBjeD0iMTUiIGN5PSIxNSIgcj0iMTUiLz48cGF0aCBjbGFzcz0iY2xzLTIiIGQ9Ik0xMy4zMiAxNy4zMnY3LjMzaDMuNzRWMTcuM2gyLjMxbC42My0zLjJoLTN2LTIuMzVhLjc3Ljc3IDAgMCAxIC42NS0uODhoMS43MmwtLjAyLTMuMTZoLTMuNGEzLjE1IDMuMTUgMCAwIDAtMi42MyAzdjMuNDFoLTIuMjl2My4xOGgyLjMyeiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLS41IC0uNSkiLz48L3N2Zz4=") no-repeat center/cover; }
    .social-fixed .custom_button_twitter {
      background: url("data:image/svg+xml;utf8;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMiIgaGVpZ2h0PSIzMiIgdmlld0JveD0iMCAwIDMyIDMyIj48ZGVmcz48c3R5bGU+LmNscy0xLC5jbHMtMntmaWxsOiMyODJmMzM7ZmlsbC1ydWxlOmV2ZW5vZGR9LmNscy0ye2ZpbGw6I2ZmZn08L3N0eWxlPjwvZGVmcz48cGF0aCBpZD0iRWxsaXBzZV8xX2NvcHlfNiIgZGF0YS1uYW1lPSJFbGxpcHNlIDEgY29weSA2IiBjbGFzcz0iY2xzLTEiIGQ9Ik0tMjQgMUExNSAxNSAwIDAgMS05IDE2YTE1IDE1IDAgMCAxLTE1IDE1IDE1IDE1IDAgMCAxLTE1LTE1QTE1IDE1IDAgMCAxLTI0IDF6bTQwIDBBMTUgMTUgMCAxIDEgMSAxNiAxNSAxNSAwIDAgMSAxNiAxem00MCAwYTE1IDE1IDAgMSAxLTE1IDE1QTE1IDE1IDAgMCAxIDU2IDF6bTQwIDBhMTUgMTUgMCAxIDEtMTUgMTVBMTUgMTUgMCAwIDEgOTYgMXoiLz48cGF0aCBpZD0iaWNvbl9jb3B5XzMiIGRhdGEtbmFtZT0iaWNvbiBjb3B5IDMiIGNsYXNzPSJjbHMtMiIgZD0iTS0yNS42NzkgMTcuNjN2Ny4zMzVsMy43MzkuMDI4LS4wMTQtNy4zODUgMi4zMDktLjAxNC42NDUtMy4xODRoLTIuOTU3di0yLjM1MWEuNzcyLjc3MiAwIDAgMSAuNjUtLjg4M2wxLjcyMi4wMjktLjA1OC0zLjE4NC0zLjQwOC0uMDE0YTMuMTQ2IDMuMTQ2IDAgMCAwLTIuNjI1IDIuOTczbC0uMDI5IDMuNDEzLTIuMjk1LjA0M3YzLjE4MXoiLz48cGF0aCBpZD0iaWNvbl9jb3B5XzQiIGRhdGEtbmFtZT0iaWNvbiBjb3B5IDQiIGNsYXNzPSJjbHMtMiIgZD0iTTI0Ljk4OSAxMS41MzFhNi41NTYgNi41NTYgMCAwIDEtMS44ODQuNTE3IDMuMjkgMy4yOSAwIDAgMCAxLjQ0Mi0xLjgxNSA2LjU1MiA2LjU1MiAwIDAgMS0yLjA4Mi44IDMuMjgzIDMuMjgzIDAgMCAwLTUuNTg4IDIuOTk1IDkuMzA2IDkuMzA2IDAgMCAxLTYuNzU5LTMuNDMgMy4yOSAzLjI5IDAgMCAwIDEuMDE2IDQuMzgyIDMuMjYgMy4yNiAwIDAgMS0xLjQ4NS0uNDF2LjA0MWEzLjI4NSAzLjI4NSAwIDAgMCAyLjYzMSAzLjIxOSAzLjMxMyAzLjMxMyAwIDAgMS0uODY0LjExNSAzLjIyIDMuMjIgMCAwIDEtLjYxNy0uMDU5IDMuMjgzIDMuMjgzIDAgMCAwIDMuMDYzIDIuMjc5QTYuNTc3IDYuNTc3IDAgMCAxIDkuNzkgMjEuNTdhNi44NjYgNi44NjYgMCAwIDEtLjc4Mi0uMDQ1IDkuMzIzIDkuMzIzIDAgMCAwIDE0LjM1NS03Ljg2NmMwLS4xNDIgMC0uMjgzLS4wMS0uNDI0YTYuNjM3IDYuNjM3IDAgMCAwIDEuNjM2LTEuN3oiLz48cGF0aCBpZD0iaWNvbl9jb3B5XzUiIGRhdGEtbmFtZT0iaWNvbiBjb3B5IDUiIGNsYXNzPSJjbHMtMiIgZD0iTTYwLjQgMjN2LTQuOTY2YzAtMS4xNzgtLjUzNi0xLjk4Mi0xLjU2OS0xLjk4MmExLjY1NCAxLjY1NCAwIDAgMC0xLjUyNiAxLjA2NSAyIDIgMCAwIDAtLjAyNi42Nzd2NS4yaC0yLjZ2LTYuMjRhNi42MjIgNi42MjIgMCAwIDAtLjUyLTIuNmgyLjZ2MS4wNGwuMTMuMDE0YTMuMTc5IDMuMTc5IDAgMCAxIDIuODMxLTEuNDY2QzYxLjU5NCAxMy43NDIgNjMgMTUgNjMgMTcuN1YyM2gtMi42ek01MCAxNC4xNTVoMy4xMnY4Ljg0SDUwdi04Ljg0em0xLjUxLTEuMzJhMS40MjQgMS40MjQgMCAxIDEgMS41MzgtMS40MjEgMS40MTkgMS40MTkgMCAwIDEtMS41MzggMS40MjF6Ii8+PHBhdGggaWQ9Imljb25fY29weV82IiBkYXRhLW5hbWU9Imljb24gY29weSA2IiBjbGFzcz0iY2xzLTIiIGQ9Ik05Ni4yODEgNS41MzFhMTEuODY5IDExLjg2OSAwIDAgMSAxMiAxMS43MzQgMTIgMTIgMCAwIDEtMjQgMCAxMS44NjkgMTEuODY5IDAgMCAxIDEyLTExLjczNHptMCA1Ljg0NGE1Ljg3NiA1Ljg3NiAwIDEgMS02IDUuODc1IDUuOTM4IDUuOTM4IDAgMCAxIDYtNS44NzV6TTgwIDNoMzZ2MTQuMjVIODBWM3ptMjIuNDM4IDUuMDMxaDEuNDA2YTEgMSAwIDAgMSAxIDF2MS4zNDRhMSAxIDAgMCAxLTEgMWgtMS40MDZhMSAxIDAgMCAxLTEtMVY5LjAzMWExIDEgMCAwIDEgMS0xek05Ni4zIDEyLjIxOWE1LjAzMiA1LjAzMiAwIDEgMS01LjE0MSA1LjAzMSA1LjA4NyA1LjA4NyAwIDAgMSA1LjE0MS01LjAzMXptLS4wMTkgMi41MzFhMi41MTYgMi41MTYgMCAxIDEtMi41NjIgMi41MTYgMi41MzkgMi41MzkgMCAwIDEgMi41NjItMi41MTZ6Ii8+PC9zdmc+") no-repeat center/cover;
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s; }
      .social-fixed .custom_button_twitter:hover {
        background: url("data:image/svg+xml;utf8;base64,PHN2ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiM1NWFjZWV9LmNscy0ye2ZpbGw6I2ZmZn08L3N0eWxlPjwvZGVmcz48dGl0bGU+ZGEtMTRfdHdpdHRlcl9ob3ZlcjwvdGl0bGU+PGNpcmNsZSBjbGFzcz0iY2xzLTEiIGN4PSIxNSIgY3k9IjE1IiByPSIxNSIvPjxwYXRoIGNsYXNzPSJjbHMtMiIgZD0iTTIzLjggMTEuNDFhNi41NSA2LjU1IDAgMCAxLTEuODguNTIgMy4yOSAzLjI5IDAgMCAwIDEuNDQtMS44MiA2LjU1IDYuNTUgMCAwIDEtMi4wOC44IDMuMjggMy4yOCAwIDAgMC01LjU5IDMgOS4zMSA5LjMxIDAgMCAxLTYuNzYtMy40MyAzLjI5IDMuMjkgMCAwIDAgMSA0LjM4IDMuMjYgMy4yNiAwIDAgMS0xLjQ5LS40MSAzLjI4IDMuMjggMCAwIDAgMi42MyAzLjIyIDMuMzEgMy4zMSAwIDAgMS0uODYuMTEgMy4yMSAzLjIxIDAgMCAxLS42Mi0uMDZBMy4yOCAzLjI4IDAgMCAwIDEyLjY3IDIwYTYuNTggNi41OCAwIDAgMS00LjA3IDEuNDQgNi44OSA2Ljg5IDAgMCAxLS43OCAwIDkuMzIgOS4zMiAwIDAgMCAxNC4zNi03Ljg3di0uNDJhNi42NCA2LjY0IDAgMCAwIDEuNjQtMS43eiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLS41IC0uNSkiLz48L3N2Zz4=") no-repeat center/cover; }
    .social-fixed .custom_button_linkedin {
      background: url(" url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkM0RkQ5NjI1ODA3RDExRTdCQkZEREVERTRBQzNGRUFEIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkM0RkQ5NjI2ODA3RDExRTdCQkZEREVERTRBQzNGRUFEIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QzRGRDk2MjM4MDdEMTFFN0JCRkRERURFNEFDM0ZFQUQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QzRGRDk2MjQ4MDdEMTFFN0JCRkRERURFNEFDM0ZFQUQiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6B2k6eAAADY0lEQVR42rxW60tTYRh/ds7adnY2J84t6os5zamNJF2FplIRCyGvhAhBYUEWdPlQf0gfIsEyyULsQlB9E7pQalmaBkYpJhk5Z5va7vet85zYOsdt7qL5wuE8vNt5fu/7e37PRRAOhyHZ0pTo6mUyuUFIknqCJPY6nS4S92laGgwFQx8CweCow2EfmP0y+SyZL8FagFpd+Um5QnY7ApBs4QHsVsfpqcmPvWkBypXbdhVpC1+6XG4VZLCkUso8PTVzyL608DkpoFa355RcIe9O9VZr3XZ5ydoy+/XT04SAmuKyBrFkyxPYwOX1+Bu5oASXxhyl4jH3z3VHDTA+MgQTI8PQ0tgAAoEgbUD0ib5jADFmq2nsONMOErEYxGIRXDzfAWKRKG1A9Im+eYAYt3gCMS0uRu2f8/PAyD8jWtE3YkRjqD9QG4gnkq1qNVw4d5alsvNmN8wbjSkBEAQBoVAoRkSjQ6+Fgnzt7oRCETEUSiQS1vZ4PODz+YAkSZDJaCAJEpisB6vVFj2cjKbBZreD2WIBoVAIgUCA58+6slIjlMkpg98fiHvS481NUGc4wtoDz1/A3b5+KNDkw5XLl4CWUmA0maCz6xY0N9RDdVUlqFUqWFg0weDwO+jpvQc2m43nL1etamOqlVCfCHBnYQHoK8pZ+/vcD/atyMqC2uoq1i5jblCo0UBJsTb6jVKZA7rSUmAcw7XrNyDIiTtiEQxV+xPFAimM2v6/NsbG7XazNtKGYEi3w+nkfXuirRWysxW8PZIk9MR6E3tsfAKOtbRCzWEDdHX3RPcpioIdeXkxKbIuQBRF/4NHrHo9Xi/03X/IVyYT5xgF0zQdzhQQKUdV/qOMn1mr+wJiEUxQ32cKiPnJBUlW+hCLAQyMwiYtxCIcdvfAZgFafpn7CWwdieLIpSienU73kFKUxTj3bZBVqd1qa0+kQq/Xxz5+vz+ah6hI3MM3t2ZiXY78Hx/ubw674yqvAVdU1phdbnfu/6ASbzf29o2K1w+np2cOridFEo8adBh9xzRgHHiWl343bTQg+uQOU7xKgwLCGWQjboo+Vs8za4+JRYWvMo0pxgxpTGlMjB0Zs3qcTqcgVSBU49Tk+J2MJu/I2p5XUI3NE/sZU8r2RQ6AtGG5wgqCSY15lszXHwEGAG6mtqFYEV1mAAAAAElFTkSuQmCC')") no-repeat center/cover;
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s; }
      .social-fixed .custom_button_linkedin:hover {
        background: url(" url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjlDMEZEODQ5ODA3RDExRTc4QTRGRTI2Mjg1MDc4N0RCIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjlDMEZEODRBODA3RDExRTc4QTRGRTI2Mjg1MDc4N0RCIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OUMwRkQ4NDc4MDdEMTFFNzhBNEZFMjYyODUwNzg3REIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OUMwRkQ4NDg4MDdEMTFFNzhBNEZFMjYyODUwNzg3REIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5ieQb7AAADoUlEQVR42ryXXUgUURTH59752tltdTelL0ulpDJdIQpDCCokyhCkiCBffCjIjCj7hMKXIimsCIrCiB6isiKiMIoeoogghLBCzSiCUkFNynU/0pmdubd7Vrdmt3Vdd1fPMszdOzP3N/d/zr3nDKKUcvEYctUtKsiduV3gUSH7l87zyAX9hkHbOI4O6QZt7/j2q4m2nfwa13ixwAghcWlZwy5FlnYjzKXHMyAl3NCwql359PRwIxs7MGnw/LX162Y5bacQRtlcAkYJ7fox6D/e8/LYi7jBheXn62RZ2MWlwH4Pa6c7nxy6NCHYVX6+QZKF7VwKTdOM223NtUfMfThypqmGgkkSX5m/6dzeqGDwaTR5y9fmK2/u7JkHx9YNLitCicGtingUGGFgiF4IpGgPVG1eYZdEHsGxc2txmiwJKNGZmxlB8NKys9XjRe/AT58RavcOeHS2bhOWHBghyYUxGWrGu/nE5efumsoSOzx39V6LJ6AnQWamyGI1O11EjpV1yxdmZzaPGxhMYsUiBuUdHglQLWBQnsec3SZjjBFHCOXcnmEC1+dk2vkZNgl5fSrtNykVaa2fB9YIWbMd5bHecNvGImtpSZ4C7RctX0duPGr15WVniPurVqext8cMoF+92+KtKF1mXVWUbclwWvmBX3695UOXev3BW5/HN0IixyzIcVYKAo8LY4EXMUjRkrkytLv7hnQ4O+wWXOxaYIH2MoOIufOcYl5Ohhh6xpmmSItzMyVQ5sKN1x7DCGcDEyOMHTEXf+CfTwOBUfUMQumIqgf72eAIoKqmU7ZLhfl/y/rCGTPTFRwlCaQxP3EFyW4Q7V/6tG21t/rX77jWe7P5nTfUb5EFlJvlFCLvh8yGk4UyGen9Z23+nr4hA1Roevzeb75uU6SoDEwI15HUPqwbnNevkX+zCedES37AxJQQdzJgxH7MzSb3xZMyiRvrBmnnptmAiTu+D96ebjAw8ViN5I1R/ph1/U/SBLKVF5h4tEoIXB5fFiO4luHQdUJHA4ZyqjbaB2diiiBohu6Hg0RUGiFWsAKBtLi84sIrxKMFUykxNWh368N9JX/TIlSDP9z+Y1PtWzPj76KDalBV9capgjKJz5grzrDV3v74wElN1ZtSDYUxO58cvDhheQtVAtRIqZppJHTigt5hq0804CCQwKeTKuijzB5KI3u86xSWTLRZTgoc9tEGlQNL4pDDQ+mUreyP1CCDsA3CjhTvR9sfAQYAzrLI2dFkkVoAAAAASUVORK5CYII=')") no-repeat center/cover; }
    .social-fixed .custom_button_google_plus {
      background: url(" url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjk3NUM5ODc1ODA3RTExRTc4N0JDRjI1NEEwQTk5MTkyIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjk3NUM5ODc2ODA3RTExRTc4N0JDRjI1NEEwQTk5MTkyIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6OTc1Qzk4NzM4MDdFMTFFNzg3QkNGMjU0QTBBOTkxOTIiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6OTc1Qzk4NzQ4MDdFMTFFNzg3QkNGMjU0QTBBOTkxOTIiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4FYAypAAADxElEQVR42rSWbUxTZxTH/733Qlva2gWEDaKgSMDFCqj1bYr4kuGnOUJYNDHbjB+2mDETdNnU6DTGDy5Z/GZ0RERNTBB5lX1Ch2RbsgxB1IBAx0uWaBXoLSKFtrb31nuutkJLX6z19MOTPLfP+T3n5TnnKDweD8JJ5seGz7RaXRHHskaGZVZPTU2ztK/RJAiiIN5xC0KHzTbZMtTb3RxOlyIUMMew8iudXnvRCwgndIHJCdve/u67V94KqEtKXZadk3V7etqejCgkIUE9Zuof2DLJP+kJC8wxrPhap9dVRmpVKGut/ETJUN/9G0GBmUvzdihVcU2IoTgdrs9nQpmZbkxM0tcjxkI6SXcAkGL2rm6cS0gn6Z4FpLhFmyCRCOkmhg9ISRJLAMMwgZn/msFQosTalaIoguO4ANemZSzZyGl16iKXyx30MB0s//47lBTvwAd6vW9/zGLB2fMVuFY7d54JghCwNz8leZdUrThjMGBcXBx+PvwTSkuKwVutaGz+HQ97+7DcsAx5yw0wP3ka9KJzFRRicQ6HY22wQwUb1suwpyOjKCs/iJ6Hvb5varUadrs94MySzExs3bwJDTeaYbHwfkDGyISKxdbCQnn97UKlD0YuVirj4XK5oFIqoVKpwL5Okvj4eKzIz8WB/WVYnJEhe8g/jlwoYHr6Qnnt7nljGSnb8+VuOUZO5wuwHItffj2D6ut1qKo4h5X5efL+lcoKOQSHj52YncEajcYT/NFOeeuib++x2Yyu+w/Q3tEJl/uVlaL4SsX1uga03GqFR/rV1jfi5h+tfvVV42Gkm7YHA3Z23ZPXnaUlvr3qmlrs/XYfDh09Dp7n4XA6MTg8LH8ji2rq6mGbtOH8hYtobfvTP3Pb2eTUtHzp3ayZC2jhrdj+6Tbk5+ZCp9ViZHQUZEtSYiLK9n2DT9atw793OlBRWeU7Y5Y8cLW6BhPPnwdkqkKBJsXinNyQHWLtaiNOnzqJjz5MgU1y8aNHj7FwwQLZzf8NDOLHI8fQZzJFVBAmxscL5PZk3FAoSvFSBPvjoox07PqiVEr3QqSlpWJoaBi3brehrqFJjmlETVmttnT+81eyDKTCynDsJbxHEd3Cnv7ursu+BrxqfcHYtN0+/33AvNbN6ocm08DmUE8k+lFD4yHdAQ2YBh4r/6w41kDSOXOYmlXaaPagGSQWlpIO/3km9JiYndUWbUwpZuTGiMbEwJFxXlWoJ+MPkqrMD5SNUU3eXqFOTc2T+hnLsmu8FyC3UbkSBHeHZXSs2vz/4N/hdL0UYABXL8Q2PoN+4gAAAABJRU5ErkJggg==')") no-repeat center/cover;
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s; }
      .social-fixed .custom_button_google_plus:hover {
        background: url(" url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAB4AAAAeCAYAAAA7MK6iAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyBpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBXaW5kb3dzIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOkJERDkyNjE5ODA3RTExRTc5MkZGQjZGNzA2M0NBMDFEIiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOkJERDkyNjFBODA3RTExRTc5MkZGQjZGNzA2M0NBMDFEIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6QkREOTI2MTc4MDdFMTFFNzkyRkZCNkY3MDYzQ0EwMUQiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6QkREOTI2MTg4MDdFMTFFNzkyRkZCNkY3MDYzQ0EwMUQiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz4KL+tRAAAEBElEQVR42mL8//8/AzGAUbdWWVtBKJKFmVEHyONnZmbUBYn//fv/MgPD/49//v6/cvXBu+X/LzffJco8fBYzMjKyanh2p3Oys2UyMjHwE2Pg/38MH7///DX9xvbSmUCzf5NssYxDm6OYIHcrIxOjHAMZ4P+//49evf9a/eRA1X6iLdbx6atlZ2dJZ6AC+Pb9V8f1bSVTCFqs69PXzcbOEslARfDr199llzcXliGLMaH7lNqWggAbG3OUpldvLlaLQXFKreDFBrg4WctBdqBYDEq9oITEQGOAbAfYYg3PngxyUy8pAGQHLMiZoMGQxUAnwMnOmgGiWQRN6wyV5ER4CWmIDzDm8XPS4pIW52NhBRZfwGzy7/X7b/965x/6cPTcg5/E+5qBH1QKskiLC/jgTZGszIzJIWY8KSGmfI+ef/izctvFL0fPPfxpY6zAbqQlzf7m/dd/pPpaW14wioWFmUkHnyJNJTHWOH8j3pv3X//Kb9v09vU7iEWnLj/G6UtJUV5mZwsVjrW7rnz7/vM3RgkFspOJkYlJAJ/FuuqSrCBfz1p16jPMUmZmJgYOdhZGdjYWRhANwkyMjPAQUpEXYUkKNuUTFeJmBkULlkqAj4WJiUEbn8UqcsKsIPrth69/YWJhHnrcebHW4Erjx88////9+8cwYdGRD5v3X/9ek+nM722vwQ1KA+unxIkv3njuM1DuE7KZoJqNhVB8fPzyA+xLoI/gLr/35N2fXUdvffv1++9/a0N5Tn5eTiYgGyy3/+TdH6Bi2MpAnmPLgRtfjl98hDVKWICOvYrP15dvPv/F4GvIYG+mxHERxAaCk0DDTkINXNQRzgYMOoaLNyByIItBiVBdUZSte97Bj//+YVZCIDtZgOH0gYGJCaePr955+fvWgze/Y4EJDBjHfw+fvf/j5Zsv/8SEuJlCgUGurSrOBvL9izef4VFx//G7P/EVq17jqnJBdjKLqLhpsrAwmeCy+Mu3X/+v3H7xy0BDis3HUZMbmI04DDSl2BICjXltjBU5j51/+KNt5v4P338gUu9/cMsEdy77/fvvdkYGnRplIzXRg4TiWlyYh9naSIE9yFWHGxSMZ64++bH1wI1vB0/f+/H568//pOTjc7de24PrY+PgSdeBfF46lZqfz67N02SCtBJ+T6NXWQ2zC+xjULVo6D/hECMzoywtLf3/9//jcxvyLeG1E6g1+OrD1ypa+xbZDng+ArUGf/78M5OGQdyJ3OKkT2Pv55/ll7cUlRJs3oJaCaA2ErV8en1b8WTSGvQC3G3kJjhQQgLFKUkNeiy+zyIhn38GZRlsviTJYpROG6jlAKzEQXU4rGIB1gHX/v/99/7P339Xrj58v4zYThtAgAEAze/eDa9/KMIAAAAASUVORK5CYII=')") no-repeat center/cover; }@media screen and (max-width: 860px) {
 .social-fixed {
      width: 100%;
      position: fixed !important;
      top: initial !important;
      bottom: 0;
      left: initial;
      right: 0;
      margin-left: 0;
      margin-bottom: -2px;
      background: -webkit-linear-gradient(right, white 130px, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0.3) 90%, rgba(255, 255, 255, 0.1) 100%);
      background: -moz-linear-gradient(right, white 130px, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0.3) 90%, rgba(255, 255, 255, 0.1) 100%);
      background: -o-linear-gradient(right, white 130px, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0.3) 90%, rgba(255, 255, 255, 0.1) 100%);
      background: linear-gradient(to left, white 130px, rgba(255, 255, 255, 0.5) 70%, rgba(255, 255, 255, 0.3) 90%, rgba(255, 255, 255, 0.1) 100%); }
      .social-fixed .wrapper-for-mobile {
        width: 270px;
        float: right; }
        .social-fixed .wrapper-for-mobile .custom_button_twitter,
        .social-fixed .wrapper-for-mobile .custom_button_facebook,
        .social-fixed .wrapper-for-mobile .custom_button_linkedin,
        .social-fixed .wrapper-for-mobile .custom_button_google_plus {
          clear: none !important;
          float: none !important;
          margin-bottom: 12px; }
          .social-fixed .wrapper-for-mobile .custom_button_twitter span,
          .social-fixed .wrapper-for-mobile .custom_button_facebook span,
          .social-fixed .wrapper-for-mobile .custom_button_linkedin span,
          .social-fixed .wrapper-for-mobile .custom_button_google_plus span {
            position: initial !important; }
      .social-fixed span,
      .social-fixed .custom_button_twitter,
      .social-fixed .custom_button_facebook {
        display: inline-block;
        position: relative; }
      .social-fixed span {
        position: relative;
        top: 4px;
        margin-left: 40px; }
      .social-fixed .custom_button_twitter,
      .social-fixed .custom_button_facebook {
        margin-top: 12px;
        margin-bottom: 0; }
      .social-fixed .custom_button_facebook {
        margin-left: 10px; } 
}/*========================
       FORM STYLES
  ========================*/
  .grippie {
    display: none !important; }
  
  [type='text'],
  [type='password'],
  [type='date'],
  [type='datetime'],
  [type='datetime-local'],
  [type='month'],
  [type='week'],
  [type='email'],
  [type='number'],
  [type='search'],
  [type='tel'],
  [type='time'],
  [type='url'],
  [type='color'],
  textarea {
    border: 0;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
    background: transparent;
    position: relative;
    border-bottom: 3px solid #0094de;
    color: #282f33;
    margin: 0;
    display: inline-block;
    width: 100%; }
    [type='text'].not-empty, [type='text']:focus,
    [type='password'].not-empty,
    [type='password']:focus,
    [type='date'].not-empty,
    [type='date']:focus,
    [type='datetime'].not-empty,
    [type='datetime']:focus,
    [type='datetime-local'].not-empty,
    [type='datetime-local']:focus,
    [type='month'].not-empty,
    [type='month']:focus,
    [type='week'].not-empty,
    [type='week']:focus,
    [type='email'].not-empty,
    [type='email']:focus,
    [type='number'].not-empty,
    [type='number']:focus,
    [type='search'].not-empty,
    [type='search']:focus,
    [type='tel'].not-empty,
    [type='tel']:focus,
    [type='time'].not-empty,
    [type='time']:focus,
    [type='url'].not-empty,
    [type='url']:focus,
    [type='color'].not-empty,
    [type='color']:focus,
    textarea.not-empty,
    textarea:focus {
      border: 0;
      -webkit-box-shadow: none;
         -moz-box-shadow: none;
              box-shadow: none;
      background: transparent;
      border-bottom: 3px solid #282f33; }
  
  .error[type='text'] {
    border-bottom: 3px solid #de001a; }
  
  textarea {
    resize: none; }
  
  .webform-client-form {
    margin-top: 30px;
    padding-left: 20px; }
    .webform-client-form.webform-client-form-151 {
      font-family: "PT Sans", sans-serif; }
    .webform-client-form.webform-client-form-11 .webform-component--name input {
      width: 57%; }@media screen and (max-width: 74.375em) {
 .webform-client-form.webform-client-form-11 .webform-component--name input {
          width: 53%; } 
}@media screen and (max-width: 66.875em) {
 .webform-client-form.webform-client-form-11 .webform-component--name input {
          width: 50%; } 
}@media screen and (max-width: 63.4375em) {
 .webform-client-form.webform-client-form-11 .webform-component--name input {
          width: 45%; } 
}@media screen and (max-width: 58.75em) {
 .webform-client-form.webform-client-form-11 .webform-component--name input {
          width: 85%; } 
}.webform-client-form .form-item,
    .webform-client-form .form-actions {
      margin: 0; }
    .webform-client-form .intl-tel-input.separate-dial-code {
      width: 100%; }
      .webform-client-form .intl-tel-input.separate-dial-code .selected-flag {
        width: 45px !important;
        position: relative;
        top: -1px;
        background: transparent;
        padding-left: 0; }
        .webform-client-form .intl-tel-input.separate-dial-code .selected-flag .iti-flag {
          display: none; }
        .webform-client-form .intl-tel-input.separate-dial-code .selected-flag .selected-dial-code {
          color: #fefefe;
          padding-left: 0;
          text-align: left; }
      .webform-client-form .intl-tel-input.separate-dial-code input {
        padding-left: 65px !important; }
        .webform-client-form .intl-tel-input.separate-dial-code input:disabled {
          padding-left: 0 !important; }
      .webform-client-form .intl-tel-input.separate-dial-code select {
        background-color: red; }
    .webform-client-form input:disabled,
    .webform-client-form input[readonly],
    .webform-client-form textarea:disabled,
    .webform-client-form textarea[readonly] {
      background-color: transparent;
      cursor: default; }
      .webform-client-form input:disabled::-webkit-input-placeholder,
      .webform-client-form input[readonly]::-webkit-input-placeholder,
      .webform-client-form textarea:disabled::-webkit-input-placeholder,
      .webform-client-form textarea[readonly]::-webkit-input-placeholder {
        color: rgba(254, 254, 254, 0.5) !important; }
      .webform-client-form input:disabled::-moz-placeholder,
      .webform-client-form input[readonly]::-moz-placeholder,
      .webform-client-form textarea:disabled::-moz-placeholder,
      .webform-client-form textarea[readonly]::-moz-placeholder {
        color: rgba(254, 254, 254, 0.5) !important; }
      .webform-client-form input:disabled:-moz-placeholder,
      .webform-client-form input[readonly]:-moz-placeholder,
      .webform-client-form textarea:disabled:-moz-placeholder,
      .webform-client-form textarea[readonly]:-moz-placeholder {
        color: rgba(254, 254, 254, 0.5) !important; }
      .webform-client-form input:disabled:-ms-input-placeholder,
      .webform-client-form input[readonly]:-ms-input-placeholder,
      .webform-client-form textarea:disabled:-ms-input-placeholder,
      .webform-client-form textarea[readonly]:-ms-input-placeholder {
        color: rgba(254, 254, 254, 0.5) !important; }@media screen and (max-width: 74.375em) {
 .webform-client-form .webform-component--name {
        margin-right: 15px; } 
}.webform-client-form .webform-component--name input {
      margin: 0; }@media screen and (max-width: 74.375em) {
 .webform-client-form .webform-component--name input {
          max-width: 100%; } 
}.webform-client-form .webform-component--question textarea {
      min-height: 39px;
      overflow: hidden;
      max-height: 300px;
      padding-left: 0;
      padding-right: 0; }
      .webform-client-form .webform-component--question textarea:focus {
        overflow: auto; }
    .webform-client-form .webform-component--email {
      padding-top: 22px; }
      .webform-client-form .webform-component--email label {
        text-align: center;
        font-size: 1rem; }
      .webform-client-form .webform-component--email input {
        padding-left: 0;
        padding-right: 0; }
      .webform-client-form .webform-component--email .form-required {
        display: none; }
    .webform-client-form .webform-component--question,
    .webform-client-form .webform-component--email {
      margin-right: 15px; }
    .webform-client-form .form-actions {
      text-align: center;
      padding-top: 20px; }
      .webform-client-form .form-actions .webform-submit {
        background-color: #ffffff;
        color: #282f33;
        font-size: 0.8125rem;
        padding: 1px 29px;
        margin: 0;
        line-height: 20px; }
        .webform-client-form .form-actions .webform-submit:hover {
          background-color: #0094de;
          color: #ffffff; }
  
  .ui-autocomplete {
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden; }
  
  .form-item input.error,
  .form-item textarea.error,
  .form-item select.error {
    border: 0;
    border-bottom: 3px solid #de001a; }
  
  div.error, .error {
    color: #282f33; }
  
  .success-block {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    background: #eaeef0; }
    .success-block .success-inner {
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
         -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
           -o-transform: translateY(-50%);
              transform: translateY(-50%); }
      .success-block .success-inner .success-message {
        font-size: 1rem; }
  
  /*==============================
        ADVANTAGES BLOCK STYLES
  ================================*/
  .adventages-wrapper {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    padding-top: 120px;
    text-align: center; }
    .adventages-wrapper::before, .adventages-wrapper::after {
      content: ' ';
      display: table; }
    .adventages-wrapper::after {
      clear: both; }
    .adventages-wrapper .adventages {
      width: 33.33333%;
      float: left;
      padding-left: 0.625rem;
      padding-right: 0.625rem; }@media screen and (min-width: 40em) {
 .adventages-wrapper .adventages {
          padding-left: 0.9375rem;
          padding-right: 0.9375rem; } 
}.adventages-wrapper .adventages:last-child:not(:first-child) {
        float: right; }@media screen and (max-width: 39.9375em) {
 .adventages-wrapper .adventages {
          width: 100%;
          float: left;
          padding-left: 0.625rem;
          padding-right: 0.625rem; } 
}@media screen and (max-width: 39.9375em) and (min-width: 40em) {
 .adventages-wrapper .adventages {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } 
}@media screen and (max-width: 39.9375em) {
 .adventages-wrapper .adventages:last-child:not(:first-child) {
            float: right; }
          .adventages-wrapper .adventages:not(:first-child) {
            margin-top: 25px; } 
}.adventages-wrapper .adventages .icon {
        margin-bottom: 25px; }
      .adventages-wrapper .adventages .title {
        color: #000000;
        letter-spacing: 4px; }
      .adventages-wrapper .adventages .adventages-info {
        margin-top: 34px;
        line-height: 1.4; }
  
  /*===========================
        NEWS BLOCK STYLES
  ============================*/
  .news {
    background-color: #282f33;
    padding: 0 0 115px 0; }@media screen and (max-width: 39.9375em) {
 .news {
        padding: 45px 0 45px 0; } 
}.news > h2:first-child {
      padding: 70px 0;
      margin: 0 auto; }@media screen and (max-width: 39.9375em) {
 .news > h2:first-child {
          padding: 90px 0 70px 0; } 
}.news .title-section {
      color: #ffffff;
      margin-bottom: 45px; }
    .news .latest-post-blog,
    .news .instagram {
      width: 50%;
      float: left;
      padding-left: 0.625rem;
      padding-right: 0.625rem; }@media screen and (min-width: 40em) {
 .news .latest-post-blog,
        .news .instagram {
          padding-left: 0.9375rem;
          padding-right: 0.9375rem; } 
}.news .latest-post-blog:last-child:not(:first-child),
      .news .instagram:last-child:not(:first-child) {
        float: right; }
      .news .latest-post-blog .title-section,
      .news .instagram .title-section {
        color: #6c7376;
        text-align: left; }@media screen and (max-width: 47.9375em) {
 .news .latest-post-blog,
        .news .instagram {
          width: 100%;
          float: left;
          padding-left: 0.625rem;
          padding-right: 0.625rem; } 
}@media screen and (max-width: 47.9375em) and (min-width: 40em) {
 .news .latest-post-blog,
      .news .instagram {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } 
}@media screen and (max-width: 47.9375em) {
 .news .latest-post-blog:last-child:not(:first-child),
          .news .instagram:last-child:not(:first-child) {
            float: right; } 
}.news .latest-post-blog {
      padding-right: 25px; }@media screen and (max-width: 47.9375em) {
 .news .latest-post-blog {
          padding-right: 0.9375rem; } 
}.news .instagram {
      padding-left: 25px; }@media screen and (max-width: 47.9375em) {
 .news .instagram {
          padding-left: 0.9375rem; }
          .news .instagram .title-section {
            margin-top: 25px; } 
}.news .latest-post-blog .title-section,
    .news .instagram .title-section {
      margin-bottom: 25px; }
    .news .view-content {
      position: relative; }
    .news .instagram-photos {
      max-width: 75rem;
      margin-left: auto;
      margin-right: auto; }
      .news .instagram-photos::before, .news .instagram-photos::after {
        content: ' ';
        display: table; }
      .news .instagram-photos::after {
        clear: both; }
      .news .instagram-photos .group {
        width: 50%;
        float: left; }
        .news .instagram-photos .group:last-child:not(:first-child) {
          float: right; }
        .news .instagram-photos .group:first-child {
          padding-right: 1.25rem; }
        .news .instagram-photos .group:last-child {
          text-align: right;
          padding-left: 1.25rem; }
      .news .instagram-photos img {
        float: none !important;
        width: auto !important;
        height: auto !important;
        margin: 0 !important; }
  
  .reveal {
    position: relative;
    left: 0 !important;
    top: 0 !important; }
    .reveal.ask-form .close-button {
      z-index: 9999;
      right: 20%;
      top: 90px; }@media screen and (max-width: 63.9375em) {
 .reveal.ask-form .close-button {
          right: 30px;
          top: 30px; } 
}.reveal.ask-form .close-button span {
        display: block; }
  
  .modal-wrapper {
    max-width: 760px;
    margin: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%); }@media screen and (max-width: 41.875em) and (orientation: landscape) {
 .modal-wrapper {
      padding: 100px 0; } 
}@media screen and (max-width: 47.9375em) {
 .modal-wrapper {
        max-width: 100%;
        width: 100%; } 
}.modal-wrapper h2 {
      text-align: center;
      position: relative;
      padding-bottom: 25px;
      margin: 0;
      letter-spacing: 4px;
      margin-bottom: 40px; }
      .modal-wrapper h2:after {
        content: '';
        position: absolute;
        display: inline-block;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
           -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
             -o-transform: translateX(-50%);
                transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background-color: #dfe4e7;
        -webkit-border-radius: 1.5px;
           -moz-border-radius: 1.5px;
                border-radius: 1.5px; }@media screen and (max-width: 41.875em) and (orientation: landscape) {
 .modal-wrapper h2 {
      padding-top: 200px; } 
}.modal-wrapper .webform-client-form {
      max-width: 575px;
      margin: auto; }
      .modal-wrapper .webform-client-form .form-actions .webform-submit {
        background-color: #0094de;
        color: #ffffff; }
        .modal-wrapper .webform-client-form .form-actions .webform-submit:hover {
          background-color: #0087ca; }
    .modal-wrapper .success-block {
      background: #ffffff; }
  
  /**/
  /*Start: base*/
  /*Start: reset*/
  ::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    font-family: 'pt_sansregular'; }
  
  ::-moz-placeholder {
    /* Firefox 19+ */
    font-family: 'pt_sansregular'; }
  
  :-ms-input-placeholder {
    /* IE 10+ */
    font-family: 'pt_sansregular'; }
  
  :-moz-placeholder {
    /* Firefox 18- */
    font-family: 'pt_sansregular'; }
  
  textarea {
    font-family: 'pt_sansregular'; }
  
  /*End: reset*/
  /*End: base*/
  /*Start: layout*/
  /*========================
        HEADER STYLES
  ========================*/
  .header {
    position: relative; }
    .header .logo {
      float: left; }
    .header .block-menu {
      float: right; }
  
  .header-wrapper {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto; }
    .header-wrapper::before, .header-wrapper::after {
      content: ' ';
      display: table; }
    .header-wrapper::after {
      clear: both; }
    .header-wrapper .container {
      width: 100%;
      float: left;
      padding-left: 0.625rem;
      padding-right: 0.625rem;
      padding-top: 35px; }@media screen and (min-width: 40em) {
 .header-wrapper .container {
          padding-left: 0.9375rem;
          padding-right: 0.9375rem; } 
}.header-wrapper .container:last-child:not(:first-child) {
        float: right; }@media screen and (max-width: 39.9375em) {
 .header-wrapper .container {
          padding-top: 25px;
          padding-left: 25px;
          padding-right: 25px; } 
}/*========================
        FOOTER STYLES
  ========================*/
  .footer {
    background-color: #eaeef0;
    padding-top: 60px; }
    .footer .section {
      max-width: 75rem;
      margin-left: auto;
      margin-right: auto; }
      .footer .section::before, .footer .section::after {
        content: ' ';
        display: table; }
      .footer .section::after {
        clear: both; }
    .footer .contact-us,
    .footer .ask-form {
      width: 50%;
      float: left;
      padding-left: 0.625rem;
      padding-right: 0.625rem;
      position: relative; }@media screen and (min-width: 40em) {
 .footer .contact-us,
        .footer .ask-form {
          padding-left: 0.9375rem;
          padding-right: 0.9375rem; } 
}.footer .contact-us:last-child:not(:first-child),
      .footer .ask-form:last-child:not(:first-child) {
        float: right; }@media screen and (max-width: 39.9375em) {
 .footer .contact-us,
        .footer .ask-form {
          width: 100%;
          float: left;
          padding-left: 0.625rem;
          padding-right: 0.625rem; } 
}@media screen and (max-width: 39.9375em) and (min-width: 40em) {
 .footer .contact-us,
      .footer .ask-form {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } 
}@media screen and (max-width: 39.9375em) {
 .footer .contact-us:last-child:not(:first-child),
          .footer .ask-form:last-child:not(:first-child) {
            float: right; } 
}.footer .contact-us h2,
      .footer .ask-form h2 {
        text-align: center;
        position: relative;
        padding-bottom: 25px;
        margin: 0;
        letter-spacing: 4px; }
        .footer .contact-us h2:after,
        .footer .ask-form h2:after {
          content: '';
          position: absolute;
          display: inline-block;
          bottom: 0;
          left: 50%;
          -webkit-transform: translateX(-50%);
             -moz-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
               -o-transform: translateX(-50%);
                  transform: translateX(-50%);
          width: 40px;
          height: 3px;
          background-color: #dfe4e7;
          -webkit-border-radius: 1.5px;
             -moz-border-radius: 1.5px;
                  border-radius: 1.5px; }@media screen and (max-width: 39.9375em) {
 .footer .ask-form {
        padding-bottom: 50px; } 
}.footer .contact-us {
      text-align: center; }@media screen and (max-width: 39.9375em) {
 .footer .contact-us > h2 {
          display: none; } 
}.footer .contact-us .phone-wrapper {
        margin-top: 35px; }
        .footer .contact-us .phone-wrapper:first-of-type {
          margin-top: 45px; }
        .footer .contact-us .phone-wrapper .phone {
          color: currentColor;
          font-size: 1.25rem;
          text-transform: uppercase;
          letter-spacing: 2px; }
        .footer .contact-us .phone-wrapper address {
          color: #a4b0b7;
          font-style: normal;
          margin-top: 4px; }
      .footer .contact-us .mail-wrapper {
        margin: 35px 0 70px 0; }
        .footer .contact-us .mail-wrapper .mail-link {
          color: currentColor;
          background-color: #ffffff;
          font-size: 1rem;
          height: 20px;
          line-height: 20px;
          padding: 3px 15px;
          -webkit-border-radius: 2px;
             -moz-border-radius: 2px;
                  border-radius: 2px; }
    .footer .bottom-footer-container {
      background-color: #e4e9ec;
      padding: 30px 0; }@media screen and (max-width: 39.9375em) {
 .footer .bottom-footer-container {
          padding: 30px 25px; } 
}.footer .footer-bottom {
      display: -webkit-box;
      display: -webkit-flex;
      display: -moz-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -webkit-align-items: center;
         -moz-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
      .footer .footer-bottom .logo-container .footer-logo {
        width: 60px;
        height: 18px;
        display: inline-block; }@media screen and (max-width: 52.5em) {
 .footer .footer-bottom .logo-container {
          width: 25%;
          float: left;
          padding-left: 0.625rem;
          padding-right: 0.625rem; } 
}@media screen and (max-width: 52.5em) and (min-width: 40em) {
 .footer .footer-bottom .logo-container {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } 
}@media screen and (max-width: 52.5em) {
 .footer .footer-bottom .logo-container:last-child:not(:first-child) {
            float: right; } 
}@media screen and (max-width: 42.1875em) {
 .footer .footer-bottom .logo-container {
          width: 16.66667%;
          float: left;
          padding-left: 0.625rem;
          padding-right: 0.625rem; } 
}@media screen and (max-width: 42.1875em) and (min-width: 40em) {
 .footer .footer-bottom .logo-container {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } 
}@media screen and (max-width: 42.1875em) {
 .footer .footer-bottom .logo-container:last-child:not(:first-child) {
            float: right; } 
}@media screen and (max-width: 39.9375em) {
 .footer .footer-bottom .logo-container {
          width: 50%;
          float: left;
          padding-left: 0.625rem;
          padding-right: 0.625rem; } 
}@media screen and (max-width: 39.9375em) and (min-width: 40em) {
 .footer .footer-bottom .logo-container {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } 
}@media screen and (max-width: 39.9375em) {
 .footer .footer-bottom .logo-container:last-child:not(:first-child) {
            float: right; } 
}.footer .footer-bottom .social-container {
        text-align: center;
        line-height: 1; }@media screen and (max-width: 52.5em) {
 .footer .footer-bottom .social-container {
            width: 41.66667%;
            float: left;
            padding-left: 0.625rem;
            padding-right: 0.625rem; } 
}@media screen and (max-width: 52.5em) and (min-width: 40em) {
 .footer .footer-bottom .social-container {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } 
}@media screen and (max-width: 52.5em) {
 .footer .footer-bottom .social-container:last-child:not(:first-child) {
              float: right; } 
}@media screen and (max-width: 42.1875em) {
 .footer .footer-bottom .social-container {
            width: 50%;
            float: left;
            padding-left: 0.625rem;
            padding-right: 0.625rem; } 
}@media screen and (max-width: 42.1875em) and (min-width: 40em) {
 .footer .footer-bottom .social-container {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } 
}@media screen and (max-width: 42.1875em) {
 .footer .footer-bottom .social-container:last-child:not(:first-child) {
              float: right; } 
}@media screen and (max-width: 39.9375em) {
 .footer .footer-bottom .social-container {
            width: 100%;
            float: left;
            padding-left: 0.625rem;
            padding-right: 0.625rem; } 
}@media screen and (max-width: 39.9375em) and (min-width: 40em) {
 .footer .footer-bottom .social-container {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } 
}@media screen and (max-width: 39.9375em) {
 .footer .footer-bottom .social-container:last-child:not(:first-child) {
              float: right; } 
}.footer .footer-bottom .copyright-container {
        text-align: right; }@media screen and (max-width: 52.5em) {
 .footer .footer-bottom .copyright-container {
            width: 33.33333%;
            float: left;
            padding-left: 0.625rem;
            padding-right: 0.625rem; } 
}@media screen and (max-width: 52.5em) and (min-width: 40em) {
 .footer .footer-bottom .copyright-container {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } 
}@media screen and (max-width: 52.5em) {
 .footer .footer-bottom .copyright-container:last-child:not(:first-child) {
              float: right; } 
}@media screen and (max-width: 39.9375em) {
 .footer .footer-bottom .copyright-container {
            width: 50%;
            float: left;
            padding-left: 0.625rem;
            padding-right: 0.625rem; } 
}@media screen and (max-width: 39.9375em) and (min-width: 40em) {
 .footer .footer-bottom .copyright-container {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } 
}@media screen and (max-width: 39.9375em) {
 .footer .footer-bottom .copyright-container:last-child:not(:first-child) {
              float: right; } 
}.footer .footer-bottom .copyright-container .copyright {
          font-size: 0.75rem;
          color: #6c7376;
          opacity: 0.3; }@media screen and (max-width: 39.9375em) {
 .footer .footer-bottom .copyright-container .copyright {
              line-height: 1;
              display: inline-block;
              position: relative;
              top: 2px; } 
}.footer .social-wrapper {
      display: inline-block;
      margin: 0; }@media screen and (max-width: 39.9375em) {
 .footer .social-wrapper {
          margin: 20px 0 40px 0; } 
}.footer .social-wrapper li {
        float: left;
        list-style: none;
        line-height: 1; }
        .footer .social-wrapper li:not(:first-child) {
          margin-left: 10px; }@media screen and (max-width: 991px) {
 .footer .social-wrapper li:not(:first-child) {
              margin-left: 5px; } 
}/*========================
       MAIN MENU STYLES
  ========================*/
  .menu {
    position: relative;
    z-index: 10; }
    .menu > li {
      padding: 0; }
      .menu > li:first-child a {
        margin-left: 0; }
      .menu > li:last-child a {
        margin-right: 0; }
      .menu > li > a {
        padding: 13px 3px 10px 3px;
        margin: 0 12px;
        color: #000000;
        font-size: 1rem;
        position: relative;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        transition: all .5s; }
        .menu > li > a:after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          display: block;
          width: 0;
          height: 3px;
          background-color: #000000;
          -webkit-border-radius: 1.5px;
             -moz-border-radius: 1.5px;
                  border-radius: 1.5px;
          -webkit-transition: all .5s;
          -o-transition: all .5s;
          -moz-transition: all .5s;
          transition: all .5s; }
        .menu > li > a:hover:after {
          width: 100%; }
        .menu > li > a.active-trail {
          position: relative; }
          .menu > li > a.active-trail:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            display: block;
            width: 100%;
            height: 3px;
            background-color: #000000;
            -webkit-border-radius: 1.5px;
               -moz-border-radius: 1.5px;
                    border-radius: 1.5px; }
        .menu > li > a.contact-us {
          color: #0094de; }
          .menu > li > a.contact-us:after {
            background-color: #0094de; }
          .menu > li > a.contact-us.active-trail:after {
            background-color: #0094de; }
  
  .menu-icon {
    position: absolute;
    overflow: hidden;
    text-indent: -9999px;
    width: 25px;
    height: 25px;
    right: 15px;
    z-index: 99; }
    .menu-icon:after {
      content: '';
      position: absolute;
      display: block;
      width: 100%;
      height: 3px;
      -webkit-border-radius: 1.5px;
         -moz-border-radius: 1.5px;
              border-radius: 1.5px;
      background: #282f33;
      top: 0;
      left: 0;
      -webkit-box-shadow: 0 10px 0 #282f33, 0 20px 0 #282f33;
         -moz-box-shadow: 0 10px 0 #282f33, 0 20px 0 #282f33;
              box-shadow: 0 10px 0 #282f33, 0 20px 0 #282f33; }
    .menu-icon:hover:after {
      background: #282f33;
      -webkit-box-shadow: 0 10px 0 #282f33, 0 20px 0 #282f33;
         -moz-box-shadow: 0 10px 0 #282f33, 0 20px 0 #282f33;
              box-shadow: 0 10px 0 #282f33, 0 20px 0 #282f33; }
  
  .reveal .main-menu {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
       -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    text-align: center; }@media screen and (max-width: 41.875em) and (orientation: landscape) {
 .reveal .main-menu {
      padding-top: 200px; } 
}.reveal .main-menu li {
      list-style: none;
      margin-bottom: 30px; }
      .reveal .main-menu li a {
        font-size: 1.5rem;
        text-transform: uppercase;
        color: #282f33;
        position: relative; }
        .reveal .main-menu li a:after {
          content: '';
          position: absolute;
          bottom: 0;
          left: 0;
          display: block;
          width: 0;
          height: 3px;
          background-color: #000000;
          -webkit-border-radius: 1.5px;
             -moz-border-radius: 1.5px;
                  border-radius: 1.5px;
          -webkit-transition: all .5s;
          -o-transition: all .5s;
          -moz-transition: all .5s;
          transition: all .5s; }
        .reveal .main-menu li a:hover:after {
          width: 100%; }
        .reveal .main-menu li a.contact-us {
          color: #0094de; }
          .reveal .main-menu li a.contact-us:after {
            background-color: #0094de; }
        .reveal .main-menu li a.active-trail:after {
          content: '';
          position: absolute;
          bottom: -5px;
          left: 0;
          width: 100%;
          height: 3px;
          -webkit-border-radius: 1.5px;
             -moz-border-radius: 1.5px;
                  border-radius: 1.5px;
          background-color: #282f33; }
        .reveal .main-menu li a.active-trail.contact-us:after {
          background-color: #0094de; }@media screen and (max-width: 40em) {
 .reveal .main-menu li a:after {
            -webkit-transition: none;
            -o-transition: none;
            -moz-transition: none;
            transition: none; } 
}.reveal .close-button {
    right: 30px;
    top: 30px; }
  
  .front .menu > li > a,
  .page-node-3 .menu > li > a,
  .page-node-9 .menu > li > a,
  .node-type-about-us .menu > li > a {
    color: #ffffff; }
    .front .menu > li > a:after,
    .page-node-3 .menu > li > a:after,
    .page-node-9 .menu > li > a:after,
    .node-type-about-us .menu > li > a:after {
      background-color: #ffffff; }
    .front .menu > li > a.active-trail:after,
    .page-node-3 .menu > li > a.active-trail:after,
    .page-node-9 .menu > li > a.active-trail:after,
    .node-type-about-us .menu > li > a.active-trail:after {
      background-color: #ffffff; }
  
  .front .menu-icon:after,
  .page-node-3 .menu-icon:after,
  .page-node-9 .menu-icon:after,
  .node-type-about-us .menu-icon:after {
    background: #ffffff;
    -webkit-box-shadow: 0 10px 0 #ffffff, 0 20px 0 #ffffff;
       -moz-box-shadow: 0 10px 0 #ffffff, 0 20px 0 #ffffff;
            box-shadow: 0 10px 0 #ffffff, 0 20px 0 #ffffff; }
  
  .front .menu-icon:hover:after,
  .page-node-3 .menu-icon:hover:after,
  .page-node-9 .menu-icon:hover:after,
  .node-type-about-us .menu-icon:hover:after {
    background: #ffffff;
    -webkit-box-shadow: 0 10px 0 #ffffff, 0 20px 0 #ffffff;
       -moz-box-shadow: 0 10px 0 #ffffff, 0 20px 0 #ffffff;
            box-shadow: 0 10px 0 #ffffff, 0 20px 0 #ffffff; }
  
  .front .menu > li > a.contact-us,
  .page-node-3 .menu > li > a.contact-us,
  .page-node-9 .menu > li > a.contact-us,
  .node-type-about-us .menu > li > a.contact-us {
    color: #0094de; }
    .front .menu > li > a.contact-us:after,
    .page-node-3 .menu > li > a.contact-us:after,
    .page-node-9 .menu > li > a.contact-us:after,
    .node-type-about-us .menu > li > a.contact-us:after {
      background-color: #0094de; }
    .front .menu > li > a.contact-us.active-trail:after,
    .page-node-3 .menu > li > a.contact-us.active-trail:after,
    .page-node-9 .menu > li > a.contact-us.active-trail:after,
    .node-type-about-us .menu > li > a.contact-us.active-trail:after {
      background-color: #0094de; }
  
  .node-type-article .menu > li > a.blog {
    position: relative; }
    .node-type-article .menu > li > a.blog:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      display: block;
      width: 100%;
      height: 3px;
      background-color: #000000;
      -webkit-border-radius: 1.5px;
         -moz-border-radius: 1.5px;
              border-radius: 1.5px; }
  
  div#mainMenuModal.reveal.full {
    top: 0 !important; }
  
  /*End: layout*/
  /*Start: pages*/
  /*========================
       404 STYLES PAGE
  ========================*/
  .page-node-3 .header {
    width: 100%;
    height: 100vh;
    background: url(https://da-14.com/sites/all/themes/da14/images/src/404/404-bg.png) no-repeat center/cover;
    position: relative;
    text-align: center;
    min-height: 100%; }@media screen and (max-width: 39.9375em) {
 .page-node-3 .header {
        background: url(https://da-14.com/sites/all/themes/da14/images/src/404/404-bg-mobile.png) no-repeat center/cover; } 
}.page-node-3 .wrapper {
    position: absolute;
    width: 100%;
    top: 70%;
    -webkit-transform: translateY(-70%);
       -moz-transform: translateY(-70%);
        -ms-transform: translateY(-70%);
         -o-transform: translateY(-70%);
            transform: translateY(-70%);
    padding: 0 0.9375rem; }
    .page-node-3 .wrapper .message-404 {
      font-size: 1.625rem;
      color: #ffffff;
      margin: 0; }@media screen and (max-width: 63.9375em) and (orientation: landscape) {
 .page-node-3 .wrapper .message-404 {
      font-size: 1.25rem; } 
}@media screen and (max-width: 39.9375em) {
 .page-node-3 .wrapper .message-404 {
          font-size: 1.25rem;
          letter-spacing: 2px; } 
}.page-node-3 .wrapper .home-button {
      margin-top: 100px;
      padding: 10px 40px; }@media screen and (max-width: 63.9375em) and (orientation: landscape) {
 .page-node-3 .wrapper .home-button {
      margin-top: 10px; } 
}@media screen and (max-width: 39.9375em) {
 .page-node-3 .wrapper .home-button {
          margin-top: 35px; } 
}/*===========================
        CONTACT US STYLES
  ============================*/
  .page-node-9 {
    background-color: #282f33;
    min-width: 320px;
    /***  Ask Question form styles  ***/
    /***  Modal Ask Question form  ***/ }@media screen and (max-width: 51.875em) {
 .page-node-9 #page-wrapper {
        background-color: #394044; } 
}.page-node-9 .header {
      width: 100%;
      height: auto;
      text-align: center;
      background: #394044 url(https://da-14.com/sites/all/themes/da14/images/src/contact-us/map-default.png) center bottom no-repeat;
      -moz-background-size: contain;
        -o-background-size: contain;
           background-size: contain;
      position: relative; }
      .page-node-9 .header .header-inner.usa {
        background: transparent url(https://da-14.com/sites/all/themes/da14/images/src/contact-us/map-usa.png) center bottom no-repeat;
        -moz-background-size: contain;
          -o-background-size: contain;
             background-size: contain; }@media screen and (max-width: 39.9375em) {
 .page-node-9 .header .header-inner.usa {
            background-image: none; } 
}.page-node-9 .header .header-inner.ua {
        background: transparent url(https://da-14.com/sites/all/themes/da14/images/src/contact-us/map-ukraine.png) center bottom no-repeat;
        -moz-background-size: contain;
          -o-background-size: contain;
             background-size: contain; }@media screen and (max-width: 39.9375em) {
 .page-node-9 .header .header-inner.ua {
            background-image: none; } 
}.page-node-9 .header .header-inner .header-wrapper {
        max-width: 1140px; }
      .page-node-9 .header .half-wrapper {
        width: 100%;
        height: 100vh; }
        .page-node-9 .header .half-wrapper .half-usa-container,
        .page-node-9 .header .half-wrapper .half-ua-container {
          width: 50%;
          float: left;
          height: 85%;
          position: relative;
          top: 0;
          text-align: center; }
          .page-node-9 .header .half-wrapper .half-usa-container:last-child:not(:first-child),
          .page-node-9 .header .half-wrapper .half-ua-container:last-child:not(:first-child) {
            float: right; }
          .page-node-9 .header .half-wrapper .half-usa-container .contact-container .profile img,
          .page-node-9 .header .half-wrapper .half-ua-container .contact-container .profile img {
            -webkit-transform: translateY(-100%);
               -moz-transform: translateY(-100%);
                -ms-transform: translateY(-100%);
                 -o-transform: translateY(-100%);
                    transform: translateY(-100%);
            -webkit-transition: all 0.5s;
            -o-transition: all 0.5s;
            -moz-transition: all 0.5s;
            transition: all 0.5s; }
          .page-node-9 .header .half-wrapper .half-usa-container .contact-container .profile .name,
          .page-node-9 .header .half-wrapper .half-ua-container .contact-container .profile .name {
            -webkit-transform: translateY(100%);
               -moz-transform: translateY(100%);
                -ms-transform: translateY(100%);
                 -o-transform: translateY(100%);
                    transform: translateY(100%);
            -webkit-transition: all 0.5s;
            -o-transition: all 0.5s;
            -moz-transition: all 0.5s;
            transition: all 0.5s; }
          .page-node-9 .header .half-wrapper .half-usa-container .contact-container .phone-wrapper .phone,
          .page-node-9 .header .half-wrapper .half-ua-container .contact-container .phone-wrapper .phone {
            -webkit-transform: translateY(100%);
               -moz-transform: translateY(100%);
                -ms-transform: translateY(100%);
                 -o-transform: translateY(100%);
                    transform: translateY(100%);
            -webkit-transition: all 0.5s;
            -o-transition: all 0.5s;
            -moz-transition: all 0.5s;
            transition: all 0.5s; }
          .page-node-9 .header .half-wrapper .half-usa-container .contact-container:hover,
          .page-node-9 .header .half-wrapper .half-ua-container .contact-container:hover {
            cursor: pointer; }
          .page-node-9 .header .half-wrapper .half-usa-container .hover-wrapper,
          .page-node-9 .header .half-wrapper .half-ua-container .hover-wrapper {
            opacity: 0;
            -webkit-transition: opacity .5s;
            -o-transition: opacity .5s;
            -moz-transition: opacity .5s;
            transition: opacity .5s; }
          .page-node-9 .header .half-wrapper .half-usa-container:hover .hover-wrapper,
          .page-node-9 .header .half-wrapper .half-ua-container:hover .hover-wrapper {
            opacity: 1; }
            .page-node-9 .header .half-wrapper .half-usa-container:hover .hover-wrapper .profile img,
            .page-node-9 .header .half-wrapper .half-ua-container:hover .hover-wrapper .profile img {
              -webkit-transform: translateY(0);
                 -moz-transform: translateY(0);
                  -ms-transform: translateY(0);
                   -o-transform: translateY(0);
                      transform: translateY(0); }
            .page-node-9 .header .half-wrapper .half-usa-container:hover .hover-wrapper .profile .name,
            .page-node-9 .header .half-wrapper .half-ua-container:hover .hover-wrapper .profile .name {
              -webkit-transform: translateY(0);
                 -moz-transform: translateY(0);
                  -ms-transform: translateY(0);
                   -o-transform: translateY(0);
                      transform: translateY(0); }
            .page-node-9 .header .half-wrapper .half-usa-container:hover .hover-wrapper .phone-wrapper .phone,
            .page-node-9 .header .half-wrapper .half-ua-container:hover .hover-wrapper .phone-wrapper .phone {
              -webkit-transform: translateY(0);
                 -moz-transform: translateY(0);
                  -ms-transform: translateY(0);
                   -o-transform: translateY(0);
                      transform: translateY(0); }
      .page-node-9 .header .title {
        color: #ffffff;
        margin: 25px 0;
        padding: 0;
        position: relative;
        z-index: 10;
        display: inline-block; }
        .page-node-9 .header .title:after {
          display: none; }@media screen and (max-width: 51.875em) {
 .page-node-9 .header .title {
            margin: 50px 0 15px 0;
            width: 100%; } 
}.page-node-9 .header .title-wrapper {
        width: 100%;
        position: relative;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }@media screen and (max-width: 51.875em) {
 .page-node-9 .header .title-wrapper .contact-us-desktop {
            display: none; }
          .page-node-9 .header .title-wrapper.title-ask-question, .page-node-9 .header .title-wrapper.contact-us-mobile {
            display: block; } 
}.page-node-9 .header .title-ask-question,
      .page-node-9 .header .contact-us-mobile {
        display: none; }
      .page-node-9 .header .title-ask-question {
        margin-bottom: 15px; }
        .page-node-9 .header .title-ask-question:before {
          content: '';
          position: absolute;
          bottom: 0;
          left: 50%;
          -webkit-transform: translateX(-50%);
             -moz-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
               -o-transform: translateX(-50%);
                  transform: translateX(-50%);
          width: 40px;
          height: 3px;
          background-color: rgba(255, 255, 255, 0.2); }
      .page-node-9 .header .mail-link {
        color: #ffffff;
        background-color: #0094de;
        font-size: 1rem;
        height: 20px;
        line-height: 20px;
        padding: 3px 15px;
        -webkit-border-radius: 2px;
           -moz-border-radius: 2px;
                border-radius: 2px;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        transition: all .5s;
        position: relative;
        z-index: 10; }
        .page-node-9 .header .mail-link:hover {
          background-color: #0087ca; }@media screen and (max-width: 39.9375em) {
 .page-node-9 .header .mail-link {
            font-size: 0.8125rem; } 
}.page-node-9 .header .icon-arrow-down-opacity.contact-us-page {
        bottom: 45px;
        left: 50%;
        -webkit-transform: translate(-50%, 50%);
           -moz-transform: translate(-50%, 50%);
            -ms-transform: translate(-50%, 50%);
             -o-transform: translate(-50%, 50%);
                transform: translate(-50%, 50%);
        z-index: 10; }@media screen and (max-width: 39.9375em) {
 .page-node-9 .header .icon-arrow-down-opacity {
          display: none; } 
}.page-node-9 .header .first-half-wrapper {
        min-height: 480px;
        max-height: 80vh;
        position: relative;
        z-index: 10; }@media screen and (max-width: 51.875em) {
 .page-node-9 .header .first-half-wrapper {
            height: auto; } 
}.page-node-9 .header .contact-data-wrapper {
        width: 100%;
        max-width: 1140px;
        margin: 0 auto;
        padding-left: 0.9375rem;
        padding-right: 0.9375rem;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
           -moz-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; }@media screen and (max-width: 53.75em) {
 .page-node-9 .header .contact-data-wrapper {
            -webkit-justify-content: space-around;
                -ms-flex-pack: distribute;
                    justify-content: space-around; } 
}@media screen and (max-width: 51.875em) {
 .page-node-9 .header .contact-data-wrapper {
            -webkit-box-orient: vertical;
            -webkit-box-direction: normal;
            -webkit-flex-direction: column;
               -moz-box-orient: vertical;
               -moz-box-direction: normal;
                -ms-flex-direction: column;
                    flex-direction: column;
            -webkit-box-align: center;
            -webkit-align-items: center;
               -moz-box-align: center;
                -ms-flex-align: center;
                    align-items: center; } 
}.page-node-9 .header .contact-data-wrapper .email-title,
        .page-node-9 .header .contact-data-wrapper .open-title,
        .page-node-9 .header .contact-data-wrapper .social-title,
        .page-node-9 .header .contact-data-wrapper .email-wrapper,
        .page-node-9 .header .contact-data-wrapper .day-of-week {
          font-family: "PT Sans", sans-serif; }
        .page-node-9 .header .contact-data-wrapper .day-of-week {
          font-size: 14px; }
        .page-node-9 .header .contact-data-wrapper .contact-data-one,
        .page-node-9 .header .contact-data-wrapper .contact-data-two {
          -webkit-align-self: center;
              -ms-flex-item-align: center;
                      -ms-grid-row-align: center;
                  align-self: center;
          text-align: left; }
        .page-node-9 .header .contact-data-wrapper .form-contact-us {
          margin: 0;
          position: relative;
          width: 400px;
          height: 100%;
          padding: 40px;
          background-color: #0B83BF;
          z-index: 100; }@media screen and (max-width: 60.625em) {
 .page-node-9 .header .contact-data-wrapper .form-contact-us {
              width: 290px; } 
}@media screen and (max-width: 51.875em) {
 .page-node-9 .header .contact-data-wrapper .form-contact-us {
              margin-top: 20px;
              width: 100%;
              height: auto;
              z-index: 0; } 
}@media screen and (max-width: 39.9375em) {
 .page-node-9 .header .contact-data-wrapper .form-contact-us {
              margin-top: 40px; } 
}.page-node-9 .header .contact-data-wrapper .form-contact-us ::-webkit-input-placeholder {
            /* Chrome/Opera/Safari */
            color: #ffffff;
            opacity: 1; }
          .page-node-9 .header .contact-data-wrapper .form-contact-us ::-moz-placeholder {
            /* Firefox 19+ */
            color: #ffffff;
            opacity: 1; }
          .page-node-9 .header .contact-data-wrapper .form-contact-us :-ms-input-placeholder {
            /* IE 10+ */
            color: #ffffff;
            opacity: 1; }
          .page-node-9 .header .contact-data-wrapper .form-contact-us :-moz-placeholder {
            /* Firefox 18- */
            color: #ffffff;
            opacity: 1; }
          .page-node-9 .header .contact-data-wrapper .form-contact-us textarea {
            overflow: hidden; }
          .page-node-9 .header .contact-data-wrapper .form-contact-us .form-arrow {
            display: block;
            width: 0;
            height: 0;
            position: absolute;
            top: 30px;
            right: -31px;
            border-style: solid;
            border-width: 40px 32px 0 0;
            border-color: #0B83BF transparent transparent transparent;
            z-index: 10; }@media screen and (max-width: 51.875em) {
 .page-node-9 .header .contact-data-wrapper .form-contact-us .form-arrow {
                display: none; } 
}.page-node-9 .header .contact-data-wrapper .contact-data-one {
          -webkit-flex-basis: 170px;
              -ms-flex-preferred-size: 170px;
                  flex-basis: 170px; }
          .page-node-9 .header .contact-data-wrapper .contact-data-one .contact-email-block:last-child {
            margin-bottom: 0; }
          .page-node-9 .header .contact-data-wrapper .contact-data-one .contact-email-block {
            margin-bottom: 40px; }
          .page-node-9 .header .contact-data-wrapper .contact-data-one .email-wrapper {
            margin-top: 14px; }
          .page-node-9 .header .contact-data-wrapper .contact-data-one .email-title {
            color: #eaeef0; }
          .page-node-9 .header .contact-data-wrapper .contact-data-one .email-info-link {
            color: #0094de; }@media screen and (max-width: 51.875em) {
 .page-node-9 .header .contact-data-wrapper .contact-data-one .contact-email-block {
              margin-bottom: 30px; }
              .page-node-9 .header .contact-data-wrapper .contact-data-one .contact-email-block:first-child {
                margin-top: 25px; }
              .page-node-9 .header .contact-data-wrapper .contact-data-one .contact-email-block .email-title {
                font-size: 12px; }
              .page-node-9 .header .contact-data-wrapper .contact-data-one .contact-email-block .email-wrapper {
                margin-top: 0; } 
}@media screen and (max-width: 51.875em) {
 .page-node-9 .header .contact-data-wrapper .contact-data-one {
              text-align: center; }
              .page-node-9 .header .contact-data-wrapper .contact-data-one .contact-email-block {
                margin-bottom: 15px; } 
}.page-node-9 .header .contact-data-wrapper .contact-data-two {
          position: relative; }
          .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-skype-block {
            height: 36px;
            margin: 0 0 90px;
            font-family: "PT Sans", Sans-Serif; }
            .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-skype-block a {
              display: inline-block;
              position: relative;
              padding: 0 0 0 52px; }
              .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-skype-block a:before {
                content: '';
                display: block;
                position: absolute;
                top: -2px;
                left: 0;
                height: 36px;
                width: 36px;
                background: url(https://da-14.com/sites/all/themes/da14/images/icons/icon-skype-gray.png) no-repeat; }@media screen and (max-width: 51.875em) {
 .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-skype-block a:before {
                    height: 25px;
                    width: 25px;
                    background: url(https://da-14.com/sites/all/themes/da14/images/icons/icon-small-skype-gray.png) no-repeat; } 
}@media screen and (max-width: 51.875em) {
 .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-skype-block {
                width: 150px;
                height: auto;
                margin: 0 auto 30px !important;
                clear: both;
                text-align: center; }
                .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-skype-block a {
                  padding: 0;
                  font-size: 16px; }
                  .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-skype-block a:before {
                    position: relative;
                    top: 0;
                    left: 0;
                    float: left;
                    margin-right: 12px; } 
}.page-node-9 .header .contact-data-wrapper .contact-data-two .contact-open-block {
            margin-bottom: 80px; }
            .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-open-block .open-title {
              display: inline-block;
              margin-bottom: 10px;
              color: #eaeef0; }@media screen and (max-width: 51.875em) {
 .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-open-block .open-title {
                  margin-bottom: 0;
                  display: block;
                  text-align: center; } 
}.page-node-9 .header .contact-data-wrapper .contact-data-two .contact-open-block .time-zone,
            .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-open-block .day-title {
              display: inline-block;
              text-transform: uppercase;
              color: #ffffff; }
            .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-open-block .day-title {
              width: 90px; }
            .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-open-block .time-zone {
              margin-left: 10px; }
            .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-open-block .day-time {
              color: #0094de; }@media screen and (max-width: 51.875em) {
 .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-open-block {
                margin: 0 auto 60px !important;
                float: none;
                clear: both; }
                .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-open-block .day-title {
                  width: 78px;
                  font-size: 12px; }
                .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-open-block .day-time {
                  font-size: 16px; }
                .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-open-block .time-zone {
                  margin-left: 8px;
                  font-size: 12px; } 
}.page-node-9 .header .contact-data-wrapper .contact-data-two .contact-skype-block,
          .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-open-block {
            float: none; }@media screen and (max-width: 51.875em) {
 .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-skype-block,
              .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-open-block {
                font-size: 14px; } 
}.page-node-9 .header .contact-data-wrapper .contact-data-two .social-container:before {
            display: none; }@media screen and (max-width: 51.875em) {
 .page-node-9 .header .contact-data-wrapper .contact-data-two .social-container:before {
              content: '';
              display: block;
              clear: both; } 
}.page-node-9 .header .contact-data-wrapper .contact-data-two .social-container .social-title {
            color: #eaeef0; }@media screen and (max-width: 51.875em) {
 .page-node-9 .header .contact-data-wrapper .contact-data-two .social-container {
              bottom: 25px;
              z-index: 2;
              width: 100%; } 
}.page-node-9 .header .contact-data-wrapper .contact-data-two .social-container .social-wrapper {
            margin: 20px 0 0;
            line-height: 1; }
            .page-node-9 .header .contact-data-wrapper .contact-data-two .social-container .social-wrapper li {
              list-style: none;
              display: inline-block;
              line-height: 1; }
              .page-node-9 .header .contact-data-wrapper .contact-data-two .social-container .social-wrapper li:not(:first-child) {
                margin-left: 10px; }@media screen and (max-width: 920px) {
 .page-node-9 .header .contact-data-wrapper .contact-data-two .social-container .social-wrapper li:not(:first-child) {
                    margin-left: 10px; } 
}@media screen and (max-width: 51.875em) {
 .page-node-9 .header .contact-data-wrapper .contact-data-two .social-container .btn-ask-question-wrapper,
            .page-node-9 .header .contact-data-wrapper .contact-data-two .social-container .social-wrapper {
              text-align: center; } 
}.page-node-9 .header .contact-data-wrapper .contact-data-two .btn-ask-question-wrapper {
            display: none; }@media screen and (max-width: 53.75em) {
 .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-skype-block,
            .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-open-block {
              margin-bottom: 35px; }
            .page-node-9 .header .contact-data-wrapper .contact-data-two .social-title {
              display: none; }
            .page-node-9 .header .contact-data-wrapper .contact-data-two .btn-ask-question-wrapper {
              display: block; } 
}@media screen and (max-width: 51.875em) {
 .page-node-9 .header .contact-data-wrapper .contact-data-two {
              margin-top: 30px; }
              .page-node-9 .header .contact-data-wrapper .contact-data-two .contact-skype-block {
                margin: 0; } 
}@media screen and (max-width: 39.9375em) {
 .page-node-9 .header {
          background: none;
          background-color: #394044; } 
}@media screen and (max-width: 51.875em) {
 .page-node-9 .header {
          background-color: transparent; } 
}.page-node-9 .news h2.title {
      color: #fefefe; }
      .page-node-9 .news h2.title:after {
        background: none; }
    .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content {
      position: relative; }
      .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row {
        overflow: hidden; }
        .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row:not(:last-child) {
          margin-bottom: 25px; }@media screen and (max-width: 71.25em) {
 .page-node-9 .news .latest-post-blog {
        height: 650px;
        overflow: auto; }
        .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row {
          height: 250px; }
          .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row:not(:last-child) {
            margin-bottom: 55px; }
          .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row .wrapper-blog-image {
            height: 100%; }
            .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row .wrapper-blog-image .recent-blog-image {
              height: 100%; }
          .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row .date-post {
            display: block;
            margin-bottom: 10px; }
          .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row .title-wrapper .title {
            font-size: 23px;
            line-height: 30px; } 
}@media screen and (max-width: 51.875em) {
 .page-node-9 .news .latest-post-blog {
        height: auto; }
        .page-node-9 .news .latest-post-blog h2.title-section {
          font-size: 15px;
          text-align: center; }
        .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row {
          height: 200px; }
          .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row a {
            padding: 32px; }
            .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row a .date-post {
              display: block;
              margin-bottom: 10px; }
            .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row a .title-wrapper h3.title {
              color: #fefefe;
              font-size: 20px;
              line-height: 25px; }
      .page-node-9 .news .instagram h2.title-section {
        font-size: 15px;
        text-align: center; } 
}@media screen and (max-width: 40em) {
 .page-node-9 .news .latest-post-blog {
        margin-bottom: 0;
        padding: 0 20px; }
        .page-node-9 .news .latest-post-blog h2.title-section {
          font-size: 15px;
          text-align: center; }
        .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row {
          height: 155px; }
          .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row a {
            padding: 32px; }
            .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row a .date-post {
              display: block;
              margin-bottom: 10px; }
            .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row a .title-wrapper h3.title {
              color: #fefefe;
              font-size: 20px;
              line-height: 25px; }
      .page-node-9 .news .instagram h2.title-section {
        font-size: 15px;
        text-align: center; } 
}@media screen and (max-width: 21.875em) {
 .page-node-9 .news .latest-post-blog .latest-post-wrapper .view-content .views-row a .title-wrapper h3.title {
        color: #fefefe;
        font-size: 16px;
        line-height: 22px; } 
}.page-node-9 .footer {
      padding: 0; }
    .page-node-9 .swiper-container-contact-us {
      overflow-x: hidden;
      position: relative;
      margin: 0 auto;
      z-index: 1;
      background-color: #282f33; }
    .page-node-9 .contact-container {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
         -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
           -o-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%);
      text-align: center; }@media screen and (max-width: 41.875em) and (orientation: landscape) {
 .page-node-9 .contact-container {
      width: auto; } 
}.page-node-9 .contact-container .profile {
        overflow: hidden; }
        .page-node-9 .contact-container .profile img {
          -webkit-border-radius: 50%;
             -moz-border-radius: 50%;
                  border-radius: 50%; }
        .page-node-9 .contact-container .profile .name {
          color: #ffffff;
          font-size: 1rem;
          margin-top: 15px;
          margin-bottom: 0;
          position: relative; }@media screen and (max-width: 51.875em) {
 .page-node-9 .contact-container .profile .name {
              font-size: 0.75rem;
              margin-top: 10px; } 
}.page-node-9 .contact-container .phone-wrapper {
        overflow: hidden;
        position: relative; }
        .page-node-9 .contact-container .phone-wrapper .phone {
          font-size: 1.625rem;
          color: #ffffff;
          letter-spacing: 2px;
          position: relative;
          padding-bottom: 20px;
          display: block; }@media screen and (max-width: 51.875em) {
 .page-node-9 .contact-container .phone-wrapper .phone {
              font-size: 0.9375rem;
              padding-bottom: 15px; } 
}.page-node-9 .contact-container .phone-wrapper .phone:after {
            content: '';
            position: absolute;
            display: inline-block;
            bottom: 0;
            left: 50%;
            -webkit-transform: translateX(-50%);
               -moz-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                 -o-transform: translateX(-50%);
                    transform: translateX(-50%);
            width: 40px;
            height: 3px;
            background-color: #ffffff;
            -webkit-border-radius: 1.5px;
               -moz-border-radius: 1.5px;
                    border-radius: 1.5px;
            opacity: 0.2; }
      .page-node-9 .contact-container .address-wrapper address {
        font-style: normal;
        color: #ffffff;
        font-size: 1rem;
        margin-top: 20px; }@media screen and (max-width: 51.875em) {
 .page-node-9 .contact-container .address-wrapper address {
            font-size: 0.8125rem; } 
}.page-node-9 .mobile-swiper-wrapper {
      display: none;
      position: relative;
      height: 500px; }@media screen and (max-width: 39.9375em) {
 .page-node-9 .mobile-swiper-wrapper {
          display: block; } 
}.page-node-9 .mobile-swiper-wrapper .mobile-title-offices {
        position: relative;
        z-index: 10; }
        .page-node-9 .mobile-swiper-wrapper .mobile-title-offices .title {
          margin: 0;
          padding-top: 40px;
          color: #ffffff; }
          .page-node-9 .mobile-swiper-wrapper .mobile-title-offices .title:after {
            display: none; }
    .page-node-9 .half-wrapper-mobile {
      width: 100%;
      height: 100%;
      position: relative;
      top: -520px; }
      .page-node-9 .half-wrapper-mobile .swiper-slide {
        height: 1000px;
        overflow: hidden; }
      .page-node-9 .half-wrapper-mobile .contact-container {
        position: absolute;
        top: 80%;
        left: 50%;
        width: 100%;
        -webkit-transform: translate(-50%, -70%);
           -moz-transform: translate(-50%, -70%);
            -ms-transform: translate(-50%, -70%);
             -o-transform: translate(-50%, -70%);
                transform: translate(-50%, -70%); }
      .page-node-9 .half-wrapper-mobile .ua-background,
      .page-node-9 .half-wrapper-mobile .usa-background {
        width: 100%;
        height: 1300px; }
      .page-node-9 .half-wrapper-mobile .ua-background {
        background: #394044 url(https://da-14.com/sites/all/themes/da14/images/src/contact-us/map-small-mobile-ua.png) no-repeat center 100px;
        background-position: center -100px;
        -moz-background-size: 640px;
          -o-background-size: 640px;
             background-size: 640px; }
      .page-node-9 .half-wrapper-mobile .usa-background {
        background: #394044 url(https://da-14.com/sites/all/themes/da14/images/src/contact-us/map-small-mobile-usa.png) no-repeat center 150px;
        background-position: center -60px;
        -moz-background-size: 640px;
          -o-background-size: 640px;
             background-size: 640px; }
      .page-node-9 .half-wrapper-mobile .swiper-container-horizontal > .swiper-pagination-bullets,
      .page-node-9 .half-wrapper-mobile .swiper-pagination-custom, .page-node-9 .half-wrapper-mobile .swiper-pagination-fraction {
        bottom: 40px; }
    .page-node-9 .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
      background: transparent;
      opacity: 1;
      -webkit-border-radius: 50%;
         -moz-border-radius: 50%;
              border-radius: 50%;
      border: 1px solid #0094de;
      position: relative; }
    .page-node-9 .swiper-pagination-white .swiper-pagination-bullet-active {
      position: relative; }
      .page-node-9 .swiper-pagination-white .swiper-pagination-bullet-active:after {
        position: absolute;
        content: '';
        width: 4px;
        height: 4px;
        -webkit-border-radius: 50%;
           -moz-border-radius: 50%;
                border-radius: 50%;
        top: 50%;
        left: 50%;
        background: #0094de;
        -webkit-transform: translate(-50%, -50%);
           -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
             -o-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%); }
    .page-node-9 .webform-client-form {
      margin-top: 0;
      padding-left: 0; }
      .page-node-9 .webform-client-form input,
      .page-node-9 .webform-client-form textarea {
        color: #ffffff;
        padding-right: 0;
        padding-left: 0;
        border-bottom-color: rgba(255, 255, 255, 0.2); }
        .page-node-9 .webform-client-form input:-webkit-autofill,
        .page-node-9 .webform-client-form textarea:-webkit-autofill {
          -webkit-box-shadow: 0 0 0 50px #0B83BF inset;
          border-bottom-color: rgba(255, 255, 255, 0.2);
          -webkit-text-fill-color: #ffffff; }
          .page-node-9 .webform-client-form input:-webkit-autofill:hover, .page-node-9 .webform-client-form input:-webkit-autofill:focus,
          .page-node-9 .webform-client-form textarea:-webkit-autofill:hover,
          .page-node-9 .webform-client-form textarea:-webkit-autofill:focus {
            box-shadow: none;
            -webkit-box-shadow: 0 0 0 50px #0B83BF inset;
            border-bottom-color: rgba(255, 255, 255, 0.2);
            -webkit-text-fill-color: #ffffff; }
      .page-node-9 .webform-client-form input.error,
      .page-node-9 .webform-client-form textarea.error {
        border-bottom-color: #de001a; }
      .page-node-9 .webform-client-form input {
        margin-bottom: 15px; }@media screen and (max-width: 51.875em) {
 .page-node-9 .webform-client-form input {
            margin-bottom: 5px; } 
}.page-node-9 .webform-client-form textarea {
        height: 65px !important; }@media screen and (max-width: 60.625em) {
 .page-node-9 .webform-client-form textarea {
            height: 90px !important; } 
}.page-node-9 .webform-client-form .webform-component--name {
        max-width: inherit; }
      .page-node-9 .webform-client-form .form-type-checkbox {
        position: relative;
        text-align: left; }
        .page-node-9 .webform-client-form .form-type-checkbox [type=checkbox] {
          display: none; }
        .page-node-9 .webform-client-form .form-type-checkbox [type=checkbox]:not(:checked) + label:before,
        .page-node-9 .webform-client-form .form-type-checkbox [type=checkbox]:checked + label:before {
          content: '';
          position: absolute;
          top: 17px;
          left: 0;
          width: 19px;
          height: 19px;
          -webkit-border-radius: 2px;
             -moz-border-radius: 2px;
                  border-radius: 2px;
          background: rgba(255, 255, 255, 0.2) !important; }
        .page-node-9 .webform-client-form .form-type-checkbox [type=checkbox]:not(:checked) + label:after,
        .page-node-9 .webform-client-form .form-type-checkbox [type=checkbox]:checked + label:after {
          content: '';
          position: absolute;
          top: 19px;
          left: 2px;
          height: 16px;
          width: 16px;
          background: url(https://da-14.com/sites/all/themes/da14/images/icons/icon-small-check-mark.png) no-repeat center;
          color: rgba(255, 255, 255, 0.8) !important;
          -webkit-transition: all .2s;
          -o-transition: all .2s;
          -moz-transition: all .2s;
          transition: all .2s; }
        .page-node-9 .webform-client-form .form-type-checkbox [type=checkbox]:not(:checked) + label:after {
          opacity: 0;
          -webkit-transform: scale(0);
             -moz-transform: scale(0);
              -ms-transform: scale(0);
               -o-transform: scale(0);
                  transform: scale(0); }
        .page-node-9 .webform-client-form .form-type-checkbox [type=checkbox]:checked + label:after {
          opacity: 1;
          -webkit-transform: scale(1);
             -moz-transform: scale(1);
              -ms-transform: scale(1);
               -o-transform: scale(1);
                  transform: scale(1); }
        .page-node-9 .webform-client-form .form-type-checkbox label {
          margin: 16px 0 0 35px;
          font: 16px "PT Sans", Sans-Serif;
          color: rgba(255, 255, 255, 0.5) !important; }@media screen and (max-width: 51.875em) {
 .page-node-9 .webform-client-form .webform-component--prefer-to-call {
          margin-top: 5px; }
          .page-node-9 .webform-client-form .webform-component--prefer-to-call .form-type-checkbox {
            text-align: center; }
            .page-node-9 .webform-client-form .webform-component--prefer-to-call .form-type-checkbox .option {
              position: relative; }
              .page-node-9 .webform-client-form .webform-component--prefer-to-call .form-type-checkbox .option:before {
                top: 1px !important;
                left: -38px !important; }
              .page-node-9 .webform-client-form .webform-component--prefer-to-call .form-type-checkbox .option:after {
                top: 3px !important;
                left: -36px !important; } 
}.page-node-9 .webform-client-form .webform-component--name,
      .page-node-9 .webform-client-form .webform-component--email {
        margin-right: 0;
        padding-top: 0; }
      .page-node-9 .webform-client-form .webform-submit {
        margin-bottom: 0;
        padding: 2px 30px;
        color: #000000; }@media screen and (max-width: 51.875em) {
 .page-node-9 .webform-client-form .webform-submit {
            padding-left: 80px;
            padding-right: 80px; } 
}.page-node-9 .success-response {
      display: none; }
      .page-node-9 .success-response .success-contact-us-text {
        position: relative;
        margin-top: 70px;
        padding: 155px 0 25px 0;
        color: #ffffff; }
        .page-node-9 .success-response .success-contact-us-text:before {
          display: block;
          content: '';
          height: 111px;
          width: 150px;
          position: absolute;
          top: 0;
          left: 50%;
          -webkit-transform: translateX(-50%);
             -moz-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
               -o-transform: translateX(-50%);
                  transform: translateX(-50%);
          background: url(https://da-14.com/sites/all/themes/da14/images/src/contact-us/send-success.png) no-repeat; }
    .page-node-9 .send-success .success-response {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background-color: #0B83BF;
      z-index: 10; }
    .page-node-9 #askQuestionModal {
      background-color: #0094de; }
      .page-node-9 #askQuestionModal.reveal .close-button {
        background: url(https://da-14.com/sites/all/themes/da14/images/icons/icon-close-white-modal-mobile.png) no-repeat; }
    .page-node-9 .modal-contact-us-wrapper {
      width: 100%;
      height: 100%; }
      .page-node-9 .modal-contact-us-wrapper .modal-form-title {
        color: #ffffff; }
        .page-node-9 .modal-contact-us-wrapper .modal-form-title:after {
          background-color: rgba(255, 255, 255, 0.2); }@media only screen and (max-width: 1100px) {
 .page-node-9 .contact-container .phone-wrapper .phone {
      font-size: 24px; } 
}@media only screen and (max-width: 100px) {
 .page-node-9 .contact-container .phone-wrapper .phone {
      font-size: 22px; } 
}@media only screen and (max-width: 900px) {
 .page-node-9 .contact-container .phone-wrapper .phone {
      font-size: 20px; } 
}@media only screen and (max-width: 830px) {
 .page-node-9 .header .header-wrapper .container .menu > li > a.contact-us {
      color: #ffffff; }
      .page-node-9 .header .header-wrapper .container .menu > li > a.contact-us.active-trail.active:after {
        background-color: #ffffff; }
    .page-node-9 .header .half-wrapper.first-half-wrapper {
      max-height: none; }
    .page-node-9 .header .half-wrapper:last-child {
      height: 80vh; }
      .page-node-9 .header .half-wrapper:last-child .title-wrapper {
        top: 50px; }
    .page-node-9 .header .half-wrapper .contact-data-wrapper {
      padding-left: 0;
      padding-right: 0; }
      .page-node-9 .header .half-wrapper .contact-data-wrapper .contact-open-block {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
           -moz-box-orient: vertical;
           -moz-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
        .page-node-9 .header .half-wrapper .contact-data-wrapper .contact-open-block .open-days-of-week {
          display: inline-block; }
    .page-node-9 .header .half-wrapper .icon-arrow-down-opacity {
      display: none; }
    .page-node-9 .header .half-wrapper .half-usa-container,
    .page-node-9 .header .half-wrapper .half-ua-container {
      top: 0; } 
}@media only screen and (max-width: 830px) and (max-height: 850px) {
 .page-node-9 .half-wrapper:last-child {
      height: 140vh; }
      .page-node-9 .half-wrapper:last-child .title-wrapper {
        top: 500px; } 
}@media only screen and (max-width: 639px) {
 .page-node-9 .header .half-wrapper.first-half-wrapper {
      max-height: none; } 
}@media only screen and (max-height: 760px) {
 .page-node-9 .header .half-wrapper .half-usa-container,
    .page-node-9 .header .half-wrapper .half-ua-container {
      height: 80%; }
    .page-node-9 .header .first-half-wrapper {
      max-height: 76vh; }
    .page-node-9 .header .icon-arrow-down-opacity.contact-us-page {
      bottom: 45px; } 
}.form-item .description {
    font-family: 'pt_sansregular'; }
  
  /*========================
        ABOUT US STYLES
  ========================*/
  .node-type-about-us {
    overflow-x: hidden; }
    .node-type-about-us .header {
      width: 100%;
      height: 100vh;
      background-color: #282f33;
      position: relative; }
      .node-type-about-us .header .bg {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0.2;
        background-repeat: no-repeat;
        -moz-background-size: cover;
          -o-background-size: cover;
             background-size: cover;
        background-position: center; }
      .node-type-about-us .header .header-wrapper {
        z-index: 1;
        position: relative; }
      .node-type-about-us .header .title-wrapper {
        width: 100%;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
           -moz-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center; }
      .node-type-about-us .header .title {
        color: #ffffff; }
        .node-type-about-us .header .title:after {
          display: none; }
      .node-type-about-us .header .description {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
           -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
             -o-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        color: #ffffff;
        max-width: 545px;
        width: 100%;
        text-align: center;
        padding: 0 20px; }@media screen and (max-width: 46.25em) and (orientation: landscape) {
 .node-type-about-us .header {
      height: 600px; } 
}.node-type-about-us .adventages-wrapper {
      padding: 0 0 70px 0; }@media screen and (max-width: 39.9375em) {
 .node-type-about-us .adventages-wrapper {
          padding: 0 0 50px 0; } 
}.node-type-about-us .team-container {
      max-width: 75rem;
      margin-left: auto;
      margin-right: auto;
      max-width: 1140px;
      text-align: center; }
      .node-type-about-us .team-container::before, .node-type-about-us .team-container::after {
        content: ' ';
        display: table; }
      .node-type-about-us .team-container::after {
        clear: both; }
      .node-type-about-us .team-container .title {
        padding-bottom: 0;
        margin: 30px auto 0; }
        .node-type-about-us .team-container .title:after {
          display: none; }
      .node-type-about-us .team-container .view-content {
        text-align: center;
        margin: 0 -30px; }@media screen and (max-width: 76.5625em) {
 .node-type-about-us .team-container .view-content {
            margin: 0; } 
}@media screen and (max-width: 63.9375em) {
 .node-type-about-us .team-container .view-content {
            margin: 0; } 
}@media screen and (max-width: 39.9375em) {
 .node-type-about-us .team-container .view-content {
            margin: 0; } 
}.node-type-about-us .team-container .view-content .views-row {
          display: inline-block;
          margin-left: -4px;
          padding: 60px 30px 0 30px; }@media screen and (max-width: 39.9375em) {
 .node-type-about-us .team-container .view-content .views-row {
              padding: 20px 10px 0 10px;
              width: 50%; } 
}.node-type-about-us .team-container .view-content .views-row .team-wrapper {
            position: relative;
            display: inline-block; }
            .node-type-about-us .team-container .view-content .views-row .team-wrapper img {
              width: 100%;
              height: auto; }
          .node-type-about-us .team-container .view-content .views-row > .name {
            margin: 30px 0 0 0;
            color: #6c7376; }@media screen and (max-width: 39.9375em) {
 .node-type-about-us .team-container .view-content .views-row > .name {
                margin: 10px 0 0 0; } 
}.node-type-about-us .team-container .view-content .views-row > p {
            font-size: 0.6875rem;
            color: #6c7376;
            margin: 0; }
          .node-type-about-us .team-container .view-content .views-row .team-hover-wrapper {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 148, 222, 0.8);
            opacity: 0;
            color: #ffffff;
            -webkit-transition: opacity .5s;
            -o-transition: opacity .5s;
            -moz-transition: opacity .5s;
            transition: opacity .5s; }
            .node-type-about-us .team-container .view-content .views-row .team-hover-wrapper .hover-container {
              position: absolute;
              top: 100%;
              left: 0;
              width: 100%;
              opacity: 0.5;
              -webkit-transition: all .5s;
              -o-transition: all .5s;
              -moz-transition: all .5s;
              transition: all .5s; }
              .node-type-about-us .team-container .view-content .views-row .team-hover-wrapper .hover-container .name {
                color: #ffffff; }
              .node-type-about-us .team-container .view-content .views-row .team-hover-wrapper .hover-container .position {
                margin: 0; }@media screen and (max-width: 39.9375em) {
 .node-type-about-us .team-container .view-content .views-row .team-hover-wrapper {
                display: none; } 
}.node-type-about-us .team-container .view-content .views-row:hover {
            cursor: pointer; }
            .node-type-about-us .team-container .view-content .views-row:hover .team-hover-wrapper {
              opacity: 1; }
              .node-type-about-us .team-container .view-content .views-row:hover .team-hover-wrapper .hover-container {
                top: 50%;
                -webkit-transform: translateY(-50%);
                   -moz-transform: translateY(-50%);
                    -ms-transform: translateY(-50%);
                     -o-transform: translateY(-50%);
                        transform: translateY(-50%);
                opacity: 1; }
    .node-type-about-us .button-container {
      text-align: center;
      margin: 80px 0 90px 0; }@media screen and (max-width: 39.9375em) {
 .node-type-about-us .button-container {
          margin: 50px 0 60px 0; } 
}/*========================
        BLOG STYLES
  ========================*/
  .subscribe-form {
    padding: 30px 0; }
    .subscribe-form h2 {
      margin: 0;
      font-size: 1.25rem;
      color: #000000;
      text-transform: uppercase;
      text-align: center;
      letter-spacing: 4px; }
    .subscribe-form .wrap-subscribe-fields {
      max-width: 720px;
      margin-top: 28px;
      position: relative;
      top: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
         -moz-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
           -o-transform: translateX(-50%);
              transform: translateX(-50%);
      font-family: andale_monoregular; }@media screen and (max-width: 45.625em) {
 .subscribe-form .wrap-subscribe-fields {
          max-width: 300px; } 
}.subscribe-form .wrap-subscribe-fields .subscribe-form-label {
        display: inline-block;
        width: 100px;
        font-size: 0.9375rem; }
      .subscribe-form .wrap-subscribe-fields .subscribe-form-input,
      .subscribe-form .wrap-subscribe-fields .subscribe-form-button {
        height: 33px; }
      .subscribe-form .wrap-subscribe-fields .subscribe-form-input {
        width: -webkit-calc(100% - 290px);
        width: -moz-calc(100% - 290px);
        width: calc(100% - 290px);
        margin-right: 10px; }
      .subscribe-form .wrap-subscribe-fields .subscribe-form-button {
        float: right;
        width: 165px;
        height: 33px;
        font-size: 15px;
        color: #ffffff;
        background-color: #0094de;
        border: none;
        -webkit-transition: background-color .25s ease-out,color .25s ease-out;
        -o-transition: background-color .25s ease-out,color .25s ease-out;
        -moz-transition: background-color .25s ease-out,color .25s ease-out;
        transition: background-color .25s ease-out,color .25s ease-out; }@media screen and (max-width: 45.625em) {
 .subscribe-form .wrap-subscribe-fields .subscribe-form-button {
            float: none;
            margin-top: 15px;
            position: relative;
            top: 0;
            left: 50%;
            -webkit-transform: translateX(-50%);
               -moz-transform: translateX(-50%);
                -ms-transform: translateX(-50%);
                 -o-transform: translateX(-50%);
                    transform: translateX(-50%); } 
}.subscribe-form .wrap-subscribe-fields .subscribe-form-button:hover {
          background-color: #0087ca; }@media screen and (max-width: 45.625em) {
 .subscribe-form .wrap-subscribe-fields .subscribe-form-label,
        .subscribe-form .wrap-subscribe-fields .subscribe-form-input,
        .subscribe-form .wrap-subscribe-fields .subscribe-form-button {
          display: block; } 
}@media screen and (max-width: 45.625em) {
 .subscribe-form .wrap-subscribe-fields .subscribe-form-label,
        .subscribe-form .wrap-subscribe-fields .subscribe-form-input {
          width: 100%; } 
}.page-blog .content {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 71.25rem; }
    .page-blog .content::before, .page-blog .content::after {
      content: ' ';
      display: table; }
    .page-blog .content::after {
      clear: both; }
  
  .page-blog .view-content {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%; }
    .page-blog .view-content::before, .page-blog .view-content::after {
      content: ' ';
      display: table; }
    .page-blog .view-content::after {
      clear: both; }
  
  .page-blog .views-row {
    width: 50%;
    float: left;
    overflow: hidden;
    position: relative; }
    .page-blog .views-row:last-child:not(:first-child) {
      float: right; }@media screen and (max-width: 58.75em) {
 .page-blog .views-row {
        width: 100%;
        float: left; }
        .page-blog .views-row:last-child:not(:first-child) {
          float: right; } 
}.page-blog .views-row.views-row-odd {
      padding-right: 30px; }@media screen and (max-width: 58.75em) {
 .page-blog .views-row.views-row-odd {
          padding-right: 0; } 
}.page-blog .views-row.views-row-even {
      padding-left: 30px; }
      .page-blog .views-row.views-row-even .blog-link {
        margin-left: 30px; }@media screen and (max-width: 58.75em) {
 .page-blog .views-row.views-row-even {
          padding-left: 0; }
          .page-blog .views-row.views-row-even .blog-link {
            margin-left: 0; } 
}.page-blog .views-row.views-row-odd, .page-blog .views-row.views-row-even {
      margin-bottom: 60px; }@media screen and (max-width: 39.9375em) {
 .page-blog .views-row.views-row-odd, .page-blog .views-row.views-row-even {
          margin-bottom: 10px; } 
}.page-blog .views-row:last-child:not(:first-child) {
      float: left; }
  
  .page-blog .views-exposed-form .views-exposed-widget,
  .page-blog .views-exposed-form .view-content,
  .page-blog .view-blog-filter-tags.view-id-blog_filter_tags .views-exposed-widget,
  .page-blog .view-blog-filter-tags.view-id-blog_filter_tags .view-content {
    width: 100%; }
  
  .page-blog .form-checkboxes,
  .page-blog .filter-tags-row {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%; }
    .page-blog .form-checkboxes::before, .page-blog .form-checkboxes::after,
    .page-blog .filter-tags-row::before,
    .page-blog .filter-tags-row::after {
      content: ' ';
      display: table; }
    .page-blog .form-checkboxes::after,
    .page-blog .filter-tags-row::after {
      clear: both; }
  
  .page-blog .bef-checkboxes,
  .page-blog .filter-tags-links {
    width: 100%;
    float: left;
    padding-left: 0.625rem;
    padding-right: 0.625rem;
    padding: 0 !important;
    margin: 20px 0 75px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; }@media screen and (min-width: 40em) {
 .page-blog .bef-checkboxes,
      .page-blog .filter-tags-links {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } 
}.page-blog .bef-checkboxes:last-child:not(:first-child),
    .page-blog .filter-tags-links:last-child:not(:first-child) {
      float: right; }@media screen and (max-width: 39.9375em) {
 .page-blog .bef-checkboxes,
      .page-blog .filter-tags-links {
        margin: 20px 0 40px; } 
}.page-blog .views-exposed-form .form-type-bef-checkbox {
    display: inline-block; }
    .page-blog .views-exposed-form .form-type-bef-checkbox > input[type="checkbox"] {
      display: none; }
      .page-blog .views-exposed-form .form-type-bef-checkbox > input[type="checkbox"] + label {
        padding: 3px 10px;
        font-weight: normal;
        font-size: 0.9375rem;
        background-color: #c2cdd3;
        margin: 7px 4px; }
        .page-blog .views-exposed-form .form-type-bef-checkbox > input[type="checkbox"] + label:first-of-type {
          margin-left: 0; }
        .page-blog .views-exposed-form .form-type-bef-checkbox > input[type="checkbox"] + label:hover {
          background-color: #c2cdd3; }
      .page-blog .views-exposed-form .form-type-bef-checkbox > input[type="checkbox"]:checked + label {
        background-color: #0094de; }
  
  .page-blog .views-widget .form-item .description {
    display: none; }
  
  .page-blog .view-blog-filter-tags.view-id-blog_filter_tags .views-row {
    display: inline-block;
    float: left;
    margin: 0;
    padding: 0;
    width: auto; }
  
  .page-blog .view-blog-filter-tags.view-id-blog_filter_tags .filter {
    padding: 3px 10px;
    font-weight: normal;
    font-size: 0.9375rem;
    background-color: #c2cdd3;
    margin: 7px 4px; }
    .page-blog .view-blog-filter-tags.view-id-blog_filter_tags .filter:first-of-type {
      margin-left: 0; }
    .page-blog .view-blog-filter-tags.view-id-blog_filter_tags .filter.active {
      background-color: #0094de; }
  
  .page-blog .footer {
    margin-top: 40px; }
  
  .similar-post-blog .views-row,
  .latest-post-blog .views-row,
  .page-blog .views-row {
    position: relative; }
    .similar-post-blog .views-row .blog-link,
    .latest-post-blog .views-row .blog-link,
    .page-blog .views-row .blog-link {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      padding: 40px;
      max-width: 540px;
      color: #ffffff; }@media screen and (max-width: 39.9375em) {
 .similar-post-blog .views-row .blog-link,
        .latest-post-blog .views-row .blog-link,
        .page-blog .views-row .blog-link {
          padding: 30px; } 
}@media screen and (max-width: 28.75em) {
 .similar-post-blog .views-row .blog-link,
        .latest-post-blog .views-row .blog-link,
        .page-blog .views-row .blog-link {
          padding: 15px; } 
}.similar-post-blog .views-row .date-post,
    .latest-post-blog .views-row .date-post,
    .page-blog .views-row .date-post {
      opacity: 0.3; }
    .similar-post-blog .views-row .title-wrapper .title,
    .latest-post-blog .views-row .title-wrapper .title,
    .page-blog .views-row .title-wrapper .title {
      margin: 0;
      font-size: 2.2rem;
      color: #a4b0b7; }@media screen and (max-width: 63.9375em) {
 .similar-post-blog .views-row .title-wrapper .title,
        .latest-post-blog .views-row .title-wrapper .title,
        .page-blog .views-row .title-wrapper .title {
          margin: 5px 0 0 0;
          font-size: 1.25rem; } 
}@media screen and (max-width: 39.9375em) {
 .similar-post-blog .views-row .title-wrapper .title,
        .latest-post-blog .views-row .title-wrapper .title,
        .page-blog .views-row .title-wrapper .title {
          font-size: 1.25rem; } 
}@media screen and (max-width: 58.75em) {
 .similar-post-blog .views-row .title-wrapper .title,
        .latest-post-blog .views-row .title-wrapper .title,
        .page-blog .views-row .title-wrapper .title {
          text-align: left; } 
}@media screen and (max-width: 28.75em) {
 .similar-post-blog .views-row .title-wrapper .title,
        .latest-post-blog .views-row .title-wrapper .title,
        .page-blog .views-row .title-wrapper .title {
          font-size: 0.875rem; } 
}.similar-post-blog .views-row .wrapper-blog-image,
    .latest-post-blog .views-row .wrapper-blog-image,
    .page-blog .views-row .wrapper-blog-image {
      background-color: #282f33; }
    .similar-post-blog .views-row .recent-blog-image,
    .latest-post-blog .views-row .recent-blog-image,
    .page-blog .views-row .recent-blog-image {
      width: 100%;
      padding-top: 50%;
      opacity: 0.3;
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s; }
    .similar-post-blog .views-row:hover .recent-blog-image,
    .latest-post-blog .views-row:hover .recent-blog-image,
    .page-blog .views-row:hover .recent-blog-image {
      opacity: 0.2; }
  
  .node-type-article h1.title {
    margin: 80px auto 0; }
  
  .node-type-article .content {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 45rem; }
    .node-type-article .content::before, .node-type-article .content::after {
      content: ' ';
      display: table; }
    .node-type-article .content::after {
      clear: both; }
    .node-type-article .content .field-name-body {
      color: #000000; }
      .node-type-article .content .field-name-body p {
        margin-bottom: 30px; }
  
  .node-type-article .field-name-post-date {
    text-align: center;
    color: #a4b0b7;
    margin: 15px 0 45px 0; }
  
  .node-type-article .flex-video {
    padding-bottom: 49%;
    margin: 0 45px 45px 45px; }
  
  .node-type-article .similar-post-blog {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 71.25rem;
    margin: 50px auto 170px auto; }
    .node-type-article .similar-post-blog::before, .node-type-article .similar-post-blog::after {
      content: ' ';
      display: table; }
    .node-type-article .similar-post-blog::after {
      clear: both; }@media screen and (max-width: 52.5em) {
 .node-type-article .similar-post-blog {
        margin: 40px auto 50px auto; } 
}.node-type-article .similar-post-blog .title-section {
      margin-bottom: 60px; }
    .node-type-article .similar-post-blog .view-content {
      max-width: 75rem;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%;
      width: 100%;
      float: left;
      padding-left: 0.625rem;
      padding-right: 0.625rem; }
      .node-type-article .similar-post-blog .view-content::before, .node-type-article .similar-post-blog .view-content::after {
        content: ' ';
        display: table; }
      .node-type-article .similar-post-blog .view-content::after {
        clear: both; }@media screen and (min-width: 40em) {
 .node-type-article .similar-post-blog .view-content {
          padding-left: 0.9375rem;
          padding-right: 0.9375rem; } 
}.node-type-article .similar-post-blog .view-content:last-child:not(:first-child) {
        float: right; }
    .node-type-article .similar-post-blog .views-row {
      width: 50%;
      float: left;
      overflow: hidden; }
      .node-type-article .similar-post-blog .views-row:last-child:not(:first-child) {
        float: right; }@media screen and (max-width: 52.5em) {
 .node-type-article .similar-post-blog .views-row {
          width: 100%;
          float: left; }
          .node-type-article .similar-post-blog .views-row:last-child:not(:first-child) {
            float: right; }
          .node-type-article .similar-post-blog .views-row:last-child {
            margin-top: 15px; } 
}.node-type-article .similar-post-blog .views-row.views-row-odd {
        padding-right: 30px; }@media screen and (max-width: 52.5em) {
 .node-type-article .similar-post-blog .views-row.views-row-odd {
            padding-right: 0; } 
}.node-type-article .similar-post-blog .views-row.views-row-even {
        padding-left: 30px; }@media screen and (max-width: 52.5em) {
 .node-type-article .similar-post-blog .views-row.views-row-even {
            padding-left: 0; } 
}.node-type-article .similar-post-blog .views-row.views-row-even .blog-link {
          margin-left: 30px; }@media screen and (max-width: 52.5em) {
 .node-type-article .similar-post-blog .views-row.views-row-even .blog-link {
              margin-left: 0; } 
}.node-type-article .subscribe-form {
    background-color: #f4f6f7; }
  
  /*========================
        PROJECTS STYLES
  ========================*/
  .view-projects,
  .recent-project-wrapper {
    text-align: center; }
    .view-projects .view-content,
    .recent-project-wrapper .view-content {
      max-width: 75rem;
      margin-left: auto;
      margin-right: auto;
      max-width: 100%; }
      .view-projects .view-content::before, .view-projects .view-content::after,
      .recent-project-wrapper .view-content::before,
      .recent-project-wrapper .view-content::after {
        content: ' ';
        display: table; }
      .view-projects .view-content::after,
      .recent-project-wrapper .view-content::after {
        clear: both; }
    .view-projects .views-row,
    .recent-project-wrapper .views-row {
      width: 33.33333%;
      float: left;
      position: relative;
      overflow: hidden; }
      .view-projects .views-row:last-child:not(:first-child),
      .recent-project-wrapper .views-row:last-child:not(:first-child) {
        float: right; }@media screen and (max-width: 63.9375em) {
 .view-projects .views-row,
        .recent-project-wrapper .views-row {
          width: 50%;
          float: left; }
          .view-projects .views-row:last-child:not(:first-child),
          .recent-project-wrapper .views-row:last-child:not(:first-child) {
            float: right; } 
}@media screen and (max-width: 41.875em) and (orientation: landscape) {
 .view-projects .views-row,
    .recent-project-wrapper .views-row {
      width: 33.33333%;
      float: left; }
      .view-projects .views-row:last-child:not(:first-child),
      .recent-project-wrapper .views-row:last-child:not(:first-child) {
        float: right; } 
}@media screen and (max-width: 39.9375em) {
 .view-projects .views-row,
        .recent-project-wrapper .views-row {
          width: 100%;
          float: left; }
          .view-projects .views-row:last-child:not(:first-child),
          .recent-project-wrapper .views-row:last-child:not(:first-child) {
            float: right; } 
}.view-projects .views-row .recent-project-image,
      .recent-project-wrapper .views-row .recent-project-image {
        width: 100%;
        padding-top: 100%; }
      .view-projects .views-row .link-project,
      .recent-project-wrapper .views-row .link-project {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        color: #ffffff;
        background-color: rgba(0, 148, 222, 0.8);
        opacity: 0;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        transition: all .5s; }
      .view-projects .views-row .hover-wrapper,
      .recent-project-wrapper .views-row .hover-wrapper {
        position: relative;
        top: 100%;
        z-index: 5;
        -webkit-transition: all .7s;
        -o-transition: all .7s;
        -moz-transition: all .7s;
        transition: all .7s; }
        .view-projects .views-row .hover-wrapper .title,
        .recent-project-wrapper .views-row .hover-wrapper .title {
          color: #ffffff;
          letter-spacing: 2px;
          margin: 0; }
      .view-projects .views-row .icon-arrow-right,
      .recent-project-wrapper .views-row .icon-arrow-right {
        margin: 25px 0 20px 0; }
      .view-projects .views-row:hover,
      .recent-project-wrapper .views-row:hover {
        cursor: pointer; }
        .view-projects .views-row:hover .link-project,
        .recent-project-wrapper .views-row:hover .link-project {
          opacity: 1; }
        .view-projects .views-row:hover .hover-wrapper,
        .recent-project-wrapper .views-row:hover .hover-wrapper {
          position: relative;
          top: 50%;
          -webkit-transform: translateY(-50%);
             -moz-transform: translateY(-50%);
              -ms-transform: translateY(-50%);
               -o-transform: translateY(-50%);
                  transform: translateY(-50%); }
      .view-projects .views-row.project-here-double,
      .recent-project-wrapper .views-row.project-here-double {
        width: 66.66667%;
        float: left; }
        .view-projects .views-row.project-here-double:last-child:not(:first-child),
        .recent-project-wrapper .views-row.project-here-double:last-child:not(:first-child) {
          float: right; }@media screen and (max-width: 63.9375em) {
 .view-projects .views-row.project-here-double,
          .recent-project-wrapper .views-row.project-here-double {
            width: 100%;
            float: left; }
            .view-projects .views-row.project-here-double:last-child:not(:first-child),
            .recent-project-wrapper .views-row.project-here-double:last-child:not(:first-child) {
              float: right; } 
}.view-projects .views-row.project-here-full,
      .recent-project-wrapper .views-row.project-here-full {
        width: 100%;
        float: left; }
        .view-projects .views-row.project-here-full:last-child:not(:first-child),
        .recent-project-wrapper .views-row.project-here-full:last-child:not(:first-child) {
          float: right; }@media screen and (max-width: 63.9375em) {
 .view-projects .views-row.project-here-full,
          .recent-project-wrapper .views-row.project-here-full {
            width: 50%;
            float: left; }
            .view-projects .views-row.project-here-full:last-child:not(:first-child),
            .recent-project-wrapper .views-row.project-here-full:last-child:not(:first-child) {
              float: right; } 
}.view-projects .views-row .row-inner,
      .recent-project-wrapper .views-row .row-inner {
        width: 100%;
        padding-top: 100%;
        background-color: #0094de; }
      .view-projects .views-row .wrapper,
      .recent-project-wrapper .views-row .wrapper {
        position: absolute;
        width: 100%;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
           -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
             -o-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        color: #ffffff; }
        .view-projects .views-row .wrapper > h2,
        .recent-project-wrapper .views-row .wrapper > h2 {
          color: #ffffff;
          margin: 0; }
        .view-projects .views-row .wrapper .contacts-button,
        .recent-project-wrapper .views-row .wrapper .contacts-button {
          background-color: #ffffff;
          color: #282f33;
          padding: 10px 30px;
          margin: 50px 0 40px 0; }
      .view-projects .views-row.project-here-double .row-inner,
      .recent-project-wrapper .views-row.project-here-double .row-inner {
        padding-top: 50%; }
      .view-projects .views-row.project-here-full .row-inner,
      .recent-project-wrapper .views-row.project-here-full .row-inner {
        padding-top: 33.33333%; }@media screen and (max-width: 63.9375em) {
 .view-projects .views-row.project-here-full .row-inner,
          .recent-project-wrapper .views-row.project-here-full .row-inner {
            padding-top: 100%; } 
}@media screen and (max-width: 39.9375em) {
 .view-projects .views-row.project-here-single, .view-projects .views-row.project-here-double, .view-projects .views-row.project-here-full,
        .recent-project-wrapper .views-row.project-here-single,
        .recent-project-wrapper .views-row.project-here-double,
        .recent-project-wrapper .views-row.project-here-full {
          display: none; } 
}.page-portfolio .column, .page-portfolio .columns {
    padding-left: 0 !important;
    padding-right: 0 !important; }
  
  .node-type-project .content {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px; }
    .node-type-project .content::before, .node-type-project .content::after {
      content: ' ';
      display: table; }
    .node-type-project .content::after {
      clear: both; }
    .node-type-project .content .field-name-body {
      color: #000000; }
  
  .node-type-project .ad-gallery {
    width: 100%; }
    .node-type-project .ad-gallery .ad-image-wrapper .ad-prev .ad-prev-image {
      display: block !important;
      opacity: 1 !important;
      -webkit-border-radius: 50%;
         -moz-border-radius: 50%;
              border-radius: 50%;
      width: 30px;
      height: 30px;
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s;
      background: #ffffff url("data:image/svg+xml;utf8;base64,PHN2ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDk0ZGU7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5kYTE0X2Fycm93IGRlZmF1bHQgbGVmdDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTYsMUExNSwxNSwwLDEsMCwzMSwxNiwxNSwxNSwwLDAsMCwxNiwxWm0yLjUzLDE5LjcxYTEuMzUsMS4zNSwwLDAsMSwuMTMsMS44MiwxLjE3LDEuMTcsMCwwLDEtMS43MS4xM2wtNi4yMS01LjcxYTEuMjgsMS4yOCwwLDAsMS0uMzUtMC42MXMwLS4wNywwLTAuMTFhMS40NiwxLjQ2LDAsMCwxLDAtLjZsMC0uMDlhMS4yNywxLjI3LDAsMCwxLC4zNi0wLjYxTDE3LDkuMzNhMS4xNywxLjE3LDAsMCwxLDEuNzEuMTYsMS4zNCwxLjM0LDAsMCwxLS4xNiwxLjgyTDEzLjM2LDE2WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEgLTEpIi8+PC9zdmc+") no-repeat center/cover; }
      .node-type-project .ad-gallery .ad-image-wrapper .ad-prev .ad-prev-image:hover {
        background: #ffffff url("data:image/svg+xml;utf8;base64,PHN2ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDg3Y2E7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5kYTE0X2Fycm93IHJvbGxvdmVyIGxlZnQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE2LDFBMTUsMTUsMCwxLDAsMzEsMTYsMTUsMTUsMCwwLDAsMTYsMVptMi41MywxOS43MWExLjM1LDEuMzUsMCwwLDEsLjEzLDEuODIsMS4xNywxLjE3LDAsMCwxLTEuNzEuMTNsLTYuMjEtNS43MWExLjI4LDEuMjgsMCwwLDEtLjM1LTAuNjFzMC0uMDcsMC0wLjExYTEuNDYsMS40NiwwLDAsMSwwLS42bDAtLjA5YTEuMjcsMS4yNywwLDAsMSwuMzYtMC42MUwxNyw5LjMzYTEuMTcsMS4xNywwLDAsMSwxLjcxLjE2LDEuMzQsMS4zNCwwLDAsMS0uMTYsMS44MkwxMy4zNiwxNloiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xIC0xKSIvPjwvc3ZnPg==") no-repeat center/cover; }
    .node-type-project .ad-gallery .ad-image-wrapper .ad-next .ad-next-image {
      display: block !important;
      opacity: 1 !important;
      -webkit-border-radius: 50%;
         -moz-border-radius: 50%;
              border-radius: 50%;
      width: 30px;
      height: 30px;
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s;
      background: #ffffff url("data:image/svg+xml;utf8;base64,PHN2ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDk0ZGU7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5kYTE0X2Fycm93IGRlZmF1bHQgcmlnaHQ8L3RpdGxlPjxwYXRoIGNsYXNzPSJjbHMtMSIgZD0iTTE2LDFBMTUsMTUsMCwxLDAsMzEsMTYsMTUsMTUsMCwwLDAsMTYsMVptNS42NCwxNS4zOCwwLDAuMDlhMS4yNywxLjI3LDAsMCwxLS4zNi42MUwxNSwyMi42N2ExLjE3LDEuMTcsMCwwLDEtMS43MS0uMTYsMS4zNCwxLjM0LDAsMCwxLC4xNi0xLjgyTDE4LjY0LDE2bC01LjE3LTQuNzVhMS4zNSwxLjM1LDAsMCwxLS4xMy0xLjgyLDEuMTcsMS4xNywwLDAsMSwxLjcxLS4xM2w2LjIxLDUuNzFhMS4yOCwxLjI4LDAsMCwxLC4zNS42MWwwLDAuMTFBMS40NiwxLjQ2LDAsMCwxLDIxLjY0LDE2LjM4WiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEgLTEpIi8+PC9zdmc+") no-repeat center/cover; }
      .node-type-project .ad-gallery .ad-image-wrapper .ad-next .ad-next-image:hover {
        background: url("data:image/svg+xml;utf8;base64,PHN2ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiMwMDg3Y2E7fTwvc3R5bGU+PC9kZWZzPjx0aXRsZT5kYTE0X2Fycm93IHJvbGxvdmVyIHJpZ2h0PC90aXRsZT48cGF0aCBjbGFzcz0iY2xzLTEiIGQ9Ik0xNiwxQTE1LDE1LDAsMSwwLDMxLDE2LDE1LDE1LDAsMCwwLDE2LDFabTUuNjQsMTUuMzgsMCwwLjA5YTEuMjcsMS4yNywwLDAsMS0uMzYuNjFMMTUsMjIuNjdhMS4xNywxLjE3LDAsMCwxLTEuNzEtLjE2LDEuMzQsMS4zNCwwLDAsMSwuMTYtMS44MkwxOC42NCwxNmwtNS4xNy00Ljc1YTEuMzUsMS4zNSwwLDAsMS0uMTMtMS44MiwxLjE3LDEuMTcsMCwwLDEsMS43MS0uMTNsNi4yMSw1LjcxYTEuMjgsMS4yOCwwLDAsMSwuMzUuNjFzMCwwLjA3LDAsLjExQTEuNDYsMS40NiwwLDAsMSwyMS42NCwxNi4zOFoiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0xIC0xKSIvPjwvc3ZnPg==") no-repeat center/cover; }
    .node-type-project .ad-gallery .ad-controls {
      display: none; }
  
  /*========================
        SERVICES PAGE
  ========================*/
  .page-services .view-services .view-content,
  .page-services .view-services .view-header,
  .page-services .view-services .view-footer {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 1140px; }
    .page-services .view-services .view-content::before, .page-services .view-services .view-content::after,
    .page-services .view-services .view-header::before,
    .page-services .view-services .view-header::after,
    .page-services .view-services .view-footer::before,
    .page-services .view-services .view-footer::after {
      content: ' ';
      display: table; }
    .page-services .view-services .view-content::after,
    .page-services .view-services .view-header::after,
    .page-services .view-services .view-footer::after {
      clear: both; }
  
  .page-services .view-footer {
    text-align: center;
    margin: 75px auto 120px auto; }@media screen and (max-width: 39.9375em) {
 .page-services .view-footer {
        margin: 130px auto 70px auto; } 
}.page-services .view-footer .button-wrapper {
      position: relative; }
      .page-services .view-footer .button-wrapper:after {
        content: '';
        position: absolute;
        display: none;
        top: -60px;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
           -moz-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
             -o-transform: translateX(-50%);
                transform: translateX(-50%);
        width: 40px;
        height: 3px;
        background-color: #dfe4e7;
        -webkit-border-radius: 1.5px;
           -moz-border-radius: 1.5px;
                border-radius: 1.5px; }@media screen and (max-width: 39.9375em) {
 .page-services .view-footer .button-wrapper:after {
            display: inline-block; } 
}.page-services .view-footer .button-link {
      margin: 0 20px; }@media screen and (max-width: 39.9375em) {
 .page-services .view-footer .button-link {
          width: 160px; } 
}.page-services .view-footer .container {
      display: inline-block; }@media screen and (max-width: 39.9375em) {
 .page-services .view-footer .container {
          display: block; }
          .page-services .view-footer .container:last-child .button-link {
            margin-top: 30px; } 
}.page-services .services-preview-info {
    max-width: 720px;
    margin: auto;
    padding-bottom: 60px; }
  
  .page-services .views-row {
    position: relative;
    overflow: hidden;
    background-color: #282f33;
    text-align: center; }
    .page-services .views-row:not(:last-child) {
      margin-bottom: 50px; }@media screen and (max-width: 39.9375em) {
 .page-services .views-row:not(:last-child) {
          margin-bottom: 30px; } 
}.page-services .views-row > img {
      opacity: 0.2; }
    .page-services .views-row .title-section {
      color: #ffffff;
      letter-spacing: 4px;
      position: absolute;
      top: 50%;
      -webkit-transform: translateY(-50%);
         -moz-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
           -o-transform: translateY(-50%);
              transform: translateY(-50%);
      width: 100%; }
    .page-services .views-row .services-image {
      padding-top: 29%;
      opacity: 0.2; }@media screen and (max-width: 63.9375em) {
 .page-services .views-row .services-image {
          padding-top: 40%; } 
}@media screen and (max-width: 39.9375em) {
 .page-services .views-row .services-image {
          padding-top: 50%; } 
}.page-services .views-row .service-hover {
      max-width: 490px;
      margin: auto;
      position: absolute;
      top: 100%;
      left: 50%;
      -webkit-transform: translateX(-50%);
         -moz-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
           -o-transform: translateX(-50%);
              transform: translateX(-50%);
      font-size: 1rem;
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s; }
      .page-services .views-row .service-hover > p {
        margin: 0; }
      .page-services .views-row .service-hover .icon-arrow-right {
        margin: 25px 0 20px 0; }@media screen and (max-width: 39.9375em) {
 .page-services .views-row .service-hover {
          display: none; } 
}.page-services .views-row .service-link {
      background-color: rgba(0, 148, 222, 0.8);
      width: 100%;
      height: 100%;
      display: block;
      position: absolute;
      opacity: 0;
      top: 0;
      left: 0;
      color: #ffffff;
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s; }@media screen and (max-width: 39.9375em) {
 .page-services .views-row .service-link {
          background-color: transparent; } 
}.page-services .views-row:hover .service-link {
      opacity: 1; }
    .page-services .views-row:hover .title-section {
      opacity: 0; }@media screen and (max-width: 39.9375em) {
 .page-services .views-row:hover .title-section {
          opacity: 1; } 
}.page-services .views-row:hover .service-hover {
      top: 50%;
      -webkit-transform: translate(-50%, -50%);
         -moz-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
           -o-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
  
  .node-type-service .field-name-body {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px; }
    .node-type-service .field-name-body::before, .node-type-service .field-name-body::after {
      content: ' ';
      display: table; }
    .node-type-service .field-name-body::after {
      clear: both; }
  
  .field-name-services-footer-button {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 720px;
    text-align: center;
    margin: 25px auto 120px auto; }
    .field-name-services-footer-button::before, .field-name-services-footer-button::after {
      content: ' ';
      display: table; }
    .field-name-services-footer-button::after {
      clear: both; }@media screen and (max-width: 39.9375em) {
 .field-name-services-footer-button {
        margin: 30px auto 70px auto; } 
}.field-name-services-footer-button .button-link {
      margin: 0 20px; }@media screen and (max-width: 39.9375em) {
 .field-name-services-footer-button .button-link {
          width: 160px; } 
}.field-name-services-footer-button .container {
      display: inline-block; }@media screen and (max-width: 39.9375em) {
 .field-name-services-footer-button .container {
          display: block; }
          .field-name-services-footer-button .container:last-child .button-link {
            margin-top: 30px; } 
}/*========================
         FRONT PAGE
  ========================*/
  .block-locale {
    position: absolute;
    bottom: 5%;
    right: 5%; }
  
  .front {
    /*--------------------OUR SERVICES--------------------*/
    /*--------------------OUR SERVICES--------------------*/
    /*--------------------RECENT PROJECTS--------------------*/
    /*--------------------RECENT PROJECTS--------------------*/
    /*--------------------CLIENTS--------------------*/
    /*--------------------CLIENTS--------------------*/
    /*--------------------CLUTCH BLOCK--------------------*/
    /*--------------------CLUTCH BLOCK--------------------*/
    /*--------------------GOODFIRMS BLOCK--------------------*/
    /*--------------------GOODFIRMS BLOCK--------------------*/ }
    .front .header {
      width: 100%;
      height: 100vh;
      background: url(https://da-14.com/sites/all/themes/da14/images/public/front_page/front_bg.jpg) no-repeat center/cover;
      position: relative;
      overflow: hidden;
      min-height: 600px; }@media screen and (max-width: 41.875em) and (orientation: landscape) {
 .front .header {
      height: 600px; } 
}@media screen and (max-width: 46.25em) {
 .front .header {
          background: url(https://da-14.com/sites/all/themes/da14/images/public/front_page/front_bg-mobile.jpg) no-repeat center/cover; } 
}.front .header .logo {
        opacity: 0.2;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        -moz-transition: all .5s;
        transition: all .5s; }@media screen and (max-width: 39.9375em) {
 .front .header .logo {
            opacity: 1; } 
}.front .header .logo:hover {
          opacity: 1; }
      .front .header .big-logo-wrapper {
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        -webkit-transform: translateY(-50%);
           -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
             -o-transform: translateY(-50%);
                transform: translateY(-50%);
        text-align: center; }@media screen and (max-width: 46.25em) {
 .front .header .big-logo-wrapper {
            top: 65%;
            -webkit-transform: translateY(-65%);
               -moz-transform: translateY(-65%);
                -ms-transform: translateY(-65%);
                 -o-transform: translateY(-65%);
                    transform: translateY(-65%); } 
}@media screen and (max-width: 46.25em) {
 .front .header .big-logo-wrapper .big-logo {
            display: none; } 
}.front .header .big-logo-wrapper .front-title {
          margin-top: 65px; }
          .front .header .big-logo-wrapper .front-title > h1 {
            font-size: 1.625rem;
            color: #ffffff;
            position: relative;
            display: inline-block;
            margin: 0;
            text-transform: uppercase;
            letter-spacing: 5px; }@media screen and (max-width: 46.25em) {
 .front .header .big-logo-wrapper .front-title > h1 {
                font-size: 1.25rem; } 
}.front .header .big-logo-wrapper .front-title > h1 br {
              display: none; }
            .front .header .big-logo-wrapper .front-title > h1:before, .front .header .big-logo-wrapper .front-title > h1:after {
              content: '';
              position: absolute;
              top: 50%;
              -webkit-transform: translateY(-50%);
                 -moz-transform: translateY(-50%);
                  -ms-transform: translateY(-50%);
                   -o-transform: translateY(-50%);
                      transform: translateY(-50%);
              display: inline-block;
              height: 3px;
              background-color: #ffffff;
              opacity: 0.2;
              -webkit-border-radius: 1.5px;
                 -moz-border-radius: 1.5px;
                      border-radius: 1.5px;
              width: 40px; }@media screen and (max-width: 46.25em) {
 .front .header .big-logo-wrapper .front-title > h1:before, .front .header .big-logo-wrapper .front-title > h1:after {
                  display: none; } 
}.front .header .big-logo-wrapper .front-title > h1:before {
              right: -60px; }
            .front .header .big-logo-wrapper .front-title > h1:after {
              left: -60px; }@media screen and (max-width: 46.25em) {
 .front .header .big-logo-wrapper .front-title > h1 .desktop {
                display: none; } 
}.front .header .big-logo-wrapper .front-title > h1 .mobile {
              display: none; }@media screen and (max-width: 46.25em) {
 .front .header .big-logo-wrapper .front-title > h1 .mobile {
                  display: block; } 
}.front .header .big-logo-wrapper .underline {
          margin: 0;
          margin-top: 22px;
          display: inline-block;
          height: 3px;
          background-color: #ffffff;
          opacity: 0.2;
          -webkit-border-radius: 1.5px;
             -moz-border-radius: 1.5px;
                  border-radius: 1.5px;
          width: 40px; }@media screen and (max-width: 46.25em) {
 .front .header .big-logo-wrapper .underline {
              display: none; } 
}.front .header .d,
      .front .header .a,
      .front .header .n-1,
      .front .header .n-4 {
        display: inline-block; }
      .front .header .d {
        -webkit-transform: translateY(500%);
           -moz-transform: translateY(500%);
            -ms-transform: translateY(500%);
             -o-transform: translateY(500%);
                transform: translateY(500%);
        -webkit-transition: all 2s;
        -o-transition: all 2s;
        -moz-transition: all 2s;
        transition: all 2s; }
      .front .header .a {
        margin-left: -170px;
        -webkit-transform: translateY(-500%);
           -moz-transform: translateY(-500%);
            -ms-transform: translateY(-500%);
             -o-transform: translateY(-500%);
                transform: translateY(-500%);
        -webkit-transition: all 1.5s;
        -o-transition: all 1.5s;
        -moz-transition: all 1.5s;
        transition: all 1.5s; }
      .front .header .n-1 {
        margin-left: -30px;
        -webkit-transform: translateY(500%);
           -moz-transform: translateY(500%);
            -ms-transform: translateY(500%);
             -o-transform: translateY(500%);
                transform: translateY(500%);
        -webkit-transition: all 1.7s;
        -o-transition: all 1.7s;
        -moz-transition: all 1.7s;
        transition: all 1.7s; }
      .front .header .n-4 {
        margin-left: 30px;
        -webkit-transform: translateY(-500%);
           -moz-transform: translateY(-500%);
            -ms-transform: translateY(-500%);
             -o-transform: translateY(-500%);
                transform: translateY(-500%);
        -webkit-transition: all 1s;
        -o-transition: all 1s;
        -moz-transition: all 1s;
        transition: all 1s; }
      .front .header.animated .d {
        -webkit-transform: translateY(0);
           -moz-transform: translateY(0);
            -ms-transform: translateY(0);
             -o-transform: translateY(0);
                transform: translateY(0); }
      .front .header.animated .a {
        -webkit-transform: translateY(0);
           -moz-transform: translateY(0);
            -ms-transform: translateY(0);
             -o-transform: translateY(0);
                transform: translateY(0); }
      .front .header.animated .n-1 {
        -webkit-transform: translateY(0);
           -moz-transform: translateY(0);
            -ms-transform: translateY(0);
             -o-transform: translateY(0);
                transform: translateY(0); }
      .front .header.animated .n-4 {
        -webkit-transform: translateY(0);
           -moz-transform: translateY(0);
            -ms-transform: translateY(0);
             -o-transform: translateY(0);
                transform: translateY(0); }
    .front .our_services {
      text-align: center;
      padding: 80px 0 105px 0; }
      .front .our_services .number-wrapper {
        max-width: 75rem;
        margin-left: auto;
        margin-right: auto;
        padding: 130px 0 80px 0; }
        .front .our_services .number-wrapper::before, .front .our_services .number-wrapper::after {
          content: ' ';
          display: table; }
        .front .our_services .number-wrapper::after {
          clear: both; }@media screen and (max-width: 41.875em) and (orientation: landscape) {
 .front .our_services .number-wrapper {
      padding: 40px 15px; } 
}@media screen and (max-width: 39.9375em) {
 .front .our_services .number-wrapper {
            padding: 40px 15px; } 
}.front .our_services .number-wrapper .number {
          width: 25%;
          float: left;
          padding-left: 0.625rem;
          padding-right: 0.625rem;
          position: relative;
          overflow: hidden; }@media screen and (min-width: 40em) {
 .front .our_services .number-wrapper .number {
              padding-left: 0.9375rem;
              padding-right: 0.9375rem; } 
}.front .our_services .number-wrapper .number:last-child:not(:first-child) {
            float: right; }@media screen and (max-width: 63.9375em) {
 .front .our_services .number-wrapper .number {
              width: 50%;
              float: left;
              padding-left: 0.625rem;
              padding-right: 0.625rem; } 
}@media screen and (max-width: 63.9375em) and (min-width: 40em) {
 .front .our_services .number-wrapper .number {
        padding-left: 0.9375rem;
        padding-right: 0.9375rem; } 
}@media screen and (max-width: 63.9375em) {
 .front .our_services .number-wrapper .number:last-child:not(:first-child) {
                float: right; } 
}@media screen and (max-width: 30em) {
 .front .our_services .number-wrapper .number {
              max-height: 154px; } 
}@media screen and (max-width: 39.9375em) {
 .front .our_services .number-wrapper .number .services-more-link-mobile {
              position: absolute;
              top: 0;
              left: 0;
              width: 100%;
              height: 100%;
              display: block;
              z-index: 10; } 
}.front .our_services .number-wrapper .number .services-link {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%; }
          .front .our_services .number-wrapper .number .info-hover {
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            padding: 0 20px;
            -webkit-transition: all .5s;
            -o-transition: all .5s;
            -moz-transition: all .5s;
            transition: all .5s; }
            .front .our_services .number-wrapper .number .info-hover .services-info {
              color: #606d74;
              margin-bottom: 25px;
              line-height: 1.5; }
            .front .our_services .number-wrapper .number .info-hover .services-more-link {
              padding: 4px 20px 5px; }
            .front .our_services .number-wrapper .number .info-hover:focus {
              top: 100%; }
          .front .our_services .number-wrapper .number .wrapper {
            position: absolute;
            top: 50%;
            left: 0;
            width: 100%;
            -webkit-transform: translateY(-50%);
               -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                 -o-transform: translateY(-50%);
                    transform: translateY(-50%);
            -webkit-transition: all .5s;
            -o-transition: all .5s;
            -moz-transition: all .5s;
            transition: all .5s; }
            .front .our_services .number-wrapper .number .wrapper:focus {
              top: -100%;
              -webkit-transform: translateY(0);
                 -moz-transform: translateY(0);
                  -ms-transform: translateY(0);
                   -o-transform: translateY(0);
                      transform: translateY(0); }
            .front .our_services .number-wrapper .number .wrapper > p {
              margin: 0;
              color: #282f33; }@media screen and (max-width: 63.9375em) {
 .front .our_services .number-wrapper .number .wrapper > p {
                  font-size: 1.5625rem; } 
}@media screen and (min-width: 40em) {
 .front .our_services .number-wrapper .number .wrapper > p:last-of-type {
                  padding-top: 12px; } 
}.front .our_services .number-wrapper .number .wrapper > p:last-of-type.uppercase {
                padding-top: 0; }
              .front .our_services .number-wrapper .number .wrapper > p.uppercase {
                color: #282f33; }@media screen and (max-width: 63.9375em) {
 .front .our_services .number-wrapper .number .wrapper > p.uppercase {
                    font-size: 1.5625rem; } 
}@media screen and (max-width: 30em) {
 .front .our_services .number-wrapper .number .wrapper > p.uppercase {
                    font-size: 0.875rem; } 
}.front .our_services .number-wrapper .number:hover:not(:focus) {
            cursor: pointer; }
            .front .our_services .number-wrapper .number:hover:not(:focus) .wrapper {
              top: -100%;
              -webkit-transform: translateY(0);
                 -moz-transform: translateY(0);
                  -ms-transform: translateY(0);
                   -o-transform: translateY(0);
                      transform: translateY(0); }@media screen and (max-width: 39.9375em) {
 .front .our_services .number-wrapper .number:hover:not(:focus) .wrapper {
                  top: 50%;
                  -webkit-transform: translateY(-50%);
                     -moz-transform: translateY(-50%);
                      -ms-transform: translateY(-50%);
                       -o-transform: translateY(-50%);
                          transform: translateY(-50%); } 
}.front .our_services .number-wrapper .number:hover:not(:focus) .info-hover {
              top: 50%;
              -webkit-transform: translateY(-50%);
                 -moz-transform: translateY(-50%);
                  -ms-transform: translateY(-50%);
                   -o-transform: translateY(-50%);
                      transform: translateY(-50%); }@media screen and (max-width: 63.9375em) {
 .front .our_services .number-wrapper .number.third, .front .our_services .number-wrapper .number.fourth {
              margin-top: 45px; } 
}.front .recent-projects {
      text-align: center; }
      .front .recent-projects .title-wrapper {
        position: relative;
        padding-bottom: 40px; }@media screen and (max-width: 39.9375em) {
 .front .recent-projects .title-wrapper {
            font-size: 1.25rem; } 
}.front .recent-projects .title-section {
        display: inline-block; }
      .front .recent-projects .all-projects {
        position: absolute;
        right: 15px;
        background-color: #eff1f1;
        color: #282f33;
        font-size: 0.8125rem;
        padding: 5px 8px; }
        .front .recent-projects .all-projects:hover {
          background-color: #e3e8e8; }
    .front .clients-info {
      max-width: 75rem;
      margin-left: auto;
      margin-right: auto;
      text-align: center;
      padding: 105px 0 95px 0; }
      .front .clients-info::before, .front .clients-info::after {
        content: ' ';
        display: table; }
      .front .clients-info::after {
        clear: both; }
      .front .clients-info .title-section {
        margin: 0; }
      .front .clients-info .icon-quote {
        margin: 17px 0 30px 0; }
      .front .clients-info .our-clients-say {
        max-width: 75rem;
        margin-left: auto;
        margin-right: auto; }
        .front .clients-info .our-clients-say::before, .front .clients-info .our-clients-say::after {
          content: ' ';
          display: table; }
        .front .clients-info .our-clients-say::after {
          clear: both; }
      .front .clients-info .quote-wrapper {
        width: 100%;
        float: left;
        padding-left: 0.625rem;
        padding-right: 0.625rem; }@media screen and (min-width: 40em) {
 .front .clients-info .quote-wrapper {
            padding-left: 0.9375rem;
            padding-right: 0.9375rem; } 
}.front .clients-info .quote-wrapper:last-child:not(:first-child) {
          float: right; }
      .front .clients-info .quote {
        color: #282f33;
        text-transform: none;
        margin: 0;
        line-height: 1.3;
        font-weight: normal;
        white-space: normal;
        word-break: break-word; }@media screen and (max-width: 63.9375em) {
 .front .clients-info .quote {
            font-size: 1rem; } 
}.front .clients-info .author {
        color: #6c7376;
        margin-top: 25px;
        display: inline-block; }
      .front .clients-info .swiper-wrapper {
        -webkit-box-align: center;
        -webkit-align-items: center;
           -moz-box-align: center;
            -ms-flex-align: center;
                align-items: center; }
    .front .clutch-wrapper {
      max-width: 75rem;
      width: 100%;
      position: fixed;
      bottom: 180px;
      left: 50%;
      z-index: 20;
      -webkit-transform: translateX(-50%);
         -moz-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
           -o-transform: translateX(-50%);
              transform: translateX(-50%); }@media screen and (max-width: 39.9375em) {
 .front .clutch-wrapper {
          right: 10px;
          bottom: 100px;
          top: auto;
          left: auto;
          -webkit-transform: translateX(0);
             -moz-transform: translateX(0);
              -ms-transform: translateX(0);
               -o-transform: translateX(0);
                  transform: translateX(0); } 
}.front .clutch a {
      display: block;
      text-align: center;
      background-color: #0094de; }
    .front .clutch h4 {
      margin-bottom: 0;
      color: #ffffff; }
    .front .clutch .to-upper {
      text-transform: uppercase; }
    .front .clutch .clutch-img {
      display: inline-block;
      background: url("https://clutch.co/badges/2018/2017_We_Deliver_White.png") center no-repeat;
      -moz-background-size: contain;
        -o-background-size: contain;
           background-size: contain; }
    .front section.clutch a {
      padding: 34px 0; }
    .front section.clutch h4 {
      font-size: 1.25rem; }
    .front section.clutch .clutch-img {
      width: 6.5625rem;
      height: 1.875rem;
      margin-left: 10px; }
    .front div.clutch {
      position: absolute;
      right: 0.875rem;
      bottom: 0;
      width: 7.1875rem;
      height: 7.1875rem;
      -webkit-border-radius: 3px;
         -moz-border-radius: 3px;
              border-radius: 3px; }@media screen and (max-width: 39.9375em) {
 .front div.clutch {
          right: 0;
          width: 5rem;
          height: 5rem; } 
}.front div.clutch a {
        width: 100%;
        height: 100%;
        -webkit-border-radius: inherit;
           -moz-border-radius: inherit;
                border-radius: inherit;
        background: url("https://clutch.co/badges/2018/2017_We_Deliver_White.png") no-repeat center/cover; }
      .front div.clutch h4 {
        width: 100%;
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
           -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
             -o-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        font-size: 0.9375rem;
        display: none; }
      .front div.clutch .clutch-img {
        width: 4.4375rem;
        height: 1.25rem;
        margin-top: 4px; }
    .front .goodfirms-wrapper {
      max-width: 75rem;
      width: 100%;
      position: fixed;
      bottom: 50px;
      left: 50%;
      z-index: 20;
      -webkit-transform: translateX(-50%);
         -moz-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
           -o-transform: translateX(-50%);
              transform: translateX(-50%); }@media screen and (max-width: 39.9375em) {
 .front .goodfirms-wrapper {
          right: 10px;
          bottom: 10px;
          top: auto;
          left: auto;
          -webkit-transform: translateX(0);
             -moz-transform: translateX(0);
              -ms-transform: translateX(0);
               -o-transform: translateX(0);
                  transform: translateX(0); } 
}.front .goodfirms a {
      display: block;
      text-align: center;
      background-color: #0094de; }
    .front section.goodfirms a {
      padding: 34px 0; }
    .front div.goodfirms {
      position: absolute;
      right: 0.875rem;
      bottom: 0;
      width: 7.1875rem;
      height: 7.1875rem;
      -webkit-border-radius: 3px;
         -moz-border-radius: 3px;
              border-radius: 3px; }@media screen and (max-width: 39.9375em) {
 .front div.goodfirms {
          right: 0;
          width: 5rem;
          height: 5rem; } 
}.front div.goodfirms a {
        width: 100%;
        height: 100%;
        -webkit-border-radius: inherit;
           -moz-border-radius: inherit;
                border-radius: inherit;
        background: url("https://goodfirms.s3.amazonaws.com/badges/normal-badge/view-profile.svg") no-repeat center/cover; }
  
  /*Start: search result*/
  .page-search [type="submit"] {
    text-align: center;
    border: 2px solid #0094de;
    padding: 10px 20px;
    -webkit-border-radius: 30px;
       -moz-border-radius: 30px;
            border-radius: 30px;
    cursor: pointer;
    background: none; }
  
  .page-search #page-title {
    font-size: 0; }
    .page-search #page-title:before {
      content: 'Search results';
      font-size: 1.875rem; }
    .page-search #page-title:after {
      -webkit-transform: translateX(-100%);
         -moz-transform: translateX(-100%);
          -ms-transform: translateX(-100%);
           -o-transform: translateX(-100%);
              transform: translateX(-100%); }
  
  .page-search .content h2 {
    display: none; }
  
  .page-search .search-form {
    float: left;
    width: 100%; }
    .page-search .search-form .search-advanced .criterion {
      float: left;
      width: 100%; }
      .page-search .search-form .search-advanced .criterion .form-type-textfield {
        padding: 0 1em;
        width: 33.3333%;
        float: left; }@media screen and (max-width: 991px) {
 .page-search .search-form .search-advanced .criterion .form-type-textfield {
            width: 100%; } 
}.page-search .search-form .search-advanced .criterion .form-type-checkboxes {
        width: 100%;
        float: left; }
        .page-search .search-form .search-advanced .criterion .form-type-checkboxes .form-type-checkbox {
          float: left;
          width: auto; }@media screen and (max-width: 991px) {
 .page-search .search-form .search-advanced .criterion .form-type-checkboxes .form-type-checkbox {
              width: 20%; } 
}@media screen and (max-width: 767px) {
 .page-search .search-form .search-advanced .criterion .form-type-checkboxes .form-type-checkbox {
              width: 33.3333%; } 
}@media screen and (max-width: 500px) {
 .page-search .search-form .search-advanced .criterion .form-type-checkboxes .form-type-checkbox {
              width: 50%; } 
}.page-search .search-form #edit-basic {
      float: left;
      width: 100%;
      margin: 0 0 40px; }
      .page-search .search-form #edit-basic .form-item-keys {
        float: left;
        width: 100%;
        margin: 0 -100px 0 0;
        padding: 0 100px 0 0; }
      .page-search .search-form #edit-basic [type="submit"] {
        position: relative;
        top: 22px;
        float: right; }
    .page-search .search-form .search-advanced {
      max-height: 60px;
      overflow: hidden;
      -webkit-transition: all 1s ease 0s;
      -o-transition: all 1s ease 0s;
      -moz-transition: all 1s ease 0s;
      transition: all 1s ease 0s;
      height: auto; }
      .page-search .search-form .search-advanced.active {
        max-height: 600px;
        -webkit-transition: all 1s ease 0s;
        -o-transition: all 1s ease 0s;
        -moz-transition: all 1s ease 0s;
        transition: all 1s ease 0s; }
      .page-search .search-form .search-advanced legend {
        text-align: center;
        border: 3px solid #0094de;
        padding: 10px 20px;
        -webkit-border-radius: 30px;
           -moz-border-radius: 30px;
                border-radius: 30px;
        cursor: pointer; }
  
  .page-search .search-results li {
    margin-bottom: 1em;
    float: left;
    width: -webkit-calc(50% - 2em);
    width: -moz-calc(50% - 2em);
    width: calc(50% - 2em);
    margin-right: 1em;
    margin-left: 1em;
    background: #282f33; }@media screen and (max-width: 991px) {
 .page-search .search-results li {
        width: 100%;
        margin-right: 0;
        margin-left: 0; } 
}.page-search .search-results li .title {
      font-size: 2.2em;
      height: 112px;
      overflow: hidden;
      padding: 0 1em; }@media screen and (max-width: 991px) {
 .page-search .search-results li .title {
          height: auto; } 
}.page-search .search-results li .title a {
        color: #a4b0b7;
        font-family: 'bariol_lightlight'; }
    .page-search .search-results li .search-snippet-info {
      position: relative;
      padding: 0 1em; }
      .page-search .search-results li .search-snippet-info p {
        color: #a4b0b7; }
        .page-search .search-results li .search-snippet-info p.search-snippet {
          height: 100px;
          overflow: hidden; }@media screen and (max-width: 991px) {
 .page-search .search-results li .search-snippet-info p.search-snippet {
              height: auto; } 
}.page-search .content {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 71.25rem; }
    .page-search .content::before, .page-search .content::after {
      content: ' ';
      display: table; }
    .page-search .content::after {
      clear: both; }
  
  /*End: search result*/
  /*End: pages*/
  /*Start: components*/
  /*Start: ui autocomplete*/
  .webform-client-form select {
    background: transparent;
    border: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background: transparent;
    position: relative;
    font-family: "PT Sans",sans-serif;
    border-bottom: 3px solid #0094de;
    color: #fff;
    margin: 0 0 15px;
    display: inline-block;
    width: 100%; }@media screen and (max-width: 51.875em) {
 .webform-client-form select {
        margin-bottom: 5px; } 
}.webform-client-form select option {
      color: #000;
      border-bottom-color: rgba(255, 255, 255, 0.2); }
  
  /*End: ui autocomplete*/
  /*Start: search*/
  #block-search-form {
    clear: right;
    float: right; }@media screen and (max-width: 639px) {
 #block-search-form {
        position: absolute;
        top: 43px;
        right: 20px; } 
}#block-search-form .form-item {
      float: left;
      width: 280px;
      margin: 0 10px; }
    #block-search-form .form-actions {
      float: left;
      margin: 15px 0 0; }
      #block-search-form .form-actions input {
        border: none;
        background-color: #fff;
        font-size: .8125rem;
        padding: 1px 29px;
        margin: 0;
        line-height: 20px;
        padding: 0;
        color: #fff;
        background: transparent url(https://da-14.com/sites/all/themes/da14/images/magnifying-glass.png) no-repeat 0 0/cover;
        -moz-background-size: cover;
          -o-background-size: cover;
             background-size: cover;
        text-indent: -999px;
        width: 20px;
        height: 20px; }
  
  .node-type-project #block-search-form .form-actions input,
  .node-type-service #block-search-form .form-actions input,
  .node-type-article #block-search-form .form-actions input,
  .page-node-161 #block-search-form .form-actions input,
  .page-portfolio #block-search-form .form-actions input,
  .page-services #block-search-form .form-actions input,
  .page-blog #block-search-form .form-actions input,
  .page-search #block-search-form .form-actions input {
    background: transparent url(https://da-14.com/sites/all/themes/da14/images/magnifying-glass-dark.png) no-repeat 0 0/cover; }
  
  .node-type-project .form-item-search-block-form .form-text,
  .node-type-service .form-item-search-block-form .form-text,
  .node-type-article .form-item-search-block-form .form-text,
  .page-node-161 .form-item-search-block-form .form-text,
  .page-portfolio .form-item-search-block-form .form-text,
  .page-services .form-item-search-block-form .form-text,
  .page-blog .form-item-search-block-form .form-text,
  .page-search .form-item-search-block-form .form-text {
    color: #000 !important; }
  
  .form-item-search-block-form .form-text {
    color: #fff !important; }
  
  /*End: search*/
  /*Start: ui autocomplete*/
  .ui-autocomplete li a {
    color: #eaeef0;
    font-size: 14px; }
  
  /*End: ui autocomplete*/
  /*Start: next & prev buttons*/
  #prevnext-previous {
    float: left;
    margin: 0 0 20px; }
  
  #prevnext-next {
    float: right;
    margin: 0 0 20px; }
  
  /*End: next & prev buttons*/
  /*Start: share buttons*/
  .a2a_button_facebook,
  .a2a_button_linkedin,
  .a2a_button_twitter,
  .a2a_button_google_plus {
    background: rgba(0, 0, 0, 0.81) !important;
    float: none !important;
    display: inline-block !important;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    width: 30px;
    margin: 0 5px;
    height: 30px;
    position: relative; }
    .a2a_button_facebook span,
    .a2a_button_linkedin span,
    .a2a_button_twitter span,
    .a2a_button_google_plus span {
      background: none !important;
      display: block !important; }
      .a2a_button_facebook span svg,
      .a2a_button_linkedin span svg,
      .a2a_button_twitter span svg,
      .a2a_button_google_plus span svg {
        width: 24px !important;
        /* top: 4px !important; */
        position: absolute;
        top: 2px;
        right: 0;
        bottom: 0;
        left: 0; }
  
  /*End: share buttons*/
  /*Start: pagination*/@media screen and (max-width: 600px) {
 .item-list .pager li {
      margin: 0;
      display: none; }
      .item-list .pager li.pager-next, .item-list .pager li.last, .item-list .pager li.first, .item-list .pager li.pager-previous, .item-list .pager li:nth-child(2), .item-list .pager li:nth-child(3), .item-list .pager li:nth-child(4) {
        display: block; } 
}.item-list .pager li.pager-previous, .item-list .pager li.pager-next {
    text-transform: capitalize; }@media screen and (max-width: 767px) {
 .item-list .pager li:pager-first, .item-list .pager li:pager-last {
      display: none; } 
}@media screen and (max-width: 420px) {
 .item-list .pager li {
      float: left; } 
}/*End: pagination*/
  /*Start: inputs*/
  .intl-tel-input {
    position: relative; }
    .intl-tel-input .flag-container {
      float: left;
      position: absolute;
      bottom: 20px;
      left: 10px; }
  
  /*End: inputs*/
  /*========================
        ICONS STYLES
  ========================*/
  /*.icon-dou-contact {
      @include sprite($icon-dou-contact);
      &:hover {
          @include sprite($icon-dou-contact-hover);
      }
  }*/
  .arrow-down {
    width: 30px;
    height: 30px; }
    .arrow-down .cls-1 {
      fill: #ffffff;
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s; }
    .arrow-down:hover .cls-1 {
      fill: #0087ca; }
  
  .icon-arrow-down-opacity {
    width: 30px;
    height: 30px; }
    .icon-arrow-down-opacity .cls-1 {
      fill: #ffffff;
      fill-opacity: 0.4;
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s; }
    .icon-arrow-down-opacity:hover .cls-1 {
      fill-opacity: 1;
      fill: #0087ca; }
  
  .social-link {
    display: inline-block; }
  
  .icon-fb-contact,
  .icon-tw-contact,
  .icon-in-contact,
  .icon-inst-contact,
  .icon-clutch-contact,
  .icon-dou-contact,
  .icon-gp-contact {
    width: 37px;
    height: 37px; }@media screen and (max-width: 61.9375em) {
 .icon-fb-contact,
      .icon-tw-contact,
      .icon-in-contact,
      .icon-inst-contact,
      .icon-clutch-contact,
      .icon-dou-contact,
      .icon-gp-contact {
        width: 25px;
        height: 25px; } 
}.icon-fb-contact .cls-1,
    .icon-tw-contact .cls-1,
    .icon-in-contact .cls-1,
    .icon-inst-contact .cls-1,
    .icon-clutch-contact .cls-1,
    .icon-dou-contact .cls-1,
    .icon-gp-contact .cls-1 {
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s;
      fill: #4d5357; }
    .icon-fb-contact .cls-2,
    .icon-tw-contact .cls-2,
    .icon-in-contact .cls-2,
    .icon-inst-contact .cls-2,
    .icon-clutch-contact .cls-2,
    .icon-dou-contact .cls-2,
    .icon-gp-contact .cls-2 {
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s;
      fill: #b2bcc2;
      fill-rule: evenodd; }
    .icon-fb-contact:hover .cls-1,
    .icon-tw-contact:hover .cls-1,
    .icon-in-contact:hover .cls-1,
    .icon-inst-contact:hover .cls-1,
    .icon-clutch-contact:hover .cls-1,
    .icon-dou-contact:hover .cls-1,
    .icon-gp-contact:hover .cls-1 {
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s;
      fill: #b2bcc2; }
    .icon-fb-contact:hover .cls-2,
    .icon-tw-contact:hover .cls-2,
    .icon-in-contact:hover .cls-2,
    .icon-inst-contact:hover .cls-2,
    .icon-clutch-contact:hover .cls-2,
    .icon-dou-contact:hover .cls-2,
    .icon-gp-contact:hover .cls-2 {
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s;
      fill: #4d5357;
      fill-rule: evenodd; }
  
  #footer .icon-fb-footer,
  #footer .icon-tw-footer,
  #footer .icon-in-footer,
  #footer .icon-inst-footer,
  #footer .icon-dou-footer,
  #footer .icon-clutch-footer,
  #footer .icon-gp-footer,
  #footer .icon-clutch-contact {
    width: 37px;
    height: 37px; }@media screen and (max-width: 1030px) {
 #footer .icon-fb-footer,
      #footer .icon-tw-footer,
      #footer .icon-in-footer,
      #footer .icon-inst-footer,
      #footer .icon-dou-footer,
      #footer .icon-clutch-footer,
      #footer .icon-gp-footer,
      #footer .icon-clutch-contact {
        width: 30px;
        height: 30px; } 
}#footer .icon-fb-footer .cls-1,
    #footer .icon-tw-footer .cls-1,
    #footer .icon-in-footer .cls-1,
    #footer .icon-inst-footer .cls-1,
    #footer .icon-dou-footer .cls-1,
    #footer .icon-clutch-footer .cls-1,
    #footer .icon-gp-footer .cls-1,
    #footer .icon-clutch-contact .cls-1 {
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s;
      fill: #c3cbcf; }
    #footer .icon-fb-footer .cls-2,
    #footer .icon-tw-footer .cls-2,
    #footer .icon-in-footer .cls-2,
    #footer .icon-inst-footer .cls-2,
    #footer .icon-dou-footer .cls-2,
    #footer .icon-clutch-footer .cls-2,
    #footer .icon-gp-footer .cls-2,
    #footer .icon-clutch-contact .cls-2 {
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s;
      fill: #ffffff;
      fill-rule: evenodd; }
    #footer .icon-fb-footer:hover .cls-1,
    #footer .icon-tw-footer:hover .cls-1,
    #footer .icon-in-footer:hover .cls-1,
    #footer .icon-inst-footer:hover .cls-1,
    #footer .icon-dou-footer:hover .cls-1,
    #footer .icon-clutch-footer:hover .cls-1,
    #footer .icon-gp-footer:hover .cls-1,
    #footer .icon-clutch-contact:hover .cls-1 {
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s;
      fill: #ffffff; }
    #footer .icon-fb-footer:hover .cls-2,
    #footer .icon-tw-footer:hover .cls-2,
    #footer .icon-in-footer:hover .cls-2,
    #footer .icon-inst-footer:hover .cls-2,
    #footer .icon-dou-footer:hover .cls-2,
    #footer .icon-clutch-footer:hover .cls-2,
    #footer .icon-gp-footer:hover .cls-2,
    #footer .icon-clutch-contact:hover .cls-2 {
      -webkit-transition: all .5s;
      -o-transition: all .5s;
      -moz-transition: all .5s;
      transition: all .5s;
      fill: #c3cbcf;
      fill-rule: evenodd; }
  
  .icon-desktop,
  .icon-watch,
  .icon-people {
    width: 32px;
    height: 32px; }
    .icon-desktop .cls-1,
    .icon-watch .cls-1,
    .icon-people .cls-1 {
      fill: #0094de; }
  
  .icon-arrow-right {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: url("data:image/svg+xml;utf8;base64,PHN2ZyBpZD0iTGF5ZXJfMiIgZGF0YS1uYW1lPSJMYXllciAyIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAzMCAzMCI+PGRlZnM+PHN0eWxlPi5jbHMtMXtmaWxsOiNmZmZ9PC9zdHlsZT48L2RlZnM+PHRpdGxlPmRhMTRfYXJyb3cgZGVmYXVsdCByaWdodDwvdGl0bGU+PHBhdGggY2xhc3M9ImNscy0xIiBkPSJNMTYgMWExNSAxNSAwIDEgMCAxNSAxNUExNSAxNSAwIDAgMCAxNiAxem01LjY0IDE1LjM4di4wOWExLjI3IDEuMjcgMCAwIDEtLjM2LjYxTDE1IDIyLjY3YTEuMTcgMS4xNyAwIDAgMS0xLjcxLS4xNiAxLjM0IDEuMzQgMCAwIDEgLjE2LTEuODJMMTguNjQgMTZsLTUuMTctNC43NWExLjM1IDEuMzUgMCAwIDEtLjEzLTEuODIgMS4xNyAxLjE3IDAgMCAxIDEuNzEtLjEzbDYuMjEgNS43MWExLjI4IDEuMjggMCAwIDEgLjM1LjYxdi4xMWExLjQ2IDEuNDYgMCAwIDEgLjAzLjY1eiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTEgLTEpIi8+PC9zdmc+") no-repeat center/cover; }
  
  .header-logo-img,
  .header-logo-img-black {
    width: 83px;
    height: 25px; }
  
  .header-logo-img .cls-1 {
    fill: #ffffff; }
  
  .header-logo-img-black .cls-1 {
    fill: #000000; }
  
  .footer-logo-img .cls-1 {
    fill: #c4ccd1; }
  
  .icon-quote {
    width: 17px;
    height: 12px; }
    .icon-quote .cls-1 {
      fill: #0094de; }
  
  /*Start: thank you*/
  .page-node-161 .field-name-body {
    text-align: center; }
  
  .page-node-161 .content {
    text-align: center; }
  
  /*End: thank you*/
  /*Ends: components*/
  
  /*# sourceMappingURL=app.css.map *//**/

/* Above code came from sites/all/themes/da14/css/app.css */

