@charset "UTF-8";
/**
 *
 * Folha de Estilo Básica
 * Os estilos serão carregados diretamente no html do site, isso otimizará a performance, porém é importante ser somente o essencial para não ficar muito extenso
 *
 */
/*  Padrão BEM
========================================================================== */
/*----------  Estilos do Tema  ----------*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  overflow-x: hidden;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input::-ms-clear {
  display: none;
}

input::-ms-reveal {
  width: 0;
  height: 0;
  display: none;
}

select::-ms-expand {
  display: none;
}

.bg-blue-gradient {
  position: relative;
}

.bg-blue-gradient:before {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(#bfd6e5), color-stop(#e7f0f6), to(#FFF));
  background: -webkit-linear-gradient(top, #bfd6e5 0%, #e7f0f6, #FFF 50px);
  background: -o-linear-gradient(top, #bfd6e5 0%, #e7f0f6, #FFF 50px);
  background: linear-gradient(to bottom, #bfd6e5 0%, #e7f0f6, #FFF 50px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.4;
}

.bg-blue-gradient--internal:before {
  content: "";
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(#bfd6e5), color-stop(#e7f0f6), to(#FFF));
  background: -webkit-linear-gradient(top, #bfd6e5 0%, #e7f0f6, #FFF 50px);
  background: -o-linear-gradient(top, #bfd6e5 0%, #e7f0f6, #FFF 50px);
  background: linear-gradient(to bottom, #bfd6e5 0%, #e7f0f6, #FFF 50px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 1;
}

.bg-blue-gradient__inner {
  position: relative;
  z-index: 1;
}

@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}

/**
 * Copyright 2015 Google Inc. All Rights Reserved.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
/* Remove the unwanted box around FAB buttons */
/* More info: http://goo.gl/IPwKi */
a, .mdl-accordion, .mdl-button, .mdl-card, .mdl-checkbox, .mdl-dropdown-menu,
.mdl-icon-toggle, .mdl-item, .mdl-radio, .mdl-slider, .mdl-switch, .mdl-tabs__tab {
  -webkit-tap-highlight-color: transparent;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px;
}

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  -webkit-box-sizing: content-box;
     -moz-box-sizing: content-box;
          box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */
}

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
     -moz-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */
}

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bold;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000;
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */
}

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

@-ms-viewport {
  width: device-width;
}

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
       box-sizing: border-box;
  -ms-overflow-style: scrollbar;
}

*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  -moz-box-sizing: inherit;
       box-sizing: inherit;
}

.row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

@media (min-width: 576px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}

@media (min-width: 768px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}

@media (min-width: 992px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}

@media (min-width: 1200px) {
  .row {
    margin-right: -15px;
    margin-left: -15px;
  }
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 576px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 768px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 992px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 1200px) {
  .col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.col {
  -webkit-flex-basis: 0;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}

.col-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 8.333333%;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 16.666667%;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 25%;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 33.333333%;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 41.666667%;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 50%;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 58.333333%;
  -ms-flex: 0 0 58.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 66.666667%;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 75%;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 83.333333%;
  -ms-flex: 0 0 83.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 91.666667%;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

.pull-0 {
  right: auto;
}

.pull-1 {
  right: 8.333333%;
}

.pull-2 {
  right: 16.666667%;
}

.pull-3 {
  right: 25%;
}

.pull-4 {
  right: 33.333333%;
}

.pull-5 {
  right: 41.666667%;
}

.pull-6 {
  right: 50%;
}

.pull-7 {
  right: 58.333333%;
}

.pull-8 {
  right: 66.666667%;
}

.pull-9 {
  right: 75%;
}

.pull-10 {
  right: 83.333333%;
}

.pull-11 {
  right: 91.666667%;
}

.pull-12 {
  right: 100%;
}

.push-0 {
  left: auto;
}

.push-1 {
  left: 8.333333%;
}

.push-2 {
  left: 16.666667%;
}

.push-3 {
  left: 25%;
}

.push-4 {
  left: 33.333333%;
}

.push-5 {
  left: 41.666667%;
}

.push-6 {
  left: 50%;
}

.push-7 {
  left: 58.333333%;
}

.push-8 {
  left: 66.666667%;
}

.push-9 {
  left: 75%;
}

.push-10 {
  left: 83.333333%;
}

.push-11 {
  left: 91.666667%;
}

.push-12 {
  left: 100%;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pull-sm-0 {
    right: auto;
  }
  .pull-sm-1 {
    right: 8.333333%;
  }
  .pull-sm-2 {
    right: 16.666667%;
  }
  .pull-sm-3 {
    right: 25%;
  }
  .pull-sm-4 {
    right: 33.333333%;
  }
  .pull-sm-5 {
    right: 41.666667%;
  }
  .pull-sm-6 {
    right: 50%;
  }
  .pull-sm-7 {
    right: 58.333333%;
  }
  .pull-sm-8 {
    right: 66.666667%;
  }
  .pull-sm-9 {
    right: 75%;
  }
  .pull-sm-10 {
    right: 83.333333%;
  }
  .pull-sm-11 {
    right: 91.666667%;
  }
  .pull-sm-12 {
    right: 100%;
  }
  .push-sm-0 {
    left: auto;
  }
  .push-sm-1 {
    left: 8.333333%;
  }
  .push-sm-2 {
    left: 16.666667%;
  }
  .push-sm-3 {
    left: 25%;
  }
  .push-sm-4 {
    left: 33.333333%;
  }
  .push-sm-5 {
    left: 41.666667%;
  }
  .push-sm-6 {
    left: 50%;
  }
  .push-sm-7 {
    left: 58.333333%;
  }
  .push-sm-8 {
    left: 66.666667%;
  }
  .push-sm-9 {
    left: 75%;
  }
  .push-sm-10 {
    left: 83.333333%;
  }
  .push-sm-11 {
    left: 91.666667%;
  }
  .push-sm-12 {
    left: 100%;
  }
  .offset-sm-0 {
    margin-left: 0%;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pull-md-0 {
    right: auto;
  }
  .pull-md-1 {
    right: 8.333333%;
  }
  .pull-md-2 {
    right: 16.666667%;
  }
  .pull-md-3 {
    right: 25%;
  }
  .pull-md-4 {
    right: 33.333333%;
  }
  .pull-md-5 {
    right: 41.666667%;
  }
  .pull-md-6 {
    right: 50%;
  }
  .pull-md-7 {
    right: 58.333333%;
  }
  .pull-md-8 {
    right: 66.666667%;
  }
  .pull-md-9 {
    right: 75%;
  }
  .pull-md-10 {
    right: 83.333333%;
  }
  .pull-md-11 {
    right: 91.666667%;
  }
  .pull-md-12 {
    right: 100%;
  }
  .push-md-0 {
    left: auto;
  }
  .push-md-1 {
    left: 8.333333%;
  }
  .push-md-2 {
    left: 16.666667%;
  }
  .push-md-3 {
    left: 25%;
  }
  .push-md-4 {
    left: 33.333333%;
  }
  .push-md-5 {
    left: 41.666667%;
  }
  .push-md-6 {
    left: 50%;
  }
  .push-md-7 {
    left: 58.333333%;
  }
  .push-md-8 {
    left: 66.666667%;
  }
  .push-md-9 {
    left: 75%;
  }
  .push-md-10 {
    left: 83.333333%;
  }
  .push-md-11 {
    left: 91.666667%;
  }
  .push-md-12 {
    left: 100%;
  }
  .offset-md-0 {
    margin-left: 0%;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 992px) {
  .col-lg {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pull-lg-0 {
    right: auto;
  }
  .pull-lg-1 {
    right: 8.333333%;
  }
  .pull-lg-2 {
    right: 16.666667%;
  }
  .pull-lg-3 {
    right: 25%;
  }
  .pull-lg-4 {
    right: 33.333333%;
  }
  .pull-lg-5 {
    right: 41.666667%;
  }
  .pull-lg-6 {
    right: 50%;
  }
  .pull-lg-7 {
    right: 58.333333%;
  }
  .pull-lg-8 {
    right: 66.666667%;
  }
  .pull-lg-9 {
    right: 75%;
  }
  .pull-lg-10 {
    right: 83.333333%;
  }
  .pull-lg-11 {
    right: 91.666667%;
  }
  .pull-lg-12 {
    right: 100%;
  }
  .push-lg-0 {
    left: auto;
  }
  .push-lg-1 {
    left: 8.333333%;
  }
  .push-lg-2 {
    left: 16.666667%;
  }
  .push-lg-3 {
    left: 25%;
  }
  .push-lg-4 {
    left: 33.333333%;
  }
  .push-lg-5 {
    left: 41.666667%;
  }
  .push-lg-6 {
    left: 50%;
  }
  .push-lg-7 {
    left: 58.333333%;
  }
  .push-lg-8 {
    left: 66.666667%;
  }
  .push-lg-9 {
    left: 75%;
  }
  .push-lg-10 {
    left: 83.333333%;
  }
  .push-lg-11 {
    left: 91.666667%;
  }
  .push-lg-12 {
    left: 100%;
  }
  .offset-lg-0 {
    margin-left: 0%;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -webkit-flex-basis: 0;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 8.333333%;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 16.666667%;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 25%;
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 33.333333%;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 41.666667%;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 58.333333%;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 66.666667%;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 75%;
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 83.333333%;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 91.666667%;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  .pull-xl-0 {
    right: auto;
  }
  .pull-xl-1 {
    right: 8.333333%;
  }
  .pull-xl-2 {
    right: 16.666667%;
  }
  .pull-xl-3 {
    right: 25%;
  }
  .pull-xl-4 {
    right: 33.333333%;
  }
  .pull-xl-5 {
    right: 41.666667%;
  }
  .pull-xl-6 {
    right: 50%;
  }
  .pull-xl-7 {
    right: 58.333333%;
  }
  .pull-xl-8 {
    right: 66.666667%;
  }
  .pull-xl-9 {
    right: 75%;
  }
  .pull-xl-10 {
    right: 83.333333%;
  }
  .pull-xl-11 {
    right: 91.666667%;
  }
  .pull-xl-12 {
    right: 100%;
  }
  .push-xl-0 {
    left: auto;
  }
  .push-xl-1 {
    left: 8.333333%;
  }
  .push-xl-2 {
    left: 16.666667%;
  }
  .push-xl-3 {
    left: 25%;
  }
  .push-xl-4 {
    left: 33.333333%;
  }
  .push-xl-5 {
    left: 41.666667%;
  }
  .push-xl-6 {
    left: 50%;
  }
  .push-xl-7 {
    left: 58.333333%;
  }
  .push-xl-8 {
    left: 66.666667%;
  }
  .push-xl-9 {
    left: 75%;
  }
  .push-xl-10 {
    left: 83.333333%;
  }
  .push-xl-11 {
    left: 91.666667%;
  }
  .push-xl-12 {
    left: 100%;
  }
  .offset-xl-0 {
    margin-left: 0%;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.section {
  padding-top: 36px;
  padding-bottom: 36px;
}

.section.is-small {
  padding-top: 18px;
  padding-bottom: 18px;
}

.section.is-medium {
  padding-top: 72px;
  padding-bottom: 72px;
}

.section.is-large {
  padding-top: 144px;
  padding-bottom: 144px;
}

@media only screen and (max-width: 1000px) {
  .section.is-large {
    padding-top: 108px;
    padding-bottom: 108px;
  }
}

.section-top {
  padding-top: 36px;
}

.section-top.is-small {
  padding-top: 18px;
}

.section-top.is-medium {
  padding-top: 72px;
}

.section-top.is-large {
  padding-top: 144px;
}

@media only screen and (max-width: 1000px) {
  .section-top.is-large {
    padding-top: 108px;
  }
}

.section-bottom {
  padding-bottom: 36px;
}

.section-bottom.is-small {
  padding-bottom: 18px;
}

.section-bottom.is-medium {
  padding-bottom: 72px;
}

.section-bottom.is-large {
  padding-bottom: 144px;
}

@media only screen and (max-width: 1000px) {
  .section-bottom.is-large {
    padding-bottom: 108px;
  }
}

section {
  width: 100%;
  position: relative;
}

/*  ==========================================================================
  Grid - Layout
  ========================================================================== */
body, * {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body::after, body::before, *::after, *::before {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

.wrapper {
  position: relative;
  z-index: 2;
  -webkit-overflow-scrolling: touch;
  overflow: hidden;
}

body.no-scroll .wrapper, body.modal-open .wrapper {
  -webkit-overflow-scrolling: auto;
}

body.no-scroll .header {
  position: fixed;
}

main {
  position: relative;
  z-index: 1;
}

main.has-border {
  border-bottom: 1px solid rgba(0, 83, 136, 0.4);
}

#main-content {
  min-height: 300px;
}

section, .container {
  position: relative;
  z-index: 2;
}

.row.is-small {
  margin-left: -7px;
  margin-right: -7px;
}

.row.is-small > *[class*="col"] {
  padding-left: 7px;
  padding-right: 7px;
}

.row.is-medium {
  margin-left: -18px;
  margin-right: -18px;
}

.row.is-medium > *[class*="col"] {
  padding-left: 18px;
  padding-right: 18px;
}

.row.is-large {
  margin-left: -24px;
  margin-right: -24px;
}

.row.is-large > *[class*="col"] {
  padding-left: 24px;
  padding-right: 24px;
}

.row.not-gutter {
  margin-left: 0px;
  margin-right: 0px;
}

.row.not-gutter > *[class*="col"] {
  padding-left: 0px;
  padding-right: 0px;
}

.row[class*='middle-'] {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.row .col-auto {
  padding-left: 15px;
  padding-right: 15px;
}

.row.blocks {
  margin: 0 0;
}

.row.blocks {
  margin-left: -5px;
  margin-right: -5px;
}

.row.blocks > *[class*="col"] {
  padding-left: 5px;
  padding-right: 5px;
}

.row.blocks > * {
  margin: 5px 0;
}

.row.blocks a, .row.blocks img {
  display: block;
}

.row.blocks img {
  width: 100%;
}

.row--split .bg-cover {
  min-width: 100vw;
}

.row--split__left {
  position: relative;
}

.row--split__left .bg-cover {
  right: 0;
  left: auto;
}

.row--split__right {
  position: relative;
}

@media only screen and (max-width: 991px) {
  .row.invert-mobile > * {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .row.invert-mobile > *:first-child {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media only screen and (max-width: 767px) {
  .row.invert-mobile-sm > * {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .row.invert-mobile-sm > *:first-child {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media (max-width: 1020px) {
  body.no-scroll {
    overflow: hidden !important;
    height: 100vh;
    -webkit-overflow-scrolling: auto !important;
  }
}

.container {
  max-width: 1200px;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
}

@media only screen and (min-width: 1020px) {
  .container {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.container.is-small {
  max-width: 610px;
}

.container.is-medium {
  max-width: 880px;
}

.container.is-large {
  max-width: 1800px;
}

.ie7 .container {
  zoom: 1;
}

.container:before, .container:after {
  content: "";
  display: table;
}

.container:after {
  clear: both;
}

img:not(.is-original) {
  max-width: 100%;
  height: auto;
  display: inline-block;
}

.image-rounded {
  width: 175px;
  height: 175px;
  border-radius: 100%;
  overflow: hidden;
  margin-top: 15px;
  margin-bottom: 15px;
  position: relative;
}

.image-rounded img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 110%;
  max-height: 110%;
  width: auto;
  height: auto;
}

.image-rounded.image-outline {
  border-radius: 100%;
  overflow: inherit;
}

.image-rounded.image-outline:before {
  border-radius: 100%;
}

.image-rounded.image-outline > * {
  display: block;
  overflow: hidden;
  border-radius: 100%;
}

.image-outline {
  position: relative;
  display: block;
}

.image-outline:before {
  content: "";
  display: block;
  width: -webkit-calc(100% + 18px);
  width: calc(100% + 18px);
  height: -webkit-calc(100% + 18px);
  height: calc(100% + 18px);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border: 1px solid #005388;
}

.text-center .image-rounded, .text-center .image-outline, .center .image-rounded, .center .image-outline {
  margin-left: auto;
  margin-right: auto;
}

.img-cover {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  min-width: 100%;
  min-height: 100%;
  max-width: inherit;
}

body {
  font-family: "Titillium Web", sans-serif;
  font-size: 16px;
  line-height: 1.334;
  font-weight: 400;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
  background: #FFF;
  overflow-x: hidden;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  font-weight: 300;
  color: #016EA7;
}

.h2, h2 {
  font-size: 36px;
}

.h4, .h5, .h6, h4, h5, h6 {
  font-weight: 400;
}

.main-headline {
  position: relative;
  font-size: 1.8125em;
  font-weight: 400;
  padding-top: 23px;
  padding-bottom: 23px;
  margin-bottom: 80px;
}

@media only screen and (max-width: 768px) {
  .main-headline {
    margin-bottom: 50px;
  }
}

.main-headline span {
  position: relative;
}

.headline {
  margin-top: 12px;
  margin-bottom: 45px;
}

p {
  color: #016EA7;
  font-size: 18px;
}

a {
  color: #016EA7;
  -webkit-transition: color 300ms ease-in-out;
  -o-transition: color 300ms ease-in-out;
  transition: color 300ms ease-in-out;
  text-decoration: none;
}

a:hover, a:focus {
  color: #005388;
}

.text-medium {
  font-size: 1em !important;
}

.text-bold {
  font-weight: 600;
}

@media (max-width: 767px) {
  .main-headline {
    color: #FFF;
    font-size: 1.5625em;
    margin-right: -15px;
    margin-left: -15px;
    padding-right: 25px;
    padding-left: 25px;
    top: -1px;
  }
  .main-headline:before, .main-headline:after {
    content: " ";
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: #005388;
  }
  .main-headline span {
    z-index: 1;
  }
}

/*==================================
=            FORMATINGS            =
==================================*/
/*----------  Helpers  ----------*/
.sub-header {
  color: #016EA7;
  font-size: 0.875em;
}

.sub-header.medium {
  font-size: 1.125em;
}

.divider {
  display: inline-block;
  width: 100%;
  clear: both;
  height: 1px;
  background: #9ec8de;
  margin: 40px 0;
}

/*----------  Headers  ----------*/
h1 {
  font-size: 2.625em;
  line-height: 1.5;
  font-weight: 400;
  color: #005388;
  margin-bottom: 50px;
}

h1 + .sub-header {
  margin-top: -45px;
  margin-bottom: 50px;
}

h2 {
  font-size: 2.25em;
  font-weight: 400;
  color: #005388;
  margin-bottom: 19px;
}

h2 + .sub-header {
  margin-top: -18px;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.75em;
  font-weight: 400;
  color: #005388;
  margin-bottom: 26px;
}

h3 + .sub-header {
  margin-top: -21px;
  margin-bottom: 26px;
}

.sub-header {
  font-size: 0.9375em;
}

article {
  /*----------  Headers  ----------*/
}

article p {
  margin-bottom: 20px;
  line-height: 1.5;
  font-size: 1.0625em;
}

article h2 {
  font-weight: 300;
  font-size: 2.125em;
  line-height: 1.3;
  margin: 0 0 38px;
}

article h3 {
  font-weight: 300;
  font-size: 1.625em;
  line-height: 1.3;
  margin: 15px 0 20px;
  color: #005388;
}

article h4 {
  font-weight: 300;
  font-size: 1.375em;
  line-height: 1.3;
  margin: 15px 0 20px;
  color: #4A8EB2;
}

article h5 {
  font-weight: 300;
  font-size: 1.125em;
  line-height: 1.3;
  margin: 10px 0 15px;
  color: #4A8EB2;
}

article ul, article ol {
  margin: 0 0 20px;
  padding: 0;
  color: #016EA7;
}

article ul {
  list-style: none;
}

article ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 30px;
  font-size: 1.0625em;
}

article ul li:before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  border-left: 6px solid #9ec8de;
  margin-right: -6px;
  position: absolute;
  left: 0;
  top: 5px;
}

article blockquote {
  font-size: 2.375em;
  padding: 10px 20px;
  border-left: 4px solid #d6e7f0;
  color: #005388;
  margin: 15px 0 25px;
}

article table {
  width: 100%;
}

article table td, article table th {
  border-bottom: 1px solid #4A8EB2;
  color: #4A8EB2;
  padding: 10px 10px;
  font-size: 14px;
  font-weight: 400;
  text-align: left;
}

article table td:last-child, article table th:last-child {
  text-align: right;
  padding-right: 0;
}

article table td:first-child, article table th:first-child {
  padding-left: 0;
}

/*=====  End of FORMATINGS  ======*/
.section-title {
  font-size: 3.5em;
  color: #005388;
  font-weight: 200;
  margin: 0 0 40px;
}

.section-title.large {
  font-size: 2.5em;
  font-weight: 400;
}

@media only screen and (min-width: 400px) {
  .section-title.large {
    font-size: 3.75em;
  }
}

@media only screen and (min-width: 600px) {
  .section-title.large {
    font-size: 5em;
  }
}

@media only screen and (min-width: 900px) {
  .section-title.large {
    font-size: 7.125em;
  }
}

.section-title.right {
  text-align: right;
}

.section-title.middle {
  -webkit-transform: translateY(-55%);
      -ms-transform: translateY(-55%);
       -o-transform: translateY(-55%);
          transform: translateY(-55%);
  margin-bottom: 0;
}

.section-title small {
  font-size: 18px;
  display: block;
}

.page-title {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 3.25em;
  color: #4E7A96;
  letter-spacing: 0.5em;
  margin: 0 0 33px;
}

.page-title span {
  color: #A29D7C;
}

.page-feature-title {
  margin-bottom: 60px;
}

.page-feature-title .page-title-label {
  margin: 0;
  color: #005388;
  font-size: 1.125em;
}

.page-feature-title .page-title {
  margin: 0;
  color: #4A8EB2;
  font-size: 2.875em;
  line-height: 1.15;
  text-transform: none;
  letter-spacing: normal;
}

@font-face {
  font-family: 'Titillium Web SemiBold';
  src: url("../../media/fonts/Titillium/TitilliumWeb-SemiBold.eot");
  src: url("../../media/fonts/Titillium/TitilliumWeb-SemiBold.eot?#iefix") format("embedded-opentype"), url("../../media/fonts/Titillium/TitilliumWeb-SemiBold.woff2") format("woff2"), url("../../media/fonts/Titillium/TitilliumWeb-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Titillium Web LightItalic';
  src: url("../../media/fonts/Titillium/TitilliumWeb-LightItalic.eot");
  src: url("../../media/fonts/Titillium/TitilliumWeb-LightItalic.eot?#iefix") format("embedded-opentype"), url("../../media/fonts/Titillium/TitilliumWeb-LightItalic.woff2") format("woff2"), url("../../media/fonts/Titillium/TitilliumWeb-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Titillium Web Black';
  src: url("../../media/fonts/Titillium/TitilliumWeb-Black.eot");
  src: url("../../media/fonts/Titillium/TitilliumWeb-Black.eot?#iefix") format("embedded-opentype"), url("../../media/fonts/Titillium/TitilliumWeb-Black.woff2") format("woff2"), url("../../media/fonts/Titillium/TitilliumWeb-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Titillium Web';
  src: url("../../media/fonts/Titillium/TitilliumWeb-Regular.eot");
  src: url("../../media/fonts/Titillium/TitilliumWeb-Regular.eot?#iefix") format("embedded-opentype"), url("../../media/fonts/Titillium/TitilliumWeb-Regular.woff2") format("woff2"), url("../../media/fonts/Titillium/TitilliumWeb-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Titillium Web SemiBoldItalic';
  src: url("../../media/fonts/Titillium/TitilliumWeb-SemiBoldItalic.eot");
  src: url("../../media/fonts/Titillium/TitilliumWeb-SemiBoldItalic.eot?#iefix") format("embedded-opentype"), url("../../media/fonts/Titillium/TitilliumWeb-SemiBoldItalic.woff2") format("woff2"), url("../../media/fonts/Titillium/TitilliumWeb-SemiBoldItalic.woff") format("woff");
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'Titillium Web ExtraLightItalic';
  src: url("../../media/fonts/Titillium/TitilliumWeb-ExtraLightItalic.eot");
  src: url("../../media/fonts/Titillium/TitilliumWeb-ExtraLightItalic.eot?#iefix") format("embedded-opentype"), url("../../media/fonts/Titillium/TitilliumWeb-ExtraLightItalic.woff2") format("woff2"), url("../../media/fonts/Titillium/TitilliumWeb-ExtraLightItalic.woff") format("woff");
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: 'Titillium Web Bold';
  src: url("../../media/fonts/Titillium/TitilliumWeb-Bold.eot");
  src: url("../../media/fonts/Titillium/TitilliumWeb-Bold.eot?#iefix") format("embedded-opentype"), url("../../media/fonts/Titillium/TitilliumWeb-Bold.woff2") format("woff2"), url("../../media/fonts/Titillium/TitilliumWeb-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'Titillium Web Light';
  src: url("../../media/fonts/Titillium/TitilliumWeb-Light.eot");
  src: url("../../media/fonts/Titillium/TitilliumWeb-Light.eot?#iefix") format("embedded-opentype"), url("../../media/fonts/Titillium/TitilliumWeb-Light.woff2") format("woff2"), url("../../media/fonts/Titillium/TitilliumWeb-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Titillium Web Light';
  src: url("../../media/fonts/Titillium/TitilliumWeb-Light.eot");
  src: url("../../media/fonts/Titillium/TitilliumWeb-Light.eot?#iefix") format("embedded-opentype"), url("../../media/fonts/Titillium/TitilliumWeb-Light.woff2") format("woff2"), url("../../media/fonts/Titillium/TitilliumWeb-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Titillium Web BoldItalic';
  src: url("../../media/fonts/Titillium/TitilliumWeb-BoldItalic.eot");
  src: url("../../media/fonts/Titillium/TitilliumWeb-BoldItalic.eot?#iefix") format("embedded-opentype"), url("../../media/fonts/Titillium/TitilliumWeb-BoldItalic.woff2") format("woff2"), url("../../media/fonts/Titillium/TitilliumWeb-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
}

@font-face {
  font-family: 'Titillium Web ExtraLight';
  src: url("../../media/fonts/Titillium/TitilliumWeb-ExtraLight.eot");
  src: url("../../media/fonts/Titillium/TitilliumWeb-ExtraLight.eot?#iefix") format("embedded-opentype"), url("../../media/fonts/Titillium/TitilliumWeb-ExtraLight.woff2") format("woff2"), url("../../media/fonts/Titillium/TitilliumWeb-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'Titillium Web Italic';
  src: url("../../media/fonts/Titillium/TitilliumWeb-Italic.eot");
  src: url("../../media/fonts/Titillium/TitilliumWeb-Italic.eot?#iefix") format("embedded-opentype"), url("../../media/fonts/Titillium/TitilliumWeb-Italic.woff2") format("woff2"), url("../../media/fonts/Titillium/TitilliumWeb-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
}

/**
 *
 * Classes responsivas
 *
 */
.show-mobile {
  display: block;
}

.show-tablet {
  display: none !important;
}

.show-desktop {
  display: none !important;
}

@media screen and (min-width: 600px) {
  .show-mobile {
    display: none !important;
  }
  .show-tablet {
    display: block !important;
  }
}

@media screen and (min-width: 1024px) {
  .show-tablet, .hide-desktop {
    display: none !important;
  }
  .show-desktop {
    display: block !important;
  }
}

@media screen and (max-width: 599px) {
  .hide-mobile {
    display: none !important;
  }
}

@media screen and (max-width: 900px) {
  .hide-tabletNew {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .hide-tablet {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .hide-tablet {
    display: none !important;
  }
}

.header__top {
  font-size: 0.8125em;
  font-weight: 600;
  background-color: #010001;
  padding: 0.38em 0;
  color: #fff;
  position: relative;
  z-index: 1025;
}

.header__top a {
  color: #fff;
}

@media only screen and (min-width: 1024px) {
  .header__top {
    max-height: 29px;
    /*overflow: hidden;*/
  }
}

.header__top--first {
  display: block;
  float: left;
}

.header__top--first i {
  margin-right: 0.6em;
}

.header__top--last {
  text-align: right;
  display: block;
  float: right;
}

.header__top--last:before {
  content: '';
  width: 1px;
  background-color: #2f2d2f;
  height: 29px;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: -5px;
  margin-left: 11.4%;
}

.header__top--last ul {
  padding-left: 0;
  margin-bottom: 0;
  margin-left: -5px;
  list-style-type: none;
  padding-right: 57px;
}

.header__top--last li {
  display: inline-block;
  position: relative;
  padding: 0 0.625em 0 1em;
}

.header__top--last li:before {
  content: " ";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-51%);
      -ms-transform: translateY(-51%);
       -o-transform: translateY(-51%);
          transform: translateY(-51%);
  left: 0;
  width: 1px;
  height: 5px;
  background-color: rgba(1, 110, 167, 0.2);
}

.header__top--last li:first-child:before {
  display: none;
}

.header__top--last li:nth-child(2) {
  padding-right: 1.25em;
}

.header__top--last li:last-child {
  font-size: 0.6875em;
  padding: 0 0 0 2.125em;
}

.header__top--last li:last-child:before {
  height: 26.88px;
}

.header__top--last li .dropdown {
  min-width: 64px;
}

.header__top--last li .dropdown-menu {
  border-color: #d6e7f0;
  left: auto;
  right: 0;
  min-width: 6.875em;
}

.header__top--last li .dropdown-menu li {
  font-size: 0.625em;
  display: list-item;
  padding-right: 0;
  padding-left: 0;
}

.header__top--last li .dropdown-menu li a {
  display: block;
  padding: 3px 20px;
  clear: both;
  line-height: 1.42857143;
  white-space: nowrap;
  font-weight: 600;
  color: #016EA7;
  font-size: 0.875em;
}

.header__top--last li .dropdown-menu li a:hover, .header__top--last li .dropdown-menu li a:focus {
  background-color: transparent;
}

@media (max-width: 1020px) {
  .header {
    background: #005388;
    height: inherit;
    -webkit-transition: height 500ms ease;
    -o-transition: height 500ms ease;
    transition: height 500ms ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 3;
  }
  .header__top {
    padding-top: 0.22em;
    padding-bottom: 0.22em;
    font-size: 13px;
  }
}

/*=====  End of TOP HEADER  ======*/
/*=====  Novo Menu Superior  ======*/
#topo-social {
  margin-top: -6px;
}

#topo-social ul.links {
  padding: 0;
  margin: 0;
}

#topo-social ul.links li {
  margin: 0;
  height: 30px;
  width: 150px;
  line-height: 30px;
  display: inline-block;
  float: left;
  text-align: center;
}

#topo-social ul.links li a {
  -webkit-transform: skew(-15deg);
  -ms-transform: skew(-15deg);
  -o-transform: skew(-15deg);
     transform: skew(-15deg);
  color: #fff;
  text-transform: uppercase;
  font-size: 12px;
  width: 100%;
  padding: 0px;
  margin: 0;
  vertical-align: text-top;
  line-height: 30px;
  display: inline-block;
  float: left;
}

#topo-social ul.links li a span {
  webkit-transform: skew(15deg);
  -ms-transform: skew(15deg);
  -webkit-transform: skew(15deg);
       -o-transform: skew(15deg);
          transform: skew(15deg);
  display: inline-block;
}

#topo-social ul.links li a.bg-blue {
  background-color: #016ea7;
}

#topo-social ul.links li a.bg-darker-blue {
  background-color: #005B9E;
}

#topo-social ul.links li a.bg-light-blue {
  background-color: #00aadb;
}

#topo-social ul.links li a.bg-red {
  background-color: #ed1c24;
}

#topo-social ul.links li a.bg-dark-blue {
  background-color: #1d4d8c;
}

@media (min-width: 768px) and (max-width: 1024px) {
  #topo-social {
    display: none;
  }
  .language-menu {
    width: 100% !important;
    max-width: none;
    -webkit-box-flex: 0;
    -webkit-flex: none;
        -ms-flex: none;
            flex: none;
  }
}

/*=====  Novo Menu Superior  ======*/
#menu-mobile {
  padding: 40px 25px;
  background: #e5f0f6;
}

#menu-mobile .close {
  position: absolute;
  top: -5px;
  right: 15px;
  padding: 15px;
  color: #016EA7;
  font-size: 34px;
  z-index: 10;
}

#menu-mobile .close span {
  font-size: 14px;
  text-transform: uppercase;
  display: inline-block;
  vertical-align: middle;
}

#menu-mobile .close i {
  font-size: inherit;
  display: inline-block;
  vertical-align: middle;
}

#menu-mobile .overlay__body {
  padding: 15px 0;
  max-width: 420px;
  margin: 0 auto;
}

#menu-mobile .nav--vertical {
  text-align: center;
  max-width: 320px;
  margin: 0 auto 30px;
}

#menu-mobile .nav--vertical li {
  font-size: 18px;
  padding: 12px 15px;
}

#menu-mobile .circle {
  display: block;
  width: 40px;
  height: 40px;
  margin: 25px auto;
  border-radius: 50%;
  background: rgba(0, 83, 136, 0.9);
  color: #FFF;
  text-align: center;
  line-height: 36px;
  font-weight: bold;
}

#menu-mobile .link-feature {
  text-decoration: none;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 28px;
  color: #005388;
}

#menu-mobile .link-feature i {
  margin-right: 10px;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
     -moz-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
}

.nav-main {
  position: relative;
  min-height: 92px;
  z-index: 1024;
  background-color: #016EA7;
}

.nav-main .header-holder {
  margin: 0 -15px;
}

.nav-main li {
  position: relative;
  font-size: 15px;
  line-height: 45px;
}

.nav-main li.item-back > a {
  display: block;
  cursor: pointer;
}

.nav-main li.item-back > a span, .nav-main li.item-back > a i {
  line-height: 1;
  display: block;
}

.nav-main li.item-back > a i {
  font-size: 42px;
}

.nav-main a {
  text-decoration: none;
  cursor: pointer;
}

.nav-main .dropdown-toggle:focus {
  outline: 0;
}

@media (min-width: 1021px) and (max-width: 1180px) {
  .nav-main li:nth-child(6) > ul {
    max-width: 786px;
    left: inherit !important;
    right: 0;
  }
  .nav-main li:nth-child(5) > ul {
    left: 0 !important;
    position: fixed;
    top: 107px !important;
    width: 98vw;
    max-width: 1001px;
    margin: 0 1vw;
  }
}

@media (min-width: 1021px) {
  .nav-main li .custom {
    min-width: 497px !important;
  }
  .nav-main li .custom .see-more {
    min-width: -webkit-calc(100% + 30px) !important;
    min-width: calc(100% + 30px) !important;
  }
  .nav-main li .custom .col-sm-7 {
    padding-right: 0;
  }
  .nav-main li:first-child > ul {
    min-width: 990px;
    min-height: 408px;
    left: -120px;
  }
  .nav-main li:first-child > ul .col-line-vertical-nav {
    min-height: 400px;
  }
  .nav-main li:first-child > ul .col-line-vertical-nav:nth-child(2) li, .nav-main li:first-child > ul .col-line-vertical-nav:last-child li {
    height: 370px;
  }
  .nav-main li:first-child > ul .col-line-vertical-nav:nth-child(2) li .illustrative-picture, .nav-main li:first-child > ul .col-line-vertical-nav:last-child li .illustrative-picture {
    max-width: 244px;
  }
  .nav-main li:first-child > ul .col-line-vertical-nav:nth-child(2) li .see-more, .nav-main li:first-child > ul .col-line-vertical-nav:last-child li .see-more {
    min-width: 245px !important;
    bottom: -6px;
  }
  .nav-main li:nth-child(2) > ul {
    min-width: 786px !important;
    min-height: 358px;
    left: -120px;
  }
  .nav-main li:nth-child(2) > ul .col-line-vertical-nav {
    min-height: 350px;
  }
  .nav-main li:nth-child(2) > ul .col-line-vertical-nav:nth-child(2) li, .nav-main li:nth-child(2) > ul .col-line-vertical-nav:last-child li {
    height: 320px;
  }
  .nav-main li:nth-child(2) > ul .col-line-vertical-nav:nth-child(2) li .illustrative-picture, .nav-main li:nth-child(2) > ul .col-line-vertical-nav:last-child li .illustrative-picture {
    max-width: 261px;
  }
  .nav-main li:nth-child(2) > ul .col-line-vertical-nav:nth-child(2) li .see-more, .nav-main li:nth-child(2) > ul .col-line-vertical-nav:last-child li .see-more {
    min-width: 261px !important;
    bottom: -6px;
  }
  .nav-main li:nth-child(5) > ul {
    min-width: 1001px;
    min-height: 356px;
    left: -640px;
  }
  .nav-main li:nth-child(5) > ul .col-line-vertical-nav {
    min-height: 348px;
  }
  .nav-main li:nth-child(5) > ul .col-line-vertical-nav:nth-child(1) {
    min-width: 265px;
  }
  .nav-main li:nth-child(5) > ul .col-line-vertical-nav:nth-child(2), .nav-main li:nth-child(5) > ul .col-line-vertical-nav:nth-child(3), .nav-main li:nth-child(5) > ul .col-line-vertical-nav:last-child {
    max-width: 24%;
    min-width: 245px;
  }
  .nav-main li:nth-child(5) > ul .col-line-vertical-nav:nth-child(2) li, .nav-main li:nth-child(5) > ul .col-line-vertical-nav:nth-child(3) li, .nav-main li:nth-child(5) > ul .col-line-vertical-nav:last-child li {
    height: 318px;
  }
  .nav-main li:nth-child(5) > ul .col-line-vertical-nav:nth-child(2) li .see-more, .nav-main li:nth-child(5) > ul .col-line-vertical-nav:nth-child(3) li .see-more, .nav-main li:nth-child(5) > ul .col-line-vertical-nav:last-child li .see-more {
    min-width: 245px;
    bottom: -6px;
  }
  .nav-main li:nth-child(6) > ul {
    min-width: 786px;
    min-height: 356px;
    left: -500px;
  }
  .nav-main li:nth-child(6) > ul .col-line-vertical-nav {
    min-height: 348px;
  }
  .nav-main li:nth-child(6) > ul .col-line-vertical-nav:nth-child(2) li, .nav-main li:nth-child(6) > ul .col-line-vertical-nav:last-child li {
    height: 306px;
  }
  .nav-main li:nth-child(6) > ul .col-line-vertical-nav:nth-child(2) li .illustrative-picture, .nav-main li:nth-child(6) > ul .col-line-vertical-nav:last-child li .illustrative-picture {
    max-width: 261px;
  }
  .nav-main li:nth-child(6) > ul .col-line-vertical-nav:nth-child(2) li .see-more, .nav-main li:nth-child(6) > ul .col-line-vertical-nav:last-child li .see-more {
    min-width: 261px;
    bottom: -18px;
  }
}

.nav-main li > ul {
  position: absolute;
  top: 100%;
  z-index: 1000;
  float: left;
  padding-top: 5px;
  padding-right: 15px;
  padding-bottom: 3px;
  padding-left: 15px;
  margin: 2px 0 0;
  list-style-image: none;
  list-style-type: none;
  list-style-position: none;
  font-size: 14px;
  text-align: left;
  background-color: #FFF;
  border-radius: 4px;
  opacity: 0;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all .1s ease;
  -o-transition: all .1s ease;
  transition: all .1s ease;
}

.nav-main li > ul .col-line-vertical-nav {
  border-left: 1px solid #9ec8de;
  padding-top: 16px;
  padding-right: 30px;
  padding-bottom: 0;
  padding-left: 30px;
}

.nav-main li > ul .col-line-vertical-nav:first-child {
  border-left: 0;
}

.nav-main li > ul li {
  position: relative;
}

.nav-main li > ul li:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: #9ec8de;
}

.nav-main li > ul li:first-child:before {
  content: " ";
  height: 50%;
  top: auto;
}

.nav-main li > ul li:last-child:before {
  content: " ";
  height: 50%;
  bottom: auto;
}

.nav-main li > ul li > a {
  position: relative;
  display: block;
  padding: 0 0 0 13px;
  line-height: 45px;
  color: #016EA7;
}

.nav-main li > ul li > a:hover, .nav-main li > ul li > a:focus {
  text-decoration: none;
  color: #005388;
}

.nav-main li > ul li > a:before {
  content: " ";
  display: block;
  width: 5px;
  height: 5px;
  background-color: #9ec8de;
  position: absolute;
  top: 50%;
  left: -2px;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.nav-main li > ul li > a:hover:before, .nav-main li > ul li > a:focus:before {
  -webkit-transform: scale(2) translateY(-30%);
      -ms-transform: scale(2) translateY(-30%);
       -o-transform: scale(2) translateY(-30%);
          transform: scale(2) translateY(-30%);
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li:first-child:before,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li:first-child:before,
.nav-main li > ul .col-line-vertical-nav:last-child li:first-child:before {
  display: none;
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li .list-headline,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li .list-headline,
.nav-main li > ul .col-line-vertical-nav:last-child li .list-headline {
  padding-left: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 11px;
  margin-bottom: 15px;
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li .list-headline:before,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li .list-headline:before,
.nav-main li > ul .col-line-vertical-nav:last-child li .list-headline:before {
  display: none;
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li small,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li small,
.nav-main li > ul .col-line-vertical-nav:last-child li small {
  display: block;
  line-height: 1.4;
  color: #016EA7;
  font-size: 90%;
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li .illustrative-picture,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li .illustrative-picture,
.nav-main li > ul .col-line-vertical-nav:last-child li .illustrative-picture {
  position: absolute;
  left: 50%;
  bottom: 39px;
  display: block;
  height: auto;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li .see-more,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li .see-more,
.nav-main li > ul .col-line-vertical-nav:last-child li .see-more {
  position: absolute;
  left: -30px;
  display: block;
  height: 47px;
  background-color: #e5f0f6;
  padding-left: 30px;
  padding-right: 30px;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  font-family: "Titillium Web Bold", sans-serif;
  line-height: 47px;
  margin-top: 0;
  margin-bottom: 0;
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li .see-more:before,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li .see-more:before,
.nav-main li > ul .col-line-vertical-nav:last-child li .see-more:before {
  display: none;
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li .see-more span,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li .see-more span,
.nav-main li > ul .col-line-vertical-nav:last-child li .see-more span {
  display: inline-block;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
  float: right;
  margin-left: 12px;
  position: relative;
  top: 50%;
  font-size: 9px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0 0 0 1px #016EA7;
          box-shadow: 0 0 0 1px #016EA7;
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li .see-more span i,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li .see-more span i,
.nav-main li > ul .col-line-vertical-nav:last-child li .see-more span i {
  position: relative;
  top: 1px;
  left: 1px;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .media {
  border-bottom: 1px solid #9ec8de;
  padding-bottom: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  zoom: 1;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .media:nth-child(4) {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .media .media-left {
  min-width: 66px;
  display: table-cell;
  vertical-align: middle;
  padding-right: 10px;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .media .media-left img {
  float: left;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .media .media-body {
  overflow: hidden;
  zoom: 1;
  width: 10000px;
  display: table-cell;
  vertical-align: top;
  padding-bottom: 0;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .media .media-body small {
  display: block;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .media .media-body .phone-number {
  display: block;
  font-size: 14px;
  color: #00a7ff;
  line-height: 1.3;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .media .media-body .phone-number:hover, .nav-main li > ul .col-line-vertical-nav:last-child li .media .media-body .phone-number:focus {
  color: #00a7ff;
  text-decoration: underline;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .see-more {
  border-bottom-right-radius: 4px;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .see-more:hover {
  background: #005388;
  color: #fff;
}

.nav-main li.open > ul {
  display: block;
  opacity: 1;
}

.nav-main li.open > a {
  outline: 0;
}

.nav-main .dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}

.nav-main ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  margin-top: 21px;
}

.nav-main ul > li {
  position: relative;
  display: block;
  font-family: 'Titillium Web', sans-serif;
}

.nav-main ul > li > a {
  position: relative;
  white-space: nowrap;
  display: block;
  padding: 3px 30px;
  line-height: 20px;
  color: #FFF;
  clear: both;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.nav-main ul > li > a > span {
  position: relative;
  display: inline-block;
  color: #FFF;
}

.nav-main ul > li > a .arrow-down {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 3px;
  vertical-align: middle;
  border-top: 4px dashed #9ec8de;
  border-top: 4px solid \9 palette(brand, light);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.nav-main ul > li:hover > a > span {
  color: #016EA7;
}

.nav-main .navbar-collapse {
  background-color: #016EA7;
  overflow-x: visible;
  padding-right: 0;
  padding-left: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-overflow-scrolling: touch;
}

.nav-main .navbar-collapse:before, .nav-main .navbar-collapse:after {
  content: " ";
  display: table;
}

.nav-main .container > .navbar-header, .nav-main .container > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

.nav-main .navbar-brand {
  display: table;
  float: left;
  padding: 13px 15px;
  font-size: 22px;
  margin-right: 20px;
  min-height: 62px;
  line-height: 2.8;
}

.nav-main .navbar-brand:hover, .nav-main .navbar-brand:focus {
  text-decoration: none;
  cursor: pointer;
}

.nav-main .navbar-brand > img {
  display: block;
}

.nav-main .navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px 15px 10px;
  height: 50px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  cursor: pointer;
  border: none;
  margin: auto 15px auto 0;
}

.nav-main .navbar-toggle:focus {
  outline: 0;
}

.nav-main .navbar-toggle small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #FFF;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.nav-main .navbar-toggle .icon-bar {
  display: block;
  width: 36px;
  height: 3px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.nav-main .navbar-toggle .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg) translate(-1px, -6px);
      -ms-transform: rotate(45deg) translate(-1px, -6px);
       -o-transform: rotate(45deg) translate(-1px, -6px);
          transform: rotate(45deg) translate(-1px, -6px);
  -webkit-transform-origin: 10% 10%;
      -ms-transform-origin: 10% 10%;
       -o-transform-origin: 10% 10%;
          transform-origin: 10% 10%;
  -webkit-transition-delay: 330ms;
       -o-transition-delay: 330ms;
          transition-delay: 330ms;
  margin-top: -7px;
}

.nav-main .navbar-toggle .icon-bar:nth-of-type(2) {
  -webkit-transform: rotate(-45deg) translate(-1px, 7px);
      -ms-transform: rotate(-45deg) translate(-1px, 7px);
       -o-transform: rotate(-45deg) translate(-1px, 7px);
          transform: rotate(-45deg) translate(-1px, 7px);
  -webkit-transform-origin: 10% 90%;
      -ms-transform-origin: 10% 90%;
       -o-transform-origin: 10% 90%;
          transform-origin: 10% 90%;
  -webkit-transition-delay: 330ms;
       -o-transition-delay: 330ms;
          transition-delay: 330ms;
  margin-top: 5px;
}

.nav-main .navbar-toggle .icon-bar:nth-of-type(3) {
  opacity: 0;
  margin: 0;
  position: absolute;
  bottom: 9px;
}

.nav-main .navbar-toggle.collapsed .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
     transform: rotate(0);
  -webkit-transition-delay: 0ms;
       -o-transition-delay: 0ms;
          transition-delay: 0ms;
}

.nav-main .navbar-toggle.collapsed .icon-bar:nth-of-type(2) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
     transform: rotate(0);
  -webkit-transition-delay: 0ms;
       -o-transition-delay: 0ms;
          transition-delay: 0ms;
}

.nav-main .navbar-toggle.collapsed .icon-bar:nth-of-type(3) {
  -webkit-transition-delay: 330ms;
       -o-transition-delay: 330ms;
          transition-delay: 330ms;
  opacity: 1;
  bottom: 18px;
}

.nav-main ul > li > ul {
  margin-top: 0;
}

.nav-main .navbar-brand:hover, .nav-main .navbar-brand:focus {
  background-color: transparent;
}

.nav-main ul > li > a:hover, .nav-main ul > li > a:focus, .nav-main ul > li > a:active {
  color: #016EA7;
  background-color: transparent;
}

.nav-main ul > .active > a {
  color: #555555;
  background-color: #e7e7e7;
}

.nav-main ul > .active > a:hover, .nav-main ul > .active > a:focus {
  color: #555555;
  background-color: #e7e7e7;
}

.nav-main .navbar-toggle .icon-bar {
  background-color: #9ec8de;
  border-radius: 0;
}

.nav-main ul:before, .nav-main ul:after {
  content: " ";
  display: table;
}

.nav-main:before, .nav-main:after {
  content: " ";
  display: table;
}

.nav-main .navbar-header:before, .nav-main .navbar-header:after {
  content: " ";
  display: table;
}

.nav-main .navbar-collapse:before, .nav-main .navbar-collapse:after {
  content: " ";
  display: table;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

@media (min-width: 1021px) {
  .nav-main li > ul {
    visibility: hidden;
  }
  .nav-main li > ul.show {
    visibility: visible;
    opacity: 1;
    top: 82%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .nav-main li:hover a {
    color: #016EA7;
  }
  .nav-main .navbar-collapse > ul > li > a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-box-shadow: inset 0 4px 0 0 #00a7ff;
            box-shadow: inset 0 4px 0 0 #00a7ff;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
     -o-transform-origin: 50% 0;
        transform-origin: 50% 0;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .nav-main ul > li > a:hover:before {
    -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
         -o-transform: scaleY(1);
            transform: scaleY(1);
  }
  .nav-main ul > li:hover > a:before {
    -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
         -o-transform: scaleY(1);
            transform: scaleY(1);
  }
  .nav-main .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .nav-main .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .nav-main .navbar-collapse.in {
    overflow-y: visible;
  }
  .nav-main .container .header-holder {
    -webkit-box-pack: baseline;
    -webkit-justify-content: baseline;
        -ms-flex-pack: baseline;
            justify-content: baseline;
  }
  .nav-main .container .header-holder > .navbar-header, .nav-main .container .header-holder .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .nav-main .navbar-toggle {
    display: none;
  }
  .nav-main ul > li {
    float: left;
    margin-right: 15px;
  }
  .nav-main ul > li:last-child {
    margin-right: 0;
  }
  .nav-main ul > li > a {
    font-size: 17px;
    padding-top: 13px;
    padding-right: 8px;
    padding-bottom: 38px;
    padding-left: 8px;
  }
  .nav-main ul > li > ul > li {
    float: none;
    margin-right: 0;
  }
}

@media (max-width: 1020px) {
  .nav-main {
    min-height: 73px;
  }
  .nav-main .navbar-collapse {
    background-color: #005388;
    overflow-y: scroll;
    height: -webkit-calc(100vh - 96px);
    height: calc(100vh - 96px);
  }
  .nav-main .header-holder > .navbar-header {
    min-height: 73px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .nav-main .header-holder > .navbar-header:before, .nav-main .header-holder > .navbar-header:after {
    display: none;
  }
  .nav-main .navbar-brand {
    min-height: 43px;
    line-height: 1.9;
    margin-right: 0;
  }
  .nav-main .navbar-brand img {
    width: auto;
    max-height: 39.4px;
  }
  .nav-main a {
    position: relative;
    display: block;
  }
  .nav-main a.list-headline {
    display: block !important;
  }
  .nav-main ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    /*height: calc(100vh - 96px);*/
    width: 100vw;
  }
  .nav-main ul.menu-mobile--last {
    display: block !important;
  }
  .nav-main ul.menu-mobile--last > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .nav-main ul.menu-mobile--last > li ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
  }
  .nav-main ul.menu-mobile--last > li ul li a {
    text-transform: none !important;
  }
  .nav-main ul > li {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 27px;
    font-weight: 300;
  }
  .nav-main ul > li:last-child {
    border-bottom: none;
  }
  .nav-main ul > li:last-child > a:first-child {
    /*display: none;*/
  }
  .nav-main ul > li:last-child .col-line-vertical-nav small {
    display: block;
  }
  .nav-main ul > li > a {
    display: block;
    padding-top: 32.3px;
    padding-bottom: 32.3px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .nav-main ul > li > a .arrow-down {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px dashed rgba(158, 200, 222, 0.3);
    border-left: 8px solid \9  rgba(158, 200, 222, 0.3);
    position: absolute;
    top: 50%;
    right: 22px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .nav-main ul > li > a:hover {
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.2);
    outline: none;
  }
  .nav-main ul > li ul {
    position: fixed;
    min-width: auto;
    min-height: auto;
    width: 100%;
    height: 87.1vh;
    float: left;
    top: 95px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    padding: 0;
    background-color: #005388;
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-color: #005388;
    border-radius: 0;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  .nav-main ul > li ul .row {
    display: inherit;
    margin-right: 0;
    margin-left: 0;
  }
  .nav-main ul > li ul .col-line-vertical-nav {
    min-height: auto;
    border-left: none;
    width: 100vw;
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
  }
  .nav-main ul > li ul .col-line-vertical-nav li a {
    position: relative;
    display: block;
  }
  .nav-main ul > li ul .col-line-vertical-nav li a.list-headline {
    display: block;
  }
  .nav-main ul > li ul .col-line-vertical-nav .wrapper-button-chat-online {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .nav-main ul > li ul .col-line-vertical-nav .wrapper-button-chat-online .chat-online--headline {
    padding-top: 15px;
    padding-right: 30px;
    padding-left: 30px;
    color: #FFF;
    font-weight: 300;
    margin-bottom: 7px;
  }
  .nav-main ul > li ul .col-line-vertical-nav .wrapper-button-chat-online .chat-online--description {
    display: block;
    padding-right: 30px;
    padding-left: 30px;
    font-size: 18px;
    color: #FFF;
    margin-bottom: 25px;
  }
  .nav-main ul > li ul .col-line-vertical-nav:nth-child(2) li, .nav-main ul > li ul .col-line-vertical-nav:nth-child(3) li, .nav-main ul > li ul .col-line-vertical-nav:last-child li {
    min-height: auto;
  }
  .nav-main ul > li ul .col-line-vertical-nav:nth-child(2) li .list-headline, .nav-main ul > li ul .col-line-vertical-nav:nth-child(3) li .list-headline, .nav-main ul > li ul .col-line-vertical-nav:last-child li .list-headline {
    font-size: 18px;
    padding-left: 30px;
    font-weight: 300;
    line-height: 45px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .nav-main ul > li ul .col-line-vertical-nav:nth-child(2) li .see-more,
  .nav-main ul > li ul .col-line-vertical-nav:nth-child(2) li small,
  .nav-main ul > li ul .col-line-vertical-nav:nth-child(2) li .illustrative-picture, .nav-main ul > li ul .col-line-vertical-nav:nth-child(3) li .see-more,
  .nav-main ul > li ul .col-line-vertical-nav:nth-child(3) li small,
  .nav-main ul > li ul .col-line-vertical-nav:nth-child(3) li .illustrative-picture, .nav-main ul > li ul .col-line-vertical-nav:last-child li .see-more,
  .nav-main ul > li ul .col-line-vertical-nav:last-child li small,
  .nav-main ul > li ul .col-line-vertical-nav:last-child li .illustrative-picture {
    display: none;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child .list-headline {
    display: none;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child li {
    border-bottom: none;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child li .media {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 26px;
    padding-right: 30px;
    padding-left: 30px;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child li .media .media-left {
    display: none;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child li .media:nth-child(2) {
    margin-top: 37px;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child li .media:nth-child(4) {
    margin-bottom: 26px;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child li .media .media-body small {
    font-size: 18px;
    color: #FFF;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child li .media .media-body .phone-number {
    font-size: 18px;
    color: #FFF;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child li .media .media-body .phone-number:hover, .nav-main ul > li ul .col-line-vertical-nav:last-child li .media .media-body .phone-number:focus {
    color: #FFF;
  }
  .nav-main ul > li ul li {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    width: 100vw;
  }
  .nav-main ul > li ul li:before {
    display: none;
  }
  .nav-main ul > li ul li > a {
    padding-top: 7.5px;
    padding-right: 30px;
    padding-bottom: 7.5px;
    padding-left: 30px;
    color: #FFF;
    font-size: 18px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .nav-main ul > li ul li > a:hover {
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.2);
    outline: none;
  }
  .nav-main ul > li ul li > a:before {
    display: none;
  }
  .nav-main ul > li.open ul {
    padding-bottom: 80px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@media screen and (max-width: 728px) {
  .nav-main a:hover span {
    color: #FFF;
  }
  li.link-submenu:hover span {
    color: #FFF !important;
  }
}

.link-submenu:hover > ul.intern-menu {
  visibility: visible;
  opacity: 1;
  z-index: 999;
  display: block;
}

.title-header {
  color: #016EA7;
}

.section-nav-blog {
  padding: 0;
  background-color: #005388;
}

.section-nav-blog .nav-tabs {
  border: none !important;
}

.section-nav-blog .nav-link {
  color: #fff !important;
  padding: 10px 0 !important;
  border-radius: 0 !important;
  border: none !important;
}

.section-nav-blog .nav-link.active {
  color: #005388 !important;
  border: none !important;
}

.section-nav-blog .nav-link:hover {
  border: none !important;
  background-color: #d6e7f0 !important;
  color: #005388 !important;
}

@media (min-width: 1021px) {
  .link-submenu-costumer-mobile,
  .link-submenu-logged-mobile,
  .link-submenu-register-mobile,
  .link-submenu-loggout-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .link-submenu-costumer {
    display: none !important;
  }
  .link-submenu-costumer:hover {
    background: none;
    color: #9ec8de;
  }
  .link-submenu-costumer:hover a.link-costumer {
    color: #9ec8de;
  }
  .link-submenu-costumer:hover a.link-costumer i {
    color: #9ec8de;
  }
  .link-submenu-costumer a.link-costumer {
    color: #9ec8de;
    display: table;
    font-size: 55px;
    padding: 0;
    margin-top: -5px;
  }
  .link-submenu-costumer a.link-costumer i {
    border: 3px solid #9ec8de;
    border-radius: 50%;
  }
  .link-submenu-costumer a.link-costumer .menu-messages {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #ffde00;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    text-align: center;
    color: #005388;
  }
  .link-submenu-costumer a.link-costumer:after {
    display: none;
  }
  .link-submenu-costumer a.link-costumer:before {
    display: none;
  }
  .link-submenu-costumer a.link-costumer:hover {
    color: #9ec8de !important;
  }
  .link-submenu-costumer a:hover {
    color: #9ec8de;
  }
  .link-submenu-costumer .dashboard-menu {
    -webkit-box-shadow: 0 4px 24px 0 rgba(0, 83, 136, 0.3);
            box-shadow: 0 4px 24px 0 rgba(0, 83, 136, 0.3);
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    right: -60px;
    top: 80px;
    width: 445px;
    padding: 0;
  }
  .link-submenu-costumer .dashboard-menu:before {
    content: '';
    display: block;
    position: absolute;
    right: 76px;
    bottom: 100%;
    width: 30px;
    height: 30px;
    border-top: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fff;
    border-left: 15px solid transparent;
    z-index: 9999;
  }
  .link-submenu-costumer .dashboard-menu:after {
    content: '';
  }
  .link-submenu-costumer .dashboard-menu .customer-menu {
    width: 50%;
    display: block;
    position: relative;
    float: left;
    padding: 20px;
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
            align-self: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .link-submenu-costumer .dashboard-menu .customer-menu .avatar-menu {
    display: table;
    margin-right: auto;
    margin-left: auto;
    width: 140px;
    height: 140px;
    background-color: #d6e7f0;
    border-radius: 50%;
    text-align: center;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .link-submenu-costumer .dashboard-menu .customer-menu .avatar-menu i {
    font-size: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .link-submenu-costumer .dashboard-menu .customer-menu .welcome {
    text-align: center;
  }
  .link-submenu-costumer .dashboard-menu .customer-menu .welcome .name {
    display: block;
    margin-bottom: 5px;
  }
  .link-submenu-costumer .dashboard-menu .customer-menu .welcome .costumer-type, .link-submenu-costumer .dashboard-menu .customer-menu .welcome .caption {
    display: block;
    font-size: 13px;
    line-height: 1.3;
    color: #016EA7;
  }
  .link-submenu-costumer .dashboard-menu .customer-menu .welcome .costumer-type .wrapper-stars, .link-submenu-costumer .dashboard-menu .customer-menu .welcome .caption .wrapper-stars {
    margin-left: 5px;
  }
  .link-submenu-costumer .dashboard-menu .customer-menu .btn-area {
    width: 100%;
    position: absolute;
    bottom: 20px;
    max-width: 182px;
    padding: 16px 0;
  }
  .link-submenu-costumer .dashboard-menu .customer-itens {
    width: 50%;
    display: block;
    position: relative;
    float: left;
    -webkit-box-shadow: -3px 0px 16px rgba(0, 83, 136, 0.2);
            box-shadow: -3px 0px 16px rgba(0, 83, 136, 0.2);
  }
  .link-submenu-costumer .dashboard-menu .customer-itens li {
    position: relative;
    border-bottom: 1px solid #d6e7f0;
  }
  .link-submenu-costumer .dashboard-menu .customer-itens li:before {
    display: none;
  }
  .link-submenu-costumer .dashboard-menu .customer-itens li:last-child {
    border: none;
  }
  .link-submenu-costumer .dashboard-menu .customer-itens li a {
    line-height: 70px;
    padding: 8px 20px;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  .link-submenu-costumer .dashboard-menu .customer-itens li a:before {
    display: none;
  }
  .link-submenu-costumer .dashboard-menu .customer-itens li a:hover {
    background-color: rgba(214, 231, 240, 0.3);
  }
  .link-submenu-costumer .dashboard-menu .customer-itens li a .badge-menu {
    border-radius: 50%;
    width: 22px;
    height: 22px;
    background-color: #FFDE00;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .link-submenu-costumer.logged-out {
    position: relative;
    margin-right: 0;
    top: -9px;
  }
  .link-submenu-costumer.logged-out:hover a {
    color: #FFDE00 !important;
  }
  .link-submenu-costumer.logged-out:before {
    content: '';
    display: block;
    background-color: #005388;
    width: 1px;
    height: 67%;
    position: absolute;
    bottom: 50%;
  }
  .link-submenu-costumer.logged-out:after {
    content: '';
    display: block;
    background-color: #005388;
    width: 1px;
    height: 46px;
    position: absolute;
    top: 50%;
  }
  .link-submenu-costumer .link-login, .link-submenu-costumer .link-register {
    display: block;
    color: #FFDE00;
    line-height: 0;
    padding-left: 20px;
  }
  .link-submenu-costumer .link-login a, .link-submenu-costumer .link-register a {
    color: #FFDE00;
    text-transform: uppercase;
    display: inline-block;
    line-height: 1.7;
    font-size: 13px;
  }
  .link-submenu-costumer .link-login a:hover, .link-submenu-costumer .link-login a:focus, .link-submenu-costumer .link-register a:hover, .link-submenu-costumer .link-register a:focus {
    color: #FFDE00;
  }
  .link-submenu-costumer .link-login a i, .link-submenu-costumer .link-register a i {
    float: left;
  }
  .link-submenu-costumer .link-login a i.icon-user-logged, .link-submenu-costumer .link-register a i.icon-user-logged {
    font-size: 36px;
    float: left;
  }
  .link-submenu-costumer .link-login a i.icon-arrow-right-circle, .link-submenu-costumer .link-register a i.icon-arrow-right-circle {
    font-size: 24px;
    float: right;
    margin-left: 10px;
  }
  .link-submenu-costumer .link-login {
    position: relative;
  }
  .link-submenu-costumer .link-login:before {
    content: '';
    height: 1px;
    width: 1000px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #005388;
  }
  .link-submenu-costumer .link-login a {
    line-height: 2.5;
    position: relative;
    left: 0px;
  }
  .link-submenu-costumer .link-register {
    padding-top: 10px;
  }
}

@media (max-width: 768px) {
  .link-submenu-costumer-mobile {
    /*display: block !important;*/
  }
  .link-submenu-costumer-mobile .badge-menu {
    border-radius: 50%;
    width: 22px;
    height: 22px;
    background-color: #FFDE00;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #016EA7;
  }
  .link-submenu-costumer {
    display: none !important;
  }
}

.logged-in {
  display: none !important;
}

.see-more-sempre {
  bottom: -284px;
  width: 246px;
}

@media (min-width: 1021px) and (max-width: 1199px) {
  .nav-main .navbar-brand {
    margin: 0;
    max-width: 150px;
  }
  .nav-main ul > li {
    margin-right: -1px;
  }
}

@media (min-width: 768px) and (max-width: 860px) {
  .sprite {
    display: none !important;
  }
}

.para-voce-link {
  top: 0;
  margin-top: 329px !important;
  width: 247px;
}

.atendimentoSeeMore {
  bottom: -29px !important;
}

@media (min-width: 1200px) {
  .intern-menu__custom-li a {
    line-height: 20px !important;
    min-height: 45px;
    max-width: 80%;
  }
}

.see-more:hover {
  background: #005388 !important;
  color: #fff !important;
}

.nav-bar {
  line-height: 1;
  height: auto;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-top: 2px solid rgba(1, 110, 167, 0.3);
  border-bottom: 2px solid rgba(1, 110, 167, 0.3);
  padding: 0 0;
  background: #e5f0f6;
  color: #000;
  fill: #000;
  /* White */
}

.nav-bar ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 100%;
  padding: 0px 0;
  margin: 0 -15px;
}

.nav-bar ul li {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  color: #016EA7;
  fill: #016EA7;
  text-align: center;
  line-height: 1;
  font-size: 20px;
  font-weight: 400;
  height: 100%;
  position: relative;
  padding: 0 15px;
  position: relative;
}

@media only screen and (min-width: 1200px) {
  .nav-bar ul li:not(:last-child) {
    margin-right: 30px;
  }
}

.nav-bar ul li:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 10px;
  background: #005388;
  -webkit-transform: translateX(15px);
      -ms-transform: translateX(15px);
       -o-transform: translateX(15px);
          transform: translateX(15px);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.nav-bar ul li:hover:after, .nav-bar ul li.active:after {
  width: 100%;
}

.nav-bar ul li:not(.active):after {
  opacity: 0.2;
  height: 4px;
}

.nav-bar ul li button, .nav-bar ul li a {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 60px 0px 30px;
  text-transform: inherit;
  font-weight: weight;
  text-align: center;
}

.nav-bar ul li a > i, .nav-bar ul li a > svg, .nav-bar ul li a > img, .nav-bar ul li button > i, .nav-bar ul li button > svg, .nav-bar ul li button > img {
  width: 22px;
  height: 22px;
  line-height: 22px;
  margin: 0 auto 8px !important;
}

.nav-bar ul li i, .nav-bar ul li i.material-icons {
  line-height: 1;
  height: auto;
}

.nav-bar ul li i, .nav-bar ul li svg {
  display: inline-block;
}

.nav-bar ul li a, .nav-bar ul li a:hover, .nav-bar ul li a:active, .nav-bar ul li a:visited {
  text-decoration: none;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}

@media only screen and (max-width: 1200px) {
  .nav-bar ul li {
    font-size: 16px;
  }
  .nav-bar ul li button, .nav-bar ul li a {
    padding-top: 30px;
  }
}

@media only screen and (max-width: 980px) {
  .nav-bar {
    position: relative;
  }
  .nav-bar:after {
    content: "";
    display: block;
    position: absolute;
    width: 120px;
    height: 100%;
    top: 0;
    right: -5px;
    background-image: -webkit-gradient(linear, right top, left top, from(#FFF), to(transparent));
    background-image: -webkit-linear-gradient(right, #FFF, transparent);
    background-image: -o-linear-gradient(right, #FFF, transparent);
    background-image: linear-gradient(to left, #FFF, transparent);
    z-index: 10;
  }
  .nav-bar ul {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    position: relative;
  }
  .nav-bar ul li {
    font-size: 18px;
  }
}

.nav-bar.white {
  border: 0;
  background-color: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.15) 0 5px 15px;
}

.nav-list {
  margin-bottom: 50px;
  padding-left: 0;
  list-style: none;
}

.nav-list > li {
  color: #016EA7;
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
}

.nav-list > li > a {
  color: #005388;
  font-weight: 400;
}

.nav-list > li > a:hover:before, .nav-list > li > a:focus:before {
  opacity: 1;
  left: -15px;
}

.nav-list > li > a:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-left: 5px solid #005388;
  border-bottom: 5px solid transparent;
  opacity: 0;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.nav-list--bold > li > a {
  color: #016EA7;
  font-weight: bold;
}

.nav-list--small > li {
  font-size: 0.875em;
}

.nav-list--small > li > a {
  color: #016EA7;
}

.nav-list--small > li > a:hover:before, .nav-list--small > li > a:focus:before {
  left: -12px;
}

.nav-list--small > li > a:before {
  left: -17px;
  border-left-width: 7px;
}

.nav-steps {
  position: relative;
}

.nav-steps ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}

.nav-steps li {
  margin: 0 8.5px;
  text-align: center;
  min-height: 50px;
}

.nav-steps li .step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #9ec8de;
  background: #016EA7;
  color: #FFF;
  text-decoration: none;
  font-size: 0.75em;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.nav-steps li .link {
  display: block;
  color: #FFF;
  font-size: 12px;
}

.nav-steps li .link:hover, .nav-steps li .link:focus {
  color: #FFF;
}

.nav-steps li .link .edit {
  display: inline-block;
  line-height: 1.1;
}

.nav-steps li.active .step {
  background: #FFDE00;
  border: 2px solid #FFF;
  color: #016EA7;
  cursor: default;
}

.nav-steps li.active .step:hover {
  background: #FFDE00;
  border: 2px solid #FFF;
  color: #016EA7;
}

.nav-steps li:hover a.step, .nav-steps li:hover button.step {
  background: #014d74;
  color: #FFF;
  cursor: pointer;
}

.nav-social {
  list-style-type: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.nav-social .links-social-holder {
  width: 240px;
  font-size: 27px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-social .links-social-holder a:last-child {
  font-size: 36px;
}

.nav-social .links-social-title {
  margin-right: 50px;
}

.nav-social .links-social-holder {
  width: 240px;
  font-size: 27px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-social .links-social-holder:last-child {
  font-size: 36px;
}

.nav-social .links-social-title {
  margin-right: 50px;
}

.nav-social > li {
  color: #016EA7;
  font-size: 22px;
  line-height: 44px;
}

.nav-social > li a {
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  position: relative;
  top: 0;
}

.nav-social > li a:hover, .nav-social > li a:focus {
  color: #016EA7;
  top: -6px;
}

@media (max-width: 1020px) {
  .nav-social {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .nav-social .links-social-title {
    margin: 0 0 24px;
    width: 100%;
  }
}

.footer {
  clear: both;
  padding: 50px 0 0;
  border-top: 1px solid #9ec8de;
  background-color: rgba(230, 239, 244, 0.32);
  position: relative;
  z-index: 0;
}

.footer .link-phone {
  min-width: 106px;
  display: inline-block;
}

.footer a {
  cursor: pointer;
}

.footer__inner--widget .widget-title {
  font-size: 1.125em;
  font-weight: 600;
  margin-bottom: 10px;
  color: #016ea7;
  position: relative;
  display: block;
}

.footer__inner--widget .btn {
  font-family: "Titillium Web Bold", sans-serif;
  text-align: left;
  font-weight: 700;
  margin-bottom: 15px;
}

.footer__inner--widget .btn-lg {
  padding: 16px 24px;
  font-size: 14px;
  line-height: 1.3333333;
  border-radius: 3px;
}

.footer__inner--widget .btn-primary-o {
  color: #016EA7;
  background-color: transparent;
  border-color: #9ec8de;
}

.footer__inner--widget .btn-primary-o:hover, .footer__inner--widget .btn-primary-o:focus {
  background-color: rgba(158, 200, 222, 0.2);
}

.footer__inner--copyright {
  border-top: 1px solid #9ec8de;
  padding: 40px 0;
  font-family: 'Titillium Web', sans-serif;
  text-align: center;
}

.footer__inner--copyright p {
  color: #016EA7;
  font-size: 16px;
  margin-bottom: 0;
  line-height: 1.6;
}

.footer .nav-list--small {
  border-top: 1px solid #9ec8de;
  padding-top: 15px;
  margin-top: 45px;
}

.footer .button.light {
  padding: 17px 15px;
  margin-bottom: 5px;
}

.footer--partner {
  border-top: none;
  padding-top: 0;
  margin-top: 90px;
}

.footer--partner p {
  font-size: 1em;
}

.footer--partner a {
  color: #00a7ff;
  text-decoration: underline;
}

.footer--partner a:hover, .footer--partner a:focus {
  text-decoration: none;
}

@media (max-width: 767px) {
  .footer {
    border-top: 0;
    padding-top: 0;
  }
  .footer__inner--widget {
    display: none;
  }
  .footer__inner--copyright {
    padding-top: 33px;
    padding-bottom: 21px;
  }
  .footer__inner--copyright .col {
    padding-right: 40px;
    padding-left: 40px;
  }
  .footer__inner--copyright p {
    color: #016EA7;
    font-size: 0.875em;
    margin-bottom: 0;
    line-height: 1.72;
  }
}

@media (max-width: 480px) {
  .footer {
    border-top: 0;
    padding-top: 0;
  }
  .footer .link-phone {
    min-width: auto;
    display: inline-block;
    margin-left: 4px;
  }
  .footer__inner--widget {
    display: none;
  }
  .footer__inner--copyright {
    padding-top: 33px;
    padding-bottom: 21px;
  }
  .footer__inner--copyright .col {
    padding-right: 30px;
    padding-left: 30px;
  }
  .footer__inner--copyright p {
    color: #016ea7;
    font-size: 12px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.5;
    letter-spacing: normal;
    text-align: center;
    margin-bottom: 20px;
  }
}

.follow-footer {
  font-size: 1.425rem;
  font-weight: 400;
  margin-top: 0;
}

.linkedin-footer {
  background-image: url("./../../../assets/media/images/linkedin-footer.jpg");
  width: 270px;
  -webkit-background-size: 100% 100%;
          background-size: 100%;
  height: 130px;
  background-repeat: no-repeat;
  position: relative;
}

@media (max-width: 768px) {
  .linkedin-footer {
    width: 100%;
    height: 87px !important;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .linkedin-footer {
    width: 100%;
    height: 37vw !important;
    margin-bottom: 20px;
  }
}

.linkedin-footer .IN-widget {
  position: absolute;
  right: 5px;
  bottom: 5px;
}

@media (max-width: 768px) {
  .linkedin-footer .IN-widget {
    right: 0px;
    bottom: 2px;
  }
}

@media (max-width: 767px) {
  .linkedin-footer .IN-widget {
    right: 5px;
    bottom: 5px;
  }
}

.fb-ipad,
.fb-page {
  display: block;
  margin-top: 80px;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .fb-ipad,
  .fb-page {
    margin-top: 20px;
  }
}

.follow-title-footer {
  color: #016EA7;
  margin-bottom: 25px;
  position: relative;
  display: block;
}

.ipad-footer {
  display: none !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .ipad-footer {
    display: block !important;
  }
}

.ipad-footer.linkedin-footer {
  height: 6.7em !important;
}

.hide-ipad-footer {
  display: block !important;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .hide-ipad-footer {
    display: none !important;
  }
}

.institutional-links {
  text-align: center;
}

.institutional-links .follow-footer {
  font-size: 17px;
  margin-top: 25px;
  margin-bottom: 15px;
}

/*=====  End of FOOTER  ======*/
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
     -moz-font-feature-settings: 'liga';
          font-feature-settings: 'liga';
}

.nav-main {
  position: relative;
  min-height: 92px;
  z-index: 1024;
  background-color: #016EA7;
}

.nav-main .header-holder {
  margin: 0 -15px;
}

.nav-main li {
  position: relative;
  font-size: 15px;
  line-height: 45px;
}

.nav-main li.item-back > a {
  display: block;
  cursor: pointer;
}

.nav-main li.item-back > a span, .nav-main li.item-back > a i {
  line-height: 1;
  display: block;
}

.nav-main li.item-back > a i {
  font-size: 42px;
}

.nav-main a {
  text-decoration: none;
  cursor: pointer;
}

.nav-main .dropdown-toggle:focus {
  outline: 0;
}

@media (min-width: 1021px) and (max-width: 1180px) {
  .nav-main li:nth-child(6) > ul {
    max-width: 786px;
    left: inherit !important;
    right: 0;
  }
  .nav-main li:nth-child(5) > ul {
    left: 0 !important;
    position: fixed;
    top: 107px !important;
    width: 98vw;
    max-width: 1001px;
    margin: 0 1vw;
  }
}

@media (min-width: 1021px) {
  .nav-main li .custom {
    min-width: 497px !important;
  }
  .nav-main li .custom .see-more {
    min-width: -webkit-calc(100% + 30px) !important;
    min-width: calc(100% + 30px) !important;
  }
  .nav-main li .custom .col-sm-7 {
    padding-right: 0;
  }
  .nav-main li:first-child > ul {
    min-width: 990px;
    min-height: 408px;
    left: -120px;
  }
  .nav-main li:first-child > ul .col-line-vertical-nav {
    min-height: 400px;
  }
  .nav-main li:first-child > ul .col-line-vertical-nav:nth-child(2) li, .nav-main li:first-child > ul .col-line-vertical-nav:last-child li {
    height: 370px;
  }
  .nav-main li:first-child > ul .col-line-vertical-nav:nth-child(2) li .illustrative-picture, .nav-main li:first-child > ul .col-line-vertical-nav:last-child li .illustrative-picture {
    max-width: 244px;
  }
  .nav-main li:first-child > ul .col-line-vertical-nav:nth-child(2) li .see-more, .nav-main li:first-child > ul .col-line-vertical-nav:last-child li .see-more {
    min-width: 245px !important;
    bottom: -6px;
  }
  .nav-main li:nth-child(2) > ul {
    min-width: 786px !important;
    min-height: 358px;
    left: -120px;
  }
  .nav-main li:nth-child(2) > ul .col-line-vertical-nav {
    min-height: 350px;
  }
  .nav-main li:nth-child(2) > ul .col-line-vertical-nav:nth-child(2) li, .nav-main li:nth-child(2) > ul .col-line-vertical-nav:last-child li {
    height: 320px;
  }
  .nav-main li:nth-child(2) > ul .col-line-vertical-nav:nth-child(2) li .illustrative-picture, .nav-main li:nth-child(2) > ul .col-line-vertical-nav:last-child li .illustrative-picture {
    max-width: 261px;
  }
  .nav-main li:nth-child(2) > ul .col-line-vertical-nav:nth-child(2) li .see-more, .nav-main li:nth-child(2) > ul .col-line-vertical-nav:last-child li .see-more {
    min-width: 261px !important;
    bottom: -6px;
  }
  .nav-main li:nth-child(5) > ul {
    min-width: 1001px;
    min-height: 356px;
    left: -640px;
  }
  .nav-main li:nth-child(5) > ul .col-line-vertical-nav {
    min-height: 348px;
  }
  .nav-main li:nth-child(5) > ul .col-line-vertical-nav:nth-child(1) {
    min-width: 265px;
  }
  .nav-main li:nth-child(5) > ul .col-line-vertical-nav:nth-child(2), .nav-main li:nth-child(5) > ul .col-line-vertical-nav:nth-child(3), .nav-main li:nth-child(5) > ul .col-line-vertical-nav:last-child {
    max-width: 24%;
    min-width: 245px;
  }
  .nav-main li:nth-child(5) > ul .col-line-vertical-nav:nth-child(2) li, .nav-main li:nth-child(5) > ul .col-line-vertical-nav:nth-child(3) li, .nav-main li:nth-child(5) > ul .col-line-vertical-nav:last-child li {
    height: 318px;
  }
  .nav-main li:nth-child(5) > ul .col-line-vertical-nav:nth-child(2) li .see-more, .nav-main li:nth-child(5) > ul .col-line-vertical-nav:nth-child(3) li .see-more, .nav-main li:nth-child(5) > ul .col-line-vertical-nav:last-child li .see-more {
    min-width: 245px;
    bottom: -6px;
  }
  .nav-main li:nth-child(6) > ul {
    min-width: 786px;
    min-height: 356px;
    left: -500px;
  }
  .nav-main li:nth-child(6) > ul .col-line-vertical-nav {
    min-height: 348px;
  }
  .nav-main li:nth-child(6) > ul .col-line-vertical-nav:nth-child(2) li, .nav-main li:nth-child(6) > ul .col-line-vertical-nav:last-child li {
    height: 306px;
  }
  .nav-main li:nth-child(6) > ul .col-line-vertical-nav:nth-child(2) li .illustrative-picture, .nav-main li:nth-child(6) > ul .col-line-vertical-nav:last-child li .illustrative-picture {
    max-width: 261px;
  }
  .nav-main li:nth-child(6) > ul .col-line-vertical-nav:nth-child(2) li .see-more, .nav-main li:nth-child(6) > ul .col-line-vertical-nav:last-child li .see-more {
    min-width: 261px;
    bottom: -18px;
  }
}

.nav-main li > ul {
  position: absolute;
  top: 100%;
  z-index: 1000;
  float: left;
  padding-top: 5px;
  padding-right: 15px;
  padding-bottom: 3px;
  padding-left: 15px;
  margin: 2px 0 0;
  list-style-image: none;
  list-style-type: none;
  list-style-position: none;
  font-size: 14px;
  text-align: left;
  background-color: #FFF;
  border-radius: 4px;
  opacity: 0;
  -webkit-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
  -ms-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
  -o-box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.3);
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all .1s ease;
  -o-transition: all .1s ease;
  transition: all .1s ease;
}

.nav-main li > ul .col-line-vertical-nav {
  border-left: 1px solid #9ec8de;
  padding-top: 16px;
  padding-right: 30px;
  padding-bottom: 0;
  padding-left: 30px;
}

.nav-main li > ul .col-line-vertical-nav:first-child {
  border-left: 0;
}

.nav-main li > ul li {
  position: relative;
}

.nav-main li > ul li:before {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 100%;
  background-color: #9ec8de;
}

.nav-main li > ul li:first-child:before {
  content: " ";
  height: 50%;
  top: auto;
}

.nav-main li > ul li:last-child:before {
  content: " ";
  height: 50%;
  bottom: auto;
}

.nav-main li > ul li > a {
  position: relative;
  display: block;
  padding: 0 0 0 13px;
  line-height: 45px;
  color: #016EA7;
}

.nav-main li > ul li > a:hover, .nav-main li > ul li > a:focus {
  text-decoration: none;
  color: #005388;
}

.nav-main li > ul li > a:before {
  content: " ";
  display: block;
  width: 5px;
  height: 5px;
  background-color: #9ec8de;
  position: absolute;
  top: 50%;
  left: -2px;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.nav-main li > ul li > a:hover:before, .nav-main li > ul li > a:focus:before {
  -webkit-transform: scale(2) translateY(-30%);
      -ms-transform: scale(2) translateY(-30%);
       -o-transform: scale(2) translateY(-30%);
          transform: scale(2) translateY(-30%);
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li:first-child:before,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li:first-child:before,
.nav-main li > ul .col-line-vertical-nav:last-child li:first-child:before {
  display: none;
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li .list-headline,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li .list-headline,
.nav-main li > ul .col-line-vertical-nav:last-child li .list-headline {
  padding-left: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.1;
  margin-top: 11px;
  margin-bottom: 15px;
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li .list-headline:before,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li .list-headline:before,
.nav-main li > ul .col-line-vertical-nav:last-child li .list-headline:before {
  display: none;
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li small,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li small,
.nav-main li > ul .col-line-vertical-nav:last-child li small {
  display: block;
  line-height: 1.4;
  color: #016EA7;
  font-size: 90%;
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li .illustrative-picture,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li .illustrative-picture,
.nav-main li > ul .col-line-vertical-nav:last-child li .illustrative-picture {
  position: absolute;
  left: 50%;
  bottom: 39px;
  display: block;
  height: auto;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li .see-more,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li .see-more,
.nav-main li > ul .col-line-vertical-nav:last-child li .see-more {
  position: absolute;
  left: -30px;
  display: block;
  height: 47px;
  background-color: #e5f0f6;
  padding-left: 30px;
  padding-right: 30px;
  text-transform: uppercase;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 700;
  font-family: "Titillium Web Bold", sans-serif;
  line-height: 47px;
  margin-top: 0;
  margin-bottom: 0;
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li .see-more:before,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li .see-more:before,
.nav-main li > ul .col-line-vertical-nav:last-child li .see-more:before {
  display: none;
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li .see-more span,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li .see-more span,
.nav-main li > ul .col-line-vertical-nav:last-child li .see-more span {
  display: inline-block;
  width: 18px;
  height: 18px;
  text-align: center;
  line-height: 18px;
  border-radius: 50%;
  float: right;
  margin-left: 12px;
  position: relative;
  top: 50%;
  font-size: 9px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-box-shadow: 0 0 0 1px #016EA7;
          box-shadow: 0 0 0 1px #016EA7;
}

.nav-main li > ul .col-line-vertical-nav:nth-child(2) li .see-more span i,
.nav-main li > ul .col-line-vertical-nav:nth-child(3) li .see-more span i,
.nav-main li > ul .col-line-vertical-nav:last-child li .see-more span i {
  position: relative;
  top: 1px;
  left: 1px;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .media {
  border-bottom: 1px solid #9ec8de;
  padding-bottom: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  zoom: 1;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .media:nth-child(4) {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .media .media-left {
  min-width: 66px;
  display: table-cell;
  vertical-align: middle;
  padding-right: 10px;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .media .media-left img {
  float: left;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .media .media-body {
  overflow: hidden;
  zoom: 1;
  width: 10000px;
  display: table-cell;
  vertical-align: top;
  padding-bottom: 0;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .media .media-body small {
  display: block;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .media .media-body .phone-number {
  display: block;
  font-size: 14px;
  color: #00a7ff;
  line-height: 1.3;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .media .media-body .phone-number:hover, .nav-main li > ul .col-line-vertical-nav:last-child li .media .media-body .phone-number:focus {
  color: #00a7ff;
  text-decoration: underline;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .see-more {
  border-bottom-right-radius: 4px;
}

.nav-main li > ul .col-line-vertical-nav:last-child li .see-more:hover {
  background: #005388;
  color: #fff;
}

.nav-main li.open > ul {
  display: block;
  opacity: 1;
}

.nav-main li.open > a {
  outline: 0;
}

.nav-main .dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.42857143;
  color: #777777;
  white-space: nowrap;
}

.nav-main ul {
  margin-bottom: 0;
  padding-left: 0;
  list-style: none;
  margin-top: 21px;
}

.nav-main ul > li {
  position: relative;
  display: block;
  font-family: 'Titillium Web', sans-serif;
}

.nav-main ul > li > a {
  position: relative;
  white-space: nowrap;
  display: block;
  padding: 3px 30px;
  line-height: 20px;
  color: #FFF;
  clear: both;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.nav-main ul > li > a > span {
  position: relative;
  display: inline-block;
  color: #FFF;
}

.nav-main ul > li > a .arrow-down {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 3px;
  vertical-align: middle;
  border-top: 4px dashed #9ec8de;
  border-top: 4px solid \9 palette(brand, light);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.nav-main ul > li:hover > a > span {
  color: #016EA7;
}

.nav-main .navbar-collapse {
  background-color: #016EA7;
  overflow-x: visible;
  padding-right: 0;
  padding-left: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-overflow-scrolling: touch;
}

.nav-main .navbar-collapse:before, .nav-main .navbar-collapse:after {
  content: " ";
  display: table;
}

.nav-main .container > .navbar-header, .nav-main .container > .navbar-collapse {
  margin-right: -15px;
  margin-left: -15px;
}

.nav-main .navbar-brand {
  display: table;
  float: left;
  padding: 13px 15px;
  font-size: 22px;
  margin-right: 20px;
  min-height: 62px;
  line-height: 2.8;
}

.nav-main .navbar-brand:hover, .nav-main .navbar-brand:focus {
  text-decoration: none;
  cursor: pointer;
}

.nav-main .navbar-brand > img {
  display: block;
}

.nav-main .navbar-toggle {
  position: relative;
  float: right;
  padding: 9px 10px 15px 10px;
  height: 50px;
  background-color: transparent;
  background-image: none;
  border: 1px solid transparent;
  cursor: pointer;
  border: none;
  margin: auto 15px auto 0;
}

.nav-main .navbar-toggle:focus {
  outline: 0;
}

.nav-main .navbar-toggle small {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #FFF;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.nav-main .navbar-toggle .icon-bar {
  display: block;
  width: 36px;
  height: 3px;
  -webkit-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  transition: all 300ms ease;
}

.nav-main .navbar-toggle .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(45deg) translate(-1px, -6px);
      -ms-transform: rotate(45deg) translate(-1px, -6px);
       -o-transform: rotate(45deg) translate(-1px, -6px);
          transform: rotate(45deg) translate(-1px, -6px);
  -webkit-transform-origin: 10% 10%;
      -ms-transform-origin: 10% 10%;
       -o-transform-origin: 10% 10%;
          transform-origin: 10% 10%;
  -webkit-transition-delay: 330ms;
       -o-transition-delay: 330ms;
          transition-delay: 330ms;
  margin-top: -7px;
}

.nav-main .navbar-toggle .icon-bar:nth-of-type(2) {
  -webkit-transform: rotate(-45deg) translate(-1px, 7px);
      -ms-transform: rotate(-45deg) translate(-1px, 7px);
       -o-transform: rotate(-45deg) translate(-1px, 7px);
          transform: rotate(-45deg) translate(-1px, 7px);
  -webkit-transform-origin: 10% 90%;
      -ms-transform-origin: 10% 90%;
       -o-transform-origin: 10% 90%;
          transform-origin: 10% 90%;
  -webkit-transition-delay: 330ms;
       -o-transition-delay: 330ms;
          transition-delay: 330ms;
  margin-top: 5px;
}

.nav-main .navbar-toggle .icon-bar:nth-of-type(3) {
  opacity: 0;
  margin: 0;
  position: absolute;
  bottom: 9px;
}

.nav-main .navbar-toggle.collapsed .icon-bar:nth-of-type(1) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
     transform: rotate(0);
  -webkit-transition-delay: 0ms;
       -o-transition-delay: 0ms;
          transition-delay: 0ms;
}

.nav-main .navbar-toggle.collapsed .icon-bar:nth-of-type(2) {
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  -o-transform: rotate(0);
     transform: rotate(0);
  -webkit-transition-delay: 0ms;
       -o-transition-delay: 0ms;
          transition-delay: 0ms;
}

.nav-main .navbar-toggle.collapsed .icon-bar:nth-of-type(3) {
  -webkit-transition-delay: 330ms;
       -o-transition-delay: 330ms;
          transition-delay: 330ms;
  opacity: 1;
  bottom: 18px;
}

.nav-main ul > li > ul {
  margin-top: 0;
}

.nav-main .navbar-brand:hover, .nav-main .navbar-brand:focus {
  background-color: transparent;
}

.nav-main ul > li > a:hover, .nav-main ul > li > a:focus, .nav-main ul > li > a:active {
  color: #016EA7;
  background-color: transparent;
}

.nav-main ul > .active > a {
  color: #555555;
  background-color: #e7e7e7;
}

.nav-main ul > .active > a:hover, .nav-main ul > .active > a:focus {
  color: #555555;
  background-color: #e7e7e7;
}

.nav-main .navbar-toggle .icon-bar {
  background-color: #9ec8de;
  border-radius: 0;
}

.nav-main ul:before, .nav-main ul:after {
  content: " ";
  display: table;
}

.nav-main:before, .nav-main:after {
  content: " ";
  display: table;
}

.nav-main .navbar-header:before, .nav-main .navbar-header:after {
  content: " ";
  display: table;
}

.nav-main .navbar-collapse:before, .nav-main .navbar-collapse:after {
  content: " ";
  display: table;
}

.collapse {
  display: none;
}

.collapse.in {
  display: block;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition-property: height, visibility;
  -o-transition-property: height, visibility;
  transition-property: height, visibility;
  -webkit-transition-duration: 300ms;
  -o-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-timing-function: ease;
  -o-transition-timing-function: ease;
  transition-timing-function: ease;
}

@media (min-width: 1021px) {
  .nav-main li > ul {
    visibility: hidden;
  }
  .nav-main li > ul.show {
    visibility: visible;
    opacity: 1;
    top: 82%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .nav-main li:hover a {
    color: #016EA7;
  }
  .nav-main .navbar-collapse > ul > li > a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #ffffff;
    -webkit-box-shadow: inset 0 4px 0 0 #00a7ff;
            box-shadow: inset 0 4px 0 0 #00a7ff;
    -webkit-transform: scaleY(0);
    -ms-transform: scaleY(0);
    -o-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 50% 0;
    -ms-transform-origin: 50% 0;
     -o-transform-origin: 50% 0;
        transform-origin: 50% 0;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .nav-main ul > li > a:hover:before {
    -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
         -o-transform: scaleY(1);
            transform: scaleY(1);
  }
  .nav-main ul > li:hover > a:before {
    -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
         -o-transform: scaleY(1);
            transform: scaleY(1);
  }
  .nav-main .navbar-collapse {
    width: auto;
    border-top: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  .nav-main .navbar-collapse.collapse {
    display: block !important;
    height: auto !important;
    padding-bottom: 0;
    overflow: visible !important;
  }
  .nav-main .navbar-collapse.in {
    overflow-y: visible;
  }
  .nav-main .container .header-holder {
    -webkit-box-pack: baseline;
    -webkit-justify-content: baseline;
        -ms-flex-pack: baseline;
            justify-content: baseline;
  }
  .nav-main .container .header-holder > .navbar-header, .nav-main .container .header-holder .navbar-collapse {
    margin-right: 0;
    margin-left: 0;
  }
  .nav-main .navbar-toggle {
    display: none;
  }
  .nav-main ul > li {
    float: left;
    margin-right: 15px;
  }
  .nav-main ul > li:last-child {
    margin-right: 0;
  }
  .nav-main ul > li > a {
    font-size: 17px;
    padding-top: 13px;
    padding-right: 8px;
    padding-bottom: 38px;
    padding-left: 8px;
  }
  .nav-main ul > li > ul > li {
    float: none;
    margin-right: 0;
  }
}

@media (max-width: 1020px) {
  .nav-main {
    min-height: 73px;
  }
  .nav-main .navbar-collapse {
    background-color: #005388;
    overflow-y: scroll;
    height: -webkit-calc(100vh - 96px);
    height: calc(100vh - 96px);
  }
  .nav-main .header-holder > .navbar-header {
    min-height: 73px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
  .nav-main .header-holder > .navbar-header:before, .nav-main .header-holder > .navbar-header:after {
    display: none;
  }
  .nav-main .navbar-brand {
    min-height: 43px;
    line-height: 1.9;
    margin-right: 0;
  }
  .nav-main .navbar-brand img {
    width: auto;
    max-height: 39.4px;
  }
  .nav-main a {
    position: relative;
    display: block;
  }
  .nav-main a.list-headline {
    display: block !important;
  }
  .nav-main ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
    /*height: calc(100vh - 96px);*/
    width: 100vw;
  }
  .nav-main ul.menu-mobile--last {
    display: block !important;
  }
  .nav-main ul.menu-mobile--last > li:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .nav-main ul.menu-mobile--last > li ul li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.5) !important;
  }
  .nav-main ul.menu-mobile--last > li ul li a {
    text-transform: none !important;
  }
  .nav-main ul > li {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    font-size: 27px;
    font-weight: 300;
  }
  .nav-main ul > li:last-child {
    border-bottom: none;
  }
  .nav-main ul > li:last-child > a:first-child {
    /*display: none;*/
  }
  .nav-main ul > li:last-child .col-line-vertical-nav small {
    display: block;
  }
  .nav-main ul > li > a {
    display: block;
    padding-top: 32.3px;
    padding-bottom: 32.3px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .nav-main ul > li > a .arrow-down {
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px dashed rgba(158, 200, 222, 0.3);
    border-left: 8px solid \9  rgba(158, 200, 222, 0.3);
    position: absolute;
    top: 50%;
    right: 22px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .nav-main ul > li > a:hover {
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.2);
    outline: none;
  }
  .nav-main ul > li ul {
    position: fixed;
    min-width: auto;
    min-height: auto;
    width: 100%;
    height: 87.1vh;
    float: left;
    top: 95px;
    right: 0;
    bottom: 0;
    left: 0;
    overflow-y: auto;
    padding: 0;
    background-color: #005388;
    border-right: none;
    border-bottom: none;
    border-left: none;
    border-color: #005388;
    border-radius: 0;
    -webkit-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
  .nav-main ul > li ul .row {
    display: inherit;
    margin-right: 0;
    margin-left: 0;
  }
  .nav-main ul > li ul .col-line-vertical-nav {
    min-height: auto;
    border-left: none;
    width: 100vw;
    padding-top: 0;
    padding-right: 0;
    padding-left: 0;
  }
  .nav-main ul > li ul .col-line-vertical-nav li a {
    position: relative;
    display: block;
  }
  .nav-main ul > li ul .col-line-vertical-nav li a.list-headline {
    display: block;
  }
  .nav-main ul > li ul .col-line-vertical-nav .wrapper-button-chat-online {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .nav-main ul > li ul .col-line-vertical-nav .wrapper-button-chat-online .chat-online--headline {
    padding-top: 15px;
    padding-right: 30px;
    padding-left: 30px;
    color: #FFF;
    font-weight: 300;
    margin-bottom: 7px;
  }
  .nav-main ul > li ul .col-line-vertical-nav .wrapper-button-chat-online .chat-online--description {
    display: block;
    padding-right: 30px;
    padding-left: 30px;
    font-size: 18px;
    color: #FFF;
    margin-bottom: 25px;
  }
  .nav-main ul > li ul .col-line-vertical-nav:nth-child(2) li, .nav-main ul > li ul .col-line-vertical-nav:nth-child(3) li, .nav-main ul > li ul .col-line-vertical-nav:last-child li {
    min-height: auto;
  }
  .nav-main ul > li ul .col-line-vertical-nav:nth-child(2) li .list-headline, .nav-main ul > li ul .col-line-vertical-nav:nth-child(3) li .list-headline, .nav-main ul > li ul .col-line-vertical-nav:last-child li .list-headline {
    font-size: 18px;
    padding-left: 30px;
    font-weight: 300;
    line-height: 45px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .nav-main ul > li ul .col-line-vertical-nav:nth-child(2) li .see-more,
  .nav-main ul > li ul .col-line-vertical-nav:nth-child(2) li small,
  .nav-main ul > li ul .col-line-vertical-nav:nth-child(2) li .illustrative-picture, .nav-main ul > li ul .col-line-vertical-nav:nth-child(3) li .see-more,
  .nav-main ul > li ul .col-line-vertical-nav:nth-child(3) li small,
  .nav-main ul > li ul .col-line-vertical-nav:nth-child(3) li .illustrative-picture, .nav-main ul > li ul .col-line-vertical-nav:last-child li .see-more,
  .nav-main ul > li ul .col-line-vertical-nav:last-child li small,
  .nav-main ul > li ul .col-line-vertical-nav:last-child li .illustrative-picture {
    display: none;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child .list-headline {
    display: none;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child li {
    border-bottom: none;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child li .media {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 26px;
    padding-right: 30px;
    padding-left: 30px;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child li .media .media-left {
    display: none;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child li .media:nth-child(2) {
    margin-top: 37px;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child li .media:nth-child(4) {
    margin-bottom: 26px;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child li .media .media-body small {
    font-size: 18px;
    color: #FFF;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child li .media .media-body .phone-number {
    font-size: 18px;
    color: #FFF;
  }
  .nav-main ul > li ul .col-line-vertical-nav:last-child li .media .media-body .phone-number:hover, .nav-main ul > li ul .col-line-vertical-nav:last-child li .media .media-body .phone-number:focus {
    color: #FFF;
  }
  .nav-main ul > li ul li {
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    width: 100vw;
  }
  .nav-main ul > li ul li:before {
    display: none;
  }
  .nav-main ul > li ul li > a {
    padding-top: 7.5px;
    padding-right: 30px;
    padding-bottom: 7.5px;
    padding-left: 30px;
    color: #FFF;
    font-size: 18px;
    -webkit-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  .nav-main ul > li ul li > a:hover {
    color: #FFF;
    background-color: rgba(0, 0, 0, 0.2);
    outline: none;
  }
  .nav-main ul > li ul li > a:before {
    display: none;
  }
  .nav-main ul > li.open ul {
    padding-bottom: 80px;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@media screen and (max-width: 728px) {
  .nav-main a:hover span {
    color: #FFF;
  }
  li.link-submenu:hover span {
    color: #FFF !important;
  }
}

.link-submenu:hover > ul.intern-menu {
  visibility: visible;
  opacity: 1;
  z-index: 999;
  display: block;
}

.title-header {
  color: #016EA7;
}

.section-nav-blog {
  padding: 0;
  background-color: #005388;
}

.section-nav-blog .nav-tabs {
  border: none !important;
}

.section-nav-blog .nav-link {
  color: #fff !important;
  padding: 10px 0 !important;
  border-radius: 0 !important;
  border: none !important;
}

.section-nav-blog .nav-link.active {
  color: #005388 !important;
  border: none !important;
}

.section-nav-blog .nav-link:hover {
  border: none !important;
  background-color: #d6e7f0 !important;
  color: #005388 !important;
}

@media (min-width: 1021px) {
  .link-submenu-costumer-mobile,
  .link-submenu-logged-mobile,
  .link-submenu-register-mobile,
  .link-submenu-loggout-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .link-submenu-costumer {
    display: none !important;
  }
  .link-submenu-costumer:hover {
    background: none;
    color: #9ec8de;
  }
  .link-submenu-costumer:hover a.link-costumer {
    color: #9ec8de;
  }
  .link-submenu-costumer:hover a.link-costumer i {
    color: #9ec8de;
  }
  .link-submenu-costumer a.link-costumer {
    color: #9ec8de;
    display: table;
    font-size: 55px;
    padding: 0;
    margin-top: -5px;
  }
  .link-submenu-costumer a.link-costumer i {
    border: 3px solid #9ec8de;
    border-radius: 50%;
  }
  .link-submenu-costumer a.link-costumer .menu-messages {
    position: absolute;
    right: 0;
    bottom: 0;
    background: #ffde00;
    border-radius: 100%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    text-align: center;
    color: #005388;
  }
  .link-submenu-costumer a.link-costumer:after {
    display: none;
  }
  .link-submenu-costumer a.link-costumer:before {
    display: none;
  }
  .link-submenu-costumer a.link-costumer:hover {
    color: #9ec8de !important;
  }
  .link-submenu-costumer a:hover {
    color: #9ec8de;
  }
  .link-submenu-costumer .dashboard-menu {
    -webkit-box-shadow: 0 4px 24px 0 rgba(0, 83, 136, 0.3);
            box-shadow: 0 4px 24px 0 rgba(0, 83, 136, 0.3);
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    right: -60px;
    top: 80px;
    width: 445px;
    padding: 0;
  }
  .link-submenu-costumer .dashboard-menu:before {
    content: '';
    display: block;
    position: absolute;
    right: 76px;
    bottom: 100%;
    width: 30px;
    height: 30px;
    border-top: 15px solid transparent;
    border-right: 15px solid transparent;
    border-bottom: 15px solid #fff;
    border-left: 15px solid transparent;
    z-index: 9999;
  }
  .link-submenu-costumer .dashboard-menu:after {
    content: '';
  }
  .link-submenu-costumer .dashboard-menu .customer-menu {
    width: 50%;
    display: block;
    position: relative;
    float: left;
    padding: 20px;
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
            align-self: stretch;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .link-submenu-costumer .dashboard-menu .customer-menu .avatar-menu {
    display: table;
    margin-right: auto;
    margin-left: auto;
    width: 140px;
    height: 140px;
    background-color: #d6e7f0;
    border-radius: 50%;
    text-align: center;
    position: relative;
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .link-submenu-costumer .dashboard-menu .customer-menu .avatar-menu i {
    font-size: 120px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
  .link-submenu-costumer .dashboard-menu .customer-menu .welcome {
    text-align: center;
  }
  .link-submenu-costumer .dashboard-menu .customer-menu .welcome .name {
    display: block;
    margin-bottom: 5px;
  }
  .link-submenu-costumer .dashboard-menu .customer-menu .welcome .costumer-type, .link-submenu-costumer .dashboard-menu .customer-menu .welcome .caption {
    display: block;
    font-size: 13px;
    line-height: 1.3;
    color: #016EA7;
  }
  .link-submenu-costumer .dashboard-menu .customer-menu .welcome .costumer-type .wrapper-stars, .link-submenu-costumer .dashboard-menu .customer-menu .welcome .caption .wrapper-stars {
    margin-left: 5px;
  }
  .link-submenu-costumer .dashboard-menu .customer-menu .btn-area {
    width: 100%;
    position: absolute;
    bottom: 20px;
    max-width: 182px;
    padding: 16px 0;
  }
  .link-submenu-costumer .dashboard-menu .customer-itens {
    width: 50%;
    display: block;
    position: relative;
    float: left;
    -webkit-box-shadow: -3px 0px 16px rgba(0, 83, 136, 0.2);
            box-shadow: -3px 0px 16px rgba(0, 83, 136, 0.2);
  }
  .link-submenu-costumer .dashboard-menu .customer-itens li {
    position: relative;
    border-bottom: 1px solid #d6e7f0;
  }
  .link-submenu-costumer .dashboard-menu .customer-itens li:before {
    display: none;
  }
  .link-submenu-costumer .dashboard-menu .customer-itens li:last-child {
    border: none;
  }
  .link-submenu-costumer .dashboard-menu .customer-itens li a {
    line-height: 70px;
    padding: 8px 20px;
    -webkit-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
  }
  .link-submenu-costumer .dashboard-menu .customer-itens li a:before {
    display: none;
  }
  .link-submenu-costumer .dashboard-menu .customer-itens li a:hover {
    background-color: rgba(214, 231, 240, 0.3);
  }
  .link-submenu-costumer .dashboard-menu .customer-itens li a .badge-menu {
    border-radius: 50%;
    width: 22px;
    height: 22px;
    background-color: #FFDE00;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .link-submenu-costumer.logged-out {
    position: relative;
    margin-right: 0;
    top: -9px;
  }
  .link-submenu-costumer.logged-out:hover a {
    color: #FFDE00 !important;
  }
  .link-submenu-costumer.logged-out:before {
    content: '';
    display: block;
    background-color: #005388;
    width: 1px;
    height: 67%;
    position: absolute;
    bottom: 50%;
  }
  .link-submenu-costumer.logged-out:after {
    content: '';
    display: block;
    background-color: #005388;
    width: 1px;
    height: 46px;
    position: absolute;
    top: 50%;
  }
  .link-submenu-costumer .link-login, .link-submenu-costumer .link-register {
    display: block;
    color: #FFDE00;
    line-height: 0;
    padding-left: 20px;
  }
  .link-submenu-costumer .link-login a, .link-submenu-costumer .link-register a {
    color: #FFDE00;
    text-transform: uppercase;
    display: inline-block;
    line-height: 1.7;
    font-size: 13px;
  }
  .link-submenu-costumer .link-login a:hover, .link-submenu-costumer .link-login a:focus, .link-submenu-costumer .link-register a:hover, .link-submenu-costumer .link-register a:focus {
    color: #FFDE00;
  }
  .link-submenu-costumer .link-login a i, .link-submenu-costumer .link-register a i {
    float: left;
  }
  .link-submenu-costumer .link-login a i.icon-user-logged, .link-submenu-costumer .link-register a i.icon-user-logged {
    font-size: 36px;
    float: left;
  }
  .link-submenu-costumer .link-login a i.icon-arrow-right-circle, .link-submenu-costumer .link-register a i.icon-arrow-right-circle {
    font-size: 24px;
    float: right;
    margin-left: 10px;
  }
  .link-submenu-costumer .link-login {
    position: relative;
  }
  .link-submenu-costumer .link-login:before {
    content: '';
    height: 1px;
    width: 1000px;
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #005388;
  }
  .link-submenu-costumer .link-login a {
    line-height: 2.5;
    position: relative;
    left: 0px;
  }
  .link-submenu-costumer .link-register {
    padding-top: 10px;
  }
}

@media (max-width: 768px) {
  .link-submenu-costumer-mobile {
    /*display: block !important;*/
  }
  .link-submenu-costumer-mobile .badge-menu {
    border-radius: 50%;
    width: 22px;
    height: 22px;
    background-color: #FFDE00;
    display: inline-block;
    text-align: center;
    line-height: 1.4;
    font-size: 14px;
    position: absolute;
    right: 20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    color: #016EA7;
  }
  .link-submenu-costumer {
    display: none !important;
  }
}

.logged-in {
  display: none !important;
}

.see-more-sempre {
  bottom: -284px;
  width: 246px;
}

@media (min-width: 1021px) and (max-width: 1199px) {
  .nav-main .navbar-brand {
    margin: 0;
    max-width: 150px;
  }
  .nav-main ul > li {
    margin-right: -1px;
  }
}

@media (min-width: 768px) and (max-width: 860px) {
  .sprite {
    display: none !important;
  }
}

.para-voce-link {
  top: 0;
  margin-top: 329px !important;
  width: 247px;
}

.atendimentoSeeMore {
  bottom: -29px !important;
}

@media (min-width: 1200px) {
  .intern-menu__custom-li a {
    line-height: 20px !important;
    min-height: 45px;
    max-width: 80%;
  }
}

.see-more:hover {
  background: #005388 !important;
  color: #fff !important;
}

.nav-bar {
  line-height: 1;
  height: auto;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-top: 2px solid rgba(1, 110, 167, 0.3);
  border-bottom: 2px solid rgba(1, 110, 167, 0.3);
  padding: 0 0;
  background: #e5f0f6;
  color: #000;
  fill: #000;
  /* White */
}

.nav-bar ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 100%;
  padding: 0px 0;
  margin: 0 -15px;
}

.nav-bar ul li {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  color: #016EA7;
  fill: #016EA7;
  text-align: center;
  line-height: 1;
  font-size: 20px;
  font-weight: 400;
  height: 100%;
  position: relative;
  padding: 0 15px;
  position: relative;
}

@media only screen and (min-width: 1200px) {
  .nav-bar ul li:not(:last-child) {
    margin-right: 30px;
  }
}

.nav-bar ul li:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 10px;
  background: #005388;
  -webkit-transform: translateX(15px);
      -ms-transform: translateX(15px);
       -o-transform: translateX(15px);
          transform: translateX(15px);
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  transition: all 0.6s;
}

.nav-bar ul li:hover:after, .nav-bar ul li.active:after {
  width: 100%;
}

.nav-bar ul li:not(.active):after {
  opacity: 0.2;
  height: 4px;
}

.nav-bar ul li button, .nav-bar ul li a {
  display: block;
  width: 100%;
  background: transparent;
  border: 0;
  padding: 60px 0px 30px;
  text-transform: inherit;
  font-weight: weight;
  text-align: center;
}

.nav-bar ul li a > i, .nav-bar ul li a > svg, .nav-bar ul li a > img, .nav-bar ul li button > i, .nav-bar ul li button > svg, .nav-bar ul li button > img {
  width: 22px;
  height: 22px;
  line-height: 22px;
  margin: 0 auto 8px !important;
}

.nav-bar ul li i, .nav-bar ul li i.material-icons {
  line-height: 1;
  height: auto;
}

.nav-bar ul li i, .nav-bar ul li svg {
  display: inline-block;
}

.nav-bar ul li a, .nav-bar ul li a:hover, .nav-bar ul li a:active, .nav-bar ul li a:visited {
  text-decoration: none;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
}

@media only screen and (max-width: 1200px) {
  .nav-bar ul li {
    font-size: 16px;
  }
  .nav-bar ul li button, .nav-bar ul li a {
    padding-top: 30px;
  }
}

@media only screen and (max-width: 980px) {
  .nav-bar {
    position: relative;
  }
  .nav-bar:after {
    content: "";
    display: block;
    position: absolute;
    width: 120px;
    height: 100%;
    top: 0;
    right: -5px;
    background-image: -webkit-gradient(linear, right top, left top, from(#FFF), to(transparent));
    background-image: -webkit-linear-gradient(right, #FFF, transparent);
    background-image: -o-linear-gradient(right, #FFF, transparent);
    background-image: linear-gradient(to left, #FFF, transparent);
    z-index: 10;
  }
  .nav-bar ul {
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    position: relative;
  }
  .nav-bar ul li {
    font-size: 18px;
  }
}

.nav-bar.white {
  border: 0;
  background-color: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 5px 15px;
          box-shadow: rgba(0, 0, 0, 0.15) 0 5px 15px;
}

.nav-list {
  margin-bottom: 50px;
  padding-left: 0;
  list-style: none;
}

.nav-list > li {
  color: #016EA7;
  font-size: 18px;
  margin-bottom: 10px;
  position: relative;
}

.nav-list > li > a {
  color: #005388;
  font-weight: 400;
}

.nav-list > li > a:hover:before, .nav-list > li > a:focus:before {
  opacity: 1;
  left: -15px;
}

.nav-list > li > a:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 50%;
  left: -20px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  border-top: 5px solid transparent;
  border-left: 5px solid #005388;
  border-bottom: 5px solid transparent;
  opacity: 0;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

.nav-list--bold > li > a {
  color: #016EA7;
  font-weight: bold;
}

.nav-list--small > li {
  font-size: 0.875em;
}

.nav-list--small > li > a {
  color: #016EA7;
}

.nav-list--small > li > a:hover:before, .nav-list--small > li > a:focus:before {
  left: -12px;
}

.nav-list--small > li > a:before {
  left: -17px;
  border-left-width: 7px;
}

.nav-steps {
  position: relative;
}

.nav-steps ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  z-index: 1;
}

.nav-steps li {
  margin: 0 8.5px;
  text-align: center;
  min-height: 50px;
}

.nav-steps li .step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #9ec8de;
  background: #016EA7;
  color: #FFF;
  text-decoration: none;
  font-size: 0.75em;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.nav-steps li .link {
  display: block;
  color: #FFF;
  font-size: 12px;
}

.nav-steps li .link:hover, .nav-steps li .link:focus {
  color: #FFF;
}

.nav-steps li .link .edit {
  display: inline-block;
  line-height: 1.1;
}

.nav-steps li.active .step {
  background: #FFDE00;
  border: 2px solid #FFF;
  color: #016EA7;
  cursor: default;
}

.nav-steps li.active .step:hover {
  background: #FFDE00;
  border: 2px solid #FFF;
  color: #016EA7;
}

.nav-steps li:hover a.step, .nav-steps li:hover button.step {
  background: #014d74;
  color: #FFF;
  cursor: pointer;
}

.nav-social {
  list-style-type: none;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.nav-social .links-social-holder {
  width: 240px;
  font-size: 27px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-social .links-social-holder a:last-child {
  font-size: 36px;
}

.nav-social .links-social-title {
  margin-right: 50px;
}

.nav-social .links-social-holder {
  width: 240px;
  font-size: 27px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.nav-social .links-social-holder:last-child {
  font-size: 36px;
}

.nav-social .links-social-title {
  margin-right: 50px;
}

.nav-social > li {
  color: #016EA7;
  font-size: 22px;
  line-height: 44px;
}

.nav-social > li a {
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
  position: relative;
  top: 0;
}

.nav-social > li a:hover, .nav-social > li a:focus {
  color: #016EA7;
  top: -6px;
}

@media (max-width: 1020px) {
  .nav-social {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .nav-social .links-social-title {
    margin: 0 0 24px;
    width: 100%;
  }
}

button, input[type=submit], input[type=reset], input[type=button] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  line-height: inherit;
  font-size: inherit;
  background: transparent;
  cursor: pointer;
}

button:focus, button:active, button:hover, input[type=submit]:focus, input[type=submit]:active, input[type=submit]:hover, input[type=reset]:focus, input[type=reset]:active, input[type=reset]:hover, input[type=button]:focus, input[type=button]:active, input[type=button]:hover {
  border: 0;
  outline: none !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}

button:disabled, input[type=submit]:disabled, input[type=reset]:disabled, input[type=button]:disabled {
  opacity: 0.3;
  cursor: default;
}

button *, input[type=submit] *, input[type=reset] *, input[type=button] * {
  cursor: inherit;
}

.list-buttons {
  display: inline-block;
}

.list-buttons .button {
  margin: 5px 2.5px;
}

.ripple {
  overflow: hidden;
  position: relative;
}

.ripple-effect {
  position: absolute;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  background: #FFF;
  background: currentColor;
  -webkit-animation: ripple-animation 2s;
       -o-animation: ripple-animation 2s;
          animation: ripple-animation 2s;
  cursor: pointer;
}

@-webkit-keyframes ripple-animation {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.4;
  }
  to {
    -webkit-transform: scale(100);
            transform: scale(100);
    opacity: 0;
  }
}

@-o-keyframes ripple-animation {
  from {
    -o-transform: scale(1);
       transform: scale(1);
    opacity: 0.4;
  }
  to {
    -o-transform: scale(100);
       transform: scale(100);
    opacity: 0;
  }
}

@keyframes ripple-animation {
  from {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    opacity: 0.4;
  }
  to {
    -webkit-transform: scale(100);
         -o-transform: scale(100);
            transform: scale(100);
    opacity: 0;
  }
}

/*===============================
=            BUTTONS            =
===============================*/
.button {
  display: inline-block;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  border: 1px;
  border-radius: 2px;
  vertical-align: middle;
  margin: 0;
  padding: 0.75rem 1.125rem;
  font-family: "Titillium Web", sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: normal;
  line-height: 1em;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  text-shadow: none;
  color: #005388;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-appearance: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  will-change: '';
  -webkit-tap-highlight-color: transparent;
  speak: none;
  font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  /*----------  Events  ----------*/
  /*----------  Helpers  ----------*/
  /*----------  Colors  ----------*/
  /*----------  Flat Buttons  ----------*/
  /*----------  Outlined Buttons  ----------*/
  /*----------  Align Buttons  ----------*/
  /*----------  Size Buttons  ----------*/
}

.button * {
  cursor: inherit;
}

.button > * {
  display: inline-block;
  vertical-align: middle;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.button i {
  font-size: 1.2em;
  margin-right: 6px;
}

.button i:first-child:not(:last-child) {
  margin-right: 5px;
}

.button i:last-child:not(:first-child) {
  margin-left: 5px;
}

.button i.normal {
  font-size: 21px;
}

.button i.small {
  font-size: 14px;
}

.button i.right {
  float: right;
  line-height: 1.4;
  margin-right: 0;
}

.button:disabled {
  opacity: 0.3;
  cursor: default;
}

.button:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

.button.link {
  background: transparent;
  padding: 0;
  border-radius: 0;
}

.button.link span:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background: rgba(0, 0, 0, 0.15);
  background: currentColor;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.button.link:hover, .button.link:active, .button.link:focus {
  background: transparent;
}

.button.link:hover span:after, .button.link:active span:after, .button.link:focus span:after {
  width: 100%;
}

.button.link--icon:after {
  display: none;
}

.button.compact {
  padding: 0.5625rem;
}

.button.dense {
  padding: 0.25rem 0.5625rem;
}

.button.min-w {
  min-width: 200px;
}

.button.block {
  width: 100%;
}

.button.block + * {
  margin-top: 10px;
}

.button.rounded {
  border-radius: 6px;
}

.button.rounded--top {
  border-radius: 6px 6px 0 0;
}

.button.rounded--bottom {
  border-radius: 0 0 6px 6px;
}

.button.circle {
  border-radius: 50%;
}

.button.circle:before, .button.circle:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 100%;
}

.button.circle:before {
  border: 2px solid transparent;
}

.button.circle:after {
  border: 0px solid transparent;
}

.button.circle:hover {
  background: transparent;
}

.button.circle:hover:before {
  border-top-color: #aeb5be;
  border-right-color: #aeb5be;
  border-bottom-color: #aeb5be;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.circle:hover:after {
  border-top: 2px solid #aeb5be;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.square {
  border-radius: 0 !important;
}

.button.uppercase {
  text-transform: uppercase;
}

.button.lowercase {
  text-transform: lowercase;
}

.button.left {
  text-align: left;
}

.button.left i {
  margin-left: 2.25rem !important;
}

.button.dash {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: left;
}

.button.dash span:last-child:not(:first-child) {
  text-align: right;
}

.button.dash.contrast i:after {
  background: rgba(74, 142, 178, 0.2);
}

.button.dash i {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 1rem;
  position: relative;
}

.button.dash i:after {
  content: "";
  display: block;
  height: 300%;
  width: 1px;
  background: inherit;
  background: currentColor;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.button.dash i:first-child:not(:last-child) {
  left: 0;
  padding-left: 0;
  margin-right: 1rem;
}

.button.dash i:first-child:not(:last-child):after {
  right: 0;
}

.button.dash i:last-of-type {
  right: 0;
  padding-right: 0;
  margin-left: 1rem;
}

.button.dash i:last-of-type:after {
  left: 0;
}

.button.dash:hover:not(.flat) i:after {
  width: 2px;
  -webkit-transition: width 0.25s ease-out;
  -o-transition: width 0.25s ease-out;
  transition: width 0.25s ease-out;
}

.button.loading {
  padding-right: 60px;
  position: relative;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px'\a       width='40px' height='40px' viewBox='0 0 40 40' enable-background='new 0 0 40 40' xml:space='preserve'><path opacity='0.2' fill='#005388' d='M20.201,5.169c-8.254,0-14.946,6.692-14.946,14.946c0,8.255,6.692,14.946,14.946,14.946\a       s14.946-6.691,14.946-14.946C35.146,11.861,28.455,5.169,20.201,5.169z M20.201,31.749c-6.425,0-11.634-5.208-11.634-11.634\a       c0-6.425,5.209-11.634,11.634-11.634c6.425,0,11.633,5.209,11.633,11.634C31.834,26.541,26.626,31.749,20.201,31.749z'/> <path fill='#005388' d='M26.013,10.047l1.654-2.866c-2.198-1.272-4.743-2.012-7.466-2.012h0v3.312h0\a       C22.32,8.481,24.301,9.057,26.013,10.047z'> <animateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 20 20' to='360 20 20' dur='0.5s' repeatCount='indefinite'/></path></svg>");
  -webkit-background-size: 24px 24px;
          background-size: 24px;
  background-position: -webkit-calc(100% - 7px) center;
  background-position: calc(100% - 7px) center;
  background-repeat: no-repeat;
}

.button.loading.flat.primary, .button.loading.flat.secondary, .button.loading.flat.danger, .button.loading.flat.facebook {
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' x='0px' y='0px'\a         width='40px' height='40px' viewBox='0 0 40 40' enable-background='new 0 0 40 40' xml:space='preserve'><path opacity='0.2' fill='white' d='M20.201,5.169c-8.254,0-14.946,6.692-14.946,14.946c0,8.255,6.692,14.946,14.946,14.946\a         s14.946-6.691,14.946-14.946C35.146,11.861,28.455,5.169,20.201,5.169z M20.201,31.749c-6.425,0-11.634-5.208-11.634-11.634\a         c0-6.425,5.209-11.634,11.634-11.634c6.425,0,11.633,5.209,11.633,11.634C31.834,26.541,26.626,31.749,20.201,31.749z'/> <path fill='white' d='M26.013,10.047l1.654-2.866c-2.198-1.272-4.743-2.012-7.466-2.012h0v3.312h0\a         C22.32,8.481,24.301,9.057,26.013,10.047z'> <animateTransform attributeType='xml' attributeName='transform' type='rotate' from='0 20 20' to='360 20 20' dur='0.5s' repeatCount='indefinite'/></path></svg>");
}

.button.loading.dash i {
  display: none;
}

.button.icon {
  padding: 0.625rem !important;
}

.button.shadow {
  -webkit-box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 1px -2px rgba(0, 0, 0, 0.2), 0px 2px 2px 0px rgba(0, 0, 0, 0.14), 0px 1px 5px 0px rgba(0, 0, 0, 0.12);
  -webkit-transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button.shadow:hover, .button.shadow:focus {
  -webkit-box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 2px 4px -1px rgba(0, 0, 0, 0.2), 0px 4px 5px 0px rgba(0, 0, 0, 0.14), 0px 1px 10px 0px rgba(0, 0, 0, 0.12);
}

.button.shadow-2x {
  -webkit-box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.2), 0px 2px 12px 0px rgba(0, 0, 0, 0.14), 0px 1px 25px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 3px 10px -2px rgba(0, 0, 0, 0.2), 0px 2px 12px 0px rgba(0, 0, 0, 0.14), 0px 1px 25px 0px rgba(0, 0, 0, 0.12);
  -webkit-transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button.shadow-2x:hover, .button.shadow-2x:focus {
  -webkit-box-shadow: 0px 2px 18px -1px rgba(0, 0, 0, 0.2), 0px 4px 15px 0px rgba(0, 0, 0, 0.14), 0px 1px 20px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 2px 18px -1px rgba(0, 0, 0, 0.2), 0px 4px 15px 0px rgba(0, 0, 0, 0.14), 0px 1px 20px 0px rgba(0, 0, 0, 0.12);
}

.button.shadow--light-2x {
  -webkit-box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.02), 0 5px 15px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.02);
          box-shadow: 0 1px 10px 0 rgba(0, 0, 0, 0.02), 0 5px 15px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.02);
  -webkit-transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1), -webkit-box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button.shadow--light-2x:hover, .button.shadow--light-2x:focus {
  -webkit-box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.08), 0 10px 30px 0 rgba(0, 0, 0, 0.14), 0 1px 20px 0 rgba(0, 0, 0, 0.08);
          box-shadow: 0 1px 20px 0 rgba(0, 0, 0, 0.08), 0 10px 30px 0 rgba(0, 0, 0, 0.14), 0 1px 20px 0 rgba(0, 0, 0, 0.08);
}

.button.primary {
  color: #005388;
  background-color: transparent;
  border-color: transparent;
}

.button.primary:hover, .button.primary:active {
  color: #003455;
}

.button.primary-light {
  color: #00a7ff;
  background-color: transparent;
  border-color: transparent;
}

.button.primary-light:hover, .button.primary-light:active {
  color: #0086cc;
}

.button.light {
  color: #9ec8de;
  background-color: transparent;
  border-color: transparent;
}

.button.light:hover, .button.light:active {
  color: #78b2d1;
}

.button.secondary {
  color: #016EA7;
  background-color: transparent;
  border-color: transparent;
}

.button.secondary:hover, .button.secondary:active {
  color: #014d74;
}

.button.contrast {
  color: #FFDE00;
  background-color: transparent;
  border-color: transparent;
}

.button.contrast:hover, .button.contrast:active {
  color: #ccb200;
}

.button.accent {
  color: #4E7A96;
  background-color: transparent;
  border-color: transparent;
}

.button.accent:hover, .button.accent:active {
  color: #3d5f74;
}

.button.clean {
  color: #e5f0f6;
  background-color: transparent;
  border-color: transparent;
}

.button.clean:hover, .button.clean:active {
  color: #bfdae9;
}

.button.success {
  color: #3ed22c;
  background-color: transparent;
  border-color: transparent;
}

.button.success:hover, .button.success:active {
  color: #32a823;
}

.button.danger {
  color: #c82d2d;
  background-color: transparent;
  border-color: transparent;
}

.button.danger:hover, .button.danger:active {
  color: #9e2424;
}

.button.info {
  color: #2cbbd2;
  background-color: transparent;
  border-color: transparent;
}

.button.info:hover, .button.info:active {
  color: #2395a8;
}

.button.warning {
  color: #d2522c;
  background-color: transparent;
  border-color: transparent;
}

.button.warning:hover, .button.warning:active {
  color: #a84223;
}

.button.facebook {
  color: #3B5997;
  background-color: transparent;
  border-color: transparent;
}

.button.facebook:hover, .button.facebook:active {
  color: #2d4372;
}

.button.twitter {
  color: #2CA9E1;
  background-color: transparent;
  border-color: transparent;
}

.button.twitter:hover, .button.twitter:active {
  color: #1b8cbf;
}

.button.whatsapp {
  color: #2ecc71;
  background-color: transparent;
  border-color: transparent;
}

.button.whatsapp:hover, .button.whatsapp:active {
  color: #25a25a;
}

.button.white {
  color: #FFF;
  background-color: transparent;
  border-color: transparent;
}

.button.white:hover, .button.white:active {
  color: #e6e6e6;
}

.button.migrate {
  color: #4A8EB2;
}

.button.font-color--secondary {
  color: #016EA7 !important;
}

.button.flat {
  background-color: #f5f5f5;
  color: #222;
}

.button.flat:not(.circle):before, .button.flat:not(.circle):after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid transparent;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
}

.button.flat:hover:before, .button.flat:hover:after {
  width: 100%;
  height: 100%;
}

.button.flat:active {
  background-color: #a9b0b9;
  border-color: #a9b0b9;
  color: #fff;
}

.button.flat:hover {
  background-color: #b1b8c0;
  color: #fff;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat:hover:not(.circle):before {
  border-top-color: #b1b8c0;
  border-right-color: #b1b8c0;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat:hover:not(.circle):after {
  border-bottom-color: #b1b8c0;
  border-left-color: #b1b8c0;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.flat.circle:before, .button.flat.circle:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 100%;
}

.button.flat.circle:before {
  border: 2px solid transparent;
}

.button.flat.circle:after {
  border: 0px solid transparent;
}

.button.flat.circle:hover:before {
  border-top-color: #a9b0b9;
  border-right-color: #a9b0b9;
  border-bottom-color: #a9b0b9;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.flat.circle:hover:after {
  border-top: 2px solid #a9b0b9;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.flat.primary {
  color: #fff;
  background-color: #005388;
  border-color: #005388;
}

.button.flat.primary:active {
  background-color: #003455;
  border-color: #003455;
  color: #fff;
}

.button.flat.primary:hover {
  background-color: #003d64;
  color: #fff;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat.primary:hover:not(.circle):before {
  border-top-color: #003d64;
  border-right-color: #003d64;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat.primary:hover:not(.circle):after {
  border-bottom-color: #003d64;
  border-left-color: #003d64;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.flat.primary.circle:hover:before {
  border-top-color: #003455;
  border-right-color: #003455;
  border-bottom-color: #003455;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.flat.primary.circle:hover:after {
  border-top: 2px solid #003455;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.flat.primary-light {
  color: #fff;
  background-color: #00a7ff;
  border-color: #00a7ff;
}

.button.flat.primary-light:active {
  background-color: #0086cc;
  border-color: #0086cc;
  color: #fff;
}

.button.flat.primary-light:hover {
  background-color: #0090db;
  color: #fff;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat.primary-light:hover:not(.circle):before {
  border-top-color: #0090db;
  border-right-color: #0090db;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat.primary-light:hover:not(.circle):after {
  border-bottom-color: #0090db;
  border-left-color: #0090db;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.flat.primary-light.circle:hover:before {
  border-top-color: #0086cc;
  border-right-color: #0086cc;
  border-bottom-color: #0086cc;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.flat.primary-light.circle:hover:after {
  border-top: 2px solid #0086cc;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.flat.light {
  color: #fff;
  background-color: #9ec8de;
  border-color: #9ec8de;
}

.button.flat.light:active {
  background-color: #78b2d1;
  border-color: #78b2d1;
  color: #fff;
}

.button.flat.light:hover {
  background-color: #83b9d5;
  color: #fff;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat.light:hover:not(.circle):before {
  border-top-color: #83b9d5;
  border-right-color: #83b9d5;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat.light:hover:not(.circle):after {
  border-bottom-color: #83b9d5;
  border-left-color: #83b9d5;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.flat.light.circle:hover:before {
  border-top-color: #78b2d1;
  border-right-color: #78b2d1;
  border-bottom-color: #78b2d1;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.flat.light.circle:hover:after {
  border-top: 2px solid #78b2d1;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.flat.secondary {
  color: #fff;
  background-color: #016EA7;
  border-color: #016EA7;
}

.button.flat.secondary:active {
  background-color: #014d74;
  border-color: #014d74;
  color: #fff;
}

.button.flat.secondary:hover {
  background-color: #015784;
  color: #fff;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat.secondary:hover:not(.circle):before {
  border-top-color: #015784;
  border-right-color: #015784;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat.secondary:hover:not(.circle):after {
  border-bottom-color: #015784;
  border-left-color: #015784;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.flat.secondary.circle:hover:before {
  border-top-color: #014d74;
  border-right-color: #014d74;
  border-bottom-color: #014d74;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.flat.secondary.circle:hover:after {
  border-top: 2px solid #014d74;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.flat.contrast {
  color: rgba(0, 0, 0, 0.7);
  background-color: #FFDE00;
  border-color: #FFDE00;
}

.button.flat.contrast:active {
  background-color: #ccb200;
  border-color: #ccb200;
  color: #fff;
}

.button.flat.contrast:hover {
  background-color: #dbbf00;
  color: #fff;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat.contrast:hover:not(.circle):before {
  border-top-color: #dbbf00;
  border-right-color: #dbbf00;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat.contrast:hover:not(.circle):after {
  border-bottom-color: #dbbf00;
  border-left-color: #dbbf00;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.flat.contrast.circle:hover:before {
  border-top-color: #ccb200;
  border-right-color: #ccb200;
  border-bottom-color: #ccb200;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.flat.contrast.circle:hover:after {
  border-top: 2px solid #ccb200;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.flat.accent {
  color: #fff;
  background-color: #4E7A96;
  border-color: #4E7A96;
}

.button.flat.accent:active {
  background-color: #3d5f74;
  border-color: #3d5f74;
  color: #fff;
}

.button.flat.accent:hover {
  background-color: #42677f;
  color: #fff;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat.accent:hover:not(.circle):before {
  border-top-color: #42677f;
  border-right-color: #42677f;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat.accent:hover:not(.circle):after {
  border-bottom-color: #42677f;
  border-left-color: #42677f;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.flat.accent.circle:hover:before {
  border-top-color: #3d5f74;
  border-right-color: #3d5f74;
  border-bottom-color: #3d5f74;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.flat.accent.circle:hover:after {
  border-top: 2px solid #3d5f74;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.flat.clean {
  color: rgba(0, 0, 0, 0.7);
  background-color: #e5f0f6;
  border-color: #e5f0f6;
}

.button.flat.clean:active {
  background-color: #bfdae9;
  border-color: #bfdae9;
  color: rgba(0, 0, 0, 0.7);
}

.button.flat.clean:hover {
  background-color: #cae1ed;
  color: rgba(0, 0, 0, 0.7);
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat.clean:hover:not(.circle):before {
  border-top-color: #cae1ed;
  border-right-color: #cae1ed;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat.clean:hover:not(.circle):after {
  border-bottom-color: #cae1ed;
  border-left-color: #cae1ed;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.flat.clean.circle:hover:before {
  border-top-color: #bfdae9;
  border-right-color: #bfdae9;
  border-bottom-color: #bfdae9;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.flat.clean.circle:hover:after {
  border-top: 2px solid #bfdae9;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.flat.success {
  color: #fff;
  background-color: #3ed22c;
  border-color: #3ed22c;
}

.button.flat.success:active {
  background-color: #32a823;
  border-color: #32a823;
  color: #fff;
}

.button.flat.success:hover {
  background-color: #35b426;
  color: #fff;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat.success:hover:not(.circle):before {
  border-top-color: #35b426;
  border-right-color: #35b426;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat.success:hover:not(.circle):after {
  border-bottom-color: #35b426;
  border-left-color: #35b426;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.flat.success.circle:hover:before {
  border-top-color: #32a823;
  border-right-color: #32a823;
  border-bottom-color: #32a823;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.flat.success.circle:hover:after {
  border-top: 2px solid #32a823;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.flat.danger {
  color: #fff;
  background-color: #c82d2d;
  border-color: #c82d2d;
}

.button.flat.danger:active {
  background-color: #9e2424;
  border-color: #9e2424;
  color: #fff;
}

.button.flat.danger:hover {
  background-color: #ab2626;
  color: #fff;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat.danger:hover:not(.circle):before {
  border-top-color: #ab2626;
  border-right-color: #ab2626;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat.danger:hover:not(.circle):after {
  border-bottom-color: #ab2626;
  border-left-color: #ab2626;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.flat.danger.circle:hover:before {
  border-top-color: #9e2424;
  border-right-color: #9e2424;
  border-bottom-color: #9e2424;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.flat.danger.circle:hover:after {
  border-top: 2px solid #9e2424;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.flat.info {
  color: #fff;
  background-color: #2cbbd2;
  border-color: #2cbbd2;
}

.button.flat.info:active {
  background-color: #2395a8;
  border-color: #2395a8;
  color: #fff;
}

.button.flat.info:hover {
  background-color: #26a1b4;
  color: #fff;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat.info:hover:not(.circle):before {
  border-top-color: #26a1b4;
  border-right-color: #26a1b4;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat.info:hover:not(.circle):after {
  border-bottom-color: #26a1b4;
  border-left-color: #26a1b4;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.flat.info.circle:hover:before {
  border-top-color: #2395a8;
  border-right-color: #2395a8;
  border-bottom-color: #2395a8;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.flat.info.circle:hover:after {
  border-top: 2px solid #2395a8;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.flat.warning {
  color: #fff;
  background-color: #d2522c;
  border-color: #d2522c;
}

.button.flat.warning:active {
  background-color: #a84223;
  border-color: #a84223;
  color: #fff;
}

.button.flat.warning:hover {
  background-color: #b44626;
  color: #fff;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat.warning:hover:not(.circle):before {
  border-top-color: #b44626;
  border-right-color: #b44626;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat.warning:hover:not(.circle):after {
  border-bottom-color: #b44626;
  border-left-color: #b44626;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.flat.warning.circle:hover:before {
  border-top-color: #a84223;
  border-right-color: #a84223;
  border-bottom-color: #a84223;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.flat.warning.circle:hover:after {
  border-top: 2px solid #a84223;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.flat.facebook {
  color: #fff;
  background-color: #3B5997;
  border-color: #3B5997;
}

.button.flat.facebook:active {
  background-color: #2d4372;
  border-color: #2d4372;
  color: #fff;
}

.button.flat.facebook:hover {
  background-color: #314a7d;
  color: #fff;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat.facebook:hover:not(.circle):before {
  border-top-color: #314a7d;
  border-right-color: #314a7d;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat.facebook:hover:not(.circle):after {
  border-bottom-color: #314a7d;
  border-left-color: #314a7d;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.flat.facebook.circle:hover:before {
  border-top-color: #2d4372;
  border-right-color: #2d4372;
  border-bottom-color: #2d4372;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.flat.facebook.circle:hover:after {
  border-top: 2px solid #2d4372;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.flat.twitter {
  color: #fff;
  background-color: #2CA9E1;
  border-color: #2CA9E1;
}

.button.flat.twitter:active {
  background-color: #1b8cbf;
  border-color: #1b8cbf;
  color: #fff;
}

.button.flat.twitter:hover {
  background-color: #1d96cc;
  color: #fff;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat.twitter:hover:not(.circle):before {
  border-top-color: #1d96cc;
  border-right-color: #1d96cc;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat.twitter:hover:not(.circle):after {
  border-bottom-color: #1d96cc;
  border-left-color: #1d96cc;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.flat.twitter.circle:hover:before {
  border-top-color: #1b8cbf;
  border-right-color: #1b8cbf;
  border-bottom-color: #1b8cbf;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.flat.twitter.circle:hover:after {
  border-top: 2px solid #1b8cbf;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.flat.whatsapp {
  color: #fff;
  background-color: #2ecc71;
  border-color: #2ecc71;
}

.button.flat.whatsapp:active {
  background-color: #25a25a;
  border-color: #25a25a;
  color: #fff;
}

.button.flat.whatsapp:hover {
  background-color: #27af61;
  color: #fff;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat.whatsapp:hover:not(.circle):before {
  border-top-color: #27af61;
  border-right-color: #27af61;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat.whatsapp:hover:not(.circle):after {
  border-bottom-color: #27af61;
  border-left-color: #27af61;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.flat.whatsapp.circle:hover:before {
  border-top-color: #25a25a;
  border-right-color: #25a25a;
  border-bottom-color: #25a25a;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.flat.whatsapp.circle:hover:after {
  border-top: 2px solid #25a25a;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.flat.white {
  color: rgba(0, 0, 0, 0.7);
  background-color: #FFF;
  border-color: #FFF;
}

.button.flat.white:active {
  background-color: #e6e6e6;
  border-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.7);
}

.button.flat.white:hover {
  background-color: #ededed;
  color: rgba(0, 0, 0, 0.7);
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat.white:hover:not(.circle):before {
  border-top-color: #ededed;
  border-right-color: #ededed;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat.white:hover:not(.circle):after {
  border-bottom-color: #ededed;
  border-left-color: #ededed;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.flat.white.circle:hover:before {
  border-top-color: #e6e6e6;
  border-right-color: #e6e6e6;
  border-bottom-color: #e6e6e6;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.flat.white.circle:hover:after {
  border-top: 2px solid #e6e6e6;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.flat.contrast {
  color: #016EA7;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Titillium Web Bold", sans-serif;
}

.button.flat.contrast:hover {
  background: #FFF14D;
  border-color: #ffe952;
  color: #016EA7;
}

.button.flat.contrast:hover:before {
  border-top-color: #ffe952 !important;
  border-right-color: #ffe952 !important;
}

.button.flat.contrast:hover:after {
  border-bottom-color: #ffe952 !important;
  border-left-color: #ffe952 !important;
}

.button.flat.clean {
  color: #016EA7;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Titillium Web Bold", sans-serif;
  font-size: 12px;
  border-radius: 3px;
  padding: 0.75rem 1rem;
}

.button.flat.clean:hover {
  color: #016EA7;
}

.button.flat.ice {
  background-color: #d6e7f0;
  color: #016EA7;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Titillium Web Bold", sans-serif;
}

.button.flat.ice:hover {
  background-color: #bcd8e6;
  color: #fff;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.flat.ice:hover:not(.circle):before {
  border-top-color: #bcd8e6;
  border-right-color: #bcd8e6;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.flat.ice:hover:not(.circle):after {
  border-bottom-color: #bcd8e6;
  border-left-color: #bcd8e6;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined {
  border: solid 1px #c5cad0;
  background-color: transparent;
  color: #222;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Titillium Web Bold", sans-serif;
}

.button.outlined:not(.circle):before, .button.outlined:not(.circle):after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid transparent;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
}

.button.outlined:not(.circle):hover {
  background-color: transparent;
}

.button.outlined:not(.circle):hover:before, .button.outlined:not(.circle):hover:after {
  width: 100%;
  height: 100%;
}

.button.outlined:active {
  background-color: transparent;
  border-color: #a9b0b9;
  color: #a9b0b9;
}

.button.outlined:not(.circle):hover {
  color: #545454;
  -webkit-transition: border 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: border 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: border 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.outlined:not(.circle):hover:before {
  border-top-color: #b1b8c0;
  border-right-color: #b1b8c0;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.outlined:not(.circle):hover:after {
  border-bottom-color: #b1b8c0;
  border-left-color: #b1b8c0;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined.circle:before, .button.outlined.circle:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 100%;
}

.button.outlined.circle:before {
  border: 1px solid transparent;
}

.button.outlined.circle:after {
  border: 0px solid transparent;
}

.button.outlined.circle:hover {
  border: solid 1px transparent !important;
}

.button.outlined.circle:hover:before {
  border-top-color: #a9b0b9;
  border-right-color: #a9b0b9;
  border-bottom-color: #a9b0b9;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.outlined.circle:hover:after {
  border-top: 2px solid #a9b0b9;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.outlined.outlined.primary {
  color: #005388;
  border-color: #005388;
}

.button.outlined.outlined.primary:active {
  border-color: #003455;
  color: #003455;
}

.button.outlined.outlined.primary:not(.circle):hover {
  color: #003d64;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.outlined.outlined.primary:not(.circle):hover:before {
  border-top-color: #003d64;
  border-right-color: #003d64;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.outlined.outlined.primary:not(.circle):hover:after {
  border-bottom-color: #003d64;
  border-left-color: #003d64;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined.outlined.primary.circle:hover {
  border: solid 1px transparent !important;
}

.button.outlined.outlined.primary.circle:hover:before {
  border-top-color: #003455;
  border-right-color: #003455;
  border-bottom-color: #003455;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.outlined.outlined.primary.circle:hover:after {
  border-top: 2px solid #003455;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.outlined.outlined.primary-light {
  color: #00a7ff;
  border-color: #00a7ff;
}

.button.outlined.outlined.primary-light:active {
  border-color: #0086cc;
  color: #0086cc;
}

.button.outlined.outlined.primary-light:not(.circle):hover {
  color: #0090db;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.outlined.outlined.primary-light:not(.circle):hover:before {
  border-top-color: #0090db;
  border-right-color: #0090db;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.outlined.outlined.primary-light:not(.circle):hover:after {
  border-bottom-color: #0090db;
  border-left-color: #0090db;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined.outlined.primary-light.circle:hover {
  border: solid 1px transparent !important;
}

.button.outlined.outlined.primary-light.circle:hover:before {
  border-top-color: #0086cc;
  border-right-color: #0086cc;
  border-bottom-color: #0086cc;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.outlined.outlined.primary-light.circle:hover:after {
  border-top: 2px solid #0086cc;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.outlined.outlined.light {
  color: #9ec8de;
  border-color: #9ec8de;
}

.button.outlined.outlined.light:active {
  border-color: #78b2d1;
  color: #78b2d1;
}

.button.outlined.outlined.light:not(.circle):hover {
  color: #83b9d5;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.outlined.outlined.light:not(.circle):hover:before {
  border-top-color: #83b9d5;
  border-right-color: #83b9d5;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.outlined.outlined.light:not(.circle):hover:after {
  border-bottom-color: #83b9d5;
  border-left-color: #83b9d5;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined.outlined.light.circle:hover {
  border: solid 1px transparent !important;
}

.button.outlined.outlined.light.circle:hover:before {
  border-top-color: #78b2d1;
  border-right-color: #78b2d1;
  border-bottom-color: #78b2d1;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.outlined.outlined.light.circle:hover:after {
  border-top: 2px solid #78b2d1;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.outlined.outlined.secondary {
  color: #016EA7;
  border-color: #016EA7;
}

.button.outlined.outlined.secondary:active {
  border-color: #014d74;
  color: #014d74;
}

.button.outlined.outlined.secondary:not(.circle):hover {
  color: #015784;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.outlined.outlined.secondary:not(.circle):hover:before {
  border-top-color: #015784;
  border-right-color: #015784;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.outlined.outlined.secondary:not(.circle):hover:after {
  border-bottom-color: #015784;
  border-left-color: #015784;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined.outlined.secondary.circle:hover {
  border: solid 1px transparent !important;
}

.button.outlined.outlined.secondary.circle:hover:before {
  border-top-color: #014d74;
  border-right-color: #014d74;
  border-bottom-color: #014d74;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.outlined.outlined.secondary.circle:hover:after {
  border-top: 2px solid #014d74;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.outlined.outlined.contrast {
  color: #FFDE00;
  border-color: #FFDE00;
}

.button.outlined.outlined.contrast:active {
  border-color: #ccb200;
  color: #ccb200;
}

.button.outlined.outlined.contrast:not(.circle):hover {
  color: #dbbf00;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.outlined.outlined.contrast:not(.circle):hover:before {
  border-top-color: #dbbf00;
  border-right-color: #dbbf00;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.outlined.outlined.contrast:not(.circle):hover:after {
  border-bottom-color: #dbbf00;
  border-left-color: #dbbf00;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined.outlined.contrast.circle:hover {
  border: solid 1px transparent !important;
}

.button.outlined.outlined.contrast.circle:hover:before {
  border-top-color: #ccb200;
  border-right-color: #ccb200;
  border-bottom-color: #ccb200;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.outlined.outlined.contrast.circle:hover:after {
  border-top: 2px solid #ccb200;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.outlined.outlined.accent {
  color: #4E7A96;
  border-color: #4E7A96;
}

.button.outlined.outlined.accent:active {
  border-color: #3d5f74;
  color: #3d5f74;
}

.button.outlined.outlined.accent:not(.circle):hover {
  color: #42677f;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.outlined.outlined.accent:not(.circle):hover:before {
  border-top-color: #42677f;
  border-right-color: #42677f;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.outlined.outlined.accent:not(.circle):hover:after {
  border-bottom-color: #42677f;
  border-left-color: #42677f;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined.outlined.accent.circle:hover {
  border: solid 1px transparent !important;
}

.button.outlined.outlined.accent.circle:hover:before {
  border-top-color: #3d5f74;
  border-right-color: #3d5f74;
  border-bottom-color: #3d5f74;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.outlined.outlined.accent.circle:hover:after {
  border-top: 2px solid #3d5f74;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.outlined.outlined.clean {
  color: #e5f0f6;
  border-color: #e5f0f6;
}

.button.outlined.outlined.clean:active {
  border-color: #bfdae9;
  color: #bfdae9;
}

.button.outlined.outlined.clean:not(.circle):hover {
  color: #cae1ed;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.outlined.outlined.clean:not(.circle):hover:before {
  border-top-color: #cae1ed;
  border-right-color: #cae1ed;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.outlined.outlined.clean:not(.circle):hover:after {
  border-bottom-color: #cae1ed;
  border-left-color: #cae1ed;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined.outlined.clean.circle:hover {
  border: solid 1px transparent !important;
}

.button.outlined.outlined.clean.circle:hover:before {
  border-top-color: #bfdae9;
  border-right-color: #bfdae9;
  border-bottom-color: #bfdae9;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.outlined.outlined.clean.circle:hover:after {
  border-top: 2px solid #bfdae9;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.outlined.outlined.success {
  color: #3ed22c;
  border-color: #3ed22c;
}

.button.outlined.outlined.success:active {
  border-color: #32a823;
  color: #32a823;
}

.button.outlined.outlined.success:not(.circle):hover {
  color: #35b426;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.outlined.outlined.success:not(.circle):hover:before {
  border-top-color: #35b426;
  border-right-color: #35b426;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.outlined.outlined.success:not(.circle):hover:after {
  border-bottom-color: #35b426;
  border-left-color: #35b426;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined.outlined.success.circle:hover {
  border: solid 1px transparent !important;
}

.button.outlined.outlined.success.circle:hover:before {
  border-top-color: #32a823;
  border-right-color: #32a823;
  border-bottom-color: #32a823;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.outlined.outlined.success.circle:hover:after {
  border-top: 2px solid #32a823;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.outlined.outlined.danger {
  color: #c82d2d;
  border-color: #c82d2d;
}

.button.outlined.outlined.danger:active {
  border-color: #9e2424;
  color: #9e2424;
}

.button.outlined.outlined.danger:not(.circle):hover {
  color: #ab2626;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.outlined.outlined.danger:not(.circle):hover:before {
  border-top-color: #ab2626;
  border-right-color: #ab2626;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.outlined.outlined.danger:not(.circle):hover:after {
  border-bottom-color: #ab2626;
  border-left-color: #ab2626;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined.outlined.danger.circle:hover {
  border: solid 1px transparent !important;
}

.button.outlined.outlined.danger.circle:hover:before {
  border-top-color: #9e2424;
  border-right-color: #9e2424;
  border-bottom-color: #9e2424;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.outlined.outlined.danger.circle:hover:after {
  border-top: 2px solid #9e2424;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.outlined.outlined.info {
  color: #2cbbd2;
  border-color: #2cbbd2;
}

.button.outlined.outlined.info:active {
  border-color: #2395a8;
  color: #2395a8;
}

.button.outlined.outlined.info:not(.circle):hover {
  color: #26a1b4;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.outlined.outlined.info:not(.circle):hover:before {
  border-top-color: #26a1b4;
  border-right-color: #26a1b4;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.outlined.outlined.info:not(.circle):hover:after {
  border-bottom-color: #26a1b4;
  border-left-color: #26a1b4;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined.outlined.info.circle:hover {
  border: solid 1px transparent !important;
}

.button.outlined.outlined.info.circle:hover:before {
  border-top-color: #2395a8;
  border-right-color: #2395a8;
  border-bottom-color: #2395a8;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.outlined.outlined.info.circle:hover:after {
  border-top: 2px solid #2395a8;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.outlined.outlined.warning {
  color: #d2522c;
  border-color: #d2522c;
}

.button.outlined.outlined.warning:active {
  border-color: #a84223;
  color: #a84223;
}

.button.outlined.outlined.warning:not(.circle):hover {
  color: #b44626;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.outlined.outlined.warning:not(.circle):hover:before {
  border-top-color: #b44626;
  border-right-color: #b44626;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.outlined.outlined.warning:not(.circle):hover:after {
  border-bottom-color: #b44626;
  border-left-color: #b44626;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined.outlined.warning.circle:hover {
  border: solid 1px transparent !important;
}

.button.outlined.outlined.warning.circle:hover:before {
  border-top-color: #a84223;
  border-right-color: #a84223;
  border-bottom-color: #a84223;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.outlined.outlined.warning.circle:hover:after {
  border-top: 2px solid #a84223;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.outlined.outlined.facebook {
  color: #3B5997;
  border-color: #3B5997;
}

.button.outlined.outlined.facebook:active {
  border-color: #2d4372;
  color: #2d4372;
}

.button.outlined.outlined.facebook:not(.circle):hover {
  color: #314a7d;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.outlined.outlined.facebook:not(.circle):hover:before {
  border-top-color: #314a7d;
  border-right-color: #314a7d;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.outlined.outlined.facebook:not(.circle):hover:after {
  border-bottom-color: #314a7d;
  border-left-color: #314a7d;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined.outlined.facebook.circle:hover {
  border: solid 1px transparent !important;
}

.button.outlined.outlined.facebook.circle:hover:before {
  border-top-color: #2d4372;
  border-right-color: #2d4372;
  border-bottom-color: #2d4372;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.outlined.outlined.facebook.circle:hover:after {
  border-top: 2px solid #2d4372;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.outlined.outlined.twitter {
  color: #2CA9E1;
  border-color: #2CA9E1;
}

.button.outlined.outlined.twitter:active {
  border-color: #1b8cbf;
  color: #1b8cbf;
}

.button.outlined.outlined.twitter:not(.circle):hover {
  color: #1d96cc;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.outlined.outlined.twitter:not(.circle):hover:before {
  border-top-color: #1d96cc;
  border-right-color: #1d96cc;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.outlined.outlined.twitter:not(.circle):hover:after {
  border-bottom-color: #1d96cc;
  border-left-color: #1d96cc;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined.outlined.twitter.circle:hover {
  border: solid 1px transparent !important;
}

.button.outlined.outlined.twitter.circle:hover:before {
  border-top-color: #1b8cbf;
  border-right-color: #1b8cbf;
  border-bottom-color: #1b8cbf;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.outlined.outlined.twitter.circle:hover:after {
  border-top: 2px solid #1b8cbf;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.outlined.outlined.whatsapp {
  color: #2ecc71;
  border-color: #2ecc71;
}

.button.outlined.outlined.whatsapp:active {
  border-color: #25a25a;
  color: #25a25a;
}

.button.outlined.outlined.whatsapp:not(.circle):hover {
  color: #27af61;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.outlined.outlined.whatsapp:not(.circle):hover:before {
  border-top-color: #27af61;
  border-right-color: #27af61;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.outlined.outlined.whatsapp:not(.circle):hover:after {
  border-bottom-color: #27af61;
  border-left-color: #27af61;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined.outlined.whatsapp.circle:hover {
  border: solid 1px transparent !important;
}

.button.outlined.outlined.whatsapp.circle:hover:before {
  border-top-color: #25a25a;
  border-right-color: #25a25a;
  border-bottom-color: #25a25a;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.outlined.outlined.whatsapp.circle:hover:after {
  border-top: 2px solid #25a25a;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.outlined.outlined.white {
  color: #FFF;
  border-color: #FFF;
}

.button.outlined.outlined.white:active {
  border-color: #e6e6e6;
  color: #e6e6e6;
}

.button.outlined.outlined.white:not(.circle):hover {
  color: #ededed;
  -webkit-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  -o-transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
  transition: background 0.25s ease-out 0.25s, color 0.25s ease-out 0.30s;
}

.button.outlined.outlined.white:not(.circle):hover:before {
  border-top-color: #ededed;
  border-right-color: #ededed;
  -webkit-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  -o-transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
  transition: width 0.25s ease-out, height 0.25s ease-out 0.25s;
}

.button.outlined.outlined.white:not(.circle):hover:after {
  border-bottom-color: #ededed;
  border-left-color: #ededed;
  -webkit-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  -o-transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
  transition: height 0.25s ease-out, width 0.25s ease-out 0.25s;
}

.button.outlined.outlined.white.circle:hover {
  border: solid 1px transparent !important;
}

.button.outlined.outlined.white.circle:hover:before {
  border-top-color: #e6e6e6;
  border-right-color: #e6e6e6;
  border-bottom-color: #e6e6e6;
  -webkit-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  -o-transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
  transition: border-top-color 0.15s linear, border-right-color 0.15s linear 0.1s, border-bottom-color 0.15s linear 0.2s;
}

.button.outlined.outlined.white.circle:hover:after {
  border-top: 2px solid #e6e6e6;
  border-left-width: 2px;
  border-right-width: 2px;
  -webkit-transform: rotate(270deg);
      -ms-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
  -webkit-transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  transition: border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s;
  -o-transition: border-left-width 0s linear 0.35s, -o-transform 0.4s linear 0s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s;
  transition: transform 0.4s linear 0s, border-left-width 0s linear 0.35s, -webkit-transform 0.4s linear 0s, -o-transform 0.4s linear 0s;
}

.button.outlined.contrast {
  color: #005388;
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Titillium Web Bold", sans-serif;
}

.button.outlined .secondary {
  color: #016EA7;
}

.button.outlined.light {
  border-color: #9ec8de;
}

.button.outlined.light:hover, .button.outlined.light:focus {
  color: #016EA7 !important;
}

.button--print, .button--cancel-reservation, .button--see-values {
  text-align: center;
  min-width: 138px;
  height: 47px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 1em;
  padding: 4px 0;
  border-radius: 4px;
  font-weight: 600;
}

.button--print i, .button--cancel-reservation i, .button--see-values i {
  width: 50px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 1.4375em;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  margin-right: 14px;
}

.button--print-light, .button--cancel-reservation-light, .button--see-values-light {
  border: 1px solid #9ec8de !important;
  color: #005388 !important;
  padding-top: 0;
  padding-bottom: 0;
}

.button--print-light:hover, .button--print-light:focus, .button--cancel-reservation-light:hover, .button--cancel-reservation-light:focus, .button--see-values-light:hover, .button--see-values-light:focus {
  background-color: #FFF !important;
}

.button--print-light:before, .button--print-light:after, .button--cancel-reservation-light:before, .button--cancel-reservation-light:after, .button--see-values-light:before, .button--see-values-light:after {
  display: none;
}

.button--print-light i, .button--cancel-reservation-light i, .button--see-values-light i {
  color: #016EA7 !important;
  background-color: #E6EFF4 !important;
}

.button--print-light {
  min-width: 169px;
}

.button--cancel-reservation-light {
  min-width: 235px;
}

.button--see-values {
  min-width: 173px;
  padding-top: 0;
  padding-bottom: 0;
}

.button--see-values .icon-image {
  position: relative;
  min-width: 50px;
  height: 100%;
  padding-right: 5px;
  padding-left: 5px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  margin-right: 12px;
}

.button--see-values .icon-image img {
  max-width: 26px;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  margin-top: 2px;
  margin-left: 4px;
}

.button--right {
  float: right;
}

.button--left {
  float: left;
}

.button.mini {
  font-size: 0.5625em;
}

.button.tiny {
  font-size: 0.6875em;
}

.button.small {
  font-size: 0.8125em;
}

.button.medium {
  font-size: 1em;
}

.button.large {
  font-size: 1.25em;
}

.button.big {
  font-size: 1.5em;
}

.button.big--font-small {
  font-size: 1em;
}

.button.huge {
  font-size: 1.75em;
}

.button.massive {
  font-size: 2em;
}

.button.large {
  padding: 20px 25px;
}

.button.big {
  padding: 30px 25px;
}

.button.massive--font-small {
  font-size: 0.875em;
  font-weight: 400;
  padding: 14px 22px;
}

.button.massive--font-medium {
  font-size: 1.25em;
  font-weight: 400;
  padding: 18px;
}

.button.massive--font-large {
  font-size: 1.5em;
  font-weight: 400;
  padding: 21px;
}

.button.massive--text-normal {
  text-transform: none;
}

.button.small--font-medium {
  font-size: 0.875em;
}

.button.big--font-small {
  height: 56px;
  line-height: 2;
}

.button.large--font-small {
  height: 50px;
  line-height: 1.4;
}

.button.view-reservation-detail {
  font-size: 14px;
}

/*=====  End of BUTTONS  ======*/
.btn-parceiro {
  display: table !important;
  padding: 13px 15px !important;
}

/*----------  Render Optimezed ----------*/
#main-content, .master-flow, .header__top--last li .dropdown {
  visibility: hidden;
}

.menu-mobile--last {
  display: none;
}

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