@charset "UTF-8";
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 *  Owl Carousel - Core
 */
/* line 9, ../vendor.min.scss */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}

/* line 16, ../vendor.min.scss */
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}

/* line 21, ../vendor.min.scss */
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

/* line 28, ../vendor.min.scss */
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}

/* line 33, ../vendor.min.scss */
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

/* line 41, ../vendor.min.scss */
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}

/* line 48, ../vendor.min.scss */
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

/* line 51, ../vendor.min.scss */
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}

/* line 54, ../vendor.min.scss */
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 64, ../vendor.min.scss */
.owl-carousel.owl-loaded {
  display: block;
}

/* line 66, ../vendor.min.scss */
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

/* line 69, ../vendor.min.scss */
.owl-carousel.owl-hidden {
  opacity: 0;
}

/* line 71, ../vendor.min.scss */
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

/* line 73, ../vendor.min.scss */
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* line 78, ../vendor.min.scss */
.owl-carousel.owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

/* line 81, ../vendor.min.scss */
.owl-carousel.owl-rtl {
  direction: rtl;
}

/* line 83, ../vendor.min.scss */
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
/* line 87, ../vendor.min.scss */
.no-js .owl-carousel {
  display: block;
}

/*
 *  Owl Carousel - Animate Plugin
 */
/* line 93, ../vendor.min.scss */
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
          animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/* line 97, ../vendor.min.scss */
.owl-carousel .owl-animated-in {
  z-index: 0;
}

/* line 100, ../vendor.min.scss */
.owl-carousel .owl-animated-out {
  z-index: 1;
}

/* line 103, ../vendor.min.scss */
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
          animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
/* line 115, ../vendor.min.scss */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/*
 * 	Owl Carousel - Lazy Load Plugin
 */
/* line 121, ../vendor.min.scss */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 125, ../vendor.min.scss */
.owl-carousel .owl-item img.owl-lazy {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

/*
 * 	Owl Carousel - Video Plugin
 */
/* line 131, ../vendor.min.scss */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

/* line 136, ../vendor.min.scss */
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: -webkit-transform 100ms ease;
  transition: -webkit-transform 100ms ease;
  transition: transform 100ms ease;
  transition: transform 100ms ease, -webkit-transform 100ms ease;
}

/* line 150, ../vendor.min.scss */
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transform: scale(1.3, 1.3);
          transform: scale(1.3, 1.3);
}

/* line 154, ../vendor.min.scss */
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}

/* line 158, ../vendor.min.scss */
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}

/* line 166, ../vendor.min.scss */
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
/* line 180, ../vendor.min.scss */
.owl-theme .owl-nav {
  margin-top: 1vw;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
/* line 184, ../vendor.min.scss */
/* pp desabilitei devido ao carousel da home */
/* .owl-theme .owl-nav [class*='owl-'] {
  color: #FFF;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
} */

/* line 193, ../vendor.min.scss */
/* .owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
} */

/* line 197, ../vendor.min.scss */
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}

/* line 201, ../vendor.min.scss */
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

/* line 204, ../vendor.min.scss */
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

/* line 207, ../vendor.min.scss */
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}

/* line 211, ../vendor.min.scss */
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  -webkit-transition: opacity 200ms ease;
  transition: opacity 200ms ease;
  border-radius: 30px;
}

/* line 220, ../vendor.min.scss */
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}

/**
 * @author zhixin wen <wenzhixin2010@gmail.com>
 */
/* line 226, ../vendor.min.scss */
.ms-parent {
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

/* line 232, ../vendor.min.scss */
.ms-choice {
  display: block;
  width: 100%;
  height: 26px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #aaa;
  text-align: left;
  white-space: nowrap;
  line-height: 26px;
  color: #444;
  text-decoration: none;
  border-radius: 4px;
  background-color: #fff;
}

/* line 250, ../vendor.min.scss */
.ms-choice.disabled {
  background-color: #f4f4f4;
  background-image: none;
  border: 1px solid #ddd;
  cursor: default;
}

/* line 256, ../vendor.min.scss */
.ms-choice > span {
  position: absolute;
  top: 0;
  left: 0;
  right: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  padding-left: 8px;
}

/* line 267, ../vendor.min.scss */
.ms-choice > span.placeholder {
  color: #999;
}

/* line 270, ../vendor.min.scss */
.ms-choice > div {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 25px;
  background: url("multiple-select.png") left top no-repeat;
}

/* line 278, ../vendor.min.scss */
.ms-choice > div.open {
  background-position: right top;
}

/* line 282, ../vendor.min.scss */
.ms-drop {
  width: 100%;
  overflow: hidden;
  display: none;
  margin-top: -1px;
  padding: 0;
  position: absolute;
  z-index: 1000;
  background: #fff;
  color: #000;
  border: 1px solid #aaa;
  border-radius: 4px;
}

/* line 297, ../vendor.min.scss */
.ms-drop.bottom {
  top: 100%;
  -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.15);
}

/* line 303, ../vendor.min.scss */
.ms-drop.top {
  bottom: 100%;
  -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
  box-shadow: 0 -4px 5px rgba(0, 0, 0, 0.15);
}

/* line 310, ../vendor.min.scss */
.ms-search {
  display: inline-block;
  margin: 0;
  min-height: 26px;
  padding: 4px;
  position: relative;
  white-space: nowrap;
  width: 100%;
  z-index: 10000;
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 325, ../vendor.min.scss */
.ms-search input {
  width: 100%;
  height: auto !important;
  min-height: 24px;
  padding: 0 20px 0 5px;
  margin: 0;
  outline: 0;
  font-family: sans-serif;
  font-size: 1em;
  border: 1px solid #aaa;
  border-radius: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  background: #fff url("multiple-select.png") no-repeat 100% -22px;
  background: url("multiple-select.png") no-repeat 100% -22px, -webkit-gradient(linear, left top, left bottom, color-stop(85%, #ffffff), color-stop(99%, #eeeeee));
  background: url("multiple-select.png") no-repeat 100% -22px, linear-gradient(to bottom, #ffffff 85%, #eeeeee 99%);
  -webkit-box-sizing: border-box;
  -khtml-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 355, ../vendor.min.scss */
.ms-drop ul {
  overflow: auto;
  margin: 0;
  padding: 5px 8px;
}

/* line 360, ../vendor.min.scss */
.ms-drop ul > li {
  list-style: none;
  display: list-item;
  background-image: none;
  position: static;
}

/* line 366, ../vendor.min.scss */
.ms-drop ul > li .disabled {
  opacity: 0.35;
  filter: Alpha(Opacity=35);
}

/* line 370, ../vendor.min.scss */
.ms-drop ul > li.multiple {
  display: block;
  float: left;
}

/* line 374, ../vendor.min.scss */
.ms-drop ul > li.group {
  clear: both;
}

/* line 377, ../vendor.min.scss */
.ms-drop ul > li.multiple label {
  width: 100%;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 384, ../vendor.min.scss */
.ms-drop ul > li label {
  font-weight: normal;
  display: block;
  white-space: nowrap;
  cursor: pointer;
}

/* line 390, ../vendor.min.scss */
.ms-drop ul > li label.optgroup {
  font-weight: bold;
}

/* line 393, ../vendor.min.scss */
.ms-drop input[type=radio], .ms-drop input[type=checkbox] {
  vertical-align: middle;
  margin: 5px;
}

/* line 397, ../vendor.min.scss */
.ms-drop .ms-no-results {
  display: none;
}
/*!
FullCalendar Core Package v4.2.0
Docs & License: https://fullcalendar.io/
(c) 2019 Adam Shaw
*/
/* line 408, ../vendor.min.scss */
.fc {
  direction: ltr;
  text-align: left;
}

/* line 412, ../vendor.min.scss */
.fc-rtl {
  text-align: right;
}

/* line 415, ../vendor.min.scss */
body .fc {
  /* extra precedence to overcome jqui */
  font-size: 1em;
}

/* Colors
--------------------------------------------------------------------------------------------------*/
/* line 421, ../vendor.min.scss */
.fc-highlight {
  /* when user is selecting cells */
  background: #bce8f1;
  opacity: .3;
}

/* line 426, ../vendor.min.scss */
.fc-bgevent {
  /* default look for background events */
  background: #8fdf82;
  opacity: .3;
}

/* line 431, ../vendor.min.scss */
.fc-nonbusiness {
  /* default look for non-business-hours areas */
  /* will inherit .fc-bgevent's styles */
  background: #d7d7d7;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
/* line 438, ../vendor.min.scss */
.fc-popover {
  position: absolute;
  -webkit-box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

/* line 442, ../vendor.min.scss */
.fc-popover .fc-header {
  /* TODO: be more consistent with fc-head/fc-body */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 2px 4px;
}

/* line 450, ../vendor.min.scss */
.fc-rtl .fc-popover .fc-header {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

/* line 453, ../vendor.min.scss */
.fc-popover .fc-header .fc-title {
  margin: 0 2px;
}

/* line 456, ../vendor.min.scss */
.fc-popover .fc-header .fc-close {
  cursor: pointer;
  opacity: 0.65;
  font-size: 1.1em;
}

/* Misc Reusable Components
--------------------------------------------------------------------------------------------------*/
/* line 463, ../vendor.min.scss */
.fc-divider {
  border-style: solid;
  border-width: 1px;
}

/* line 467, ../vendor.min.scss */
hr.fc-divider {
  height: 0;
  margin: 0;
  padding: 0 0 2px;
  /* height is unreliable across browsers, so use padding */
  border-width: 1px 0;
}

/* line 474, ../vendor.min.scss */
.fc-bg,
.fc-bgevent-skeleton,
.fc-highlight-skeleton,
.fc-mirror-skeleton {
  /* these element should always cling to top-left/right corners */
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* line 484, ../vendor.min.scss */
.fc-bg {
  bottom: 0;
  /* strech bg to bottom edge */
}

/* line 488, ../vendor.min.scss */
.fc-bg table {
  height: 100%;
  /* strech bg to bottom edge */
}

/* Tables
--------------------------------------------------------------------------------------------------*/
/* line 494, ../vendor.min.scss */
.fc table {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* fix scrollbar issue in firefox */
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1em;
  /* normalize cross-browser */
}

/* line 504, ../vendor.min.scss */
.fc th {
  text-align: center;
}

/* line 507, ../vendor.min.scss */
.fc th,
.fc td {
  border-style: solid;
  border-width: 1px;
  padding: 0;
  vertical-align: top;
}

/* line 514, ../vendor.min.scss */
.fc td.fc-today {
  border-style: double;
  /* overcome neighboring borders */
}

/* Internal Nav Links
--------------------------------------------------------------------------------------------------*/
/* line 520, ../vendor.min.scss */
a[data-goto] {
  cursor: pointer;
}

/* line 523, ../vendor.min.scss */
a[data-goto]:hover {
  text-decoration: underline;
}

/* Fake Table Rows
--------------------------------------------------------------------------------------------------*/
/* line 528, ../vendor.min.scss */
.fc .fc-row {
  /* extra precedence to overcome themes forcing a 1px border */
  /* no visible border by default. but make available if need be (scrollbar width compensation) */
  border-style: solid;
  border-width: 0;
}

/* line 534, ../vendor.min.scss */
.fc-row table {
  /* don't put left/right border on anything within a fake row.
     the outer tbody will worry about this */
  border-left: 0 hidden transparent;
  border-right: 0 hidden transparent;
  /* no bottom borders on rows */
  border-bottom: 0 hidden transparent;
}

/* line 542, ../vendor.min.scss */
.fc-row:first-child table {
  border-top: 0 hidden transparent;
  /* no top border on first row */
}

/* Day Row (used within the header and the DayGrid)
--------------------------------------------------------------------------------------------------*/
/* line 548, ../vendor.min.scss */
.fc-row {
  position: relative;
}

/* line 551, ../vendor.min.scss */
.fc-row .fc-bg {
  z-index: 1;
}

/* highlighting cells & background event skeleton */
/* line 555, ../vendor.min.scss */
.fc-row .fc-bgevent-skeleton,
.fc-row .fc-highlight-skeleton {
  bottom: 0;
  /* stretch skeleton to bottom of row */
}

/* line 560, ../vendor.min.scss */
.fc-row .fc-bgevent-skeleton table,
.fc-row .fc-highlight-skeleton table {
  height: 100%;
  /* stretch skeleton to bottom of row */
}

/* line 565, ../vendor.min.scss */
.fc-row .fc-highlight-skeleton td,
.fc-row .fc-bgevent-skeleton td {
  border-color: transparent;
}

/* line 569, ../vendor.min.scss */
.fc-row .fc-bgevent-skeleton {
  z-index: 2;
}

/* line 572, ../vendor.min.scss */
.fc-row .fc-highlight-skeleton {
  z-index: 3;
}

/*
row content (which contains day/week numbers and events) as well as "mirror" (which contains
temporary rendered events).
*/
/* line 579, ../vendor.min.scss */
.fc-row .fc-content-skeleton {
  position: relative;
  z-index: 4;
  padding-bottom: 2px;
  /* matches the space above the events */
}

/* line 585, ../vendor.min.scss */
.fc-row .fc-mirror-skeleton {
  z-index: 5;
}

/* line 588, ../vendor.min.scss */
.fc .fc-row .fc-content-skeleton table,
.fc .fc-row .fc-content-skeleton td,
.fc .fc-row .fc-mirror-skeleton td {
  /* see-through to the background below */
  /* extra precedence to prevent theme-provided backgrounds */
  background: none;
  /* in case <td>s are globally styled */
  border-color: transparent;
}

/* line 597, ../vendor.min.scss */
.fc-row .fc-content-skeleton td,
.fc-row .fc-mirror-skeleton td {
  /* don't put a border between events and/or the day number */
  border-bottom: 0;
}

/* line 602, ../vendor.min.scss */
.fc-row .fc-content-skeleton tbody td,
.fc-row .fc-mirror-skeleton tbody td {
  /* don't put a border between event cells */
  border-top: 0;
}

/* Scrolling Container
--------------------------------------------------------------------------------------------------*/
/* line 609, ../vendor.min.scss */
.fc-scroller {
  -webkit-overflow-scrolling: touch;
}

/* TODO: move to timegrid/daygrid */
/* line 613, ../vendor.min.scss */
.fc-scroller > .fc-day-grid,
.fc-scroller > .fc-time-grid {
  position: relative;
  /* re-scope all positions */
  width: 100%;
  /* hack to force re-sizing this inner element when scrollbars appear/disappear */
}

/* Global Event Styles
--------------------------------------------------------------------------------------------------*/
/* line 622, ../vendor.min.scss */
.fc-event {
  position: relative;
  /* for resize handle and other inner positioning */
  display: block;
  /* make the <a> tag block */
  font-size: .85em;
  line-height: 1.4;
  border-radius: 3px;
  border: 1px solid #3788d8;
}

/* line 632, ../vendor.min.scss */
.fc-event,
.fc-event-dot {
  background-color: #3788d8;
  /* default BACKGROUND color */
}

/* line 637, ../vendor.min.scss */
.fc-event,
.fc-event:hover {
  color: #fff;
  /* default TEXT color */
  text-decoration: none;
  /* if <a> has an href */
}

/* line 644, ../vendor.min.scss */
.fc-event[href],
.fc-event.fc-draggable {
  cursor: pointer;
  /* give events with links and draggable events a hand mouse pointer */
}

/* line 649, ../vendor.min.scss */
.fc-not-allowed,
.fc-not-allowed .fc-event {
  /* to override an event's custom cursor */
  cursor: not-allowed;
}

/* line 654, ../vendor.min.scss */
.fc-event .fc-content {
  position: relative;
  z-index: 2;
}

/* resizer (cursor AND touch devices) */
/* line 659, ../vendor.min.scss */
.fc-event .fc-resizer {
  position: absolute;
  z-index: 4;
}

/* resizer (touch devices) */
/* line 664, ../vendor.min.scss */
.fc-event .fc-resizer {
  display: none;
}

/* line 667, ../vendor.min.scss */
.fc-event.fc-allow-mouse-resize .fc-resizer,
.fc-event.fc-selected .fc-resizer {
  /* only show when hovering or selected (with touch) */
  display: block;
}

/* hit area */
/* line 673, ../vendor.min.scss */
.fc-event.fc-selected .fc-resizer:before {
  /* 40x40 touch area */
  content: "";
  position: absolute;
  z-index: 9999;
  /* user of this util can scope within a lower z-index */
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
}

/* Event Selection (only for touch devices)
--------------------------------------------------------------------------------------------------*/
/* line 688, ../vendor.min.scss */
.fc-event.fc-selected {
  z-index: 9999 !important;
  /* overcomes inline z-index */
  -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
          box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* line 693, ../vendor.min.scss */
.fc-event.fc-selected:after {
  content: "";
  position: absolute;
  z-index: 1;
  /* same z-index as fc-bg, behind text */
  /* overcome the borders */
  top: -1px;
  right: -1px;
  bottom: -1px;
  left: -1px;
  /* darkening effect */
  background: #000;
  opacity: .25;
}

/* Event Dragging
--------------------------------------------------------------------------------------------------*/
/* line 709, ../vendor.min.scss */
.fc-event.fc-dragging.fc-selected {
  -webkit-box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 0 2px 7px rgba(0, 0, 0, 0.3);
}

/* line 712, ../vendor.min.scss */
.fc-event.fc-dragging:not(.fc-selected) {
  opacity: .75;
}

/* Horizontal Events
--------------------------------------------------------------------------------------------------*/
/* bigger touch area when selected */
/* line 718, ../vendor.min.scss */
.fc-h-event.fc-selected:before {
  content: "";
  position: absolute;
  z-index: 3;
  /* below resizers */
  top: -10px;
  bottom: -10px;
  left: 0;
  right: 0;
}

/* events that are continuing to/from another week. kill rounded corners and butt up against edge */
/* line 729, ../vendor.min.scss */
.fc-ltr .fc-h-event.fc-not-start,
.fc-rtl .fc-h-event.fc-not-end {
  margin-left: 0;
  border-left-width: 0;
  padding-left: 1px;
  /* replace the border with padding */
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* line 738, ../vendor.min.scss */
.fc-ltr .fc-h-event.fc-not-end,
.fc-rtl .fc-h-event.fc-not-start {
  margin-right: 0;
  border-right-width: 0;
  padding-right: 1px;
  /* replace the border with padding */
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* resizer (cursor AND touch devices) */
/* left resizer  */
/* line 749, ../vendor.min.scss */
.fc-ltr .fc-h-event .fc-start-resizer,
.fc-rtl .fc-h-event .fc-end-resizer {
  cursor: w-resize;
  left: -1px;
  /* overcome border */
}

/* right resizer */
/* line 756, ../vendor.min.scss */
.fc-ltr .fc-h-event .fc-end-resizer,
.fc-rtl .fc-h-event .fc-start-resizer {
  cursor: e-resize;
  right: -1px;
  /* overcome border */
}

/* resizer (mouse devices) */
/* line 763, ../vendor.min.scss */
.fc-h-event.fc-allow-mouse-resize .fc-resizer {
  width: 7px;
  top: -1px;
  /* overcome top border */
  bottom: -1px;
  /* overcome bottom border */
}

/* resizer (touch devices) */
/* line 771, ../vendor.min.scss */
.fc-h-event.fc-selected .fc-resizer {
  /* 8x8 little dot */
  border-radius: 4px;
  border-width: 1px;
  width: 6px;
  height: 6px;
  border-style: solid;
  border-color: inherit;
  background: #fff;
  /* vertically center */
  top: 50%;
  margin-top: -4px;
}

/* left resizer  */
/* line 785, ../vendor.min.scss */
.fc-ltr .fc-h-event.fc-selected .fc-start-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-end-resizer {
  margin-left: -4px;
  /* centers the 8x8 dot on the left edge */
}

/* right resizer */
/* line 791, ../vendor.min.scss */
.fc-ltr .fc-h-event.fc-selected .fc-end-resizer,
.fc-rtl .fc-h-event.fc-selected .fc-start-resizer {
  margin-right: -4px;
  /* centers the 8x8 dot on the right edge */
}

/* DayGrid events
----------------------------------------------------------------------------------------------------
We use the full "fc-day-grid-event" class instead of using descendants because the event won't
be a descendant of the grid when it is being dragged.
*/
/* line 801, ../vendor.min.scss */
.fc-day-grid-event {
  margin: 1px 2px 0;
  /* spacing between events and edges */
  padding: 0 1px;
}

/* line 806, ../vendor.min.scss */
tr:first-child > td > .fc-day-grid-event {
  margin-top: 2px;
  /* a little bit more space before the first event */
}

/* line 810, ../vendor.min.scss */
.fc-mirror-skeleton tr:first-child > td > .fc-day-grid-event {
  margin-top: 0;
  /* except for mirror skeleton */
}

/* line 814, ../vendor.min.scss */
.fc-day-grid-event .fc-content {
  /* force events to be one-line tall */
  white-space: nowrap;
  overflow: hidden;
}

/* line 819, ../vendor.min.scss */
.fc-day-grid-event .fc-time {
  font-weight: bold;
}

/* resizer (cursor devices) */
/* left resizer  */
/* line 824, ../vendor.min.scss */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer {
  margin-left: -2px;
  /* to the day cell's edge */
}

/* right resizer */
/* line 830, ../vendor.min.scss */
.fc-ltr .fc-day-grid-event.fc-allow-mouse-resize .fc-end-resizer,
.fc-rtl .fc-day-grid-event.fc-allow-mouse-resize .fc-start-resizer {
  margin-right: -2px;
  /* to the day cell's edge */
}

/* Event Limiting
--------------------------------------------------------------------------------------------------*/
/* "more" link that represents hidden events */
/* line 838, ../vendor.min.scss */
a.fc-more {
  margin: 1px 3px;
  font-size: .85em;
  cursor: pointer;
  text-decoration: none;
}

/* line 844, ../vendor.min.scss */
a.fc-more:hover {
  text-decoration: underline;
}

/* line 847, ../vendor.min.scss */
.fc-limited {
  /* rows and cells that are hidden because of a "more" link */
  display: none;
}

/* popover that appears when "more" link is clicked */
/* line 852, ../vendor.min.scss */
.fc-day-grid .fc-row {
  z-index: 1;
  /* make the "more" popover one higher than this */
}

/* line 856, ../vendor.min.scss */
.fc-more-popover {
  z-index: 2;
  width: 220px;
}

/* line 860, ../vendor.min.scss */
.fc-more-popover .fc-event-container {
  padding: 10px;
}

/* Now Indicator
--------------------------------------------------------------------------------------------------*/
/* line 865, ../vendor.min.scss */
.fc-now-indicator {
  position: absolute;
  border: 0 solid red;
}

/* Utilities
--------------------------------------------------------------------------------------------------*/
/* line 871, ../vendor.min.scss */
.fc-unselectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

/*
TODO: more distinction between this file and common.css
*/
/* Colors
--------------------------------------------------------------------------------------------------*/
/* line 885, ../vendor.min.scss */
.fc-unthemed th,
.fc-unthemed td,
.fc-unthemed thead,
.fc-unthemed tbody,
.fc-unthemed .fc-divider,
.fc-unthemed .fc-row,
.fc-unthemed .fc-content,
.fc-unthemed .fc-popover,
.fc-unthemed .fc-list-view,
.fc-unthemed .fc-list-heading td {
  border-color: #ddd;
}

/* line 897, ../vendor.min.scss */
.fc-unthemed .fc-popover {
  background-color: #fff;
}

/* line 900, ../vendor.min.scss */
.fc-unthemed .fc-divider,
.fc-unthemed .fc-popover .fc-header,
.fc-unthemed .fc-list-heading td {
  background: #eee;
}

/* line 905, ../vendor.min.scss */
.fc-unthemed td.fc-today {
  background: #fcf8e3;
}

/* line 908, ../vendor.min.scss */
.fc-unthemed .fc-disabled-day {
  background: #d7d7d7;
  opacity: .3;
}

/* Icons
--------------------------------------------------------------------------------------------------
from https://feathericons.com/ and built with IcoMoon
*/
@font-face {
  font-family: 'fcicons';
  src: url("data:application/x-font-ttf;charset=utf-8;base64,AAEAAAALAIAAAwAwT1MvMg8SBfAAAAC8AAAAYGNtYXAXVtKNAAABHAAAAFRnYXNwAAAAEAAAAXAAAAAIZ2x5ZgYydxIAAAF4AAAFNGhlYWQUJ7cIAAAGrAAAADZoaGVhB20DzAAABuQAAAAkaG10eCIABhQAAAcIAAAALGxvY2ED4AU6AAAHNAAAABhtYXhwAA8AjAAAB0wAAAAgbmFtZXsr690AAAdsAAABhnBvc3QAAwAAAAAI9AAAACAAAwPAAZAABQAAApkCzAAAAI8CmQLMAAAB6wAzAQkAAAAAAAAAAAAAAAAAAAABEAAAAAAAAAAAAAAAAAAAAABAAADpBgPA/8AAQAPAAEAAAAABAAAAAAAAAAAAAAAgAAAAAAADAAAAAwAAABwAAQADAAAAHAADAAEAAAAcAAQAOAAAAAoACAACAAIAAQAg6Qb//f//AAAAAAAg6QD//f//AAH/4xcEAAMAAQAAAAAAAAAAAAAAAQAB//8ADwABAAAAAAAAAAAAAgAANzkBAAAAAAEAAAAAAAAAAAACAAA3OQEAAAAAAQAAAAAAAAAAAAIAADc5AQAAAAABAWIAjQKeAskAEwAAJSc3NjQnJiIHAQYUFwEWMjc2NCcCnuLiDQ0MJAz/AA0NAQAMJAwNDcni4gwjDQwM/wANIwz/AA0NDCMNAAAAAQFiAI0CngLJABMAACUBNjQnASYiBwYUHwEHBhQXFjI3AZ4BAA0N/wAMJAwNDeLiDQ0MJAyNAQAMIw0BAAwMDSMM4uINIwwNDQAAAAIA4gC3Ax4CngATACcAACUnNzY0JyYiDwEGFB8BFjI3NjQnISc3NjQnJiIPAQYUHwEWMjc2NCcB87e3DQ0MIw3VDQ3VDSMMDQ0BK7e3DQ0MJAzVDQ3VDCQMDQ3zuLcMJAwNDdUNIwzWDAwNIwy4twwkDA0N1Q0jDNYMDA0jDAAAAgDiALcDHgKeABMAJwAAJTc2NC8BJiIHBhQfAQcGFBcWMjchNzY0LwEmIgcGFB8BBwYUFxYyNwJJ1Q0N1Q0jDA0Nt7cNDQwjDf7V1Q0N1QwkDA0Nt7cNDQwkDLfWDCMN1Q0NDCQMt7gMIw0MDNYMIw3VDQ0MJAy3uAwjDQwMAAADAFUAAAOrA1UAMwBoAHcAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMhMjY1NCYjISIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAAVYRGRkR/qoRGRkRA1UFBAUOCQkVDAsZDf2rDRkLDBUJCA4FBQUFBQUOCQgVDAsZDQJVDRkLDBUJCQ4FBAVVAgECBQMCBwQECAX9qwQJAwQHAwMFAQICAgIBBQMDBwQDCQQCVQUIBAQHAgMFAgEC/oAZEhEZGRESGQAAAAADAFUAAAOrA1UAMwBoAIkAABMiBgcOAQcOAQcOARURFBYXHgEXHgEXHgEzITI2Nz4BNz4BNz4BNRE0JicuAScuAScuASMFITIWFx4BFx4BFx4BFREUBgcOAQcOAQcOASMhIiYnLgEnLgEnLgE1ETQ2Nz4BNz4BNz4BMxMzFRQWMzI2PQEzMjY1NCYrATU0JiMiBh0BIyIGFRQWM9UNGAwLFQkJDgUFBQUFBQ4JCRULDBgNAlYNGAwLFQkJDgUFBQUFBQ4JCRULDBgN/aoCVgQIBAQHAwMFAQIBAQIBBQMDBwQECAT9qgQIBAQHAwMFAQIBAQIBBQMDBwQECASAgBkSEhmAERkZEYAZEhIZgBEZGREDVQUEBQ4JCRUMCxkN/asNGQsMFQkIDgUFBQUFBQ4JCBUMCxkNAlUNGQsMFQkJDgUEBVUCAQIFAwIHBAQIBf2rBAkDBAcDAwUBAgICAgEFAwMHBAMJBAJVBQgEBAcCAwUCAQL+gIASGRkSgBkSERmAEhkZEoAZERIZAAABAOIAjQMeAskAIAAAExcHBhQXFjI/ARcWMjc2NC8BNzY0JyYiDwEnJiIHBhQX4uLiDQ0MJAzi4gwkDA0N4uINDQwkDOLiDCQMDQ0CjeLiDSMMDQ3h4Q0NDCMN4uIMIw0MDOLiDAwNIwwAAAABAAAAAQAAa5n0y18PPPUACwQAAAAAANivOVsAAAAA2K85WwAAAAADqwNVAAAACAACAAAAAAAAAAEAAAPA/8AAAAQAAAAAAAOrAAEAAAAAAAAAAAAAAAAAAAALBAAAAAAAAAAAAAAAAgAAAAQAAWIEAAFiBAAA4gQAAOIEAABVBAAAVQQAAOIAAAAAAAoAFAAeAEQAagCqAOoBngJkApoAAQAAAAsAigADAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAA4ArgABAAAAAAABAAcAAAABAAAAAAACAAcAYAABAAAAAAADAAcANgABAAAAAAAEAAcAdQABAAAAAAAFAAsAFQABAAAAAAAGAAcASwABAAAAAAAKABoAigADAAEECQABAA4ABwADAAEECQACAA4AZwADAAEECQADAA4APQADAAEECQAEAA4AfAADAAEECQAFABYAIAADAAEECQAGAA4AUgADAAEECQAKADQApGZjaWNvbnMAZgBjAGkAYwBvAG4Ac1ZlcnNpb24gMS4wAFYAZQByAHMAaQBvAG4AIAAxAC4AMGZjaWNvbnMAZgBjAGkAYwBvAG4Ac2ZjaWNvbnMAZgBjAGkAYwBvAG4Ac1JlZ3VsYXIAUgBlAGcAdQBsAGEAcmZjaWNvbnMAZgBjAGkAYwBvAG4Ac0ZvbnQgZ2VuZXJhdGVkIGJ5IEljb01vb24uAEYAbwBuAHQAIABnAGUAbgBlAHIAYQB0AGUAZAAgAGIAeQAgAEkAYwBvAE0AbwBvAG4ALgAAAAMAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA=") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/* line 921, ../vendor.min.scss */
.fc-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'fcicons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 934, ../vendor.min.scss */
.fc-icon-chevron-left:before {
  content: "\e900";
}

/* line 937, ../vendor.min.scss */
.fc-icon-chevron-right:before {
  content: "\e901";
}

/* line 940, ../vendor.min.scss */
.fc-icon-chevrons-left:before {
  content: "\e902";
}

/* line 943, ../vendor.min.scss */
.fc-icon-chevrons-right:before {
  content: "\e903";
}

/* line 946, ../vendor.min.scss */
.fc-icon-minus-square:before {
  content: "\e904";
}

/* line 949, ../vendor.min.scss */
.fc-icon-plus-square:before {
  content: "\e905";
}

/* line 952, ../vendor.min.scss */
.fc-icon-x:before {
  content: "\e906";
}

/* line 955, ../vendor.min.scss */
.fc-icon {
  display: inline-block;
  width: 1em;
  height: 1em;
  text-align: center;
}

/* Buttons
--------------------------------------------------------------------------------------------------
Lots taken from Flatly (MIT): https://bootswatch.com/4/flatly/bootstrap.css
*/
/* reset */
/* line 966, ../vendor.min.scss */
.fc-button {
  border-radius: 0;
  overflow: visible;
  text-transform: none;
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 975, ../vendor.min.scss */
.fc-button:focus {
  outline: 1px dotted;
  outline: 5px auto -webkit-focus-ring-color;
}

/* line 979, ../vendor.min.scss */
.fc-button {
  -webkit-appearance: button;
}

/* line 982, ../vendor.min.scss */
.fc-button:not(:disabled) {
  cursor: pointer;
}

/* line 985, ../vendor.min.scss */
.fc-button::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* theme */
/* line 990, ../vendor.min.scss */
.fc-button {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.4em 0.65em;
  font-size: 1em;
  line-height: 1.5;
  border-radius: 0.25em;
}

/* line 1007, ../vendor.min.scss */
.fc-button:hover {
  color: #212529;
  text-decoration: none;
}

/* line 1011, ../vendor.min.scss */
.fc-button:focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
  box-shadow: 0 0 0 0.2rem rgba(44, 62, 80, 0.25);
}

/* line 1016, ../vendor.min.scss */
.fc-button:disabled {
  opacity: 0.65;
}

/* "primary" coloring */
/* line 1020, ../vendor.min.scss */
.fc-button-primary {
  color: #fff;
  background-color: #2C3E50;
  border-color: #2C3E50;
}

/* line 1025, ../vendor.min.scss */
.fc-button-primary:hover {
  color: #fff;
  background-color: #1e2b37;
  border-color: #1a252f;
}

/* line 1030, ../vendor.min.scss */
.fc-button-primary:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
}

/* line 1034, ../vendor.min.scss */
.fc-button-primary:disabled {
  color: #fff;
  background-color: #2C3E50;
  border-color: #2C3E50;
}

/* line 1039, ../vendor.min.scss */
.fc-button-primary:not(:disabled):active,
.fc-button-primary:not(:disabled).fc-button-active {
  color: #fff;
  background-color: #1a252f;
  border-color: #151e27;
}

/* line 1045, ../vendor.min.scss */
.fc-button-primary:not(:disabled):active:focus,
.fc-button-primary:not(:disabled).fc-button-active:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
  box-shadow: 0 0 0 0.2rem rgba(76, 91, 106, 0.5);
}

/* icons within buttons */
/* line 1051, ../vendor.min.scss */
.fc-button .fc-icon {
  vertical-align: middle;
  font-size: 1.5em;
}

/* Buttons Groups
--------------------------------------------------------------------------------------------------*/
/* line 1057, ../vendor.min.scss */
.fc-button-group {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

/* line 1064, ../vendor.min.scss */
.fc-button-group > .fc-button {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

/* line 1070, ../vendor.min.scss */
.fc-button-group > .fc-button:hover {
  z-index: 1;
}

/* line 1073, ../vendor.min.scss */
.fc-button-group > .fc-button:focus,
.fc-button-group > .fc-button:active,
.fc-button-group > .fc-button.fc-button-active {
  z-index: 1;
}

/* line 1078, ../vendor.min.scss */
.fc-button-group > .fc-button:not(:first-child) {
  margin-left: -1px;
}

/* line 1081, ../vendor.min.scss */
.fc-button-group > .fc-button:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

/* line 1085, ../vendor.min.scss */
.fc-button-group > .fc-button:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* Popover
--------------------------------------------------------------------------------------------------*/
/* line 1091, ../vendor.min.scss */
.fc-unthemed .fc-popover {
  border-width: 1px;
  border-style: solid;
}

/* List View
--------------------------------------------------------------------------------------------------*/
/* line 1097, ../vendor.min.scss */
.fc-unthemed .fc-list-item:hover td {
  background-color: #f5f5f5;
}

/* Toolbar
--------------------------------------------------------------------------------------------------*/
/* line 1102, ../vendor.min.scss */
.fc-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

/* line 1107, ../vendor.min.scss */
.fc-toolbar.fc-header-toolbar {
  margin-bottom: 1.5em;
}

/* line 1110, ../vendor.min.scss */
.fc-toolbar.fc-footer-toolbar {
  margin-top: 1.5em;
}

/* inner content */
/* line 1114, ../vendor.min.scss */
.fc-toolbar > * > :not(:first-child) {
  margin-left: .75em;
}

/* line 1117, ../vendor.min.scss */
.fc-toolbar h2 {
  font-size: 1.75em;
  margin: 0;
}

/* View Structure
--------------------------------------------------------------------------------------------------*/
/* line 1123, ../vendor.min.scss */
.fc-view-container {
  position: relative;
  border-radius: 1vw;
  border: 2px solid #6D9D31;
  padding: 1vw;
}

/* undo twitter bootstrap's box-sizing rules. normalizes positioning techniques */
/* don't do this for the toolbar because we'll want bootstrap to style those buttons as some pt */
/* line 1128, ../vendor.min.scss */
.fc-view-container *,
.fc-view-container *:before,
.fc-view-container *:after {
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

/* line 1135, ../vendor.min.scss */
.fc-view,
.fc-view > table {
  /* so dragged elements can be above the view's main element */
  position: relative;
  z-index: 1;
}

@media print {
  /* line 1142, ../vendor.min.scss */
  .fc {
    max-width: 100% !important;
  }

  /* Global Event Restyling
  --------------------------------------------------------------------------------------------------*/
  /* line 1147, ../vendor.min.scss */
  .fc-event {
    background: #fff !important;
    color: #000 !important;
    page-break-inside: avoid;
  }

  /* line 1152, ../vendor.min.scss */
  .fc-event .fc-resizer {
    display: none;
  }

  /* Table & Day-Row Restyling
  --------------------------------------------------------------------------------------------------*/
  /* line 1157, ../vendor.min.scss */
  .fc th,
  .fc td,
  .fc hr,
  .fc thead,
  .fc tbody,
  .fc-row {
    border-color: #ccc !important;
    background: #fff !important;
  }

  /* kill the overlaid, absolutely-positioned components */
  /* common... */
  /* line 1168, ../vendor.min.scss */
  .fc-bg,
  .fc-bgevent-skeleton,
  .fc-highlight-skeleton,
  .fc-mirror-skeleton,
  .fc-bgevent-container,
  .fc-business-container,
  .fc-highlight-container,
  .fc-mirror-container {
    display: none;
  }

  /* don't force a min-height on rows (for DayGrid) */
  /* line 1179, ../vendor.min.scss */
  .fc tbody .fc-row {
    height: auto !important;
    /* undo height that JS set in distributeHeight */
    min-height: 0 !important;
    /* undo the min-height from each view's specific stylesheet */
  }

  /* line 1185, ../vendor.min.scss */
  .fc tbody .fc-row .fc-content-skeleton {
    position: static;
    /* undo .fc-rigid */
    padding-bottom: 0 !important;
    /* use a more border-friendly method for this... */
  }

  /* line 1191, ../vendor.min.scss */
  .fc tbody .fc-row .fc-content-skeleton tbody tr:last-child td {
    /* only works in newer browsers */
    padding-bottom: 1em;
    /* ...gives space within the skeleton. also ensures min height in a way */
  }

  /* line 1196, ../vendor.min.scss */
  .fc tbody .fc-row .fc-content-skeleton table {
    /* provides a min-height for the row, but only effective for IE, which exaggerates this value,
       making it look more like 3em. for other browers, it will already be this tall */
    height: 1em;
  }

  /* Undo month-view event limiting. Display all events and hide the "more" links
  --------------------------------------------------------------------------------------------------*/
  /* line 1203, ../vendor.min.scss */
  .fc-more-cell,
  .fc-more {
    display: none !important;
  }

  /* line 1207, ../vendor.min.scss */
  .fc tr.fc-limited {
    display: table-row !important;
  }

  /* line 1210, ../vendor.min.scss */
  .fc td.fc-limited {
    display: table-cell !important;
  }

  /* line 1213, ../vendor.min.scss */
  .fc-popover {
    display: none;
    /* never display the "more.." popover in print mode */
  }

  /* TimeGrid Restyling
  --------------------------------------------------------------------------------------------------*/
  /* undo the min-height 100% trick used to fill the container's height */
  /* line 1220, ../vendor.min.scss */
  .fc-time-grid {
    min-height: 0 !important;
  }

  /* don't display the side axis at all ("all-day" and time cells) */
  /* line 1224, ../vendor.min.scss */
  .fc-timeGrid-view .fc-axis {
    display: none;
  }

  /* don't display the horizontal lines */
  /* line 1228, ../vendor.min.scss */
  .fc-slats,
  .fc-time-grid hr {
    /* this hr is used when height is underused and needs to be filled */
    display: none !important;
    /* important overrides inline declaration */
  }

  /* let the container that holds the events be naturally positioned and create real height */
  /* line 1235, ../vendor.min.scss */
  .fc-time-grid .fc-content-skeleton {
    position: static;
  }

  /* in case there are no events, we still want some height */
  /* line 1239, ../vendor.min.scss */
  .fc-time-grid .fc-content-skeleton table {
    height: 4em;
  }

  /* kill the horizontal spacing made by the event container. event margins will be done below */
  /* line 1243, ../vendor.min.scss */
  .fc-time-grid .fc-event-container {
    margin: 0 !important;
  }

  /* TimeGrid *Event* Restyling
  --------------------------------------------------------------------------------------------------*/
  /* naturally position events, vertically stacking them */
  /* line 1249, ../vendor.min.scss */
  .fc-time-grid .fc-event {
    position: static !important;
    margin: 3px 2px !important;
  }

  /* for events that continue to a future day, give the bottom border back */
  /* line 1254, ../vendor.min.scss */
  .fc-time-grid .fc-event.fc-not-end {
    border-bottom-width: 1px !important;
  }

  /* indicate the event continues via "..." text */
  /* line 1258, ../vendor.min.scss */
  .fc-time-grid .fc-event.fc-not-end:after {
    content: "...";
  }

  /* for events that are continuations from previous days, give the top border back */
  /* line 1262, ../vendor.min.scss */
  .fc-time-grid .fc-event.fc-not-start {
    border-top-width: 1px !important;
  }

  /* indicate the event is a continuation via "..." text */
  /* line 1266, ../vendor.min.scss */
  .fc-time-grid .fc-event.fc-not-start:before {
    content: "...";
  }

  /* time */
  /* undo a previous declaration and let the time text span to a second line */
  /* line 1271, ../vendor.min.scss */
  .fc-time-grid .fc-event .fc-time {
    white-space: normal !important;
  }

  /* hide the the time that is normally displayed... */
  /* line 1275, ../vendor.min.scss */
  .fc-time-grid .fc-event .fc-time span {
    display: none;
  }

  /* ...replace it with a more verbose version (includes AM/PM) stored in an html attribute */
  /* line 1279, ../vendor.min.scss */
  .fc-time-grid .fc-event .fc-time:after {
    content: attr(data-full);
  }

  /* Vertical Scroller & Containers
  --------------------------------------------------------------------------------------------------*/
  /* kill the scrollbars and allow natural height */
  /* line 1285, ../vendor.min.scss */
  .fc-scroller,
  .fc-day-grid-container,
  .fc-time-grid-container {
    /* */
    overflow: visible !important;
    height: auto !important;
  }

  /* kill the horizontal border/padding used to compensate for scrollbars */
  /* line 1293, ../vendor.min.scss */
  .fc-row {
    border: 0 !important;
    margin: 0 !important;
  }

  /* Button Controls
  --------------------------------------------------------------------------------------------------*/
  /* line 1299, ../vendor.min.scss */
  .fc-button-group,
  .fc button {
    display: none;
    /* don't display any button-related controls */
  }
}
/*!
FullCalendar Day Grid Plugin v4.2.0
Docs & License: https://fullcalendar.io/
(c) 2019 Adam Shaw
*/
/* DayGridView
--------------------------------------------------------------------------------------------------*/
/* day row structure */
/* line 1312, ../vendor.min.scss */
.fc-dayGridWeek-view .fc-content-skeleton,
.fc-dayGridDay-view .fc-content-skeleton {
  /* there may be week numbers in these views, so no padding-top */
  padding-bottom: 1em;
  /* ensure a space at bottom of cell for user selecting/clicking */
}

/* line 1318, ../vendor.min.scss */
.fc-dayGrid-view .fc-body .fc-row {
  min-height: 4em;
  /* ensure that all rows are at least this tall */
}

/* a "rigid" row will take up a constant amount of height because content-skeleton is absolute */
/* line 1323, ../vendor.min.scss */
.fc-row.fc-rigid {
  overflow: hidden;
}

/* line 1326, ../vendor.min.scss */
.fc-row.fc-rigid .fc-content-skeleton {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* week and day number styling */
/* line 1333, ../vendor.min.scss */
.fc-day-top.fc-other-month {
  opacity: 0.3;
}

/* line 1336, ../vendor.min.scss */
.fc-dayGrid-view .fc-week-number,
.fc-dayGrid-view .fc-day-number {
  padding: 2px;
}

/* line 1340, ../vendor.min.scss */
.fc-dayGrid-view th.fc-week-number,
.fc-dayGrid-view th.fc-day-number {
  padding: 0 2px;
  /* column headers can't have as much v space */
}

/* line 1345, ../vendor.min.scss */
.fc-ltr .fc-dayGrid-view .fc-day-top .fc-day-number {
  float: right;
}

/* line 1348, ../vendor.min.scss */
.fc-rtl .fc-dayGrid-view .fc-day-top .fc-day-number {
  float: left;
}

/* line 1351, ../vendor.min.scss */
.fc-ltr .fc-dayGrid-view .fc-day-top .fc-week-number {
  float: left;
  border-radius: 0 0 3px 0;
}

/* line 1355, ../vendor.min.scss */
.fc-rtl .fc-dayGrid-view .fc-day-top .fc-week-number {
  float: right;
  border-radius: 0 0 0 3px;
}

/* line 1359, ../vendor.min.scss */
.fc-dayGrid-view .fc-day-top .fc-week-number {
  min-width: 1.5em;
  text-align: center;
  background-color: #f2f2f2;
  color: #808080;
}

/* when week/day number have own column */
/* line 1366, ../vendor.min.scss */
.fc-dayGrid-view td.fc-week-number {
  text-align: center;
}

/* line 1369, ../vendor.min.scss */
.fc-dayGrid-view td.fc-week-number > * {
  /* work around the way we do column resizing and ensure a minimum width */
  display: inline-block;
  min-width: 1.25em;
}

/*!
 * Bootstrap v3.3.7 (http://getbootstrap.com)
 * Copyright 2011-2016 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@media (max-width: 768px) {
  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-1 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 1;
    columns: auto 1;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-2 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 2;
    columns: auto 2;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-3 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 3;
    columns: auto 3;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-4 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 4;
    columns: auto 4;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-5 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 5;
    columns: auto 5;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-6 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 6;
    columns: auto 6;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-7 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 7;
    columns: auto 7;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-8 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 8;
    columns: auto 8;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-9 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 9;
    columns: auto 9;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-10 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 10;
    columns: auto 10;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-11 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 11;
    columns: auto 11;
  }

  /* line 185, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xs-12 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 12;
    columns: auto 12;
  }
}
@media (min-width: 768px) {
  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-1 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 1;
    columns: auto 1;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-2 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 2;
    columns: auto 2;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-3 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 3;
    columns: auto 3;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-4 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 4;
    columns: auto 4;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-5 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 5;
    columns: auto 5;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-6 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 6;
    columns: auto 6;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-7 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 7;
    columns: auto 7;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-8 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 8;
    columns: auto 8;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-9 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 9;
    columns: auto 9;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-10 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 10;
    columns: auto 10;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-11 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 11;
    columns: auto 11;
  }

  /* line 193, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-sm-12 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 12;
    columns: auto 12;
  }
}
@media (min-width: 992px) {
  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-1 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 1;
    columns: auto 1;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-2 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 2;
    columns: auto 2;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-3 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 3;
    columns: auto 3;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-4 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 4;
    columns: auto 4;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-5 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 5;
    columns: auto 5;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-6 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 6;
    columns: auto 6;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-7 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 7;
    columns: auto 7;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-8 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 8;
    columns: auto 8;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-9 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 9;
    columns: auto 9;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-10 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 10;
    columns: auto 10;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-11 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 11;
    columns: auto 11;
  }

  /* line 201, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-md-12 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 12;
    columns: auto 12;
  }
}
@media (min-width: 1000px) {
  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-1 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 1;
    columns: auto 1;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-2 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 2;
    columns: auto 2;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-3 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 3;
    columns: auto 3;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-4 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 4;
    columns: auto 4;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-5 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 5;
    columns: auto 5;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-6 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 6;
    columns: auto 6;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-7 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 7;
    columns: auto 7;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-8 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 8;
    columns: auto 8;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-9 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 9;
    columns: auto 9;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-10 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 10;
    columns: auto 10;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-11 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 11;
    columns: auto 11;
  }

  /* line 209, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-lg-12 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 12;
    columns: auto 12;
  }
}
@media (min-width: 1500px) {
  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-1 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 1;
    columns: auto 1;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-2 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 2;
    columns: auto 2;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-3 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 3;
    columns: auto 3;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-4 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 4;
    columns: auto 4;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-5 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 5;
    columns: auto 5;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-6 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 6;
    columns: auto 6;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-7 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 7;
    columns: auto 7;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-8 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 8;
    columns: auto 8;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-9 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 9;
    columns: auto 9;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-10 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 10;
    columns: auto 10;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-11 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 11;
    columns: auto 11;
  }

  /* line 217, bootstrap/bootstrap/mixins/_grid.scss */
  .text-column-xl-12 {
    -webkit-column-gap: 32px;
    column-gap: 32px;
    -webkit-columns: auto 12;
    columns: auto 12;
  }
}
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/* line 9, bootstrap/bootstrap/_normalize.scss */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

/* line 19, bootstrap/bootstrap/_normalize.scss */
body {
  margin: 0;
}

/* line 33, bootstrap/bootstrap/_normalize.scss */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

/* line 54, bootstrap/bootstrap/_normalize.scss */
audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

/* line 67, bootstrap/bootstrap/_normalize.scss */
audio:not([controls]) {
  display: none;
  height: 0;
}

/* line 77, bootstrap/bootstrap/_normalize.scss */
[hidden],
template {
  display: none;
}

/* line 89, bootstrap/bootstrap/_normalize.scss */
a {
  background-color: transparent;
}

/* line 98, bootstrap/bootstrap/_normalize.scss */
a:active,
a:hover {
  outline: 0;
}

/* line 110, bootstrap/bootstrap/_normalize.scss */
abbr[title] {
  border-bottom: 1px dotted;
}

/* line 118, bootstrap/bootstrap/_normalize.scss */
b,
strong {
  font-weight: bold;
}

/* line 127, bootstrap/bootstrap/_normalize.scss */
dfn {
  font-style: italic;
}

/* line 136, bootstrap/bootstrap/_normalize.scss */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* line 145, bootstrap/bootstrap/_normalize.scss */
mark {
  background: #ff0;
  color: #000;
}

/* line 154, bootstrap/bootstrap/_normalize.scss */
small {
  font-size: 80%;
}

/* line 162, bootstrap/bootstrap/_normalize.scss */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

/* line 170, bootstrap/bootstrap/_normalize.scss */
sup {
  top: -0.5em;
}

/* line 174, bootstrap/bootstrap/_normalize.scss */
sub {
  bottom: -0.25em;
}

/* line 185, bootstrap/bootstrap/_normalize.scss */
img {
  border: 0;
}

/* line 193, bootstrap/bootstrap/_normalize.scss */
svg:not(:root) {
  overflow: hidden;
}

/* line 204, bootstrap/bootstrap/_normalize.scss */
figure {
  margin: 1em 40px;
}

/* line 212, bootstrap/bootstrap/_normalize.scss */
hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

/* line 221, bootstrap/bootstrap/_normalize.scss */
pre {
  overflow: auto;
}

/* line 229, bootstrap/bootstrap/_normalize.scss */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

/* line 252, bootstrap/bootstrap/_normalize.scss */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

/* line 266, bootstrap/bootstrap/_normalize.scss */
button {
  overflow: visible;
}

/* line 277, bootstrap/bootstrap/_normalize.scss */
button,
select {
  text-transform: none;
}

/* line 290, bootstrap/bootstrap/_normalize.scss */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}

/* line 302, bootstrap/bootstrap/_normalize.scss */
button[disabled],
html input[disabled] {
  cursor: default;
}

/* line 311, bootstrap/bootstrap/_normalize.scss */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* line 322, bootstrap/bootstrap/_normalize.scss */
input {
  line-height: normal;
}

/* line 334, bootstrap/bootstrap/_normalize.scss */
input[type="checkbox"],
input[type="radio"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

/* line 346, bootstrap/bootstrap/_normalize.scss */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/* line 356, bootstrap/bootstrap/_normalize.scss */
input[type="search"] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

/* line 367, bootstrap/bootstrap/_normalize.scss */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/* line 376, bootstrap/bootstrap/_normalize.scss */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

/* line 387, bootstrap/bootstrap/_normalize.scss */
legend {
  border: 0;
  padding: 0;
}

/* line 396, bootstrap/bootstrap/_normalize.scss */
textarea {
  overflow: auto;
}

/* line 405, bootstrap/bootstrap/_normalize.scss */
optgroup {
  font-weight: bold;
}

/* line 416, bootstrap/bootstrap/_normalize.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* line 421, bootstrap/bootstrap/_normalize.scss */
td,
th {
  padding: 0;
}

/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */
/* line 11, bootstrap/bootstrap/_scaffolding.scss */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 14, bootstrap/bootstrap/_scaffolding.scss */
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 22, bootstrap/bootstrap/_scaffolding.scss */
html {
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
}

/* line 27, bootstrap/bootstrap/_scaffolding.scss */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857;
  color: #5d5d5d;
  background-color: #fff;
}

/* line 36, bootstrap/bootstrap/_scaffolding.scss */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* line 48, bootstrap/bootstrap/_scaffolding.scss */
a {
  color: #034f82;
  text-decoration: none;
}
/* line 52, bootstrap/bootstrap/_scaffolding.scss */
a:hover, a:focus {
  color: #012237;
  text-decoration: underline;
}
/* line 58, bootstrap/bootstrap/_scaffolding.scss */
a:focus {
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

/* line 69, bootstrap/bootstrap/_scaffolding.scss */
figure {
  margin: 0;
}

/* line 76, bootstrap/bootstrap/_scaffolding.scss */
img {
  vertical-align: middle;
}

/* line 81, bootstrap/bootstrap/_scaffolding.scss */
.img-responsive {
  display: block;
  max-width: 100%;
  height: auto;
}

/* line 86, bootstrap/bootstrap/_scaffolding.scss */
.img-rounded {
  border-radius: 6px;
}

/* line 93, bootstrap/bootstrap/_scaffolding.scss */
.img-thumbnail {
  padding: 4px;
  line-height: 1.42857;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  display: inline-block;
  max-width: 100%;
  height: auto;
}

/* line 106, bootstrap/bootstrap/_scaffolding.scss */
.img-circle {
  border-radius: 50%;
}

/* line 113, bootstrap/bootstrap/_scaffolding.scss */
hr {
  margin-top: 20px;
  margin-bottom: 20px;
  border: 0;
  border-top: 1px solid #ebebeb;
}

/* line 125, bootstrap/bootstrap/_scaffolding.scss */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* line 141, bootstrap/bootstrap/_scaffolding.scss */
.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}

/* line 159, bootstrap/bootstrap/_scaffolding.scss */
[role="button"] {
  cursor: pointer;
}

/* line 9, bootstrap/bootstrap/_type.scss */
h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
/* line 16, bootstrap/bootstrap/_type.scss */
h1 small,
h1 .small, h2 small,
h2 .small, h3 small,
h3 .small, h4 small,
h4 .small, h5 small,
h5 .small, h6 small,
h6 .small,
.h1 small,
.h1 .small, .h2 small,
.h2 .small, .h3 small,
.h3 .small, .h4 small,
.h4 .small, .h5 small,
.h5 .small, .h6 small,
.h6 .small {
  font-weight: normal;
  line-height: 1;
  color: #ebebeb;
}

/* line 24, bootstrap/bootstrap/_type.scss */
h1, .h1,
h2, .h2,
h3, .h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}
/* line 30, bootstrap/bootstrap/_type.scss */
h1 small,
h1 .small, .h1 small,
.h1 .small,
h2 small,
h2 .small, .h2 small,
.h2 .small,
h3 small,
h3 .small, .h3 small,
.h3 .small {
  font-size: 65%;
}

/* line 35, bootstrap/bootstrap/_type.scss */
h4, .h4,
h5, .h5,
h6, .h6 {
  margin-top: 10px;
  margin-bottom: 10px;
}
/* line 41, bootstrap/bootstrap/_type.scss */
h4 small,
h4 .small, .h4 small,
.h4 .small,
h5 small,
h5 .small, .h5 small,
.h5 .small,
h6 small,
h6 .small, .h6 small,
.h6 .small {
  font-size: 75%;
}

/* line 47, bootstrap/bootstrap/_type.scss */
h1, .h1 {
  font-size: 36px;
}

/* line 48, bootstrap/bootstrap/_type.scss */
h2, .h2 {
  font-size: 30px;
}

/* line 49, bootstrap/bootstrap/_type.scss */
h3, .h3 {
  font-size: 24px;
}

/* line 50, bootstrap/bootstrap/_type.scss */
h4, .h4 {
  font-size: 18px;
}

/* line 51, bootstrap/bootstrap/_type.scss */
h5, .h5 {
  font-size: 14px;
}

/* line 52, bootstrap/bootstrap/_type.scss */
h6, .h6 {
  font-size: 12px;
}

/* line 58, bootstrap/bootstrap/_type.scss */
p {
  margin: 0 0 10px;
}

/* line 62, bootstrap/bootstrap/_type.scss */
.lead {
  margin-bottom: 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
}
@media (min-width: 768px) {
  /* line 62, bootstrap/bootstrap/_type.scss */
  .lead {
    font-size: 21px;
  }
}

/* line 78, bootstrap/bootstrap/_type.scss */
small,
.small {
  font-size: 85%;
}

/* line 83, bootstrap/bootstrap/_type.scss */
mark,
.mark {
  background-color: #fcf8e3;
  padding: .2em;
}

/* line 90, bootstrap/bootstrap/_type.scss */
.text-left {
  text-align: left;
}

/* line 91, bootstrap/bootstrap/_type.scss */
.text-right {
  text-align: right;
}

/* line 92, bootstrap/bootstrap/_type.scss */
.text-center {
  text-align: center;
}

/* line 93, bootstrap/bootstrap/_type.scss */
.text-justify {
  text-align: justify;
}

/* line 94, bootstrap/bootstrap/_type.scss */
.text-nowrap {
  white-space: nowrap;
}

/* line 97, bootstrap/bootstrap/_type.scss */
.text-lowercase {
  text-transform: lowercase;
}

/* line 98, bootstrap/bootstrap/_type.scss */
.text-uppercase, .initialism {
  text-transform: uppercase;
}

/* line 99, bootstrap/bootstrap/_type.scss */
.text-capitalize {
  text-transform: capitalize;
}

/* line 102, bootstrap/bootstrap/_type.scss */
.text-muted {
  color: #ebebeb;
}

/* line 5, bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-primary {
  color: #034f82;
}

/* line 8, bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-primary:hover,
a.text-primary:focus {
  color: #023150;
}

/* line 5, bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-success {
  color: #3c763d;
}

/* line 8, bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-success:hover,
a.text-success:focus {
  color: #2b542c;
}

/* line 5, bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-info {
  color: #31708f;
}

/* line 8, bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-info:hover,
a.text-info:focus {
  color: #245269;
}

/* line 5, bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-warning {
  color: #8a6d3b;
}

/* line 8, bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-warning:hover,
a.text-warning:focus {
  color: #66512c;
}

/* line 5, bootstrap/bootstrap/mixins/_text-emphasis.scss */
.text-danger {
  color: #a94442;
}

/* line 8, bootstrap/bootstrap/mixins/_text-emphasis.scss */
a.text-danger:hover,
a.text-danger:focus {
  color: #843534;
}

/* line 119, bootstrap/bootstrap/_type.scss */
.bg-primary {
  color: #fff;
}

/* line 5, bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-primary {
  background-color: #034f82;
}

/* line 8, bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-primary:hover,
a.bg-primary:focus {
  background-color: #023150;
}

/* line 5, bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-success {
  background-color: #dff0d8;
}

/* line 8, bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-success:hover,
a.bg-success:focus {
  background-color: #c1e2b3;
}

/* line 5, bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-info {
  background-color: #d9edf7;
}

/* line 8, bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-info:hover,
a.bg-info:focus {
  background-color: #afd9ee;
}

/* line 5, bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-warning {
  background-color: #fcf8e3;
}

/* line 8, bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-warning:hover,
a.bg-warning:focus {
  background-color: #f7ecb5;
}

/* line 5, bootstrap/bootstrap/mixins/_background-variant.scss */
.bg-danger {
  background-color: #f2dede;
}

/* line 8, bootstrap/bootstrap/mixins/_background-variant.scss */
a.bg-danger:hover,
a.bg-danger:focus {
  background-color: #e4b9b9;
}

/* line 138, bootstrap/bootstrap/_type.scss */
.page-header {
  padding-bottom: 9px;
  margin: 40px 0 20px;
  border-bottom: 1px solid #ebebeb;
}

/* line 149, bootstrap/bootstrap/_type.scss */
ul,
ol {
  margin-top: 0;
  margin-bottom: 10px;
}
/* line 153, bootstrap/bootstrap/_type.scss */
ul ul,
ul ol,
ol ul,
ol ol {
  margin-bottom: 0;
}

/* line 167, bootstrap/bootstrap/_type.scss */
.list-unstyled {
  padding-left: 0;
  list-style: none;
}

/* line 173, bootstrap/bootstrap/_type.scss */
.list-inline {
  padding-left: 0;
  list-style: none;
  margin-left: -5px;
}
/* line 177, bootstrap/bootstrap/_type.scss */
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

/* line 185, bootstrap/bootstrap/_type.scss */
dl {
  margin-top: 0;
  margin-bottom: 20px;
}

/* line 189, bootstrap/bootstrap/_type.scss */
dt,
dd {
  line-height: 1.42857;
}

/* line 193, bootstrap/bootstrap/_type.scss */
dt {
  font-weight: bold;
}

/* line 196, bootstrap/bootstrap/_type.scss */
dd {
  margin-left: 0;
}

/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:before, .dl-horizontal dd:after {
  content: " ";
  display: table;
}
/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.dl-horizontal dd:after {
  clear: both;
}
@media (min-width: 992px) {
  /* line 211, bootstrap/bootstrap/_type.scss */
  .dl-horizontal dt {
    float: left;
    width: 160px;
    clear: left;
    text-align: right;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  /* line 218, bootstrap/bootstrap/_type.scss */
  .dl-horizontal dd {
    margin-left: 180px;
  }
}

/* line 229, bootstrap/bootstrap/_type.scss */
abbr[title],
abbr[data-original-title] {
  cursor: help;
  border-bottom: 1px dotted #ebebeb;
}

/* line 235, bootstrap/bootstrap/_type.scss */
.initialism {
  font-size: 90%;
}

/* line 241, bootstrap/bootstrap/_type.scss */
blockquote {
  padding: 10px 20px;
  margin: 0 0 20px;
  font-size: 17.5px;
  border-left: 5px solid #ebebeb;
}
/* line 250, bootstrap/bootstrap/_type.scss */
blockquote p:last-child,
blockquote ul:last-child,
blockquote ol:last-child {
  margin-bottom: 0;
}
/* line 257, bootstrap/bootstrap/_type.scss */
blockquote footer,
blockquote small,
blockquote .small {
  display: block;
  font-size: 80%;
  line-height: 1.42857;
  color: #ebebeb;
}
/* line 265, bootstrap/bootstrap/_type.scss */
blockquote footer:before,
blockquote small:before,
blockquote .small:before {
  content: '\2014 \00A0';
}

/* line 274, bootstrap/bootstrap/_type.scss */
.blockquote-reverse,
blockquote.pull-right {
  padding-right: 15px;
  padding-left: 0;
  border-right: 5px solid #ebebeb;
  border-left: 0;
  text-align: right;
}
/* line 286, bootstrap/bootstrap/_type.scss */
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
.blockquote-reverse .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before,
blockquote.pull-right .small:before {
  content: '';
}
/* line 287, bootstrap/bootstrap/_type.scss */
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
.blockquote-reverse .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after,
blockquote.pull-right .small:after {
  content: '\00A0 \2014';
}

/* line 294, bootstrap/bootstrap/_type.scss */
address {
  margin-bottom: 20px;
  font-style: normal;
  line-height: 1.42857;
}
.menu-back{
  padding-top: 1vw!important;
}
/* line 10, bootstrap/bootstrap/_grid.scss */
.container {
  margin-right: auto;
  margin-left: auto;
  padding-left: 5.2vw;
  padding-right: 5.2vw;
  padding-top: 2vw;
  padding-bottom: 2vw;
}
/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.container:before, .container:after {
  content: " ";
  display: table;
}
/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.container:after {
  clear: both;
}
@media (min-width: 768px) {
  /* line 10, bootstrap/bootstrap/_grid.scss */
  .container {
    max-width: 768px;
  }
}
@media (min-width: 992px) {
  /* line 10, bootstrap/bootstrap/_grid.scss */
  .container {
    max-width: 992px;
  }
}
@media (min-width: 1000px) {
  /* line 10, bootstrap/bootstrap/_grid.scss */
  .container {
    max-width: 1000px;
  }
}
@media (min-width: 1500px) {
  /* line 10, bootstrap/bootstrap/_grid.scss */
  .container {
    max-width: 1500px;
  }
}

/* line 33, bootstrap/bootstrap/_grid.scss */
.container-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-left: 16px;
  padding-right: 16px;

}
.container-fluid .equal {
  margin-top: 2.288vw;
}
/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.container-fluid:before, .container-fluid:after {
  content: " ";
  display: table;
}
/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.container-fluid:after {
  clear: both;
}

/* line 42, bootstrap/bootstrap/_grid.scss */
.row {
  margin-left: -16px;
  margin-right: -16px;
}
/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.row:before, .row:after {
  content: " ";
  display: table;
}
/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.row:after {
  clear: both;
}

/* line 11, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-1, .col-sm-1, .col-md-1, .col-lg-1, .col-xs-2, .col-sm-2, .col-md-2, .col-lg-2, .col-xs-3, .col-sm-3, .col-md-3, .col-lg-3, .col-xs-4, .col-sm-4, .col-md-4, .col-lg-4, .col-xs-5, .col-sm-5, .col-md-5, .col-lg-5, .col-xs-6, .col-sm-6, .col-md-6, .col-lg-6, .col-xs-7, .col-sm-7, .col-md-7, .col-lg-7, .col-xs-8, .col-sm-8, .col-md-8, .col-lg-8, .col-xs-9, .col-sm-9, .col-md-9, .col-lg-9, .col-xs-10, .col-sm-10, .col-md-10, .col-lg-10, .col-xs-11, .col-sm-11, .col-md-11, .col-lg-11, .col-xs-12, .col-sm-12, .col-md-12, .col-lg-12 {
  position: relative;
  min-height: 1px;
  padding-left: 0.8vw;
  padding-right: 0.8vw;
}

/* line 27, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
  float: left;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-1 {
  width: 8.33333%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-2 {
  width: 16.66667%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-3 {
  width: 25%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-4 {
  width: 33.33333%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-5 {
  width: 41.66667%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-6 {
  width: 50%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-7 {
  width: 58.33333%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-8 {
  width: 66.66667%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-9 {
  width: 75%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-10 {
  width: 83.33333%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-11 {
  width: 91.66667%;
}

/* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-12 {
  width: 100%;
}

/* line 55, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-0 {
  right: auto;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-1 {
  right: 8.33333%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-2 {
  right: 16.66667%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-3 {
  right: 25%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-4 {
  right: 33.33333%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-5 {
  right: 41.66667%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-6 {
  right: 50%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-7 {
  right: 58.33333%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-8 {
  right: 66.66667%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-9 {
  right: 75%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-10 {
  right: 83.33333%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-11 {
  right: 91.66667%;
}

/* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-pull-12 {
  right: 100%;
}

/* line 45, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-0 {
  left: auto;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-1 {
  left: 8.33333%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-2 {
  left: 16.66667%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-3 {
  left: 25%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-4 {
  left: 33.33333%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-5 {
  left: 41.66667%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-6 {
  left: 50%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-7 {
  left: 58.33333%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-8 {
  left: 66.66667%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-9 {
  left: 75%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-10 {
  left: 83.33333%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-11 {
  left: 91.66667%;
}

/* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-push-12 {
  left: 100%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-0 {
  margin-left: 0%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-1 {
  margin-left: 8.33333%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-2 {
  margin-left: 16.66667%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-3 {
  margin-left: 25%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-4 {
  margin-left: 33.33333%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-5 {
  margin-left: 41.66667%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-6 {
  margin-left: 50%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-7 {
  margin-left: 58.33333%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-8 {
  margin-left: 66.66667%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-9 {
  margin-left: 75%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-10 {
  margin-left: 83.33333%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-11 {
  margin-left: 91.66667%;
}

/* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
.col-xs-offset-12 {
  margin-left: 100%;
}

@media (min-width: 768px) {
  /* line 27, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .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 {
    float: left;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-1 {
    width: 8.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-2 {
    width: 16.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-3 {
    width: 25%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-4 {
    width: 33.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-5 {
    width: 41.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-6 {
    width: 50%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-7 {
    width: 58.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-8 {
    width: 66.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-9 {
    width: 75%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-10 {
    width: 83.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-11 {
    width: 91.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-12 {
    width: 100%;
  }

  /* line 55, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-0 {
    right: auto;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-1 {
    right: 8.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-2 {
    right: 16.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-3 {
    right: 25%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-4 {
    right: 33.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-5 {
    right: 41.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-6 {
    right: 50%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-7 {
    right: 58.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-8 {
    right: 66.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-9 {
    right: 75%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-10 {
    right: 83.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-11 {
    right: 91.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-pull-12 {
    right: 100%;
  }

  /* line 45, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-0 {
    left: auto;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-1 {
    left: 8.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-2 {
    left: 16.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-3 {
    left: 25%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-4 {
    left: 33.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-5 {
    left: 41.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-6 {
    left: 50%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-7 {
    left: 58.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-8 {
    left: 66.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-9 {
    left: 75%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-10 {
    left: 83.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-11 {
    left: 91.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-push-12 {
    left: 100%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-0 {
    margin-left: 0%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-3 {
    margin-left: 25%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-6 {
    margin-left: 50%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-9 {
    margin-left: 75%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-sm-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 992px) {
  /* line 27, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .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 {
    float: left;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-1 {
    width: 8.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-2 {
    width: 16.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-3 {
    width: 25%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-4 {
    width: 33.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-5 {
    width: 41.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-6 {
    width: 50%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-7 {
    width: 58.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-8 {
    width: 66.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-9 {
    width: 75%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-10 {
    width: 83.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-11 {
    width: 91.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-12 {
    width: 100%;
  }

  /* line 55, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-0 {
    right: auto;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-1 {
    right: 8.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-2 {
    right: 16.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-3 {
    right: 25%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-4 {
    right: 33.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-5 {
    right: 41.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-6 {
    right: 50%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-7 {
    right: 58.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-8 {
    right: 66.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-9 {
    right: 75%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-10 {
    right: 83.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-11 {
    right: 91.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-pull-12 {
    right: 100%;
  }

  /* line 45, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-0 {
    left: auto;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-1 {
    left: 8.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-2 {
    left: 16.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-3 {
    left: 25%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-4 {
    left: 33.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-5 {
    left: 41.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-6 {
    left: 50%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-7 {
    left: 58.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-8 {
    left: 66.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-9 {
    left: 75%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-10 {
    left: 83.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-11 {
    left: 91.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-push-12 {
    left: 100%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-0 {
    margin-left: 0%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-3 {
    margin-left: 25%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-6 {
    margin-left: 50%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-9 {
    margin-left: 75%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-md-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1000px) {
  /* line 27, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
    float: left;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-1 {
    width: 8.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-2 {
    width: 16.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-3 {
    width: 25%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-4 {
    width: 33.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-5 {
    width: 41.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-6 {
    width: 50%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-7 {
    width: 58.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-8 {
    width: 66.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-9 {
    width: 75%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-10 {
    width: 83.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-11 {
    width: 91.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-12 {
    width: 100%;
  }

  /* line 55, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-0 {
    right: auto;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-1 {
    right: 8.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-2 {
    right: 16.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-3 {
    right: 25%;
  }
  .col-lg-pull-3pp {
    right: 30%;
    width: 110%;
  }
  .col-lg-pull-3pp1 {
    right: 3%;
  }
  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-4 {
    right: 33.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-5 {
    right: 41.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-6 {
    right: 50%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-7 {
    right: 58.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-8 {
    right: 66.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-9 {
    right: 75%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-10 {
    right: 83.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-11 {
    right: 91.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-pull-12 {
    right: 100%;
  }

  /* line 45, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-0 {
    left: auto;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-1 {
    left: 8.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-2 {
    left: 16.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-3 {
    left: 25%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-4 {
    left: 33.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-5 {
    left: 41.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-6 {
    left: 50%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-7 {
    left: 58.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-8 {
    left: 66.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-9 {
    left: 75%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-10 {
    left: 83.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-11 {
    left: 91.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-push-12 {
    left: 100%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-0 {
    margin-left: 0%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-3 {
    margin-left: 25%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-6 {
    margin-left: 50%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-9 {
    margin-left: 75%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-lg-offset-12 {
    margin-left: 100%;
  }
}
@media (min-width: 1500px) {
  /* line 27, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .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 {
    float: left;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-1 {
    width: 8.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-2 {
    width: 16.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-3 {
    width: 25%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-4 {
    width: 33.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-5 {
    width: 41.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-6 {
    width: 50%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-7 {
    width: 58.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-8 {
    width: 66.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-9 {
    width: 75%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-10 {
    width: 83.33333%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-11 {
    width: 91.66667%;
  }

  /* line 35, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-12 {
    width: 100%;
  }

  /* line 55, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-0 {
    right: auto;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-1 {
    right: 8.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-2 {
    right: 16.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-3 {
    right: 25%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-4 {
    right: 33.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-5 {
    right: 41.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-6 {
    right: 50%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-7 {
    right: 58.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-8 {
    right: 66.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-9 {
    right: 75%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-10 {
    right: 83.33333%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-11 {
    right: 91.66667%;
  }

  /* line 50, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-pull-12 {
    right: 100%;
  }

  /* line 45, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-0 {
    left: auto;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-1 {
    left: 8.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-2 {
    left: 16.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-3 {
    left: 25%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-4 {
    left: 33.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-5 {
    left: 41.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-6 {
    left: 50%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-7 {
    left: 58.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-8 {
    left: 66.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-9 {
    left: 75%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-10 {
    left: 83.33333%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-11 {
    left: 91.66667%;
  }

  /* line 40, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-push-12 {
    left: 100%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-0 {
    margin-left: 0%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-1 {
    margin-left: 8.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-2 {
    margin-left: 16.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-3 {
    margin-left: 25%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-4 {
    margin-left: 33.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-5 {
    margin-left: 41.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-6 {
    margin-left: 50%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-7 {
    margin-left: 58.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-8 {
    margin-left: 66.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-9 {
    margin-left: 75%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-10 {
    margin-left: 83.33333%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-11 {
    margin-left: 91.66667%;
  }

  /* line 60, bootstrap/bootstrap/mixins/_grid-framework.scss */
  .col-xl-offset-12 {
    margin-left: 100%;
  }
}
/* line 11, bootstrap/bootstrap/_alerts.scss */
.alert {
  padding: 15px;
  margin-bottom: 20px;
  border: 1px solid transparent;
  border-radius: 4px;
}
/* line 18, bootstrap/bootstrap/_alerts.scss */
.alert h4 {
  margin-top: 0;
  color: inherit;
}
/* line 25, bootstrap/bootstrap/_alerts.scss */
.alert .alert-link {
  font-weight: bold;
}
/* line 30, bootstrap/bootstrap/_alerts.scss */
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
/* line 35, bootstrap/bootstrap/_alerts.scss */
.alert > p + p {
  margin-top: 5px;
}

/* line 44, bootstrap/bootstrap/_alerts.scss */
.alert-dismissable,
.alert-dismissible {
  padding-right: 35px;
}
/* line 49, bootstrap/bootstrap/_alerts.scss */
.alert-dismissable .close,
.alert-dismissible .close {
  position: relative;
  top: -2px;
  right: -21px;
  color: inherit;
}

/* line 61, bootstrap/bootstrap/_alerts.scss */
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
/* line 8, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-success hr {
  border-top-color: #c9e2b3;
}
/* line 11, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-success .alert-link {
  color: #2b542c;
}

/* line 65, bootstrap/bootstrap/_alerts.scss */
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
/* line 8, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-info hr {
  border-top-color: #a6e1ec;
}
/* line 11, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-info .alert-link {
  color: #245269;
}

/* line 69, bootstrap/bootstrap/_alerts.scss */
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
/* line 8, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-warning hr {
  border-top-color: #f7e1b5;
}
/* line 11, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-warning .alert-link {
  color: #66512c;
}

/* line 73, bootstrap/bootstrap/_alerts.scss */
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
/* line 8, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-danger hr {
  border-top-color: #e4b9c0;
}
/* line 11, bootstrap/bootstrap/mixins/_alerts.scss */
.alert-danger .alert-link {
  color: #843534;
}

/* line 13, bootstrap/bootstrap/_modals.scss */
.modal-open {
  overflow: hidden;
}

/* line 18, bootstrap/bootstrap/_modals.scss */
.modal {
  display: none;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  -webkit-overflow-scrolling: touch;
  outline: 0;
}
/* line 34, bootstrap/bootstrap/_modals.scss */
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  transform: translate(0, -25%);
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
}
/* line 38, bootstrap/bootstrap/_modals.scss */
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

/* line 40, bootstrap/bootstrap/_modals.scss */
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

/* line 46, bootstrap/bootstrap/_modals.scss */
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
}

/* line 53, bootstrap/bootstrap/_modals.scss */
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: 0;
}

/* line 66, bootstrap/bootstrap/_modals.scss */
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000;
}
/* line 75, bootstrap/bootstrap/_modals.scss */
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
/* line 76, bootstrap/bootstrap/_modals.scss */
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}

/* line 81, bootstrap/bootstrap/_modals.scss */
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  box-sizing: border-box;
}
/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.modal-header:before, .modal-header:after {
  content: " ";
  display: table;
}
/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.modal-header:after {
  clear: both;
}

/* line 87, bootstrap/bootstrap/_modals.scss */
.modal-header .close {
  margin-top: -2px;
}

/* line 92, bootstrap/bootstrap/_modals.scss */
.modal-title {
  margin: 0;
  line-height: 1.42857;
}

/* line 99, bootstrap/bootstrap/_modals.scss */
.modal-body {
  position: relative;
  padding: 15px;
  box-sizing: border-box;
}

/* line 105, bootstrap/bootstrap/_modals.scss */
.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.modal-footer:before, .modal-footer:after {
  content: " ";
  display: table;
}
/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.modal-footer:after {
  clear: both;
}
/* line 112, bootstrap/bootstrap/_modals.scss */
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
/* line 117, bootstrap/bootstrap/_modals.scss */
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
/* line 121, bootstrap/bootstrap/_modals.scss */
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}

/* line 127, bootstrap/bootstrap/_modals.scss */
.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 768px) {
  /* line 138, bootstrap/bootstrap/_modals.scss */
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }

  /* line 142, bootstrap/bootstrap/_modals.scss */
  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }

  /* line 147, bootstrap/bootstrap/_modals.scss */
  .modal-sm {
    width: 400px;
  }
}
@media (min-width: 992px) {
  /* line 151, bootstrap/bootstrap/_modals.scss */
  .modal-lg {
    width: 900px;
  }
}
/* line 14, bootstrap/bootstrap/mixins/_clearfix.scss */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table;
}
/* line 19, bootstrap/bootstrap/mixins/_clearfix.scss */
.clearfix:after {
  clear: both;
}

/* line 12, bootstrap/bootstrap/_utilities.scss */
.center-block {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* line 15, bootstrap/bootstrap/_utilities.scss */
.pull-right {
  float: right !important;
}

/* line 18, bootstrap/bootstrap/_utilities.scss */
.pull-left {
  float: left !important;
}

/* line 27, bootstrap/bootstrap/_utilities.scss */
.hide {
  display: none !important;
}

/* line 30, bootstrap/bootstrap/_utilities.scss */
.show {
  display: block !important;
}

/* line 33, bootstrap/bootstrap/_utilities.scss */
.invisible {
  visibility: hidden;
}

/* line 36, bootstrap/bootstrap/_utilities.scss */
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

/* line 45, bootstrap/bootstrap/_utilities.scss */
.hidden {
  display: none !important;
}

/* line 53, bootstrap/bootstrap/_utilities.scss */
.affix {
  position: fixed;
}

@-ms-viewport {
  width: device-width;
}
/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-xs {
  display: none !important;
}

/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-sm {
  display: none !important;
}

/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-md {
  display: none !important;
}

/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-lg {
  display: none !important;
}

/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-xl {
  display: none !important;
}

/* line 37, bootstrap/bootstrap/_responsive-utilities.scss */
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block,
.visible-xl-block,
.visible-xl-inline,
.visible-xl-inline-block {
  display: none !important;
}

@media (max-width: 767px) {
  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-xs {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-xs {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-xs {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-xs,
  td.visible-xs {
    display: table-cell !important;
  }
}
@media (max-width: 767px) {
  /* line 58, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xs-block {
    display: block !important;
  }
}

@media (max-width: 767px) {
  /* line 63, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  /* line 68, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-sm {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-sm {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-sm {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-sm,
  td.visible-sm {
    display: table-cell !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 77, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-sm-block {
    display: block !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 82, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline {
    display: inline !important;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 87, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 992px) and (max-width: 999px) {
  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-md {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-md {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-md {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-md,
  td.visible-md {
    display: table-cell !important;
  }
}
@media (min-width: 992px) and (max-width: 999px) {
  /* line 96, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-md-block {
    display: block !important;
  }
}

@media (min-width: 992px) and (max-width: 999px) {
  /* line 101, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-md-inline {
    display: inline !important;
  }
}

@media (min-width: 992px) and (max-width: 999px) {
  /* line 106, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-md-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1000px) {
  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-lg {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-lg {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-lg {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-lg,
  td.visible-lg {
    display: table-cell !important;
  }
}
@media (min-width: 1000px) {
  /* line 115, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-lg-block {
    display: block !important;
  }
}

@media (min-width: 1000px) {
  /* line 120, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline {
    display: inline !important;
  }
}

@media (min-width: 1000px) {
  /* line 125, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}

@media (min-width: 1500px) {
  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-xl {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-xl {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-xl {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-xl,
  td.visible-xl {
    display: table-cell !important;
  }
}
@media (min-width: 1500px) {
  /* line 134, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xl-block {
    display: block !important;
  }
}

@media (min-width: 1500px) {
  /* line 139, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xl-inline {
    display: inline !important;
  }
}

@media (min-width: 1500px) {
  /* line 144, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-xl-inline-block {
    display: inline-block !important;
  }
}

@media (max-width: 767px) {
  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 999px) {
  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1000px) {
  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-lg {
    display: none !important;
  }
}
@media (min-width: 1500px) {
  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-xl {
    display: none !important;
  }
}
/* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
.visible-print {
  display: none !important;
}

@media print {
  /* line 7, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .visible-print {
    display: block !important;
  }

  /* line 10, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  table.visible-print {
    display: table !important;
  }

  /* line 11, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  tr.visible-print {
    display: table-row !important;
  }

  /* line 12, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  th.visible-print,
  td.visible-print {
    display: table-cell !important;
  }
}
/* line 182, bootstrap/bootstrap/_responsive-utilities.scss */
.visible-print-block {
  display: none !important;
}
@media print {
  /* line 182, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-print-block {
    display: block !important;
  }
}

/* line 189, bootstrap/bootstrap/_responsive-utilities.scss */
.visible-print-inline {
  display: none !important;
}
@media print {
  /* line 189, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-print-inline {
    display: inline !important;
  }
}

/* line 196, bootstrap/bootstrap/_responsive-utilities.scss */
.visible-print-inline-block {
  display: none !important;
}
@media print {
  /* line 196, bootstrap/bootstrap/_responsive-utilities.scss */
  .visible-print-inline-block {
    display: inline-block !important;
  }
}

@media print {
  /* line 18, bootstrap/bootstrap/mixins/_responsive-visibility.scss */
  .hidden-print {
    display: none !important;
  }
}
/* line 49, base/_mixins.scss */
.p-t-0 {
  padding-top: 0px;
}

/* line 49, base/_mixins.scss */
.p-t-5 {
  padding-top: 5px;
}

/* line 49, base/_mixins.scss */
.p-t-10 {
  padding-top: 10px;
}

/* line 49, base/_mixins.scss */
.p-t-15 {
  padding-top: 15px;
}

/* line 49, base/_mixins.scss */
.p-t-20 {
  padding-top: 20px;
}

/* line 49, base/_mixins.scss */
.p-t-25 {
  padding-top: 25px;
}

/* line 49, base/_mixins.scss */
.p-t-30 {
  padding-top: 30px;
}

/* line 49, base/_mixins.scss */
.p-t-35 {
  padding-top: 35px;
}

/* line 49, base/_mixins.scss */
.p-t-40 {
  padding-top: 40px;
}

/* line 49, base/_mixins.scss */
.p-t-45 {
  padding-top: 45px;
}

/* line 49, base/_mixins.scss */
.p-t-50 {
  padding-top: 50px;
}

/* line 49, base/_mixins.scss */
.p-t-55 {
  padding-top: 55px;
}

/* line 49, base/_mixins.scss */
.p-t-60 {
  padding-top: 60px;
}

/* line 49, base/_mixins.scss */
.p-t-65 {
  padding-top: 65px;
}

/* line 49, base/_mixins.scss */
.p-t-70 {
  padding-top: 70px;
}

/* line 49, base/_mixins.scss */
.p-t-75 {
  padding-top: 75px;
}

/* line 49, base/_mixins.scss */
.p-t-80 {
  padding-top: 80px;
}

/* line 49, base/_mixins.scss */
.p-t-85 {
  padding-top: 85px;
}

/* line 49, base/_mixins.scss */
.p-t-90 {
  padding-top: 90px;
}

/* line 49, base/_mixins.scss */
.p-t-95 {
  padding-top: 95px;
}

/* line 49, base/_mixins.scss */
.p-t-100 {
  padding-top: 100px;
}

/* line 49, base/_mixins.scss */
.p-t-105 {
  padding-top: 105px;
}

/* line 49, base/_mixins.scss */
.p-t-110 {
  padding-top: 110px;
}

/* line 49, base/_mixins.scss */
.p-t-115 {
  padding-top: 115px;
}

/* line 49, base/_mixins.scss */
.p-t-120 {
  padding-top: 120px;
}

/* line 49, base/_mixins.scss */
.p-t-125 {
  padding-top: 125px;
}

/* line 49, base/_mixins.scss */
.p-t-130 {
  padding-top: 130px;
}

/* line 49, base/_mixins.scss */
.p-t-135 {
  padding-top: 135px;
}

/* line 49, base/_mixins.scss */
.p-t-140 {
  padding-top: 140px;
}

/* line 49, base/_mixins.scss */
.p-t-145 {
  padding-top: 145px;
}

/* line 49, base/_mixins.scss */
.p-t-150 {
  padding-top: 150px;
}

/* line 49, base/_mixins.scss */
.p-r-0 {
  padding-right: 0px;
}

/* line 49, base/_mixins.scss */
.p-r-5 {
  padding-right: 5px;
}

/* line 49, base/_mixins.scss */
.p-r-10 {
  padding-right: 10px;
}

/* line 49, base/_mixins.scss */
.p-r-15 {
  padding-right: 15px;
}

/* line 49, base/_mixins.scss */
.p-r-20 {
  padding-right: 20px;
}

/* line 49, base/_mixins.scss */
.p-r-25 {
  padding-right: 25px;
}

/* line 49, base/_mixins.scss */
.p-r-30 {
  padding-right: 30px;
}

/* line 49, base/_mixins.scss */
.p-r-35 {
  padding-right: 35px;
}

/* line 49, base/_mixins.scss */
.p-r-40 {
  padding-right: 40px;
}

/* line 49, base/_mixins.scss */
.p-r-45 {
  padding-right: 45px;
}

/* line 49, base/_mixins.scss */
.p-r-50 {
  padding-right: 50px;
}

/* line 49, base/_mixins.scss */
.p-r-55 {
  padding-right: 55px;
}

/* line 49, base/_mixins.scss */
.p-r-60 {
  padding-right: 60px;
}

/* line 49, base/_mixins.scss */
.p-r-65 {
  padding-right: 65px;
}

/* line 49, base/_mixins.scss */
.p-r-70 {
  padding-right: 70px;
}

/* line 49, base/_mixins.scss */
.p-r-75 {
  padding-right: 75px;
}

/* line 49, base/_mixins.scss */
.p-r-80 {
  padding-right: 80px;
}

/* line 49, base/_mixins.scss */
.p-r-85 {
  padding-right: 85px;
}

/* line 49, base/_mixins.scss */
.p-r-90 {
  padding-right: 90px;
}

/* line 49, base/_mixins.scss */
.p-r-95 {
  padding-right: 95px;
}

/* line 49, base/_mixins.scss */
.p-r-100 {
  padding-right: 100px;
}

/* line 49, base/_mixins.scss */
.p-r-105 {
  padding-right: 105px;
}

/* line 49, base/_mixins.scss */
.p-r-110 {
  padding-right: 110px;
}

/* line 49, base/_mixins.scss */
.p-r-115 {
  padding-right: 115px;
}

/* line 49, base/_mixins.scss */
.p-r-120 {
  padding-right: 120px;
}

/* line 49, base/_mixins.scss */
.p-r-125 {
  padding-right: 125px;
}

/* line 49, base/_mixins.scss */
.p-r-130 {
  padding-right: 130px;
}

/* line 49, base/_mixins.scss */
.p-r-135 {
  padding-right: 135px;
}

/* line 49, base/_mixins.scss */
.p-r-140 {
  padding-right: 140px;
}

/* line 49, base/_mixins.scss */
.p-r-145 {
  padding-right: 145px;
}

/* line 49, base/_mixins.scss */
.p-r-150 {
  padding-right: 150px;
}

/* line 49, base/_mixins.scss */
.p-b-0 {
  padding-bottom: 0px;
}

/* line 49, base/_mixins.scss */
.p-b-5 {
  padding-bottom: 5px;
}

/* line 49, base/_mixins.scss */
.p-b-10 {
  padding-bottom: 10px;
}

/* line 49, base/_mixins.scss */
.p-b-15 {
  padding-bottom: 15px;
}

/* line 49, base/_mixins.scss */
.p-b-20 {
  padding-bottom: 20px;
}

/* line 49, base/_mixins.scss */
.p-b-25 {
  padding-bottom: 25px;
}

/* line 49, base/_mixins.scss */
.p-b-30 {
  padding-bottom: 30px;
}

/* line 49, base/_mixins.scss */
.p-b-35 {
  padding-bottom: 35px;
}

/* line 49, base/_mixins.scss */
.p-b-40 {
  padding-bottom: 40px;
}

/* line 49, base/_mixins.scss */
.p-b-45 {
  padding-bottom: 45px;
}

/* line 49, base/_mixins.scss */
.p-b-50 {
  padding-bottom: 50px;
}

/* line 49, base/_mixins.scss */
.p-b-55 {
  padding-bottom: 55px;
}

/* line 49, base/_mixins.scss */
.p-b-60 {
  padding-bottom: 60px;
}

/* line 49, base/_mixins.scss */
.p-b-65 {
  padding-bottom: 65px;
}

/* line 49, base/_mixins.scss */
.p-b-70 {
  padding-bottom: 70px;
}

/* line 49, base/_mixins.scss */
.p-b-75 {
  padding-bottom: 75px;
}

/* line 49, base/_mixins.scss */
.p-b-80 {
  padding-bottom: 80px;
}

/* line 49, base/_mixins.scss */
.p-b-85 {
  padding-bottom: 85px;
}

/* line 49, base/_mixins.scss */
.p-b-90 {
  padding-bottom: 90px;
}

/* line 49, base/_mixins.scss */
.p-b-95 {
  padding-bottom: 95px;
}

/* line 49, base/_mixins.scss */
.p-b-100 {
  padding-bottom: 100px;
}

/* line 49, base/_mixins.scss */
.p-b-105 {
  padding-bottom: 105px;
}

/* line 49, base/_mixins.scss */
.p-b-110 {
  padding-bottom: 110px;
}

/* line 49, base/_mixins.scss */
.p-b-115 {
  padding-bottom: 115px;
}

/* line 49, base/_mixins.scss */
.p-b-120 {
  padding-bottom: 120px;
}

/* line 49, base/_mixins.scss */
.p-b-125 {
  padding-bottom: 125px;
}

/* line 49, base/_mixins.scss */
.p-b-130 {
  padding-bottom: 130px;
}

/* line 49, base/_mixins.scss */
.p-b-135 {
  padding-bottom: 135px;
}

/* line 49, base/_mixins.scss */
.p-b-140 {
  padding-bottom: 140px;
}

/* line 49, base/_mixins.scss */
.p-b-145 {
  padding-bottom: 145px;
}

/* line 49, base/_mixins.scss */
.p-b-150 {
  padding-bottom: 150px;
}

/* line 49, base/_mixins.scss */
.p-l-0 {
  padding-left: 0px;
}

/* line 49, base/_mixins.scss */
.p-l-5 {
  padding-left: 5px;
}

/* line 49, base/_mixins.scss */
.p-l-10 {
  padding-left: 10px;
}

/* line 49, base/_mixins.scss */
.p-l-15 {
  padding-left: 15px;
}

/* line 49, base/_mixins.scss */
.p-l-20 {
  padding-left: 20px;
}

/* line 49, base/_mixins.scss */
.p-l-25 {
  padding-left: 25px;
}

/* line 49, base/_mixins.scss */
.p-l-30 {
  padding-left: 30px;
}

/* line 49, base/_mixins.scss */
.p-l-35 {
  padding-left: 35px;
}

/* line 49, base/_mixins.scss */
.p-l-40 {
  padding-left: 40px;
}

/* line 49, base/_mixins.scss */
.p-l-45 {
  padding-left: 45px;
}

/* line 49, base/_mixins.scss */
.p-l-50 {
  padding-left: 50px;
}

/* line 49, base/_mixins.scss */
.p-l-55 {
  padding-left: 55px;
}

/* line 49, base/_mixins.scss */
.p-l-60 {
  padding-left: 60px;
}

/* line 49, base/_mixins.scss */
.p-l-65 {
  padding-left: 65px;
}

/* line 49, base/_mixins.scss */
.p-l-70 {
  padding-left: 70px;
}

/* line 49, base/_mixins.scss */
.p-l-75 {
  padding-left: 75px;
}

/* line 49, base/_mixins.scss */
.p-l-80 {
  padding-left: 80px;
}

/* line 49, base/_mixins.scss */
.p-l-85 {
  padding-left: 85px;
}

/* line 49, base/_mixins.scss */
.p-l-90 {
  padding-left: 90px;
}

/* line 49, base/_mixins.scss */
.p-l-95 {
  padding-left: 95px;
}

/* line 49, base/_mixins.scss */
.p-l-100 {
  padding-left: 100px;
}

/* line 49, base/_mixins.scss */
.p-l-105 {
  padding-left: 105px;
}

/* line 49, base/_mixins.scss */
.p-l-110 {
  padding-left: 110px;
}

/* line 49, base/_mixins.scss */
.p-l-115 {
  padding-left: 115px;
}

/* line 49, base/_mixins.scss */
.p-l-120 {
  padding-left: 120px;
}

/* line 49, base/_mixins.scss */
.p-l-125 {
  padding-left: 125px;
}

/* line 49, base/_mixins.scss */
.p-l-130 {
  padding-left: 130px;
}

/* line 49, base/_mixins.scss */
.p-l-135 {
  padding-left: 135px;
}

/* line 49, base/_mixins.scss */
.p-l-140 {
  padding-left: 140px;
}

/* line 49, base/_mixins.scss */
.p-l-145 {
  padding-left: 145px;
}

/* line 49, base/_mixins.scss */
.p-l-150 {
  padding-left: 150px;
}

/* line 49, base/_mixins.scss */
.p-x-0 {
  padding: 0px;
}

/* line 49, base/_mixins.scss */
.p-x-5 {
  padding: 5px;
}

/* line 49, base/_mixins.scss */
.p-x-10 {
  padding: 10px;
}

/* line 49, base/_mixins.scss */
.p-x-15 {
  padding: 15px;
}

/* line 49, base/_mixins.scss */
.p-x-20 {
  padding: 20px;
}

/* line 49, base/_mixins.scss */
.p-x-25 {
  padding: 25px;
}

/* line 49, base/_mixins.scss */
.p-x-30 {
  padding: 30px;
}

/* line 49, base/_mixins.scss */
.p-x-35 {
  padding: 35px;
}

/* line 49, base/_mixins.scss */
.p-x-40 {
  padding: 40px;
}

/* line 49, base/_mixins.scss */
.p-x-45 {
  padding: 45px;
}

/* line 49, base/_mixins.scss */
.p-x-50 {
  padding: 50px;
}

/* line 49, base/_mixins.scss */
.p-x-55 {
  padding: 55px;
}

/* line 49, base/_mixins.scss */
.p-x-60 {
  padding: 60px;
}

/* line 49, base/_mixins.scss */
.p-x-65 {
  padding: 65px;
}

/* line 49, base/_mixins.scss */
.p-x-70 {
  padding: 70px;
}

/* line 49, base/_mixins.scss */
.p-x-75 {
  padding: 75px;
}

/* line 49, base/_mixins.scss */
.p-x-80 {
  padding: 80px;
}

/* line 49, base/_mixins.scss */
.p-x-85 {
  padding: 85px;
}

/* line 49, base/_mixins.scss */
.p-x-90 {
  padding: 90px;
}

/* line 49, base/_mixins.scss */
.p-x-95 {
  padding: 95px;
}

/* line 49, base/_mixins.scss */
.p-x-100 {
  padding: 100px;
}

/* line 49, base/_mixins.scss */
.p-x-105 {
  padding: 105px;
}

/* line 49, base/_mixins.scss */
.p-x-110 {
  padding: 110px;
}

/* line 49, base/_mixins.scss */
.p-x-115 {
  padding: 115px;
}

/* line 49, base/_mixins.scss */
.p-x-120 {
  padding: 120px;
}

/* line 49, base/_mixins.scss */
.p-x-125 {
  padding: 125px;
}

/* line 49, base/_mixins.scss */
.p-x-130 {
  padding: 130px;
}

/* line 49, base/_mixins.scss */
.p-x-135 {
  padding: 135px;
}

/* line 49, base/_mixins.scss */
.p-x-140 {
  padding: 140px;
}

/* line 49, base/_mixins.scss */
.p-x-145 {
  padding: 145px;
}

/* line 49, base/_mixins.scss */
.p-x-150 {
  padding: 150px;
}

/* line 1, base/_stylesheet.scss */
.grid-stylesheet {
  display: grid;
  grid: repeat(5, fit-content(300px))/repeat(4, 1fr);
  grid-template-areas: "colors typography typography typography" "colors buttons buttons links" "inputs inputs inputs inputs" "badges badges alerts alerts" "badges badges favicons favicons" "grid grid grid grid";
  border: 1px solid #cdcdcd;
  /*colors*/
}
/* line 13, base/_stylesheet.scss */
.grid-stylesheet > section:not(.typography) {
  padding: 30px;
}
/* line 17, base/_stylesheet.scss */
.grid-stylesheet > section {
  position: relative;
}
/* line 20, base/_stylesheet.scss */
.grid-stylesheet > section > h6 {
  font-weight: bold;
  color: #034f82;
  background: white;
  position: absolute;
  top: -18px;
  left: 20px;
  padding: 0 10px;
}
/* line 29, base/_stylesheet.scss */
.grid-stylesheet > section h6.subheader {
  color: #999;
  margin-top: 20px;
  margin-bottom: 20px;
  width: 100%;
}
/* line 37, base/_stylesheet.scss */
.grid-stylesheet .colors {
  grid-area: colors;
  border-right: 1px solid #cdcdcd;
}
/* line 42, base/_stylesheet.scss */
.grid-stylesheet .typography {
  grid-area: typography;
  border-bottom: 1px solid #cdcdcd;
}
/* line 47, base/_stylesheet.scss */
.grid-stylesheet .font-family {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
/* line 53, base/_stylesheet.scss */
.grid-stylesheet .font-family > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  padding: 30px 30px 0;
  min-width: 10em;
}
/* line 59, base/_stylesheet.scss */
.grid-stylesheet .font-family-bold > * {
  font-weight: 900;
}
/* line 63, base/_stylesheet.scss */
.grid-stylesheet .font-family-medium > * {
  font-weight: 500;
}
/* line 67, base/_stylesheet.scss */
.grid-stylesheet .font-family-light > * {
  font-weight: 300;
}
/* line 71, base/_stylesheet.scss */
.grid-stylesheet .font-example__headline {
  font-weight: 900;
}
/* line 75, base/_stylesheet.scss */
.grid-stylesheet .buttons-wrapper {
  grid-area: buttons;
  border-right: 1px solid #cdcdcd;
}
/* line 80, base/_stylesheet.scss */
.grid-stylesheet .links {
  grid-area: links;
}
/* line 84, base/_stylesheet.scss */
.grid-stylesheet .inputs-selects {
  grid-area: inputs;
  display: grid;
  border-top: 1px solid #cdcdcd;
  border-bottom: 1px solid #cdcdcd;
}
/* line 91, base/_stylesheet.scss */
.grid-stylesheet .badges {
  grid-area: badges;
  border-right: 1px solid #cdcdcd;
}
/* line 96, base/_stylesheet.scss */
.grid-stylesheet .alerts {
  grid-area: alerts;
}
/* line 100, base/_stylesheet.scss */
.grid-stylesheet .tooltips {
  grid-area: tooltips;
  border-right: 1px solid #cdcdcd;
}
/* line 105, base/_stylesheet.scss */
.grid-stylesheet .favicons {
  grid-area: favicons;
  border-top: 1px solid #cdcdcd;
}
/* line 110, base/_stylesheet.scss */
.grid-stylesheet .grid-layout {
  grid-area: grid;
  border-top: 1px solid #cdcdcd;
}
/* line 115, base/_stylesheet.scss */
.grid-stylesheet .font-family {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
/* line 119, base/_stylesheet.scss */
.grid-stylesheet .font-family > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 30%;
          flex: 1 1 30%;
  padding: 30px 30px 0;
  min-width: 10em;
}
/* line 126, base/_stylesheet.scss */
.grid-stylesheet .font-example {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
/* line 129, base/_stylesheet.scss */
.grid-stylesheet .font-example > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 45%;
          flex: 1 1 45%;
  padding: 30px;
  min-width: 16em;
}
/* line 134, base/_stylesheet.scss */
.grid-stylesheet .font-example p {
  margin-bottom: 15px;
}
/* line 140, base/_stylesheet.scss */
.grid-stylesheet .palette {
  display: grid;
  grid: 80px 45px min-content/repeat(5, minmax(50px, 1fr));
  margin-bottom: 1em;
}
/* line 145, base/_stylesheet.scss */
.grid-stylesheet .palette__main {
  grid-column: span 5;
}
/* line 148, base/_stylesheet.scss */
.grid-stylesheet .palette h5 {
  grid-column: span 5;
  text-align: left;
  padding: 10px 0;
}
/* line 153, base/_stylesheet.scss */
.grid-stylesheet .palette.main div:nth-child(1) {
  background: #034f82;
}
/* line 156, base/_stylesheet.scss */
.grid-stylesheet .palette.main div:nth-child(2) {
  background: #e1f5fe;
}
/* line 159, base/_stylesheet.scss */
.grid-stylesheet .palette.main div:nth-child(3) {
  background: #c0e6ff;
}
/* line 162, base/_stylesheet.scss */
.grid-stylesheet .palette.main div:nth-child(4) {
  background: #4fc3f7;
}
/* line 165, base/_stylesheet.scss */
.grid-stylesheet .palette.main div:nth-child(5) {
  background: #0288d1;
}
/* line 168, base/_stylesheet.scss */
.grid-stylesheet .palette.main div:nth-child(6) {
  background: #ebf5fc;
}
/* line 171, base/_stylesheet.scss */
.grid-stylesheet .palette.secondary div:nth-child(1) {
  background: #6d9d31;
}
/* line 174, base/_stylesheet.scss */
.grid-stylesheet .palette.secondary div:nth-child(2) {
  background: #b7db8a;
}
/* line 177, base/_stylesheet.scss */
.grid-stylesheet .palette.secondary div:nth-child(3) {
  background: #9fce64;
}
/* line 180, base/_stylesheet.scss */
.grid-stylesheet .palette.secondary div:nth-child(4) {
  background: #87c23d;
}
/* line 183, base/_stylesheet.scss */
.grid-stylesheet .palette.secondary div:nth-child(5) {
  background: #99d2f7;
}
/* line 186, base/_stylesheet.scss */
.grid-stylesheet .palette.secondary div:nth-child(6) {
  background: #364e18;
}
/* line 189, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals {
  grid-template-rows: repeat(2, 50px) -webkit-min-content;
  grid-template-rows: repeat(2, 50px) min-content;
  grid-template-columns: repeat(4, 1fr);
}
/* line 193, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals div:nth-child(1) {
  background: #5d5d5d;
}
/* line 196, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals div:nth-child(2) {
  background: #ebebeb;
}
/* line 199, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals div:nth-child(3) {
  background: #cdcdcd;
}
/* line 202, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals div:nth-child(4) {
  background: #a9a9a9;
}
/* line 205, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals div:nth-child(5) {
  background: #666666;
  grid-row: 2;
}
/* line 209, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals div:nth-child(6) {
  background: #2b2b2b;
  grid-row: 2;
}
/* line 213, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals div:nth-child(7) {
  background: #1a1a1a;
  grid-row: 2;
}
/* line 217, base/_stylesheet.scss */
.grid-stylesheet .palette.neutrals div:nth-child(8) {
  background: #221e1e;
  grid-row: 2;
}

@font-face {
  font-family: 'icomoon';
  src: url("../fonts/icomoon.eot?yhkigs");
  src: url("../fonts/icomoon.eot?yhkigs#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?yhkigs") format("truetype"), url("../fonts/icomoon.woff?yhkigs") format("woff"), url("../fonts/icomoon.svg?yhkigs#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* define a new css font */
/* line 18, base/_icons.scss */
[class^="icon-"]:before, [class*=" icon-"]:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: bold;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* line 60, base/_icons.scss */
.icon-plus:before {
  content: "";
}

/* line 65, base/_icons.scss */
.icon-cadeado:before {
  content: "";
}

/* line 70, base/_icons.scss */
.icon-calendario:before {
  content: "";
}

/* line 75, base/_icons.scss */
.icon-Companys:before {
  content: "";
}

/* line 80, base/_icons.scss */
.icon-Distribution:before {
  content: "";
}

/* line 85, base/_icons.scss */
.icon-exportation:before {
  content: "";
}

/* line 90, base/_icons.scss */
.icon-fechar:before {
  content: "";
}

/* line 95, base/_icons.scss */
.icon-industria:before {
  content: "";
}

/* line 100, base/_icons.scss */
.icon-Jobs:before {
  content: "";
}

/* line 105, base/_icons.scss */
.icon-Loba:before {
  content: "";
}

/* line 110, base/_icons.scss */
.icon-login:before {
  content: "";
}

/* line 115, base/_icons.scss */
.icon-Lupa:before {
  content: "";
}

/* line 120, base/_icons.scss */
.icon-newsletter:before {
  content: "";
}

/* line 125, base/_icons.scss */
.icon-Play:before {
  content: "";
}

/* line 130, base/_icons.scss */
.icon-RD:before {
  content: "";
}

/* line 135, base/_icons.scss */
.icon-seta:before {
  content: "";
}
/* line 140, base/_icons.scss */
.icon-seta_arredonda:before {
  content: "";
}

/* line 145, base/_icons.scss */
.icon-seta_drag:before {
  content: "";
}

/* line 150, base/_icons.scss */
.icon-Share:before {
  content: "";
}

/* line 155, base/_icons.scss */
.icon-SYSTEMS:before {
  content: "";
}

/* line 160, base/_icons.scss */
.icon-Upload:before {
  content: "";
}

/* line 165, base/_icons.scss */
.icon-warning:before {
  content: "";
}

/* line 2, base/_fonts.scss */
h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
  color: #000;
  font-family: "Noto Sans", sans-serif;
}

/* line 13, base/_fonts.scss */
h1 {
  font-size: 65px;
  font-weight: 700;
  color: #ffffff;
  line-height: normal;
}
@media (max-width: 991px) {
  /* line 13, base/_fonts.scss */
  h1 {
    font-size: 40px;
  }
}
@media (max-width: 767px) {
  /* line 13, base/_fonts.scss */
  h1 {
    font-size: 22px;
  }
}

/* line 28, base/_fonts.scss */
h2 {
  font-size: 50px;
  font-weight: 700;
  color: #221e1e;
}
@media (max-width: 991px) {
  /* line 28, base/_fonts.scss */
  h2 {
    font-size: 25px;
  }
}

/* line 38, base/_fonts.scss */
h3 {
  font-size: 2.08vw;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
}
@media (max-width: 991px) {
  /* line 38, base/_fonts.scss */
  h3 {
    font-size: 25px;
  }
}

/* line 47, base/_fonts.scss */
h4 {
  font-size: 30px;
  font-weight: 700;
}
@media (max-width: 991px) {
  /* line 47, base/_fonts.scss */
  h4 {
    font-size: 20px;
  }
}

/* line 56, base/_fonts.scss */
h5 {
  font-size: 0.988vw;
  font-weight: 700;
  color: #2b2b2b;
  text-transform: uppercase;
}
@media (max-width: 991px) {
  /* line 56, base/_fonts.scss */
  h5 {
    font-size: 15px;
  }
}

/* line 68, base/_fonts.scss */
.banner-pages h1 {
  font-size: 45px;
}
/* line 71, base/_fonts.scss */
.banner-pages h1 sup {
  top: -1.8em;
  left: 0.9em;
  font-size: 15px;
  color: #62c1ff;
}
@media (max-width: 991px) {
  /* line 68, base/_fonts.scss */
  .banner-pages h1 {
    font-size: 22px;
  }
  /* line 81, base/_fonts.scss */
  .banner-pages h1 sup {
    top: -1em;
    left: 0;
    font-size: 12px;
  }
}

/* line 1, base/_base.scss */
html {
  overflow-x: hidden;
}
/* line 4, base/_base.scss */
html.active-menu {
  overflow-y: hidden;
}

/* line 9, base/_base.scss */
body {
  font-family: "Noto Sans", sans-serif;
  font-size: 14px;
  line-height: 35px;
  overflow-x: hidden;
}
/* line 32, base/_base.scss */
body.in-modal {
  overflow: hidden;
}
@media (max-width: 991px) {
  /* line 9, base/_base.scss */
  body {
    font-size: 12px;
  }
}

@media (max-width: 991px) {
  /* line 41, base/_base.scss */
  .text-align-right-mobile {
    text-align: right;
  }
}

@media (max-width: 991px) {
  /* line 46, base/_base.scss */
  .text-align-left-mobile {
    text-align: left;
  }
}

/* line 52, base/_base.scss */
.equal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.members .equal{
  margin-top: 2vw;
}
/* line 56, base/_base.scss */
.equal > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* line 62, base/_base.scss */
.equal-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
/* line 66, base/_base.scss */
.equal-row > [class*="col-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

/* line 72, base/_base.scss */
.pgRow {
  /* make the row a flex container */
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* vertically center each flex item in the container */
}

@media (min-width: 992px) {
  /* line 77, base/_base.scss */
  .no-pad {
    margin-right: 0;
    margin-left: 0;
  }
  /* line 81, base/_base.scss */
  .no-pad > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }
}

/* line 88, base/_base.scss */
.hidden-block {
  display: none;
}

/* line 91, base/_base.scss */
.text-color-green {
  color: #6d9d31;
}

/* line 95, base/_base.scss */
.text-color-blue {
  color: #034f82;
}

/* line 99, base/_base.scss */
.text-color-black {
  color: #1a1a1a;
}

/* line 103, base/_base.scss */
.text-color-black-light {
  color: #2c2c2c;
}

/* line 107, base/_base.scss */
section {
  padding: 70px 0;
}
@media (max-width: 991px) {
  /* line 107, base/_base.scss */
  section {
    padding: 40px 0;
  }
}

/* line 115, base/_base.scss */
.banner-pages {
  position: relative;
  width: 100%;
  /* height: 520px; */
  height: 335px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #f0f0f0;
}
@media (max-width: 767px) {
  /* line 115, base/_base.scss */
  .banner-pages {
    height: 280px;
  }
}
/* line 128, base/_base.scss */
.banner-pages.banner-size {
  height: 335px;
}
@media (max-width: 767px) {
  /* line 128, base/_base.scss */
  .banner-pages.banner-size {
    height: 280px;
  }
}
/* line 136, base/_base.scss */
.banner-pages .elements-banner {
  position: relative;
  top: 80%;
  -webkit-transform: translateY(-80%);
          transform: translateY(-80%);
}
/* line 142, base/_base.scss */
.banner-pages .line {
  position: relative;
  width: 100%;
  text-align: right;
}
/* line 147, base/_base.scss */
.banner-pages .line:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 75%;
  height: 1px;
  background-color: #034f82;
}
@media (max-width: 991px) {
  /* line 147, base/_base.scss */
  .banner-pages .line:before {
    width: 60%;
  }
}
/* line 163, base/_base.scss */
.banner-pages .line.line-small:before {
  width: 40%;
}
/* line 168, base/_base.scss */
.banner-pages .line.line-medium:before {
  width: 60%;
}
/* line 175, base/_base.scss */
.banner-pages .with-background h1 {
  color: #ffffff;
}
/* line 180, base/_base.scss */
.banner-pages .with-background .line::before {
  background-color: #ffffff;
}

/* line 187, base/_base.scss */
.container {
  max-width: 100%;
}

/* line 191, base/_base.scss */
.card-linkable {
  display: inline-block;
  text-decoration: none;
  color: #5d5d5d;
  width: 100%;
  height: 100%;
  margin: 25px 0 0 0;
}
.card-container .card-linkable {
  display: inline-block;
  text-decoration: none;
  color: unset;
  width: 100%;
  height: 100%;
  margin: 0;
}
/* line 199, base/_base.scss */
.card-linkable:focus, .card-linkable:active, .card-linkable:hover {
  color: #5d5d5d;
  text-decoration: none;
}
/* line 206, base/_base.scss */
.card-linkable:focus .card-info .btn-event .evt-span, .card-linkable:active .card-info .btn-event .evt-span, .card-linkable:hover .card-info .btn-event .evt-span {
  margin-left: 20px;
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out;
}

/* line 215, base/_base.scss */
.card-info {
	display: block;
	flex-direction: column;
	/* position: relative; */
	width: 83%;
	/* max-width: 415px; */
	height: 100%;
	/* border: 1px solid #cdcdcd; */
	/* padding: 30px; */
	line-height: 26px;
	margin: auto;
}
.card-info-pub {
	display: inline-flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	max-width: 415px;
	height: 100%;
	border: 1px solid #cdcdcd;
	/* padding: 30px; */
	line-height: 26px;
}

/* line 224, base/_base.scss */
.card-info .tag-card {
  font-size: 13px;
  font-weight: 700;
  color: #6d9d31;
}
/* line 231, base/_base.scss */
.card-info .tag-card span:last-child:before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 2px;
  border-radius: 100%;
  background-color: #6d9d31;
  margin: 0 10px;
  vertical-align: middle;
}
.publications-active .btn-download{
  margin: 2.5vw 2.6vw 0 2.6vw!important;
}
.card-info .btn-download {
	position: relative;
	background: none;
	border: none;
	width: 100%;
	height: auto;
	text-align: left;
	padding: 0;
	margin-top: auto;
}
/* line 245, base/_base.scss */
.card-info .categoria-card {
  font-size: 13px;
  color: #034f82;
  font-weight: bold;
}
/* line 250, base/_base.scss */
.card-info .categoria-card ~ h5 {
  margin-top: -2px;
}
/* line 255, base/_base.scss */
.card-info .img-card {
	display: block;
	height: 12vw;
	overflow: hidden;
}
/* line 257, base/_base.scss */
.card-info .img-card img {
  display: block;
  width: 100%;
  height: auto;
}
/* line 267, base/_base.scss */
.card-info .info {
  display: block;
  clear: both;
  font-size: 0.832vw;
  /* height: 30px; */
  /* margin: 20px 0 10px 0; */
  padding-left: 2.6vw;
  padding-right: 2.6vw;
  padding-bottom: 2vw;
}
.our-events .texto p{
  line-height: 2;
}
.our-news .texto p{
  line-height: 2;
}
/* line 275, base/_base.scss */
.card-info .info .data {
  color: #6d9d31;
  float: left;
  padding: 1vw 0 1vw 0;
  font-size: 0.728vw;
  font-weight: bold;
  font-family: 'Raleway', sans-serif;
}
/* line 280, base/_base.scss */
.card-info .info .next {
  /*visibility: hidden;*/
  color: #2b2b2b;
  float: right;
}
/* line 287, base/_base.scss */
.card-info .btn-event {
  position: relative;
  background: none;
  border: none;
  width: 100%;
  height: auto;
  text-align: left;
  padding: 0;
  margin-top: auto;
  text-transform: capitalize;
  line-height: 1.5vw;
  /* margin: 10px 0 0; */
}
.card-info .btn-event svg{
  margin-left: 6vw;
  line-height: 1.5vw;
}
/* line 297, base/_base.scss */
.card-info .btn-event .btn-primary {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(93, 93, 93, 0.5);
  margin-top: 5px;
}
/* line 303, base/_base.scss */
.card-info .btn-event .btn-primary i {
  bottom: -3px;
}
/* line 305, base/_base.scss */
.card-info .btn-event .btn-primary i::before {
  color: rgba(93, 93, 93, 0.5);
  font-size: 14px;
}
/* line 312, base/_base.scss */
.card-info .btn-event .evt-span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #6D9D31;
  font-size: 0.832vw;
  font-weight: bold;
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out;
}
/* line 323, base/_base.scss */
.card-info .btn-event:hover .evt-span {
  margin-left: 20px;
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out;
}
@media (max-width: 991px) {
  /* line 287, base/_base.scss */
  .card-info .btn-event {
    padding: 0;
  }
}
/* line 334, base/_base.scss */
.card-info .btn-download {
  position: relative;
  background: none;
  border: none;
  width: 100%;
  height: auto;
  text-align: left;
  padding: 0;
  margin-top: auto;
}
/* line 344, base/_base.scss */
.card-info .btn-download .btn-primary {
  width: 30px;
  height: 30px;
  border: 0px solid rgba(93, 93, 93, 0.5);
}
/* line 349, base/_base.scss */
.card-info .btn-download .btn-primary i {
  display: inline-block;
  bottom: -3px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
/* line 353, base/_base.scss */
.card-info .btn-download .btn-primary i::before {
  color: rgba(93, 93, 93, 0.5);
}
/* line 360, base/_base.scss */
.card-info .btn-download .evt-span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 0;
  color: rgba(93, 93, 93, 0.5);
  font-size: 13px;
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out;
  color: #6D9D31;
  font-size: 0.728vw;
  font-weight: bold;
}
/* line 371, base/_base.scss */
.card-info .btn-download:hover .evt-span {
  margin-left: 0.5vw;
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out;
}
.card-info .btn-download svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 4.25vw;
  color: rgba(93, 93, 93, 0.5);
  font-size: 13px;
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out;
}
@media (max-width: 991px) {
  /* line 334, base/_base.scss */
  .card-info .btn-download {
    padding: 0;
  }
}
/* line 382, base/_base.scss */
.card-info.next-event {
  border: 2px solid #6d9d31;
}
/* line 385, base/_base.scss */
.card-info.next-event .info .data {
  color: #6d9d31;
}
/* line 389, base/_base.scss */
.card-info.next-event .info .next {
  visibility: visible;
}

/* line 397, base/_base.scss */
.privacy-policy .questions {
  font-weight: 700;
}
/* line 400, base/_base.scss */
.privacy-policy ol {
  margin: 0 0 1.5em;
  padding: 0;
  counter-reset: item;
}
/* line 404, base/_base.scss */
.privacy-policy ol > li {
  margin: 0;
  padding: 0 0 0 4em;
  text-indent: -2em;
  list-style-type: none;
  counter-increment: item;
  font-weight: normal;
}
/* line 411, base/_base.scss */
.privacy-policy ol > li:before {
  display: inline-block;
  width: 1em;
  padding-right: 2em;
  font-weight: bold;
  text-align: right;
  content: counter(item) ".";
}
/* line 422, base/_base.scss */
.privacy-policy ol > li ol > li:before {
  content: counters(item,".") " ";
}
/* line 429, base/_base.scss */
.privacy-policy ol ul > li {
  text-indent: 0em;
}

/* line 440, base/_base.scss */
.owl-carousel .owl-stage-outer .owl-stage .owl-item:not(.active) {
  opacity: 0.4;
}
/* line 444, base/_base.scss */
.owl-carousel .owl-stage-outer .owl-stage .owl-item.active.lastActiveItem {
  opacity: 0.4;
}

/* line 453, base/_base.scss */
.hide {
  display: none;
}

/* line 457, base/_base.scss */
.filter-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* line 462, base/_base.scss */
.filter-menu ul li {
  display: inline-block;
  border: 2px solid #333;
  padding: 10px 20px;
  text-transform: capitalize;
  cursor: pointer;
}

/* line 3, base/_inputs.scss */
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="phone"],
textarea {
  display: block;
  width: 100%;
  height: 40px;
  padding: 6px 15px;
  border-radius: 3px;
  border: 1px solid #ddd;
  background-color: white;
  font-size: 14px;
}
/* line 23, base/_inputs.scss */
input[type="text"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="phone"]:focus,
textarea:focus {
  -webkit-box-shadow: 0 2px 7px #ccc;
          box-shadow: 0 2px 7px #ccc;
  border-color: #034f82;
  outline: none;
}

/* line 35, base/_inputs.scss */
input[type="number"] {
  -moz-appearance: textfield;
}

/* line 39, base/_inputs.scss */
textarea {
  max-width: 100%;
  min-height: 100px;
}

/* line 46, base/_inputs.scss */
select {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857;
  color: #666;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* line 110, base/_inputs.scss */
input[type="checkbox"] {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
  margin-top: 0 !important;
  float: left;
  z-index: 10;
  opacity: 0;
  vertical-align: middle;
}
/* line 115, base/_inputs.scss */
input[type="checkbox"][disabled] + label.form-check-label, input[type="checkbox"][disabled] + label + label.form-check-label {
  opacity: 0.5;
  cursor: not-allowed;
}
/* line 125, base/_inputs.scss */
input[type="checkbox"]:checked + label.form-check-label:after, input[type="checkbox"]:checked + label + label.form-check-label:after {
  border-color: #034f82;
}
/* line 132, base/_inputs.scss */
input[type="checkbox"]:focus + label.form-check-label:before, input[type="checkbox"]:focus + label + label.form-check-label:before {
  -webkit-box-shadow: 0 1px 4px rgba(3, 79, 130, 0.5);
          box-shadow: 0 1px 4px rgba(3, 79, 130, 0.5);
}

/* line 138, base/_inputs.scss */
input[type="checkbox"] + label.form-check-label,
input[type="checkbox"] + label + label.form-check-label {
  padding-left: 30px;
  position: relative;
  margin-left: -20px;
  float: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
/* line 142, base/_inputs.scss */
input[type="checkbox"] + label.form-check-label:before,
input[type="checkbox"] + label + label.form-check-label:before {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 2px 10px #ddd;
          box-shadow: 0 2px 10px #ddd;
  border-radius: 3px;
  border: 1px solid #ddd;
  background-color: #fff;
}
/* line 146, base/_inputs.scss */
input[type="checkbox"] + label.form-check-label:after,
input[type="checkbox"] + label + label.form-check-label:after {
  content: '';
  width: 13px;
  height: 7px;
  position: absolute;
  top: 5px;
  left: 4px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  border-radius: 0 0 0 2px;
  border-bottom: 3px solid transparent;
  border-left: 3px solid transparent;
}

/* line 164, base/_inputs.scss */
input[type="radio"] {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
  margin-top: 0 !important;
  float: left;
  z-index: 10;
  opacity: 0;
  vertical-align: middle;
}
/* line 169, base/_inputs.scss */
input[type="radio"][disabled] + label.form-check-label, input[type="radio"][disabled] + label + label.form-check-label {
  opacity: 0.5;
  cursor: not-allowed;
}
/* line 176, base/_inputs.scss */
input[type="radio"]:checked + label.form-check-label, input[type="radio"]:checked + label + label.form-check-label {
  position: relative;
}
/* line 180, base/_inputs.scss */
input[type="radio"]:checked + label.form-check-label:after, input[type="radio"]:checked + label + label.form-check-label:after {
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 6px;
  left: 6px;
  border-radius: 50%;
  background-color: #034f82;
}
/* line 195, base/_inputs.scss */
input[type="radio"]:focus + label.form-check-label:before, input[type="radio"]:focus + label + label.form-check-label:before {
  -webkit-box-shadow: 0 1px 4px rgba(3, 79, 130, 0.5);
          box-shadow: 0 1px 4px rgba(3, 79, 130, 0.5);
}

/* line 201, base/_inputs.scss */
input[type="radio"] + label.form-check-label,
input[type="radio"] + label + label.form-check-label {
  padding-left: 30px;
  position: relative;
  margin-left: -20px;
  float: left;
  cursor: pointer;
  font-size: 16px;
  font-weight: normal;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
/* line 205, base/_inputs.scss */
input[type="radio"] + label.form-check-label:before,
input[type="radio"] + label + label.form-check-label:before {
  content: '';
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-shadow: 0 2px 10px #ddd;
          box-shadow: 0 2px 10px #ddd;
  border-radius: 3px;
  border: 1px solid #ddd;
  background-color: #fff;
  border-radius: 50%;
}

/*the container must be positioned relative:*/
/* line 2, base/select.scss */
.custom-select {
  position: relative;
  font-size: 14px;
  /* Let's get this party started */
  /* Track */
  /* Handle */
}
/* line 6, base/select.scss */
.custom-select select {
  display: block;
  /*hide original SELECT element:*/
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  opacity: 0;
  z-index: -1;
}
/* line 16, base/select.scss */
.custom-select select.custom-select__mobile {
  z-index: 99 !important;
}
/* line 22, base/select.scss */
.custom-select ::-webkit-scrollbar {
  width: 10px;
}
/* line 27, base/select.scss */
.custom-select ::-webkit-scrollbar-track {
  border-left: 1px solid #eee;
  background: rgba(0, 0, 0, 0.05);
}
/* line 33, base/select.scss */
.custom-select ::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
}
/* line 36, base/select.scss */
.custom-select ::-webkit-scrollbar-thumb:window-inactive {
  background: rgba(0, 0, 0, 0.25);
}

/* line 41, base/select.scss */
.select-selected {
  height: 40px;
  padding: 0 14px;
  border-radius: 25px;
  border: 1px solid #ddd;
  position: relative;
  background-color: white;
  line-height: 40px;
  color: #5d5d5d;
  cursor: pointer;
  vertical-align: middle;
  /*style the arrow inside the select element:*/
  /*point the arrow upwards when the select box is open (active):*/
}
/* line 54, base/select.scss */
.select-selected:after {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translate(0, -2px);
          transform: translate(0, -2px);
  border: 4px solid transparent;
  border-color: #7c7c7c transparent transparent transparent;
}
/* line 67, base/select.scss */
.select-selected.select-arrow-active {
  border-radius: 25px 25px 0 0;
}
/* line 70, base/select.scss */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #7c7c7c transparent;
  -webkit-transform: translate(0, -6px);
          transform: translate(0, -6px);
}

/*style the items (options), including the selected item:*/
/* line 79, base/select.scss */
.select-items div {
  height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  color: #ffffff;
  line-height: 40px;
  cursor: pointer;
  vertical-align: middle;
}

/*style items (options):*/
/* line 91, base/select.scss */
.select-items {
  max-height: 250px;
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 99;
  overflow: auto;
  margin-top: -1px;
  border-radius: 0 0 25px 25px;
  border: 1px solid #ddd;
  background-color: white;
}

/*hide the items when the select box is closed:*/
/* line 106, base/select.scss */
.select-hide {
  display: none;
}

/* line 110, base/select.scss */
.select-items div {
  background-color: white;
  color: #5d5d5d;
}
/* line 114, base/select.scss */
.select-items div:last-child {
  border-bottom: none;
}
/* line 118, base/select.scss */
.select-items div:hover {
  background-color: #034f82;
  color: white;
}

/* line 1, base/_file.scss */
.custom-file {
  position: relative;
}
/* line 4, base/_file.scss */
.custom-file input {
  width: 1px;
  height: 1px;
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

/* line 13, base/_file.scss */
.custom-file__mask {
  display: block;
  height: 34px;
  padding: 0 16px;
  border-radius: 3px;
  border: 1px solid #ddd;
  background-color: white;
  color: #5d5d5d;
  cursor: pointer;
  font-size: 14px;
  font-weight: normal;
  line-height: 34px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
/* line 27, base/_file.scss */
.custom-file__mask:hover, .custom-file__mask:focus, .custom-file__mask:active {
  background-color: #ddd;
}

/* line 1, base/_forms.scss */
input[type="text"]:disabled,
input[type="number"]:disabled,
input[type="email"]:disabled,
input[type="phone"]:disabled,
input[type="radio"]:disabled,
input[type="checkbox"]:disabled {
  cursor: not-allowed;
}

/* line 10, base/_forms.scss */
.validate-form {
  position: relative;
}

/* line 14, base/_forms.scss */
.form-group {
  position: relative;
  margin-bottom: 15px;
}
/* line 18, base/_forms.scss */
.form-group:after {
  content: '';
  display: block;
  width: 100%;
  clear: both;
}

/* line 26, base/_forms.scss */
label {
  display: inline-block;
  max-width: 100%;
  font-weight: bold;
}

/* line 34, base/_forms.scss */
label.error {
  margin: 5px 0 0 0;
  color: #ff4301;
  font-size: 12px;
}
/* line 39, base/_forms.scss */
label.error + label {
  margin-bottom: 20px;
}

/* line 47, base/_forms.scss */
input[type="checkbox"].valid + label.error + label,
input[type="radio"].valid + label.error + label {
  margin-bottom: 0;
}

/* line 57, base/_forms.scss */
input[type="checkbox"] + label.error,
input[type="radio"] + label.error {
  position: absolute;
  bottom: 0;
  left: 30px;
  margin: 0;
  font-size: 12px;
}

/* line 70, base/_forms.scss */
.open-rgpd.loading {
  position: relative;
  color: transparent !important;
}
/* line 74, base/_forms.scss */
.open-rgpd.loading:after {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: white;
  border-right-color: white;
  -webkit-animation: linear centeredRotation 0.8s infinite;
          animation: linear centeredRotation 0.8s infinite;
}

/* line 95, base/_forms.scss */
.rgpd {
  display: none;
  max-width: 300px;
  padding: 30px;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-box-shadow: 0 5px 20px rgba(93, 93, 93, 0.7);
          box-shadow: 0 5px 20px rgba(93, 93, 93, 0.7);
  border-radius: 15px;
  background-color: white;
  color: #5d5d5d;
  font-size: 12px;
  line-height: 20px;
}
/* line 109, base/_forms.scss */
.rgpd.rgpd--open {
  display: block;
}
/* line 113, base/_forms.scss */
.rgpd:after {
  content: '';
  display: block;
  width: 100%;
  clear: both;
}
/* line 120, base/_forms.scss */
.rgpd button {
  min-width: 0;
  width: calc(50% - 32px);
  float: left;
}
/* line 125, base/_forms.scss */
.rgpd button:last-child {
  float: right;
}

/* line 131, base/_forms.scss */
.rgpd__title {
  margin-top: 0;
  color: #034f82;
  font-size: 16px;
  font-weight: 900;
  line-height: 20px;
}

/* line 1, base/_warnings.scss */
.warnings {
  font-size: 14px;
}
@media (max-width: 991px) {
  /* line 1, base/_warnings.scss */
  .warnings {
    font-size: 12px;
  }
}
/* line 11, base/_warnings.scss */
.warnings.warnings--show p {
  display: block !important;
}
/* line 18, base/_warnings.scss */
.warnings p {
  display: none;
  padding: 10px 20px;
  border-radius: 3px;
}

/* line 30, base/_warnings.scss */
.warnings__success {
  border: 1px solid #95db94;
  background-color: rgba(149, 219, 148, 0.6);
  color: white;
}

/* line 42, base/_warnings.scss */
.warnings__error {
  border: 1px solid #ff4301;
  background-color: rgba(255, 67, 1, 0.6);
  color: white;
}

/* line 3, base/_buttons.scss */
.btn {
  display: inline-block;
  padding: 10px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  font-size: 15px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
/* line 17, base/_buttons.scss */
.btn:hover {
  text-decoration: none;
}
/* line 24, base/_buttons.scss */
.btn:focus, .btn:active {
  text-decoration: none;
}

/* line 30, base/_buttons.scss */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* line 38, base/_buttons.scss */
a.btn-default {
  color: #034f82;
  text-decoration: none;
  -webkit-transition: 0.3s all ease;
  -webkit-transition: 0.3s ease all;
  transition: 0.3s ease all;
  z-index: 1;
}
/* line 44, base/_buttons.scss */
a.btn-default:hover {
  color: #ffffff;
}
/* line 47, base/_buttons.scss */
a.btn-default:focus {
  color: #ffffff;
}

/* line 52, base/_buttons.scss */
.btn-default {
  position: relative;
  border: 2px solid #034f82;
  background-color: transparent;
}
/* line 59, base/_buttons.scss */
.btn-default span {
  position: relative;
  z-index: 1;
  color: #034f82;
}
/* line 65, base/_buttons.scss */
.btn-default::before {
  content: "";
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  position: absolute;
  top: 0;
  left: 50%;
  right: 50%;
  bottom: 0;
  opacity: 0;
  z-index: 0;
  background-color: #034f82;
}
/* line 79, base/_buttons.scss */
.btn-default:hover:before {
  content: "";
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}
/* line 87, base/_buttons.scss */
.btn-default:hover span {
  color: #ffffff;
}
/* line 93, base/_buttons.scss */
.btn-default:focus:before {
  content: "";
  -webkit-transition: 0.5s all ease;
  transition: 0.5s all ease;
  left: 0;
  right: 0;
  opacity: 1;
}
/* line 101, base/_buttons.scss */
.btn-default:focus span {
  color: #ffffff;
}

/* line 108, base/_buttons.scss */
.btn-primary {
  position: relative;
  border: 3px solid #cdcdcd;
  padding: 0;
  width: 50px;
  height: 50px;
  background-color: transparent;
  color: white;
  border-radius: 50%;
}
/* line 120, base/_buttons.scss */
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
  border: 3px solid #cdcdcd;
  background-color: transparent;
  color: #ffffff;
}
/* line 130, base/_buttons.scss */
.btn-primary i {
  position: absolute;
  left: 5px;
  bottom: -5px;
}
/* line 135, base/_buttons.scss */
.btn-primary i::before {
  font-size: 22px;
}
@media (max-width: 991px) {
  /* line 135, base/_buttons.scss */
  .btn-primary i::before {
    font-size: 15px;
  }
}
@media (max-width: 991px) {
  /* line 130, base/_buttons.scss */
  .btn-primary i {
    left: 2px;
    bottom: -8px;
  }
}
@media (max-width: 991px) {
  /* line 108, base/_buttons.scss */
  .btn-primary {
    width: 33px;
    height: 33px;
  }
}

/* line 155, base/_buttons.scss */
.btn-secondary {
  background-color: #6d9d31;
  color: white;
}
/* line 162, base/_buttons.scss */
.btn-secondary:hover, .btn-secondary:focus, .btn-secondary:active {
  background-color: #1b270c;
  color: #e7f3d8;
}

/* line 173, base/_buttons.scss */
.btn-success {
  background-color: #95db94;
  color: white;
}
/* line 180, base/_buttons.scss */
.btn-success:hover, .btn-success:focus, .btn-success:active {
  background-color: #cdeafe;
  color: white;
}

/* line 191, base/_buttons.scss */
.btn-xs {
  padding: 5px;
  font-size: 10px;
}

/* line 196, base/_buttons.scss */
.btn-sm {
  padding: 10px;
  font-size: 12px;
}

/* line 201, base/_buttons.scss */
.btn-lg {
  padding: 40px;
  font-size: 18px;
}

/* line 206, base/_buttons.scss */
.btn-xl {
  padding: 50px;
  font-size: 24px;
}

/* line 211, base/_buttons.scss */
.btn-block {
  display: block;
  width: 100%;
}

/* Barra cookies */
/* line 3, base/_cookies.scss */
.in-modal .cookies-wrapper {
  overflow: auto;
}

/* line 7, base/_cookies.scss */
.cookies-wrapper {
  display: none;
  padding: 32px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 12px;
}
/* line 19, base/_cookies.scss */
.cookies-wrapper * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/* line 23, base/_cookies.scss */
.cookies-wrapper button {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  /* line 23, base/_cookies.scss */
  .cookies-wrapper button {
    display: block;
    width: 100%;
  }
}

/* line 33, base/_cookies.scss */
.cookies-box {
  max-width: 600px;
  padding: 16px 16px 32px 16px;
  position: relative;
  margin: 0 auto;
  border-radius: 4px;
  background-color: white;
}
@media (min-width: 768px) {
  /* line 33, base/_cookies.scss */
  .cookies-box {
    padding: 32px 32px 64px 32px;
  }
}

/* line 46, base/_cookies.scss */
.cookies__title {
  display: block;
  width: 100%;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

/* line 56, base/_cookies.scss */
.cookies-bar-message {
  display: block;
  float: left;
  margin-bottom: 32px;
  color: #5d5d5d;
  font-size: 1em;
  line-height: 20px;
}

@media (min-width: 768px) {
  /* line 65, base/_cookies.scss */
  .cookies-settings-link {
    text-align: right;
  }
}

/* line 71, base/_cookies.scss */
.cookies-settings {
  display: none;
}

@media (min-width: 768px) {
  /* line 75, base/_cookies.scss */
  .cookies-settings-cancel {
    text-align: right;
  }
}

/* line 81, base/_cookies.scss */
.cookie-info {
  display: block;
  padding-left: 30px;
  line-height: 16px;
}

/* line 87, base/_cookies.scss */
.cookies-policy-link {
  padding: 0 16px;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 0 0 4px 4px;
  background-color: #eee;
  text-align: center;
}
@media (min-width: 768px) {
  /* line 87, base/_cookies.scss */
  .cookies-policy-link {
    padding: 0 48px;
  }
}

/* line 102, base/_cookies.scss */
.cookies-bar-know-more {
  color: #9a9a9a;
  font-size: 0.85em;
  line-height: 30px;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}
/* line 108, base/_cookies.scss */
.cookies-bar-know-more:hover {
  color: white;
}

/* line 114, base/_cookies.scss */
.cookies-message p {
  display: none;
}
/* line 118, base/_cookies.scss */
.cookies-message b {
  display: block;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 991px) {
  /* line 127, base/_cookies.scss */
  .cookies-bar-message {
    height: auto;
  }

  /* line 131, base/_cookies.scss */
  .cookies-bar-know-more {
    padding-left: 0;
  }
}
/* Barra cookies END */
/* line 1, modules/_header.scss */
.menu_container {
  position: fixed;
  z-index: 1002;
  width: 100%;
  height: 6.5vw;
  background: #fff;
  /* overflow: hidden; */
}

/* line 30, modules/_header.scss */
.menu_container button {
  background: transparent;
  border: none;
  cursor: pointer;
}
@media (max-width: 999px) {
  /* line 30, modules/_header.scss */
  .menu_container button {
    font-size: 12px;
  }
}
/* line 40, modules/_header.scss */
.menu_container.open-nav {
  background: transparent;
  height: 100vh;
  z-index: 1052;
}
/* line 46, modules/_header.scss */
.menu_container.open-nav::before {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  margin: 0;
  z-index: 0;
}
/* line 59, modules/_header.scss */
.menu_container.open-nav .open-menu,
.menu_container.open-nav .logo {
  visibility: hidden;
}
@media (max-width: 1499px) {
  /* line 40, modules/_header.scss */
  .menu_container.open-nav {
    overflow-y: auto;
  }
}
/* line 69, modules/_header.scss */
.menu_container .open-menu {
  width: 100%;
  font-weight: 700;
  padding-left: 0;
}
/* line 74, modules/_header.scss */
.menu_container .open-menu .lines {
  display: inline-block;
  position: absolute;
  top: 60%;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  width: 22px;
  height: 1px;
  background-color: #5d5d5d;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
  margin-left: 13px;
}
/* line 85, modules/_header.scss */
.menu_container .open-menu .lines::before {
  content: " ";
  width: 30px;
  height: 1px;
  position: absolute;
  top: -5px;
  left: 0;
  background-color: #5d5d5d;
  -webkit-transition: top 150ms ease, background-color 150ms ease, -webkit-transform 150ms ease;
  transition: top 150ms ease, background-color 150ms ease, -webkit-transform 150ms ease;
  transition: top 150ms ease, background-color 150ms ease, transform 150ms ease;
  transition: top 150ms ease, background-color 150ms ease, transform 150ms ease, -webkit-transform 150ms ease;
}
/* line 98, modules/_header.scss */
.menu_container .open-menu:hover .lines {
  width: 30px;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}
/* line 105, modules/_header.scss */
/* .menu_container .open-language {
  position: absolute;
  top: -5px;
  display: inline-block;
  width: 50px;
  border-radius: 6px;
  text-align: center;
} */
/* line 113, modules/_header.scss */
.menu_container .open-language.background-color {
  background-color: #000000;
}
/* line 117, modules/_header.scss */
.menu_container .open-language.background-color .languages li > a {
  color: white;
}
/* line 123, modules/_header.scss */
.menu_container .open-language.background-color i::before {
  color: white;
}
/* line 129, modules/_header.scss */
.menu_container .open-language .languages {
  display: inline-block;
  position: relative;
  z-index: 10 !important;
  padding: 0 10px 0 5px;
  z-index: 2;
  margin: 0;
  text-align: center;
  list-style: none;
}
/* line 139, modules/_header.scss */
.menu_container .open-language .languages li {
  display: block;
  display: block;
  cursor: pointer;
}
/* line 144, modules/_header.scss */
.menu_container .open-language .languages li > a {
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
/* line 150, modules/_header.scss */
.menu_container .open-language .languages li:not(.init) {
  display: none;
  line-height: 1;
}
/* line 156, modules/_header.scss */
.menu_container .open-language i {
  position: absolute;
  top: 7px;
  display: inline-block;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  right: 5px;
}
/* line 164, modules/_header.scss */
.menu_container .open-language i:before {
  font-size: 8px;
}
/* line 171, modules/_header.scss */
.menu_container .open-language-modal .language-select {
  color: #034f82;
  font-weight: bold;
}
/* line 177, modules/_header.scss */
.menu_container .options-bottom {
  position: fixed;
  bottom: 20px;
  right: 0;
}
/* line 183, modules/_header.scss */
.menu_container .menu {
  display: none;
  margin-top: 150px;
}
/* line 187, modules/_header.scss */
.menu_container .menu.active {
  display: block;
}
@media (max-width: 1499px) {
  /* line 187, modules/_header.scss */
  .menu_container .menu.active {
    position: relative;
  }
}
/* line 196, modules/_header.scss */
.menu_container .menu .main-menu .menu-items {
  list-style: none;
}
/* line 199, modules/_header.scss */
.menu_container .menu .main-menu .menu-items > li {
  margin: 10px 0;
}
/* line 202, modules/_header.scss */
.menu_container .menu .main-menu .menu-items > li:first-of-type {
  margin: 0 0 10px 0;
}
/* line 206, modules/_header.scss */
.menu_container .menu .main-menu .menu-items > li > a {
  font-size: 23px;
  line-height: 18px;
  font-weight: 700;
  color: #a9a9a9;
  text-decoration: none;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
/* line 214, modules/_header.scss */
.menu_container .menu .main-menu .menu-items > li > a:hover {
  color: #5d5d5d;
  -webkit-transition: color 0.2s ease-in-out;
  transition: color 0.2s ease-in-out;
}
/* line 220, modules/_header.scss */
.menu_container .menu .main-menu .menu-items > li .open-sub-menu {
  display: inline-block;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  vertical-align: middle;
}
/* line 228, modules/_header.scss */
.menu_container .menu .main-menu .menu-items > li .open-sub-menu i::before {
  font-size: 12px;
}
@media (max-width: 999px) {
  /* line 220, modules/_header.scss */
  .menu_container .menu .main-menu .menu-items > li .open-sub-menu {
    left: auto;
    -webkit-transform: none;
            transform: none;
    right: 20px;
  }
}
/* line 240, modules/_header.scss */
.menu_container .menu .main-menu .menu-items > li .close-sub-menu {
  display: none;
  position: absolute;
  left: 0;
  vertical-align: middle;
}
/* line 246, modules/_header.scss */
.menu_container .menu .main-menu .menu-items > li .close-sub-menu i {
  display: block;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  margin-top: -2px;
}
/* line 250, modules/_header.scss */
.menu_container .menu .main-menu .menu-items > li .close-sub-menu i::before {
  font-size: 12px;
}
/* line 256, modules/_header.scss */
.menu_container .menu .main-menu .menu-items > li .sub-menu {
  display: inline-block;
  position: absolute;
  top: 0;
  right: -10%;
  list-style: none;
  visibility: hidden;
}
/* line 264, modules/_header.scss */
.menu_container .menu .main-menu .menu-items > li .sub-menu.active {
  visibility: visible;
}
/* line 269, modules/_header.scss */
.menu_container .menu .main-menu .menu-items > li .sub-menu > li > a {
  font-size: 20px;
  font-weight: 700;
  color: #5d5d5d;
  text-decoration: none;
}
@media (max-width: 999px) {
  /* line 256, modules/_header.scss */
  .menu_container .menu .main-menu .menu-items > li .sub-menu {
    padding: 0;
    left: 5%;
    right: auto;
    margin-top: 50px;
  }
}
/* line 285, modules/_header.scss */
.menu_container .menu .main-menu .menu-items > li.deactive {
  display: none;
}
/* line 289, modules/_header.scss */
.menu_container .menu .main-menu .menu-items > li.active-menu-item {
  margin-left: 25px;
}
/* line 291, modules/_header.scss */
.menu_container .menu .main-menu .menu-items > li.active-menu-item .open-sub-menu {
  display: none;
}
/* line 295, modules/_header.scss */
.menu_container .menu .main-menu .menu-items > li.active-menu-item .close-sub-menu {
  display: inline;
}
@media (max-width: 999px) {
  /* line 196, modules/_header.scss */
  .menu_container .menu .main-menu .menu-items {
    padding: 0;
  }
}
@media (max-width: 1499px) {
  /* line 195, modules/_header.scss */
  .menu_container .menu .main-menu {
    margin-bottom: 50px;
  }
}
@media (max-width: 999px) {
  /* line 195, modules/_header.scss */
  .menu_container .menu .main-menu {
    margin: 100px 0 0;
  }
}
@media (max-width: 991px) {
  /* line 195, modules/_header.scss */
  .menu_container .menu .main-menu {
    margin: 50px 0 0;
  }
}
/* line 319, modules/_header.scss */
.menu_container .menu .close-menu {
  position: absolute;
  left: auto;
  right: 0;
  bottom: 0;
  -webkit-transform: none;
          transform: none;
  margin: 0 0 10px 0;
  font-weight: 700;
  color: #a9a9a9;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}
/* line 330, modules/_header.scss */
.menu_container .menu .close-menu i {
  margin-left: 15px;
}
/* line 332, modules/_header.scss */
.menu_container .menu .close-menu i:before {
  font-size: 11px;
}
@media (min-width: 1500px) {
  /* line 319, modules/_header.scss */
  .menu_container .menu .close-menu {
    margin: 0 0 60px 0;
    left: 50%;
    right: auto;
    bottom: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 999px) {
  /* line 319, modules/_header.scss */
  .menu_container .menu .close-menu {
    left: auto;
    right: 0;
    bottom: auto;
    top: 0;
    -webkit-transform: none;
            transform: none;
    margin: 0;
  }
}
/* line 354, modules/_header.scss */
.menu_container .menu .close-menu:hover {
  color: #221e1e;
  -webkit-transition: color 0.5s ease-in-out;
  transition: color 0.5s ease-in-out;
}
@media (max-width: 999px) {
  /* line 183, modules/_header.scss */
  .menu_container .menu {
    position: absolute;
    top: 0;
    left: 0;
    margin: 20px;
    width: 95vw;
  }
}
@media (max-width: 991px) {
  /* line 183, modules/_header.scss */
  .menu_container .menu {
    width: 85vw;
  }
}
@media (max-width: 767px) {
  /* line 183, modules/_header.scss */
  .menu_container .menu {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    width: 80vw;
  }
  /* line 380, modules/_header.scss */
  .menu_container .menu .logo-colors img {
    width: 66px;
  }
}
/* line 388, modules/_header.scss */
.menu_container #modalLogin .modal-content {
  padding: 30px 50px;
  background-color: black;
  color: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
/* line 395, modules/_header.scss */
.menu_container #modalLogin .modal-dialog {
  position: fixed;
  right: 310px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  /* line 395, modules/_header.scss */
  .menu_container #modalLogin .modal-dialog {
    width: 100vw;
  }
}
/* line 405, modules/_header.scss */
.menu_container #modalLogin .modal-header {
  padding: 0;
  border: none;
}
/* line 409, modules/_header.scss */
.menu_container #modalLogin .modal-header .modal-title {
  float: left;
  font-size: 25px;
  color: #ffffff;
  text-transform: unset;
}
/* line 416, modules/_header.scss */
.menu_container #modalLogin .modal-header button {
  float: right;
}
/* line 421, modules/_header.scss */
.menu_container #modalLogin .modal-body {
  border: none;
  padding: 0;
}
/* line 425, modules/_header.scss */
.menu_container #modalLogin .modal-body form .form-group {
  margin: 50px 0;
}
/* line 428, modules/_header.scss */
.menu_container #modalLogin .modal-body form .form-group span {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
}
/* line 435, modules/_header.scss */
.menu_container #modalLogin .modal-body form .form-group input[type="password"],
.menu_container #modalLogin .modal-body form .form-group input[type="email"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid #a9a9a9;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
/* line 443, modules/_header.scss */
.menu_container #modalLogin .modal-body form .form-group input[type="password"]:focus ~ span, .menu_container #modalLogin .modal-body form .form-group input[type="password"]:not(:focus):valid ~ span,
.menu_container #modalLogin .modal-body form .form-group input[type="email"]:focus ~ span,
.menu_container #modalLogin .modal-body form .form-group input[type="email"]:not(:focus):valid ~ span {
  top: -20px;
  -webkit-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
}
/* line 449, modules/_header.scss */
.menu_container #modalLogin .modal-body form .form-group input[type="password"].notEmpty ~ span,
.menu_container #modalLogin .modal-body form .form-group input[type="email"].notEmpty ~ span {
  top: -20px;
}
/* line 455, modules/_header.scss */
.menu_container #modalLogin .modal-body form .forget-password {
  font-size: 11px;
  color: #ffffff;
  text-decoration: none;
  margin-top: 5px;
}
/* line 462, modules/_header.scss */
.menu_container #modalLogin .modal-body form .btn-login {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
/* line 468, modules/_header.scss */
.menu_container #modalLogin .modal-body form .btn-login .btn-primary,.menu_container #modalLogin .modal-body .btn-login .btn-primary {
  /* border: 1px solid #fff!important;
	border-radius: 2.5vw;
	width: 7vw!important;
	height: 2.5vw; */
}
/* line 474, modules/_header.scss */
.menu_container #modalLogin .modal-body form .btn-login .btn-primary i,.menu_container #modalLogin .modal-body .btn-login .btn-primary i {
  left: 2px;
  bottom: -10px;
}
/* line 478, modules/_header.scss */
.menu_container #modalLogin .modal-body form .btn-login .btn-primary i::before,.menu_container #modalLogin .modal-body .btn-login .btn-primary i::before {
  font-size: 12px;
}
/* line 484, modules/_header.scss */
.menu_container #modalLogin .modal-body form .btn-login span,.menu_container #modalLogin .modal-body .btn-login span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 20px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}
.menu_container #modalLogin .modal-body form .btn-login:hover span,.menu_container #modalLogin .modal-body .btn-login:hover span {
  /* margin-left: 30px;
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out; */
}
@media (max-width: 999px) {
  /* line 462, modules/_header.scss */
  .menu_container #modalLogin .modal-body form .btn-login {
    padding: 0;
  }
}
@media (max-width: 999px) {
  /* line 387, modules/_header.scss */
  .menu_container #modalLogin {
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  /* line 506, modules/_header.scss */
  .menu_container #modalLogin .modal-dialog {
    margin: 0;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
  }
  /* line 514, modules/_header.scss */
  .menu_container #modalLogin .modal-content {
    border: 0;
    border-radius: 0;
    padding: 30px 15px;
  }
}
/* line 523, modules/_header.scss */
.menu_container #modalSearch .modal-content {
  padding: 30px 50px;
  background-color: black;
  color: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
/* line 530, modules/_header.scss */
.menu_container #modalSearch .modal-dialog {
  position: fixed;
  right: 340px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  /* line 530, modules/_header.scss */
  .menu_container #modalSearch .modal-dialog {
    width: 100vw;
  }
}
/* line 540, modules/_header.scss */
.menu_container #modalSearch .modal-header {
  padding: 0;
  border: none;
}
/* line 544, modules/_header.scss */
.menu_container #modalSearch .modal-header .modal-title {
  float: left;
  font-size: 25px;
  color: #ffffff;
  text-transform: unset;
}
/* line 551, modules/_header.scss */
.menu_container #modalSearch .modal-header button {
  float: right;
}
/* line 556, modules/_header.scss */
.menu_container #modalSearch .modal-body {
  border: none;
  padding: 0;
}
/* line 560, modules/_header.scss */
.menu_container #modalSearch .modal-body form .form-group {
  margin: 50px 0;
}
/* line 563, modules/_header.scss */
.menu_container #modalSearch .modal-body form .form-group span {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
}
/* line 570, modules/_header.scss */
.menu_container #modalSearch .modal-body form .form-group input[type="text"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid #a9a9a9;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
/* line 577, modules/_header.scss */
.menu_container #modalSearch .modal-body form .form-group input[type="text"]:focus ~ span, .menu_container #modalSearch .modal-body form .form-group input[type="text"]:not(:focus):valid ~ span {
  top: -20px;
  -webkit-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
}
/* line 583, modules/_header.scss */
.menu_container #modalSearch .modal-body form .form-group input[type="text"].notEmpty ~ span {
  top: -20px;
}
/* line 589, modules/_header.scss */
.menu_container #modalSearch .modal-body form .forget-password {
  font-size: 11px;
  color: #ffffff;
  text-decoration: none;
  margin-top: 5px;
}
/* line 596, modules/_header.scss */
.menu_container #modalSearch .modal-body form .btn-login {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
/* line 602, modules/_header.scss */
.menu_container #modalSearch .modal-body form .btn-login .btn-primary {
  border: 2px solid #ffffff;
  width: 25px;
  height: 25px;
  margin-top: 10px;
}
/* line 608, modules/_header.scss */
.menu_container #modalSearch .modal-body form .btn-login .btn-primary i {
  left: 2px;
  bottom: -10px;
}
/* line 612, modules/_header.scss */
.menu_container #modalSearch .modal-body form .btn-login .btn-primary i::before {
  font-size: 12px;
}
/* line 618, modules/_header.scss */
.menu_container #modalSearch .modal-body form .btn-login span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 20px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 991px) {
  /* line 596, modules/_header.scss */
  .menu_container #modalSearch .modal-body form .btn-login {
    padding: 0;
  }
}
@media (max-width: 991px) {
  /* line 522, modules/_header.scss */
  .menu_container #modalSearch {
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  /* line 640, modules/_header.scss */
  .menu_container #modalSearch .modal-dialog {
    margin: 0;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
  }
  /* line 648, modules/_header.scss */
  .menu_container #modalSearch .modal-content {
    border: 0;
    border-radius: 0;
    padding: 30px 15px;
  }
}
/* line 657, modules/_header.scss */
.menu_container #modalLanguage .modal-content {
  padding: 30px 50px;
  background-color: black;
  color: #ffffff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
/* line 663, modules/_header.scss */
.menu_container #modalLanguage .modal-content .languages-modal {
  position: relative;
  z-index: 10 !important;
  margin: 0;
  list-style: none;
  padding: 0;
  text-align: center;
}
/* line 671, modules/_header.scss */
.menu_container #modalLanguage .modal-content .languages-modal li {
  display: inline-block;
  cursor: pointer;
}
/* line 675, modules/_header.scss */
.menu_container #modalLanguage .modal-content .languages-modal li > a {
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}
/* line 683, modules/_header.scss */
.menu_container #modalLanguage .modal-content .languages-modal li:hover a {
  color: rgba(109, 157, 49, 0.8);
}
/* line 689, modules/_header.scss */
.menu_container #modalLanguage .modal-content .languages-modal li.init > a {
  color: #6d9d31;
}
/* line 697, modules/_header.scss */
.menu_container #modalLanguage .modal-dialog {
  position: fixed;
  right: 310px;
  margin: 0 auto;
}
@media (max-width: 991px) {
  /* line 697, modules/_header.scss */
  .menu_container #modalLanguage .modal-dialog {
    width: 100vw;
  }
}
/* line 707, modules/_header.scss */
.menu_container #modalLanguage .modal-header {
  padding: 0;
  border: none;
}
/* line 711, modules/_header.scss */
.menu_container #modalLanguage .modal-header .modal-title {
  float: left;
  font-size: 25px;
  color: #ffffff;
  text-transform: unset;
}
/* line 718, modules/_header.scss */
.menu_container #modalLanguage .modal-header button {
  float: right;
}
/* line 723, modules/_header.scss */
.menu_container #modalLanguage .modal-body {
  border: none;
  padding: 0;
}
/* line 727, modules/_header.scss */
.menu_container #modalLanguage .modal-body form .form-group {
  margin: 50px 0;
}
/* line 730, modules/_header.scss */
.menu_container #modalLanguage .modal-body form .form-group span {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
}
/* line 737, modules/_header.scss */
.menu_container #modalLanguage .modal-body form .form-group input[type="password"],
.menu_container #modalLanguage .modal-body form .form-group input[type="email"] {
  background: transparent;
  border: none;
  border-bottom: 1px solid #a9a9a9;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
/* line 745, modules/_header.scss */
.menu_container #modalLanguage .modal-body form .form-group input[type="password"]:focus ~ span, .menu_container #modalLanguage .modal-body form .form-group input[type="password"]:not(:focus):valid ~ span,
.menu_container #modalLanguage .modal-body form .form-group input[type="email"]:focus ~ span,
.menu_container #modalLanguage .modal-body form .form-group input[type="email"]:not(:focus):valid ~ span {
  top: -20px;
  -webkit-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
}
/* line 751, modules/_header.scss */
.menu_container #modalLanguage .modal-body form .form-group input[type="password"].notEmpty ~ span,
.menu_container #modalLanguage .modal-body form .form-group input[type="email"].notEmpty ~ span {
  top: -20px;
}
/* line 757, modules/_header.scss */
.menu_container #modalLanguage .modal-body form .forget-password {
  font-size: 11px;
  color: #ffffff;
  text-decoration: none;
  margin-top: 5px;
}
/* line 764, modules/_header.scss */
.menu_container #modalLanguage .modal-body form .btn-login {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
/* line 770, modules/_header.scss */
.menu_container #modalLanguage .modal-body form .btn-login .btn-primary {
  border: 2px solid #ffffff;
  width: 25px;
  height: 25px;
  margin-top: 10px;
}
/* line 776, modules/_header.scss */
.menu_container #modalLanguage .modal-body form .btn-login .btn-primary i {
  left: 2px;
  bottom: -10px;
}
/* line 780, modules/_header.scss */
.menu_container #modalLanguage .modal-body form .btn-login .btn-primary i::before {
  font-size: 12px;
}
/* line 786, modules/_header.scss */
.menu_container #modalLanguage .modal-body form .btn-login span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 20px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}
@media (max-width: 999px) {
  /* line 764, modules/_header.scss */
  .menu_container #modalLanguage .modal-body form .btn-login {
    padding: 0;
  }
}
@media (max-width: 999px) {
  /* line 656, modules/_header.scss */
  .menu_container #modalLanguage {
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
  }
  /* line 808, modules/_header.scss */
  .menu_container #modalLanguage .modal-dialog {
    margin: 0;
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
  }
  /* line 816, modules/_header.scss */
  .menu_container #modalLanguage .modal-content {
    border: 0;
    border-radius: 0;
    padding: 30px 20px;
  }
}

/* line 1, modules/_footer.scss */
.menu-footer {
  padding: 65px 0;
  border-top: 1px solid #cdcdcd;
}
/* line 5, modules/_footer.scss */
.menu-footer .row > [class*="col-"] {
  margin-bottom: 40px;
}
.menu-footer [class*="col-"] {
  min-height: 72px;
}
/* line 8, modules/_footer.scss */
.menu-footer .menu-footer-item {
  color: #221e1e;
  font-weight: 700;
  text-decoration: none;
  line-height: 14px !important;
}
.menu-footer a.menu-footer-item {
  line-height: 14px !important;
}
/* line 13, modules/_footer.scss */
.menu-footer .menu-footer-item::before {
  content: "";
  display: block;
  width: 10px;
  height: 1px;
  background-color: #221e1e;
}
/* line 21, modules/_footer.scss */
.menu-footer .menu-footer-item:hover {
  color: #034f82;
}
.menu-footer .redes.menu-footer-item:hover {
  color: #221e1e;
}
/* line 24, modules/_footer.scss */
.menu-footer .menu-footer-item:hover::before {
  background-color: #034f82;
}
/* line 29, modules/_footer.scss */
.menu-footer .menu-footer-item.deactivate {
  opacity: 0.3;
}
/* line 31, modules/_footer.scss */
.menu-footer .menu-footer-item.deactivate:hover {
  color: #221e1e;
}
/* line 34, modules/_footer.scss */
.menu-footer .menu-footer-item.deactivate:hover ~ sup .speech-bubble {
  visibility: visible;
}
/* line 42, modules/_footer.scss */
.menu-footer sup {
  cursor: pointer;
}
/* line 46, modules/_footer.scss */
.menu-footer sup:hover .speech-bubble {
  visibility: visible;
}
/* line 51, modules/_footer.scss */
.menu-footer sup .speech-bubble {
  visibility: hidden;
  position: absolute;
  top: -45px;
  left: 0;
  width: 150px;
  background: #c0e6ff;
  border-radius: 0.5em;
  color: #034f82;
  font-size: 12px;
  font-weight: 700;
  padding: 15px 10px;
  vertical-align: middle;
  text-align: center;
}
/* line 66, modules/_footer.scss */
.menu-footer sup .speech-bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 0;
  height: 0;
  border: 15px solid transparent;
  border-top-color: #c0e6ff;
  border-bottom: 0;
  border-left: 0;
  margin-left: -5.5px;
  margin-bottom: -11px;
}
/* line 83, modules/_footer.scss */
.menu-footer .sub-menu {
  list-style: none;
  padding: 0;
}
/* line 87, modules/_footer.scss */
.menu-footer .sub-menu > li > a {
  font-size: 12px;
  text-decoration: none;
  color: #5d5d5d;
}
/* line 92, modules/_footer.scss */
.menu-footer .sub-menu > li > a:hover {
  color: #034f82;
}
/* line 98, modules/_footer.scss */
.menu-footer .sub-menu.menu-social {
  -webkit-columns: 2;
          columns: 2;
}

/* line 104, modules/_footer.scss */
.footer-subscribe {
  padding: 20px 0 60px 0;
}
/* line 106, modules/_footer.scss */
.footer-subscribe .text-subscribe {
  position: relative;
  border: 1px solid #cdcdcd;
  width: 100%;
  padding: 40px 0;
  vertical-align: middle;
  text-align: center;
}
/* line 115, modules/_footer.scss */
.footer-subscribe .text-subscribe i::before {
  font-size: 50px;
  color: #221e1e;
}
/* line 121, modules/_footer.scss */
.footer-subscribe .text-subscribe span {
  vertical-align: middle;
  padding-left: 40px;
  padding-bottom: 25px;
  font-weight: 700;
  color: #221e1e;
}
@media (max-width: 999px) {
  /* line 121, modules/_footer.scss */
  .footer-subscribe .text-subscribe span {
    padding-left: 0;
  }
}
/* line 134, modules/_footer.scss */
.footer-subscribe .input-subscribe {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin-bottom: 15px;
  position: relative;
  border: 1px solid #cdcdcd;
  border-left: 0px;
  width: 100%;
  padding: 50.5px 0;
}
/* line 144, modules/_footer.scss */
.footer-subscribe .input-subscribe .submit-newsletter {
  font-weight: 700;
  margin-right: 50px;
  background: transparent;
  border: none;
  opacity: 0.2;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
/* line 152, modules/_footer.scss */
.footer-subscribe .input-subscribe .submit-newsletter i {
  padding: 10px 50px;
  color: #5d5d5d;
  min-width: 50px;
  text-align: center;
}
@media (max-width: 991px) {
  /* line 152, modules/_footer.scss */
  .footer-subscribe .input-subscribe .submit-newsletter i {
    padding-left: 0;
  }
}
/* line 163, modules/_footer.scss */
.footer-subscribe .input-subscribe .submit-newsletter.loading {
  opacity: 1;
}
/* line 165, modules/_footer.scss */
.footer-subscribe .input-subscribe .submit-newsletter.loading::after {
  left: 80%;
  -webkit-transform: translate(-80%, -50%);
          transform: translate(-80%, -50%);
  border-top-color: #221e1e;
  border-right-color: #221e1e;
}
@media (max-width: 999px) {
  /* line 144, modules/_footer.scss */
  .footer-subscribe .input-subscribe .submit-newsletter {
    margin-top: 20px;
    margin-right: 0;
    width: 100%;
  }
}
/* line 181, modules/_footer.scss */
.footer-subscribe .input-subscribe label.error {
  width: 100%;
}
/* line 186, modules/_footer.scss */
.footer-subscribe .input-subscribe .input-field {
  width: 100%;
  padding: 10px;
  outline: none;
  border: none;
  margin-left: 50px;
}
/* line 193, modules/_footer.scss */
.footer-subscribe .input-subscribe .input-field::-webkit-input-placeholder {
  font-size: 15px;
  font-style: italic;
}
.footer-subscribe .input-subscribe .input-field::-ms-input-placeholder {
  font-size: 15px;
  font-style: italic;
}
.footer-subscribe .input-subscribe .input-field::placeholder {
  font-size: 15px;
  font-style: italic;
}
/* line 198, modules/_footer.scss */
.footer-subscribe .input-subscribe .input-field:focus {
  font-family: "Noto Sans", sans-serif;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #034f82;
}
/* line 203, modules/_footer.scss */
.footer-subscribe .input-subscribe .input-field:focus ~ .submit-newsletter {
  opacity: 1;
}
/* line 207, modules/_footer.scss */
.footer-subscribe .input-subscribe .input-field:focus::-webkit-input-placeholder {
  color: #5d5d5d;
}
.footer-subscribe .input-subscribe .input-field:focus::-ms-input-placeholder {
  color: #5d5d5d;
}
.footer-subscribe .input-subscribe .input-field:focus::placeholder {
  color: #5d5d5d;
}
@media (max-width: 999px) {
  /* line 186, modules/_footer.scss */
  .footer-subscribe .input-subscribe .input-field {
    width: 100%;
    margin-left: 0;
  }
  /* line 216, modules/_footer.scss */
  .footer-subscribe .input-subscribe .input-field::-webkit-input-placeholder {
    text-align: center;
  }
  .footer-subscribe .input-subscribe .input-field::-ms-input-placeholder {
    text-align: center;
  }
  .footer-subscribe .input-subscribe .input-field::placeholder {
    text-align: center;
  }
}
@media (max-width: 999px) {
  /* line 134, modules/_footer.scss */
  .footer-subscribe .input-subscribe {
    border-left: 1px solid #cdcdcd;
    border-top: 0px;
  }
}
@media (max-width: 991px) {
  /* line 134, modules/_footer.scss */
  .footer-subscribe .input-subscribe {
    display: block;
  }
}

/* line 233, modules/_footer.scss */
footer {
  border-top: 1px solid #cdcdcd;
}
/* line 235, modules/_footer.scss */
footer .info-footer {
  width: 65vw;
  margin: auto;
  font-size: 12px;
  line-height: 25px;
}
/* line 240, modules/_footer.scss */
footer .info-footer span {
  font-size: 15px;
  font-weight: 700;
  color: #221e1e;
}
@media (max-width: 767px) {
  /* line 240, modules/_footer.scss */
  footer .info-footer span {
    font-size: 12px;
  }
}
/* line 250, modules/_footer.scss */
footer .info-footer .info-polica {
  font-size: 12px;
}
/* line 253, modules/_footer.scss */
footer .info-footer .info-polica a {
  color: #5d5d5d;
  text-decoration: none;
}
/* line 257, modules/_footer.scss */
footer .info-footer .info-polica a:hover {
  color: #034f82;
}
/* line 264, modules/_footer.scss */
footer .info-footer .logo-loba a {
  position: absolute;
  bottom: 0;
  color: #5d5d5d;
  text-decoration: none;
  opacity: 0.2;
  -webkit-transition: opacity 0.5s ease-in-out;
  transition: opacity 0.5s ease-in-out;
}
/* line 273, modules/_footer.scss */
footer .info-footer .logo-loba a i::before {
  font-size: 50px;
}
/* line 278, modules/_footer.scss */
footer .info-footer .logo-loba a:hover {
  opacity: 1;
}
@media (min-width: 992px) {
  /* line 264, modules/_footer.scss */
  footer .info-footer .logo-loba a {
    left: auto;
  }
}
@media (min-width: 768px) {
  /* line 264, modules/_footer.scss */
  footer .info-footer .logo-loba a {
    left: 0;
  }
}
@media (max-width: 767px) {
  /* line 264, modules/_footer.scss */
  footer .info-footer .logo-loba a {
    top: 0;
    bottom: auto;
  }
}
@media (max-width: 991px) {
  /* line 235, modules/_footer.scss */
  footer .info-footer {
    font-size: 12px;
  }
  /* line 300, modules/_footer.scss */
  footer .info-footer .equal {
    display: inherit;
    -ms-flex-wrap: unset;
        flex-wrap: unset;
  }
}

@-webkit-keyframes centeredRotation {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes centeredRotation {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0);
            transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* line 1, layout/_loba.scss */
.loba {
  display: inline-block;
  max-width: 50px;
  opacity: 0.4;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
/* line 7, layout/_loba.scss */
.loba:hover {
  opacity: 1;
}
/* line 11, layout/_loba.scss */
.loba img {
  width: 100%;
}

/* line 1, layout/_home.scss */
.banner-home {
  padding: 0;
  height: 100%;
  max-height: 100vh;
}
/* line 6, layout/_home.scss */
.banner-home .carousel-banner-home {
  position: relative;
  width: 100%;
  height: 100%;
  max-height: 100vh;
}
/* line 12, layout/_home.scss */
.banner-home .carousel-banner-home .owl-stage-outer {
  width: 100% !important;
  height: 100%;
  max-height: 100vh;
}
/* line 17, layout/_home.scss */
.banner-home .carousel-banner-home .owl-stage-outer .owl-item .item {
  width: 100vw !important;
  height: 100vh;
  max-height: 100vh;
  background-position: center;
  background-size: cover;
}
/* line 24, layout/_home.scss */
.banner-home .carousel-banner-home .owl-stage-outer .owl-item .item .elements-banner {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}
/* line 30, layout/_home.scss */
.banner-home .carousel-banner-home .owl-stage-outer .owl-item .item .elements-banner .btn-know-more {
  position: relative;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
/* line 37, layout/_home.scss */
.banner-home .carousel-banner-home .owl-stage-outer .owl-item .item .elements-banner .btn-know-more span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: 20px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out;
}
.banner-home .carousel-banner-home .owl-stage-outer .owl-item .item .elements-banner a.btn-know-more span {
  top:-5px;
  width: 150px;
}
@media (max-width: 991px) {
  /* line 30, layout/_home.scss */
  .banner-home .carousel-banner-home .owl-stage-outer .owl-item .item .elements-banner .btn-know-more {
    padding: 0;
  }
}
/* line 53, layout/_home.scss */
.banner-home .carousel-banner-home .owl-stage-outer .owl-item .item .elements-banner .btn-know-more:hover span {
  margin-left: 30px;
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out;
}
@media (max-width: 991px) {
  /* line 24, layout/_home.scss */
  .banner-home .carousel-banner-home .owl-stage-outer .owl-item .item .elements-banner {
    top: 100%;
    -webkit-transform: translateY(-120%);
            transform: translateY(-120%);
  }
}
@media (max-width: 767px) {
  /* line 17, layout/_home.scss */
  .banner-home .carousel-banner-home .owl-stage-outer .owl-item .item {
    height: 95vh;
    max-height: 95vh;
  }
}
@media (max-width: 767px) {
  /* line 12, layout/_home.scss */
  .banner-home .carousel-banner-home .owl-stage-outer {
    max-height: 95vh;
  }
}
/* line 78, layout/_home.scss */
.banner-home .carousel-banner-home .owl-nav {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  /* max-width: 1300px; */
}
/* line 86, layout/_home.scss */
.banner-home .carousel-banner-home .owl-nav .owl-prev {
  position: absolute;
  left: 2vw;
  background: none;
  border: 0px;
}
/* line 92, layout/_home.scss */
.banner-home .carousel-banner-home .owl-nav .owl-prev span {
  font-size: 0.936vw;
  font-weight: 700;
  color: #fff;
}
/* line 95, layout/_home.scss */
.banner-home .carousel-banner-home .owl-nav .owl-prev span i {
  display: inline-block;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  margin-right: 10px;
}
/* line 100, layout/_home.scss */
.banner-home .carousel-banner-home .owl-nav .owl-prev span i:before {
  position: relative;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
/* line 111, layout/_home.scss */
.banner-home .carousel-banner-home .owl-nav .owl-prev:hover span i:before {
  position: relative;
  left: 10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
/* line 121, layout/_home.scss */
.banner-home .carousel-banner-home .owl-nav .owl-next {
  position: absolute;
  right: 2vw;
  background: none;
  border: 0px;
}
/* line 127, layout/_home.scss */
.banner-home .carousel-banner-home .owl-nav .owl-next span {
  font-size: 0.936vw;
  font-weight: 700;
  color: #fff;
}
/* line 130, layout/_home.scss */
.banner-home .carousel-banner-home .owl-nav .owl-next span i {
  display: inline-block;
  margin-left: 10px;
}
/* line 134, layout/_home.scss */
.banner-home .carousel-banner-home .owl-nav .owl-next span i:before {
  position: relative;
  right: 0;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
/* line 145, layout/_home.scss */
.banner-home .carousel-banner-home .owl-nav .owl-next:hover span i:before {
  position: relative;
  right: -10px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media (max-width: 991px) {
  /* line 78, layout/_home.scss */
  .banner-home .carousel-banner-home .owl-nav {
    margin: -27px 0;
  }
}
/* line 160, layout/_home.scss */
.banner-home .carousel-banner-home .owl-dots {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 100px;
  width: 100%;
  max-width: 950px;
}
/* line 168, layout/_home.scss */
.banner-home .carousel-banner-home .owl-dots .owl-dot {
  float: left;
}
/* line 171, layout/_home.scss */
.banner-home .carousel-banner-home .owl-dots .owl-dot span {
  opacity: 0.2;
}
@media (max-width: 991px) {
  /* line 171, layout/_home.scss */
  .banner-home .carousel-banner-home .owl-dots .owl-dot span {
    height: 3px;
    border-radius: 0;
    margin: 0;
  }
}
/* line 182, layout/_home.scss */
.banner-home .carousel-banner-home .owl-dots .owl-dot.active span {
  opacity: 1;
  background: transparent;
  border: 1px solid #ffffff;
}
@media (max-width: 991px) {
  /* line 182, layout/_home.scss */
  .banner-home .carousel-banner-home .owl-dots .owl-dot.active span {
    background: #ffffff;
  }
}
@media (max-width: 991px) {
  /* line 160, layout/_home.scss */
  .banner-home .carousel-banner-home .owl-dots {
    top: 50%;
    bottom: auto;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    margin: 0 50px 0;
  }
}

/* line 204, layout/_home.scss */
.msg-home {
  /* background-color: #dedede; */
  padding: 100px 0 50px 0;
}
.msg-home .container{
  width: 71.50vw;
}
/* line 208, layout/_home.scss */
.msg-home .name-msg {
  font-size: 2.08vw;
  font-weight: 700;
  line-height: 50px;
  font-family: 'Raleway', sans-serif;
}
/* line 213, layout/_home.scss */
.msg-home .name-msg span {
  color: #034f82;
  font-size: 15px;
  font-weight: normal;
  display: block;
  line-height: 40px;
}
@media (max-width: 991px) {
  /* line 213, layout/_home.scss */
  .msg-home .name-msg span {
    display: inline-block;
    margin-right: 50px;
  }
}
.mgs-home .col-lg-offset-1{
  margin-left: 2.333%;
}
.mgs-home .col-lg-3{
  width: 31%;
}
.msg-home div.container div.row div.col-lg-offset-1.col-lg-3.col-sm-offset-1.col-sm-10.col-xs-12 div.row div.col-lg-10{
  width: 90%;
}
/* line 226, layout/_home.scss */
.msg-home .name-msg sup {
  display: inline-block;
  top: -0.8em;
}
/* line 229, layout/_home.scss */
.msg-home .name-msg sup img {
  width: auto;
  height: auto;
}
@media (max-width: 991px) {
  /* line 208, layout/_home.scss */
  .msg-home .name-msg {
    font-size: 25px;
  }
}
/* line 240, layout/_home.scss */
.msg-home .department-msg {
  position: relative;
  font-size: 0.832vw;
  color: #6d9d31;
  line-height: normal;
  font-weight: 700;
  margin-bottom: 0;
}
/* line 248, layout/_home.scss */
.msg-home .department-msg::before {
  content: "";
  position: relative;
  display: inline-block;
  width: 4vw;
  height: 1px;
  background-color: #5d5d5d;
  vertical-align: middle;
  margin-right: 10px;
}
@media (max-width: 991px) {
  /* line 240, layout/_home.scss */
  .msg-home .department-msg {
    font-size: 12px;
  }
}
/* line 264, layout/_home.scss */
.msg-home .department-info-msg {
  line-height: normal;
  font-size: 0.832vw;
  color: #6D9D31;
  font-weight: normal;
  display: block;
  margin-left: 10px;
}
@media (max-width: 991px) {
  /* line 264, layout/_home.scss */
  .msg-home .department-info-msg {
    font-size: 12px;
    margin-left: 36px;
  }
}
@media (max-width: 767px) {
  /* line 264, layout/_home.scss */
  .msg-home .department-info-msg {
    margin-left: 50px;
  }
}
/* line 282, layout/_home.scss */
.msg-home .msg-of-deparment p span {
  font-size: 20px;
}
/* line 285, layout/_home.scss */
.msg-home .msg-of-deparment p:first-of-type {
  font-weight: 700;
}
@media (max-width: 991px) {
  /* line 281, layout/_home.scss */
  .msg-home .msg-of-deparment p {
    font-size: 12px;
  }
}
/* line 296, layout/_home.scss */
.msg-home .numbers-aed button {
  background: transparent;
  border: none;
  color: #5d5d5d;
  font-weight: 700;
  width: 100%;
  text-align: left;
  font-size: 0.73vw;
}
/* line 304, layout/_home.scss */
.msg-home .numbers-aed button sup {
  font-weight: normal;
  color: #6d9d31;
}
/* line 309, layout/_home.scss */
.msg-home .numbers-aed button i {
  display: inline-block;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  padding-left: 30px;
}
/* line 314, layout/_home.scss */
.msg-home .numbers-aed button i::before {
  font-size: 30px;
}
/* line 321, layout/_home.scss */
.msg-home .img-president {
  width: 11.8vw;
}
@media (max-width: 991px) {
  /* line 321, layout/_home.scss */
  .msg-home .img-president {
    /* width: 100%; */
  }
}
/* line 329, layout/_home.scss */
.msg-home .btn-meet-all {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: unset;
      -ms-flex-pack: unset;
          justify-content: unset;
  background: none;
  border: none;
  width: 100%;
  height: 100%;
  padding: 0;
}
@media (max-width: 991px) {
  /* line 329, layout/_home.scss */
  .msg-home .btn-meet-all {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
  }
}
/* line 345, layout/_home.scss */
.msg-home .btn-meet-all .btn-primary {
  width: 35px;
  height: 35px;
  border: 2px solid #6d9d31;
}
/* line 350, layout/_home.scss */
.msg-home .btn-meet-all .btn-primary i {
  bottom: -6px;
}
/* line 352, layout/_home.scss */
.msg-home .btn-meet-all .btn-primary i::before {
  color: #6d9d31;
  font-size: 18px;
}
/* line 359, layout/_home.scss */
.msg-home .btn-meet-all span {
  position: relative;
  display: inline-block;
  margin-left: 15px;
  color: #6d9d31;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 0;
  vertical-align: middle;
  right: 0;
  -webkit-transition: right 0.5s ease-in-out;
  transition: right 0.5s ease-in-out;
}
/* line 373, layout/_home.scss */
.msg-home .btn-meet-all:hover span {
  position: relative;
  right: -10px;
  -webkit-transition: right 0.5s ease-in-out;
  transition: right 0.5s ease-in-out;
}
@media (max-width: 991px) {
  /* line 329, layout/_home.scss */
  .msg-home .btn-meet-all {
    padding: 0;
  }
}
@media (max-width: 991px) {
  /* line 204, layout/_home.scss */
  .msg-home {
    padding: 80px 0 0 0;
  }
}

/* line 390, layout/_home.scss */
.info-map {
  position: relative;
  background-color: #dedede;
  background-repeat: no-repeat;
  margin-bottom: 3.9vw;
}
@media (max-width: 767px) {
  /* line 390, layout/_home.scss */
  .info-map {
    padding: 50px 0 50px 0;
  }
}
/* line 399, layout/_home.scss */
.info-map .circle-small {
  position: absolute;
  top: 80%;
  right: 15%;
  -webkit-transform: translate(-15%, -80%);
          transform: translate(-15%, -80%);
  width: 30vw;
  max-width: 500px;
  height: 30vw;
  max-height: 500px;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  border-radius: 50%;
}
@media (max-width: 1499px) {
  /* line 399, layout/_home.scss */
  .info-map .circle-small {
    top: auto;
    right: 10%;
    -webkit-transform: translate(-10%, 0%);
            transform: translate(-10%, 0%);
  }
}
@media (max-width: 991px) {
  /* line 399, layout/_home.scss */
  .info-map .circle-small {
    width: 0px;
    height: 0px;
  }
}
/* line 424, layout/_home.scss */
.info-map .circle-smaller {
  position: absolute;
  top: 8%;
  left: 12%;
  -webkit-transform: translate(-12%, -8%);
          transform: translate(-12%, -8%);
  width: 2vw;
  max-width: 40px;
  height: 2vw;
  max-height: 40px;
  border: 1px solid #ffffff;
  background-color: #ffffff;
  border-radius: 50%;
}
@media (max-width: 1499px) {
  /* line 424, layout/_home.scss */
  .info-map .circle-smaller {
    top: 13%;
    left: 12%;
    -webkit-transform: translate(-12%, -13%);
            transform: translate(-12%, -13%);
  }
}
@media (max-width: 991px) {
  /* line 424, layout/_home.scss */
  .info-map .circle-smaller {
    width: 0px;
    height: 0px;
  }
}
/* line 449, layout/_home.scss */
.info-map .circle {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100%);
  max-width: 768px;
  height: calc(100%);
  max-height: 768px;
  border: 1px solid #ffffff;
  background: transparent;
  border-radius: 50%;
  margin-bottom: 3.8vw;
}
@media (max-width: 1499px) {
  /* line 449, layout/_home.scss */
  .info-map .circle {
    max-width: 650px;
    max-height: 650px;
  }
}
@media (max-width: 991px) {
  /* line 449, layout/_home.scss */
  .info-map .circle {
    max-width: 450px;
    max-height: 450px;
  }
}
@media (max-width: 991px) {
  /* line 449, layout/_home.scss */
  .info-map .circle {
    max-width: 320px;
    max-height: 320px;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
            transform: translateX(-50%) translateY(-50%);
    bottom: auto;
  }
}
/* line 486, layout/_home.scss */
.info-map .img-flag {
  width: auto;
  max-width: 33px;
  margin-top: 25px;
}
/* line 492, layout/_home.scss */
.info-map h2 {
  line-height: normal;
}
/* line 493, layout/_home.scss */
.info-map h2 span {
  font-weight: normal;
  display: block;
  line-height: 25px;
}
@media (max-width: 767px) {
  /* line 492, layout/_home.scss */
  .info-map h2 {
    margin: 0;
  }
}
/* line 505, layout/_home.scss */
.info-map .info-aed-map {
  position: relative;
  font-weight: bold;
  cursor: pointer;
  font-size: 18px;
}
@media (max-width: 991px) {
  /* line 505, layout/_home.scss */
  .info-map .info-aed-map {
    font-size: 14px;
  }
}
/* line 515, layout/_home.scss */
.info-map .info-aed-map span {
  position: absolute;
  right: 5%;
}
/* line 520, layout/_home.scss */
.info-map .info-aed-map span .icon-fechar::before {
  font-size: 10px;
}
/* line 526, layout/_home.scss */
.info-map .info-aed-map:hover {
  color: #6d9d31;
}
/* line 529, layout/_home.scss */
.info-map .info-aed-map:hover span {
  color: #5d5d5d;
}
/* line 535, layout/_home.scss */
.info-map .deactive {
  display: none;
}
/* line 539, layout/_home.scss */
.info-map .hidden-depart {
  display: none;
}
/* line 542, layout/_home.scss */
.info-map .hidden-depart.active {
  display: block;
}
/* line 547, layout/_home.scss */
.info-map .departamentos {
  position: relative;
  display: block;
  height: 100%;
  max-height: 180px;
  overflow: auto;
  direction: rtl;
}
/* line 555, layout/_home.scss */
.info-map .departamentos .depart-aed {
  direction: ltr;
  cursor: pointer;
  line-height: 20px;
  padding-left: 25px;
  color: #5d5d5d;
}
/* line 562, layout/_home.scss */
.info-map .departamentos .depart-aed:hover {
  font-weight: bold;
}
/* line 567, layout/_home.scss */
.info-map .departamentos::-webkit-scrollbar {
  border-radius: 5px;
  width: 2px;
  height: 12px;
  background-color: #ffffff;
}
/* line 574, layout/_home.scss */
.info-map .departamentos::-webkit-scrollbar-track {
  background-color: #ffffff;
  background-clip: content-box;
}
/* line 579, layout/_home.scss */
.info-map .departamentos::-webkit-scrollbar-thumb {
  background-color: #626262;
  height: 5px;
}
/* line 585, layout/_home.scss */
.info-map .btn-meet-all {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
  border: none;
  width: 100%;
  height: 100%;
  padding: 0;
}
/* line 596, layout/_home.scss */
.info-map .btn-meet-all .btn-primary {
  width: 35px;
  height: 35px;
  border: 2px solid #6d9d31;
}
/* line 601, layout/_home.scss */
.info-map .btn-meet-all .btn-primary i {
  bottom: -6px;
}
/* line 603, layout/_home.scss */
.info-map .btn-meet-all .btn-primary i::before {
  color: #6d9d31;
  font-size: 18px;
}
/* line 610, layout/_home.scss */
.info-map .btn-meet-all span {
  position: relative;
  display: inline-block;
  margin-left: 15px;
  color: #6d9d31;
  font-size: 13px;
  font-weight: 700;
  padding: 5px 0;
  vertical-align: middle;
  right: 0;
  -webkit-transition: right 0.5s ease-in-out;
  transition: right 0.5s ease-in-out;
}
/* line 624, layout/_home.scss */
.info-map .btn-meet-all:hover span {
  position: relative;
  right: -10px;
  -webkit-transition: right 0.5s ease-in-out;
  transition: right 0.5s ease-in-out;
}
@media (max-width: 991px) {
  /* line 585, layout/_home.scss */
  .info-map .btn-meet-all {
    padding: 0;
  }
}
.img-map .mapa-bg{
  width: 778px;
  height: auto;
}



/* line 636, layout/_home.scss */
.info-map .img-map {
  position: relative;
  padding-right: 300px;
}
/* line 639, layout/_home.scss */
.info-map .img-map area {
  pointer-events: none;
}
/* line 643, layout/_home.scss */
.info-map .img-map .marker {
  cursor: pointer;
}
/* line 646, layout/_home.scss */
.info-map .img-map .marker .markers {
  width: 22px;
  height: 40px;
}
/* line 651, layout/_home.scss */
.info-map .img-map .span-map {
  position: relative;
  left: -16px;
  top: -10px;
  color: #6d9d31;
  font-size: 8.5px;
}
/* line 660, layout/_home.scss */
.info-map #map {
  padding: 0 0 70px 0;
  width: 100%;
  height: 70vh;
}
/* line 665, layout/_home.scss */
.info-map #map > div {
  -webkit-transform: perspective(500px);
          transform: perspective(500px);
  background-color: transparent !important;
}
/* line 683, layout/_home.scss */
.info-map #map .gm-style {
  -webkit-transform: rotateZ(44deg) rotateY(-26deg) rotateX(26deg) translateY(45px) scale(1.2) !important;
          transform: rotateZ(44deg) rotateY(-26deg) rotateX(26deg) translateY(45px) scale(1.2) !important;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
/* line 689, layout/_home.scss */
.info-map #map .gm-style-pbc ~ div {
  -webkit-transform: perspective(0) rotateZ(0) rotateY(0) rotateX(0) !important;
          transform: perspective(0) rotateZ(0) rotateY(0) rotateX(0) !important;
}
/* line 694, layout/_home.scss */
.info-map #map .htmlMarker {
  -webkit-perspective: 100px;
          perspective: 100px;
}
/* line 696, layout/_home.scss */
.info-map #map .htmlMarker .count {
  position: absolute;
  top: 10px;
  left: 12px;
  color: #6d9d31;
  font-size: 13px;
  font-weight: 700;
  font-family: "Noto Sans", sans-serif;
}
/* line 711, layout/_home.scss */
.info-map #map .gmnoprint {
  display: none;
}
@media (max-width: 999px) {
  /* line 660, layout/_home.scss */
  .info-map #map {
    width: 100%;
  }
}
@media (max-width: 991px) {
  /* line 660, layout/_home.scss */
  .info-map #map {
    display: none;
  }
}
/* line 728, layout/_home.scss */
.info-map #cluster {
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 106;
  width: 100%;
}

/* line 737, layout/_home.scss */
.modalMapa {
  position: absolute !important;
  z-index: 15;
  padding-top: 50px;
}
@media (max-width: 991px) {
  /* line 737, layout/_home.scss */
  .modalMapa {
    padding-top: 0;
  }
}
/* line 746, layout/_home.scss */
.modalMapa .modal-dialog {
  width: 100%;
  height: 100%;
  max-width: 600px;
  max-height: 600px;
  border-radius: 50%;
}
@media (max-width: 767px) {
  /* line 746, layout/_home.scss */
  .modalMapa .modal-dialog {
    border-radius: 0;
    margin: 0;
  }
}
@media (max-width: 991px) {
  /* line 746, layout/_home.scss */
  .modalMapa .modal-dialog {
    width: 100vw;
    max-height: 400px;
    margin: auto;
  }
}
/* line 764, layout/_home.scss */
.modalMapa .modal-dialog .modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: rgba(164, 203, 115, 0.6);
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}
/* line 773, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  max-width: 450px;
  height: 100%;
  max-height: 450px;
  background-color: #ffffff;
  border-radius: 50%;
}
@media (max-width: 991px) {
  /* line 773, layout/_home.scss */
  .modalMapa .modal-dialog .modal-content .modal-info {
    max-width: 350px;
    max-height: 350px;
  }
}
@media (max-width: 767px) {
  /* line 773, layout/_home.scss */
  .modalMapa .modal-dialog .modal-content .modal-info {
    border-radius: 0;
    max-width: 280px;
    max-height: 380px;
    margin: 0 auto;
  }
}
/* line 797, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info .modal-body {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
}
/* line 805, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-item img {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 250px;
  max-height: 85px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 991px) {
  /* line 805, layout/_home.scss */
  .modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-item img {
    max-width: 200px;
  }
}
/* line 816, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-item .website {
  font-size: 0.728vw;
  font-weight: 700;
  color: #252525;
  text-align: center;
  border: 1px solid #6d9d31;
  width: 7vw;
  margin: 2vw auto 1vw auto;
  border-radius: 1vw;
}
/* line 823, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-item .website a {
  display: inline-block;
  text-decoration: none;
}
/* line 828, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-item .website i {
  display: inline-block;
  margin-left: 5px;
}
@media (max-width: 991px) {
  /* line 804, layout/_home.scss */
  .modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-item {
    width: 100%;
    max-width: 320px;
  }
}
@media (max-width: 767px) {
  /* line 804, layout/_home.scss */
  .modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-item {
    max-width: none;
  }
}
/* line 844, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-nav .owl-next,
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-nav .owl-prev {
  position: relative;
  display: block;
  background: none;
}
/* line 850, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-nav .owl-next button,
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-nav .owl-prev button {
  background-color: transparent;
  border: none;
}
/* line 854, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-nav .owl-next button.prev,
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-nav .owl-prev button.prev {
  text-align: center;
}
/* line 856, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-nav .owl-next button.prev i,
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-nav .owl-prev button.prev i {
  display: inline-block;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  color: black;
}
/* line 863, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-nav .owl-next button.next,
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-nav .owl-prev button.next {
  text-align: center;
}
/* line 866, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-nav .owl-next button.next i,
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-nav .owl-prev button.next i {
  color: black;
}
/* line 873, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-nav .owl-next {
	position: absolute;
	top: 22vh;
	left: 48%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	margin: 0;
}
/* line 881, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info .modal-body .modal-carousel .owl-nav .owl-prev {
  position: absolute;
  top: -8vw;
  right: 38%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin: 0;
  transform: rotate(-180deg);
}
/* line 892, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info .modal-footer {
  border-top: 0;
}
/* line 894, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info .modal-footer .close {
  position: absolute;
  width: 50px;
  height: 50px;
  left: 50%;
  bottom: -5%;
  -webkit-transform: translate(-50%, 5%);
          transform: translate(-50%, 5%);
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #cdcdcd;
}
/* line 905, layout/_home.scss */
.modalMapa .modal-dialog .modal-content .modal-info .modal-footer .close span {
  font-size: 20px;
  color: #636363;
}
@media (max-width: 767px) {
  /* line 894, layout/_home.scss */
  .modalMapa .modal-dialog .modal-content .modal-info .modal-footer .close {
    bottom: 5%;
    left: auto;
    right: 5%;
    -webkit-transform: translate(5%, 5%);
            transform: translate(5%, 5%);
  }
}
@media (max-width: 991px) {
  /* line 764, layout/_home.scss */
  .modalMapa .modal-dialog .modal-content {
    border-radius: 0;
  }
}

/* line 927, layout/_home.scss */
.our-news {
  position: relative;
  background-color: #dedede;
  padding-bottom: 150px;
}
.our-events {
  position: relative;
  background-color: #fff;
  padding-bottom: 7.8vw;
}
/* line 933, layout/_home.scss */
.our-news.projects,
.our-events.projects {
  background-color: #ffffff;
}
/* line 937, layout/_home.scss */
.our-news .count,
.our-events .count {
  font-size: 15px;
  font-weight: 700;
  color: #6d9d31;
  text-align: center;
  position: absolute;
  bottom: -20%;
  left: 25%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (max-width: 991px) {
  /* line 937, layout/_home.scss */
  .our-news .count,
  .our-events .count {
    display: inline-block;
    position: relative;
    bottom: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    vertical-align: middle;
    margin-bottom: 5px;
  }
}
/* line 958, layout/_home.scss */
.our-news h2,
.our-events h2 {
  float: none;
  margin: auto;
  -webkit-writing-mode: tb-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: tb-rl;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media (max-width: 991px) {
  /* line 958, layout/_home.scss */
  .our-news h2,
  .our-events h2 {
    position: relative;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    -webkit-transform: none;
            transform: none;
    text-align: center;
    margin: 28px auto;
  }
}
/* line 975, layout/_home.scss */
.our-news .our-events-carousel .owl-stage-outer .owl-stage,
.our-events .our-events-carousel .owl-stage-outer .owl-stage {
  /* padding-left: 20px !important; */
}
@media (max-width: 991px) {
  /* line 975, layout/_home.scss */
  .our-news .our-events-carousel .owl-stage-outer .owl-stage,
  .our-events .our-events-carousel .owl-stage-outer .owl-stage {
    padding-left: 0 !important;
  }
}
/* line 985, layout/_home.scss */
.our-news .drag,
.our-events .drag {
  position: absolute;
  bottom: 5%;
  left: 65%;
  -webkit-transform: translate(-65%, -5%);
          transform: translate(-65%, -5%);
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #cdcdcd;
  z-index: 10;
}
/* line 997, layout/_home.scss */
.our-news .drag .drag-position,
.our-events .drag .drag-position {
  position: relative;
  width: 100%;
  height: 100%;
}
/* line 1001, layout/_home.scss */
.our-news .drag .drag-position span,
.our-events .drag .drag-position span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  color: #cdcdcd;
}
/* line 1009, layout/_home.scss */
.our-news .drag .drag-position span i,
.our-events .drag .drag-position span i {
  margin: 0 5px;
}
/* line 1011, layout/_home.scss */
.our-news .drag .drag-position span i.left,
.our-events .drag .drag-position span i.left {
  display: inline-block;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
/* line 1016, layout/_home.scss */
.our-news .drag .drag-position span i::before,
.our-events .drag .drag-position span i::before {
  font-size: 12px;
  color: #cdcdcd;
}
@media (max-width: 991px) {
  /* line 985, layout/_home.scss */
  .our-news .drag,
  .our-events .drag {
    display: none;
  }
}

/* line 1029, layout/_home.scss */
.our-news {
  background-color: #ffffff;
}
/* line 1034, layout/_home.scss */
.our-news .our-news-carousel .owl-stage-outer .owl-stage {
  padding-right: 0 !important;
}
@media (max-width: 991px) {
  /* line 1034, layout/_home.scss */
  .our-news .our-news-carousel .owl-stage-outer .owl-stage {
    padding-left: 0 !important;
  }
}
/* line 1041, layout/_home.scss */
.our-news .our-news-carousel .owl-stage-outer .owl-item {
  direction: ltr;
}
/* line 1047, layout/_home.scss */
.our-news .drag {
  left: 40%;
  -webkit-transform: translate(-40%, -5%);
          transform: translate(-40%, -5%);
}
@media (max-width: 991px) {
  /* line 1029, layout/_home.scss */
  .our-news {
    padding-bottom: 20px;
  }
}

/* line 1, layout/_instituicional.scss */
.info-beginning {
  position: relative;
  background-repeat: no-repeat;
  background-position: left center;
  background-color: #dedede;
  background-image: url("../img/aviao.png");
  color: #000000;
}
/* line 9, layout/_instituicional.scss */
.info-beginning .the-beginning {
  float: right;
  font-weight: 700;
  margin: 0;
}
/* line 13, layout/_instituicional.scss */
.info-beginning .the-beginning span {
  display: block;
  color: #6d9d31;
  margin: 0 0 -15px 0;
}
/* line 19, layout/_instituicional.scss */
.info-beginning .the-beginning::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 20px;
  display: inline-block;
  width: 65px;
  height: 1px;
  background-color: #000000;
  vertical-align: middle;
}
/* line 33, layout/_instituicional.scss */
.info-beginning .history-beginning p {
  margin: 20px 0;
}
/* line 36, layout/_instituicional.scss */
.info-beginning .history-beginning p:first-of-type {
  margin: 0 0;
}
@media (max-width: 991px) {
  /* line 1, layout/_instituicional.scss */
  .info-beginning {
    background-size: 50%;
  }
}
@media (max-width: 767px) {
  /* line 1, layout/_instituicional.scss */
  .info-beginning {
    background-size: 50%;
    background-position: left 4%;
  }
}
/* line 51, layout/_instituicional.scss */
.info-beginning:before {
  /* content: ""; */
  display: block;
  padding-top: 200px;
  /* header height + empty space */
  margin-top: -110px;
}

/* line 59, layout/_instituicional.scss */
.cluster-numbers {
  position: relative;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #dedede;
  padding: 50px 0 50px 0;
  z-index: 1;
  height: 100vh;
}
/* line 68, layout/_instituicional.scss */
.cluster-numbers .equal-row > [class*="col-"] {
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  /* line 68, layout/_instituicional.scss */
  .cluster-numbers .equal-row > [class*="col-"] {
    margin-bottom: 40px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
/* line 77, layout/_instituicional.scss */
.cluster-numbers .equal-row > [class*="col-"] .equal-row > [class*="col-"] {
  margin-bottom: 0;
}
/* line 84, layout/_instituicional.scss */
.cluster-numbers .cluster-numbers-item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
/* line 90, layout/_instituicional.scss */
.cluster-numbers .info-clusters {
  float: right;
}
/* line 94, layout/_instituicional.scss */
.cluster-numbers img {
  display: inline-block;
  width: 100%;
  max-width: 60px;
  height: 60px;
  max-height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
/* line 104, layout/_instituicional.scss */
.cluster-numbers p {
  display: inline-block;
  color: #6d9d31;
  font-size: 16px;
  text-transform: uppercase;
  text-align: left;
  line-height: 18px;
  font-weight: 700;
  margin: 0;
  margin-left: 10px;
}
@media (max-width: 991px) {
  /* line 104, layout/_instituicional.scss */
  .cluster-numbers p {
    font-size: 14px;
    text-align: center;
    margin: 0;
  }
}
/* line 122, layout/_instituicional.scss */
.cluster-numbers .info-first {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
/* line 128, layout/_instituicional.scss */
.cluster-numbers .number-plus {
  position: relative;
  display: block;
  font-size: 45px;
  line-height: initial;
}
/* line 134, layout/_instituicional.scss */
.cluster-numbers .number-plus span {
  display: inline-block;
  font-size: 25px;
}
@media (max-width: 991px) {
  /* line 128, layout/_instituicional.scss */
  .cluster-numbers .number-plus {
    font-size: 35px;
  }
}
/* line 144, layout/_instituicional.scss */
.cluster-numbers .number-comp {
  display: block;
  font-size: 15px;
  margin-top: -10px;
  margin-left: 10px;
  line-height: normal;
  font-weight: 400;
  text-align: left;
}
@media (max-width: 991px) {
  /* line 144, layout/_instituicional.scss */
  .cluster-numbers .number-comp {
    text-align: center;
  }
}
@media (max-width: 767px) {
  /* line 59, layout/_instituicional.scss */
  .cluster-numbers {
    padding: 0px 0 0 0;
  }
}
/* line 162, layout/_instituicional.scss */
.cluster-numbers:before {
  content: "";
  display: block;
  padding-top: 200px;
  /* header height + empty space */
  margin-top: -110px;
}

/* line 170, layout/_instituicional.scss */
.separator {
  position: absolute;
  bottom: -30%;
  width: 100%;
  height: 600px;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 100%;
  z-index: 0;
}
@media (max-width: 991px) {
  /* line 170, layout/_instituicional.scss */
  .separator {
    background-position: center;
  }
}

/* line 199, layout/_instituicional.scss */
.directors-board {
  position: relative;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-color: #dedede;
  /* background-image: url("../img/separator.png"); */
  padding-top: 0;
}
@media (max-width: 991px) {
  /* line 199, layout/_instituicional.scss */
  .directors-board {
    background-image: none;
  }
}
/* line 212, layout/_instituicional.scss */
.directors-board .directors-list .directors-carousel {
  display: block;
}
@media (max-width: 767px) {
  /* line 247, layout/_instituicional.scss */
  .directors-board .directors-list .directors-carousel .owl-stage-outer .owl-stage {
    padding-left: 20px !important;
  }
  /* line 251, layout/_instituicional.scss */
  .directors-board .directors-list .directors-carousel .owl-stage-outer .owl-stage .owl-item img {
    width: 100%;
    max-width: 300px;
  }
  .directors-list .directors-carousel .owl-next{
    right: -2.5vw;
  }
  .directors-list .directors-carousel .owl-prev{
    left: -2.5vw;
  }
}
/* line 261, layout/_instituicional.scss */
.directors-board .directors-list .card {
  position: relative;
  margin-top: 2vw;
  height: 23.4vw;
  max-height: 480px;
  border: 1px #5D5D5D solid;
  font-family: "Noto Sans", sans-serif;
}
@media (min-width: 1000px) and (max-width: 1600px) {
  .directors-board .directors-list .card {
    height: 27vw;
  }
}
.directors-board .directors-list .card:hover {
  border: 1px #6D9D32 solid;
}

.directors-board .directors-list .card .card-img{
  height: 8.9vw;
  width: 8.9vw;
  margin: 2vw auto 2vw auto;
}


.directors-board .directors-list .card .card-img img {
  width: 100%;
  height: 8.9vw;
  display: block;
  margin: 0 auto;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 50%;
}
/* line 280, layout/_instituicional.scss */
.directors-board .directors-list .card .info-director {
  position: relative;
  padding-left: 2vw;
  padding-right: 2vw;
  height: 4vw;
  line-height: 1.5
}
/* line 286, layout/_instituicional.scss */
.directors-board .directors-list .card .info-director .info-phone {
  text-align: center;
  font-size: 0.832vw;
  font-weight: bold;
  font-family: "Noto Sans", sans-serif;
  color: #5D5D5D;
}
@media (max-width: 991px) {
  /* line 286, layout/_instituicional.scss */
  .directors-board .directors-list .card .info-director .info-phone {
    line-height: normal;
  }
}
.directors-board .directors-list .card .info-linkedin {
  text-align: center;
}
/* line 294, layout/_instituicional.scss */
.directors-board .directors-list .card .info-director .info-email {
  margin-top: -20px;
}
@media (max-width: 991px) {
  /* line 294, layout/_instituicional.scss */
  .directors-board .directors-list .card .info-director .info-email {
    margin-top: -10px;
  }
}
@media (max-width: 991px) {
  /* line 280, layout/_instituicional.scss */
  .directors-board .directors-list .card .info-director {
    position: relative;
    top: 0;
    left: 0;
  }
}
/* line 309, layout/_instituicional.scss */
.directors-board .directors-list .card .info-data {
  position: relative;
  text-align: center;
}
/* line 315, layout/_instituicional.scss */
.directors-board .directors-list .card .info-data .card-name {
  font-size: 1.04vw;
  line-height: 35px;
  color: #044F82;
  margin: 0;
  font-weight: 700;
}
@media (max-width: 991px) {
  /* line 315, layout/_instituicional.scss */
  .directors-board .directors-list .card .info-data .card-name {
    font-size: 25px;
    line-height: 25px;
  }
}
/* line 328, layout/_instituicional.scss */
.directors-board .directors-list .card .info-data .department-name {
  font-weight: 700;
  margin: 0;
  color: #5D5D5D;
  font-size: 0.728vw;
  line-height: 1.1;
  padding: 0 1% 0 1%;

}
@media (max-width: 991px) {
  /* line 328, layout/_instituicional.scss */
  .directors-board .directors-list .card .info-data .department-name {
    line-height: normal;
  }
}
@media (max-width: 991px) {
  /* line 309, layout/_instituicional.scss */
  .directors-board .directors-list .card .info-data {
    position: relative;
    left: 0;
  }
}
/* line 349, layout/_instituicional.scss */
.directors-board:before {
  content: "";
  display: block;
  padding-top: 200px;
  /* header height + empty space */
  margin-top: -110px;
}

/* line 357, layout/_instituicional.scss */
.members {
  position: relative;
  margin: 80px 0 0 0;
}
/* line 361, layout/_instituicional.scss */
.members .img-satellite {
  position: absolute;
  top: -20%;
  left: 5%;
  -webkit-transform: translate(-5%, 25%);
          transform: translate(-5%, 25%);
  width: 100%;
  max-width: 400px;
  height: 200px;
  background-repeat: no-repeat;
  background-position: 5% top;
  background-size: contain;
}
@media (max-width: 991px) {
  /* line 361, layout/_instituicional.scss */
  .members .img-satellite {
    top: -10%;
    left: 5%;
    -webkit-transform: translate(-5%, 10%);
            transform: translate(-5%, 10%);
  }
}
@media (max-width: 767px) {
  /* line 361, layout/_instituicional.scss */
  .members .img-satellite {
    top: -5%;
    left: 50%;
    -webkit-transform: translate(-50%, 5%);
            transform: translate(-50%, 5%);
    background-size: 50%;
    background-position: center top;
  }
}
/* line 387, layout/_instituicional.scss */
.members h2 {
  position: absolute;
  left: 0;
  -webkit-writing-mode: tb-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: tb-rl;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
  margin-top: 30px;
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 991px) {
  /* line 387, layout/_instituicional.scss */
  .members h2 {
    position: relative;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    -webkit-transform: none;
            transform: none;
    text-align: center;
  }
}
/* line 404, layout/_instituicional.scss */
.members .spotlight {
  position: absolute;
  top: 5%;
  right: 15%;
  -webkit-transform: translate(-15%, -5%);
          transform: translate(-15%, -5%);
  font-size: 150px;
  line-height: 26px;
  color: rgba(1, 38, 62, 0.07);
  z-index: 10;
  font-weight: 700;
}
@media (max-width: 991px) {
  /* line 404, layout/_instituicional.scss */
  .members .spotlight {
    display: none;
  }
}
/* line 422, layout/_instituicional.scss */
.members .team-carousel .owl-stage-outer .owl-stage {
  /* padding-left: 10px !important;
  padding-right: 10px !important; */
}
/* line 426, layout/_instituicional.scss */

/* line 433, layout/_instituicional.scss */

/* line 441, layout/_instituicional.scss */
.members .team-carousel .owl-stage-outer .owl-stage .owl-item .department-team .icon-img,
.members .team-carousel .owl-stage-outer .owl-stage .owl-item .email-team .icon-img,
.members .team-carousel .owl-stage-outer .owl-stage .owl-item .phone-team .icon-img {
  display: inline-block;
  width: 100%;
  max-width: 12px;
  height: 100%;
  max-height: 12px;
  margin-right: 5px;
}
/* line 451, layout/_instituicional.scss */
.members .team-carousel .owl-stage-outer .owl-stage .owl-item .department-team {
  font-size: 13px;
  font-weight: 700;
  margin: 10px 0;
}
/* line 457, layout/_instituicional.scss */
.members .team-carousel .owl-stage-outer .owl-stage .owl-item .phone-team {
  margin-bottom: -8px;
}
@media (max-width: 767px) {
  /* line 462, layout/_instituicional.scss */
  .members .team-carousel .owl-stage-outer .owl-stage .owl-item img {
    width: 100%;
    max-width: 300px;
  }
  .members .team-carousel {
    padding: 0 20px 0 20px;
  }
  .members .team-carousel .owl-prev {
  	left: -4.5vw;
  }
  .members .team-carousel .owl-next {
    right: -4.5vw;
  }
}
/* line 472, layout/_instituicional.scss */
.members .drag {
  position: absolute;
  bottom: -10%;
  left: 50%;
  -webkit-transform: translate(-50%, 10%);
          transform: translate(-50%, 10%);
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #cdcdcd;
  z-index: 10;
}
/* line 484, layout/_instituicional.scss */
.members .drag .drag-position {
  position: relative;
  width: 100%;
  height: 100%;
}
/* line 488, layout/_instituicional.scss */
.members .drag .drag-position span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  color: #cdcdcd;
}
/* line 496, layout/_instituicional.scss */
.members .drag .drag-position span i {
  margin: 0 5px;
}
/* line 498, layout/_instituicional.scss */
.members .drag .drag-position span i.left {
  display: inline-block;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
/* line 503, layout/_instituicional.scss */
.members .drag .drag-position span i::before {
  font-size: 12px;
  color: #cdcdcd;
}
@media (max-width: 991px) {
  /* line 472, layout/_instituicional.scss */
  .members .drag {
    display: none;
  }
}
@media (max-width: 991px) {
  /* line 357, layout/_instituicional.scss */
  .members {
    margin: 0 0;
  }
}
/* line 519, layout/_instituicional.scss */
.members::before {
	content: "";
	display: block;
	padding-top: 50px;
	margin-top: -110px;
}

/* line 527, layout/_instituicional.scss */
.talk-to-us-about {
  position: relative;
}
/* line 530, layout/_instituicional.scss */
.talk-to-us-about .btn-talk-to-us {
  display: inline-block;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 1px 1px;
  border: none;
  width: 100%;
  padding: 60px 0;
  text-decoration: none;
  -webkit-transition: background 1s ease-in-out;
  transition: background 1s ease-in-out;
}
/* line 542, layout/_instituicional.scss */
.talk-to-us-about .btn-talk-to-us h2 {
  color: black;
  position: relative;
  text-align: center;
}
/* line 547, layout/_instituicional.scss */
.talk-to-us-about .btn-talk-to-us h2::before, .talk-to-us-about .btn-talk-to-us h2::after {
  content: "";
  display: inline-block;
  width: 62px;
  height: 1px;
  background-color: black;
}
/* line 556, layout/_instituicional.scss */
.talk-to-us-about .btn-talk-to-us h2::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
/* line 562, layout/_instituicional.scss */
.talk-to-us-about .btn-talk-to-us h2::after {
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-transform: translate(-5%, -50%);
          transform: translate(-5%, -50%);
}
@media (max-width: 991px) {
  /* line 570, layout/_instituicional.scss */
  .talk-to-us-about .btn-talk-to-us h2::after {
    width: 30px;
    right: 8%;
    -webkit-transform: translate(-8%, -20%);
            transform: translate(-8%, -20%);
  }
}
@media (max-width: 767px) {
  /* line 542, layout/_instituicional.scss */
  .talk-to-us-about .btn-talk-to-us h2 {
    padding-left: 30%;
  }
  .talk-to-us-about {
    margin-top: -50px;
  }
}
/* line 582, layout/_instituicional.scss */
.talk-to-us-about .btn-talk-to-us .btn-primary {
  position: absolute;
  top: 50%;
  right: 5%;
  -webkit-transform: translate(-5%, -50%);
          transform: translate(-5%, -50%);
  display: inline-block;
  border: 2px solid black;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
/* line 592, layout/_instituicional.scss */
.talk-to-us-about .btn-talk-to-us .btn-primary i::before {
  color: black;
}
@media (max-width: 991px) {
  /* line 582, layout/_instituicional.scss */
  .talk-to-us-about .btn-talk-to-us .btn-primary {
    right: 5%;
    -webkit-transform: translate(5%, -50%);
            transform: translate(5%, -50%);
  }
}
/* line 603, layout/_instituicional.scss */
.talk-to-us-about .btn-talk-to-us:hover {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  -webkit-transition: background 1s ease-in-out;
  transition: background 1s ease-in-out;
  text-decoration: none;
}
/* line 610, layout/_instituicional.scss */
.talk-to-us-about .btn-talk-to-us:hover h2 {
  color: white;
}
/* line 613, layout/_instituicional.scss */
.talk-to-us-about .btn-talk-to-us:hover h2::before, .talk-to-us-about .btn-talk-to-us:hover h2::after {
  background-color: white;
}
/* line 619, layout/_instituicional.scss */
.talk-to-us-about .btn-talk-to-us:hover .btn-primary {
  border: 2px solid white;
}
/* line 623, layout/_instituicional.scss */
.talk-to-us-about .btn-talk-to-us:hover .btn-primary i::before {
  color: white;
}

/* line 1, layout/_members.scss */
.members-active {
  position: relative;
  background-repeat: no-repeat;
  background-position: center bottom;
  /* background-image: url("../img/separator.png"); */
}
/* line 8, layout/_members.scss */
.members-active .equal-row > [class*="col-"] {
  margin-bottom: 10px;
}
/* line 12, layout/_members.scss */
.members-active .equal-row > [class*="col-"] .equal-row > [class*="col-"] {
  margin-bottom: 0;
}
/* line 19, layout/_members.scss */
.members-active .filters {
  margin-bottom: 25px;
}
/* line 21, layout/_members.scss */
.members-active .filters p {
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  font-size: 12px;
}
/* line 28, layout/_members.scss */
.members-active .filters .filter-atividade,
.members-active .filters .filter-entidade,
.members-active .filters .filter-setor {
  display: inline-block;
  margin: 0 25px 0 0;
}
@media (max-width: 991px) {
  /* line 28, layout/_members.scss */
  .members-active .filters .filter-atividade,
  .members-active .filters .filter-entidade,
  .members-active .filters .filter-setor {
    margin: 5px 25px 5px 0;
  }
}
/* line 38, layout/_members.scss */
.members-active .filters .filter-atividade .ms-parent,
.members-active .filters .filter-entidade .ms-parent,
.members-active .filters .filter-setor .ms-parent {
  padding-left: 0;
  border: none;
}
/* line 43, layout/_members.scss */
.members-active .filters .filter-atividade .ms-choice,
.members-active .filters .filter-atividade > .select-selected,
.members-active .filters .filter-entidade .ms-choice,
.members-active .filters .filter-entidade > .select-selected,
.members-active .filters .filter-setor .ms-choice,
.members-active .filters .filter-setor > .select-selected {
  position: relative;
  /* width: 180px !important; */
  width: 310px!important;
  height: 38px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.filt-alt1-espaco-left{
  padding-left: 2.2%;
}
@media (max-width: 1399px) {
  .filt-alt1{
    width: 12%;
  }
  .filt-alt2{
    width: 88%;
  }
}
@media (max-width: 1240px) {
  .members-active .filters .filter-atividade > .select-selected, .members-active .filters .filter-atividade .ms-choice{
    font-size: 11px;
    width: 280px!important;
  }
  .members-active .filters .filter-entidade .ms-choice, .members-active .filters .filter-entidade > .select-selected{
    font-size: 11px;
    width: 280px!important;
  }
  .members-active .filters .filter-setor .ms-choice, .members-active .filters .filter-setor > .select-selected {
    font-size: 11px;
    width: 200px!important;
  }
}
@media (max-width: 1024px) {
  .members-active .filters .filter-atividade > .select-selected, .members-active .filters .filter-atividade .ms-choice{
    font-size: 11px;
    width: 500px!important;
  }
  .members-active .filters .filter-entidade .ms-choice, .members-active .filters .filter-entidade > .select-selected{
    font-size: 11px;
    width: 500px!important;
  }
  .members-active .filters .filter-setor .ms-choice, .members-active .filters .filter-setor > .select-selected {
    font-size: 11px;
    width: 500px!important;
  }
}
/* line 54, layout/_members.scss */
.members-active .filters .filter-atividade .ms-choice > span,
.members-active .filters .filter-entidade .ms-choice > span,
.members-active .filters .filter-setor .ms-choice > span {
  top: 40%;
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
  font-size: 12px;
  font-weight: 700;
  color: #5d5d5d;
  padding-left: 15px;
  z-index: 1001;
}
/* line 66, layout/_members.scss */
.members-active .filters .filter-atividade > .select-selected:after,
.members-active .filters .filter-entidade > .select-selected:after,
.members-active .filters .filter-setor > .select-selected:after {
  content: "";
  display: block;
  width: 10px;
  height: 6px;
  border: none;
  background-position: center;
  background-image: url("../img/seta.svg");
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  margin-top: -2px;
  z-index: 1001;
}
/* line 82, layout/_members.scss */
.members-active .filters .filter-atividade .ms-drop,
.members-active .filters .filter-entidade .ms-drop,
.members-active .filters .filter-setor .ms-drop {
  border-top: none;
  margin-top: -16px;
  border-radius: 0;
}
/* line 88, layout/_members.scss */
.members-active .filters .filter-atividade .ms-drop > ul > li:hover,
.members-active .filters .filter-entidade .ms-drop > ul > li:hover,
.members-active .filters .filter-setor .ms-drop > ul > li:hover {
  color: #034f82;
}
/* line 92, layout/_members.scss */
.members-active .filters .filter-atividade .ms-drop > ul > li.selected,
.members-active .filters .filter-entidade .ms-drop > ul > li.selected,
.members-active .filters .filter-setor .ms-drop > ul > li.selected {
  color: #034f82;
}
/* line 94, layout/_members.scss */
.members-active .filters .filter-atividade .ms-drop > ul > li.selected > label,
.members-active .filters .filter-entidade .ms-drop > ul > li.selected > label,
.members-active .filters .filter-setor .ms-drop > ul > li.selected > label {
  font-weight: 700;
}
/* line 101, layout/_members.scss */
.members-active .filters .filter-atividade .ms-drop input[type="checkbox"],
.members-active .filters .filter-entidade .ms-drop input[type="checkbox"],
.members-active .filters .filter-setor .ms-drop input[type="checkbox"] {
  width: 2px !important;
  height: 2px !important;
  margin: 0;
}
/* line 107, layout/_members.scss */
.members-active .filters .filter-atividade .select-items,
.members-active .filters .filter-entidade .select-items,
.members-active .filters .filter-setor .select-items {
  top: 32px !important;
  border-top: 0;
}
/* line 114, layout/_members.scss */
.members-active #listMembers {
  clear: both;
}
@media (max-width: 767px) {
  /* line 117, layout/_members.scss */
  .members-active #listMembers.equal {
    display: initial;
    -ms-flex-wrap: unset;
        flex-wrap: unset;
  }
}
/* line 124, layout/_members.scss */
.members-active .members-card {
  position: relative;
  margin-top: 20px;
  background-color: #ffffff;
  border: 1px solid #cdcdcd;
  z-index: 10;
  cursor: pointer;
  height: 100%;
  max-height: 300px;
}
/* line 134, layout/_members.scss */
.members-active .members-card img {
  width: 100%;
  display: block;
  margin: 20px auto;
  padding: 20px;
  max-width: 260px;
  height: 100%;
  max-height: 140px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 767px) {
  /* line 134, layout/_members.scss */
  .members-active .members-card img {
    padding: 20px 0px;
  }
}
/* line 149, layout/_members.scss */
.members-active .members-card .info-members-card {
  padding: 15px 15px;
  padding-bottom: 25px;
  margin: 5px 0;
  border-top: 1px solid #cdcdcd;
}
/* line 155, layout/_members.scss */
.members-active .members-card .info-members-card p {
  margin: 0;
  font-size: 12px;
  line-height: 15px;
  color: #5d5d5d;
}
/* line 161, layout/_members.scss */
.members-active .members-card .info-members-card p:first-of-type {
  text-transform: uppercase;
  font-weight: 700;
  color: #62c1ff;
}

/* line 171, layout/_members.scss */
.modalMembers {
  background-color: rgba(255, 255, 255, 0.95);
}
/* line 174, layout/_members.scss */
.modalMembers .modal-dialog {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
/* line 180, layout/_members.scss */
.modalMembers .modal-dialog .modal-content {
  -webkit-box-shadow: 1px 4px 20px 0px rgba(0, 0, 0, 0.1);
          box-shadow: 1px 4px 20px 0px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  border: 1px solid #cdcdcd;
}
/* line 185, layout/_members.scss */
.modalMembers .modal-dialog .modal-content .modal-header {
  position: relative;
  border: none;
}
/* line 189, layout/_members.scss */
.modalMembers .modal-dialog .modal-content .modal-header button {
  position: absolute;
  top: -50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 45px;
  height: 45px;
  background-color: #ffffff;
  border-radius: 50%;
  border: 1px solid #cdcdcd;
}
/* line 200, layout/_members.scss */
.modalMembers .modal-dialog .modal-content .modal-header button span {
  width: 100%;
  height: 100%;
  font-size: 20px;
  color: #cdcdcd;
}
/* line 209, layout/_members.scss */
.modalMembers .modal-dialog .modal-content .modal-body {
  padding: 100px;
}
/* line 211, layout/_members.scss */
.modalMembers .modal-dialog .modal-content .modal-body img {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 250px;
  max-height: 85px;
  -o-object-fit: contain;
     object-fit: contain;
}
/* line 220, layout/_members.scss */
.modalMembers .modal-dialog .modal-content .modal-body button {
  position: relative;
  width: 100%;
  display: block;
  background-color: transparent;
  border: none;
}
/* line 227, layout/_members.scss */
.modalMembers .modal-dialog .modal-content .modal-body button.prev {
  text-align: left;
  margin-bottom: 20px;
}
/* line 230, layout/_members.scss */
.modalMembers .modal-dialog .modal-content .modal-body button.prev i {
  display: inline-block;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
/* line 236, layout/_members.scss */
.modalMembers .modal-dialog .modal-content .modal-body button.next {
  text-align: right;
  margin-top: 20px;
}
/* line 243, layout/_members.scss */
.modalMembers .modal-dialog .modal-content .modal-body .info-member .name-member {
  font-size: 20px;
  line-height: 15px;
  font-weight: 700;
  color: #252525;
}
/* line 250, layout/_members.scss */
.modalMembers .modal-dialog .modal-content .modal-body .info-member .department-member {
  font-size: 12px;
  font-weight: 700;
  color: #62c1ff;
  line-height: 15px;
}
/* line 257, layout/_members.scss */
.modalMembers .modal-dialog .modal-content .modal-body .info-member .morada-member {
  margin-top: 25px;
  line-height: 26px;
}
/* line 261, layout/_members.scss */
.modalMembers .modal-dialog .modal-content .modal-body .info-member .morada-member .email,
.modalMembers .modal-dialog .modal-content .modal-body .info-member .morada-member .tlf {
  font-weight: 700;
  color: #6d9d31;
}
@media (max-width: 767px) {
  /* line 257, layout/_members.scss */
  .modalMembers .modal-dialog .modal-content .modal-body .info-member .morada-member {
    margin-top: 10px;
  }
}
/* line 273, layout/_members.scss */
.modalMembers .modal-dialog .modal-content .modal-body .website {
  font-size: 12px;
  font-weight: 700;
  color: #252525;
  text-align: center;
}
/* line 279, layout/_members.scss */
.modalMembers .modal-dialog .modal-content .modal-body .website a {
  display: inline-block;
  text-decoration: none;
}
/* line 284, layout/_members.scss */
.modalMembers .modal-dialog .modal-content .modal-body .website i {
  display: inline-block;
}
@media (max-width: 767px) {
  /* line 209, layout/_members.scss */
  .modalMembers .modal-dialog .modal-content .modal-body {
    padding: 15px 35px;
  }
}
@media (max-width: 767px) {
  /* line 174, layout/_members.scss */
  .modalMembers .modal-dialog {
    width: 90vw;
    margin: 0;
  }
}

/* line 1, layout/_events.scss */
.events {
  position: relative;
}
@media (max-width: 999px) {
  /* line 5, layout/_events.scss */
  .events .text-right {
    text-align: left;
  }
  /* line 9, layout/_events.scss */
  .events .text-right-mobile {
    text-align: right;
  }
}
.events .container{
  width: 71.50vw;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}
/* line 14, layout/_events.scss */
.events .filters {
  margin-bottom: 15px;
}
/* line 16, layout/_events.scss */
.events .filters .filter-name {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 12px;
}
/* line 24, layout/_events.scss */
.events .filter {
  display: inline-block;
  width: 100%;
}
@media (max-width: 767px) {
  /* line 24, layout/_events.scss */
  .events .filter {
    margin: 0;
  }
}
/* line 32, layout/_events.scss */
.events .filter .filters-options-calendar {
  display: inline-block;
  width: 100%;
  font-family: "Noto Sans", sans-serif;
}

@media (max-width: 767px) {
  /* line 32, layout/_events.scss */
  .events .filter .filters-options-calendar {
    padding-left: 0px;
  }
}
/* line 40, layout/_events.scss */
.events .filter .filters-options-calendar .eventos-btn {
  float: left;
  width: calc(85% / 3 - 4.16vw);
  margin-left: 4.16vw;
  font-weight: 700;
  display: inline-block;
  font-size: 0.832vw;
  text-align: center;
  background-color: #fff;
  filter: drop-shadow(0px 3px 6px rgba(0, 0, 0, 0.161));
}
.events .filter .filters-options-calendar .eventos-btn.active {
  background-color: #034f82;
}
.events .filter .filters-options-calendar .eventos-btn.active a{
    color: #fff;
}

.events .filter .filters-options-calendar .eventos-btn1 {
  width: 15%;
  margin-left: 0;
}
/* line 46, layout/_events.scss */
.events .filter .filters-options-calendar > li:last-child {
  margin: 0 0 0 15px;
}
@media (max-width: 767px) {
  /* line 46, layout/_events.scss */
  .events .filter .filters-options-calendar > li:last-child {
    margin: 0 5px;
  }
}
@media (max-width: 767px) {
  /* line 40, layout/_events.scss */
  .events .filter .filters-options-calendar > li {
    margin: 0 5px;
  }
  /* line 57, layout/_events.scss */
  .events .filter .filters-options-calendar > li:first-child {
    margin: 0 2px 0 6px;
  }
}
/* line 63, layout/_events.scss */
.events .filter .filters-options-calendar > li.active > a {
  color: #034f82;
}
/* line 68, layout/_events.scss */
.events .filter .filters-options-calendar > li > a {
  color: #5d5d5d;
}
/* line 71, layout/_events.scss */
.events .filter .filters-options-calendar > li > a:focus, .events .filter .filters-options-calendar > li > a:active, .events .filter .filters-options-calendar > li > a:hover {
  text-decoration: none;
  color: #034f82;
}
/* line 83, layout/_events.scss */
.events .title h2 {
  font-size: 0.832vw!important;
  color: #353F47;
  margin: 0px 0;
  display: inline-block;
}
/* line 89, layout/_events.scss */
.events .title span {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  color: #62c1ff;
  vertical-align: middle;
  margin-left: 20px;
}
@media (min-width: 1000px) {
  /* line 89, layout/_events.scss */
  .events .title span {
    margin-left: 5px;
  }
}
/* line 105, layout/_events.scss */
.events .status {
  margin: 0;
}
/* line 107, layout/_events.scss */
.events .status span {
  display: inline-block;
  font-size: 0.832vw;
  color: #353F47;
  font-weight: 700;
  margin-right: 15px;
}
/* line 114, layout/_events.scss */
.events .status span:before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 22%;
  margin-right: 5px;
  margin-left: 10px;
  vertical-align: middle;
}
/* line 126, layout/_events.scss */
.events .status span:nth-child(2n + 1)::before {
  background-color: #6D9D31;
}
/* line 126, layout/_events.scss */
.events .status span:nth-child(2n + 2)::before {
  background-color: #044F82;
}
/* line 132, layout/_events.scss */
.events .buttons-move {
  display: inline-block;
}
/* line 134, layout/_events.scss */
.events .buttons-move .buttonMoveCalendar {
  background: none;
  border: none;
  height: 20px;
}
/* line 140, layout/_events.scss */
.events .buttons-move .buttonMoveCalendar i::before {
  display: block;
}
/* line 147, layout/_events.scss */
.events .buttons-move .buttonMoveCalendar.prev i::before {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
/* line 155, layout/_events.scss */
.events #calendar {
  position: relative;
  width: 100%;
}
/* line 159, layout/_events.scss */
.events #calendar .fc-header-toolbar {
  display: none;
}
/* line 163, layout/_events.scss */
.events #calendar.fc th, .events #calendar.fc td {
  border-style: none;
  border-width: 0;
  border-color: #ebebeb;
}
/* line 171, layout/_events.scss */
.events #calendar.fc .today {
  font-size: 10px;
  color: #01263e;
  margin-left: 10px;
}
/* line 177, layout/_events.scss */
.events #calendar.fc .fc-day-number {
  margin-right: 10px;
}
/* line 181, layout/_events.scss */
.events #calendar.fc th {
  padding: 10px 0;
  color: #7d7d7d;
}
/* line 184, layout/_events.scss */
.events #calendar.fc thead {
  /* border-width: 1px;
  border-top-style: solid;
  border-color: #ebebeb; */
  font-size: 10px;
  color: #c3c3c3;
  font-weight: 400;
  color: #7d7d7d;
}
/* line 193, layout/_events.scss */
.events #calendar.fc tbody td {
  border-width: 1px;
  border-left-style: solid;
  border-color: #ebebeb;
}
/* line 198, layout/_events.scss */
.events #calendar.fc tbody td.fc-today {
  background: none;
  font-weight: 700;
  color: #01263e;
}
/* line 204, layout/_events.scss */
.events #calendar.fc tbody td:first-child {
  border-width: 0;
}
/* line 208, layout/_events.scss */
.events #calendar.fc tbody td .fc-event {
  line-height: 2.4em;
  border: none;
  border-radius: 5px;
  /* background-color: #ddf4c1!important;
  color: #77cc0e!important; */
  /* background-color: #ddf4c1;
  color: #77cc0e; */
}

/* line 214, layout/_events.scss */
.events #calendar.fc tbody td .fc-event .fc-title {
  font-size: 13px;
  font-weight: 700;
  padding: 0 15px;
}

/* line 227, layout/_events.scss */
.owl-carousel-calendar .owl-stage {
  padding-left: 0px !important;
}
/* line 231, layout/_events.scss */
.owl-carousel-calendar .owl-stage .owl-item .info {
  padding: 30px 25px;
  border: black solid 2px;
}
/* line 234, layout/_events.scss */
.owl-carousel-calendar .owl-stage .owl-item .info .info-date {
  margin-bottom: 8vh;
}
/* line 236, layout/_events.scss */
.owl-carousel-calendar .owl-stage .owl-item .info .info-date .date {
  font-size: 13px;
  color: #62c1ff;
  font-weight: 700;
}
/* line 242, layout/_events.scss */
.owl-carousel-calendar .owl-stage .owl-item .info .info-date .event-name {
  font-size: 13px;
  color: #2b2b2b;
  font-weight: 700;
  float: right;
}
/* line 249, layout/_events.scss */
.owl-carousel-calendar .owl-stage .owl-item .info .local {
  margin-top: 8vh;
}
@media (max-width: 767px) {
  /* line 231, layout/_events.scss */
  .owl-carousel-calendar .owl-stage .owl-item .info {
    height: 100%;
    max-height: 411px;
  }
}
/* line 262, layout/_events.scss */
.owl-carousel-calendar .owl-nav.disabled {
  display: none;
}

/* line 269, layout/_events.scss */
.info .local {
  font-size: 13px;
  color: #62c1ff;
  font-weight: 700;
}
/* line 275, layout/_events.scss */
.info h5 {
  margin: -8px 0 20px 0;
  font-size: 1.04vw;
  font-weight: bold;
  color: #5D5D5D;
  font-family: 'Raleway', sans-serif;
}
/* line 279, layout/_events.scss */
.info p {
  line-height: 26px;
  font-size: 0.832vw;
  font-family: "Noto Sans", sans-serif;
}
/* line 283, layout/_events.scss */
.info .btn-know-more {
  display: inline-block;
  position: relative;
  background: none;
  border: none;
  width: 8vw;
  height: 100%;
  text-align: left;
  padding: 0 0 0 1vw;
  margin: 0.5vw 0 0;
  border-radius: 1vw;
  border: 1px solid #6d9d31;
  font-size: 0.728vw;
  font-weight: 700;
  color: #252525;
}
/* line 302, layout/_events.scss */
.info .btn-know-more .btn-primary i::before {
  color: rgba(93, 93, 93, 0.5);
  font-size: 14px;
}
/* line 309, layout/_events.scss */
.info .btn-know-more .icon-seta {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding-left: 0.5vw;
  color: rgba(93, 93, 93, 0.5);
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out;
}

/* line 320, layout/_events.scss */
.info .btn-know-more:hover .icon-seta {
  margin-left: 1vw;
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out;
}
@media (max-width: 991px) {
  /* line 283, layout/_events.scss */
  .info .btn-know-more {
    padding: 0;
  }
}

/* line 332, layout/_events.scss */
.modal-events {
  position: absolute;
  top: auto;
  right: auto;
  bottom: auto;
}
/* line 338, layout/_events.scss */
.modal-events .modal-dialog {
  position: relative;
  width: 100%;
  max-width: 412px;
  height: auto;
}
/* line 344, layout/_events.scss */
.modal-events .modal-dialog .modal-content {
  -webkit-box-shadow: none;
          box-shadow: none;
  border-style: solid;
  border-width: 2px;
  border-color: transparent;
  border-radius: 0;
  padding: 0 20px 0 0;
  box-sizing: border-box;
}
/* line 352, layout/_events.scss */
.modal-events .modal-dialog .modal-content .modal-header {
  position: relative;
  border-bottom: 0;
}
/* line 356, layout/_events.scss */
.modal-events .modal-dialog .modal-content .modal-header .close {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  top: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border: 1px solid #ebebeb;
  background: white;
}
/* line 368, layout/_events.scss */
.modal-events .modal-dialog .modal-content .modal-header .close:hover span {
  color: #2b2b2b;
}
/* line 373, layout/_events.scss */
.modal-events .modal-dialog .modal-content .modal-header .close span {
  font-size: 22px;
  color: rgba(99, 99, 99, 0.8);
}
/* line 379, layout/_events.scss */
.modal-events .modal-dialog .modal-content .modal-header .date {
  font-size: 13px;
  color: #62c1ff;
  font-weight: 700;
}
/* line 385, layout/_events.scss */
.modal-events .modal-dialog .modal-content .modal-header .event-name {
  font-size: 13px;
  color: #2b2b2b;
  font-weight: 700;
  float: right;
}
/* line 393, layout/_events.scss */
.modal-events .modal-dialog .modal-content .modal-body {
  margin-top: 0;
}

/* line 401, layout/_events.scss */
.info-event {
  background-color: #dedede;
}

/* line 1, layout/_career.scss */
.carrer-active {
  position: relative;
}
/* line 4, layout/_career.scss */
.carrer-active .filters {
  margin-bottom: 25px;
}
/* line 6, layout/_career.scss */
.carrer-active .filters .filter-name {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  font-size: 12px;
}
/* line 15, layout/_career.scss */
.carrer-active .filter {
  float: right;
}
/* line 18, layout/_career.scss */
.carrer-active .filter .filters-options {
  display: inline-block;
  padding-left: 15px;
}
@media (max-width: 767px) {
  /* line 18, layout/_career.scss */
  .carrer-active .filter .filters-options {
    padding-left: 0px;
  }
}
/* line 25, layout/_career.scss */
.carrer-active .filter .filters-options > li {
  font-weight: 700;
  display: inline-block;
  font-size: 12px;
  margin: 0 15px;
}
/* line 31, layout/_career.scss */
.carrer-active .filter .filters-options > li:last-child {
  margin: 0 0 0 15px;
}
@media (max-width: 767px) {
  /* line 25, layout/_career.scss */
  .carrer-active .filter .filters-options > li {
    margin: 0 5px;
  }
  /* line 38, layout/_career.scss */
  .carrer-active .filter .filters-options > li:first-child {
    margin: 0 5px 0 20px;
  }
}
/* line 44, layout/_career.scss */
.carrer-active .filter .filters-options > li.active > a {
  color: #034f82;
}
/* line 49, layout/_career.scss */
.carrer-active .filter .filters-options > li > a {
  color: #5d5d5d;
}
/* line 52, layout/_career.scss */
.carrer-active .filter .filters-options > li > a:focus, .carrer-active .filter .filters-options > li > a:active, .carrer-active .filter .filters-options > li > a:hover {
  text-decoration: none;
  color: #034f82;
}
/* line 63, layout/_career.scss */
.carrer-active .careers-link {
  text-decoration: none;
}
/* line 66, layout/_career.scss */
.carrer-active .careers-card {
  margin-top: 20px;
  background-color: #ffffff;
  border: 1px solid #cdcdcd;
  z-index: 10;
}
@media (max-width: 767px) {
  .carrer-active .careers-card {
  	margin-top: 40px;
  }
}
/* line 72, layout/_career.scss */
.carrer-active .careers-card img {
  width: 150px;/*auto*/
  display: block;
  margin: 0 auto;
  padding: 25px 10px;
  width: auto;
  max-width: 150px;
  height: 120px;
  object-fit: contain;
}
/* line 81, layout/_career.scss */
.carrer-active .careers-card .info-careers-card {
  padding: 15px 15px 10px;
  margin: 5px 0;
  border-top: 1px solid #cdcdcd;
}
/* line 86, layout/_career.scss */
.carrer-active .careers-card .info-careers-card p {
  margin: 0;
  font-size: 12px;
  line-height: 15px;
  color: #5d5d5d;
}
/* line 92, layout/_career.scss */
.carrer-active .careers-card .info-careers-card p:first-of-type {
  text-transform: uppercase;
  font-weight: 700;
  color: #62c1ff;
}
/* line 101, layout/_career.scss */
.carrer-active .more {
  background: transparent;
  border: none;
  color: #6d9d31;
  font-weight: 700;
  width: 100%;
  text-align: center;
}
/* line 109, layout/_career.scss */
.carrer-active .more i {
  display: inline-block;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  padding-left: 30px;
}
/* line 114, layout/_career.scss */
.carrer-active .more i::before {
  font-size: 30px;
}
/* line 119, layout/_career.scss */
.carrer-active .more:after {
  content: "";
  display: block;
  opacity: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-top-color: #6d9d31;
  border-right-color: #6d9d31;
  -webkit-animation: linear centeredRotation 0.8s infinite;
  animation: linear centeredRotation 0.8s infinite;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}
/* line 139, layout/_career.scss */
.carrer-active .more.loading {
  color: transparent !important;
}
/* line 141, layout/_career.scss */
.carrer-active .more.loading:after {
  opacity: 1;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

/* line 149, layout/_career.scss */
.detalhe-career {
  background-color: #fff;
}
.detalhe-career .container {
  width: 71.50vw;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}
.career-title{
  padding-top: 2vw;
}
@media (max-width: 767px) {
  .career-title{
    padding-top: 8vw;
  }
}
.career-image {
	width: auto;
	height: 8.48vw;
}
.career-image img{
  width: auto;
  height: 100%;
}
.career-location{
  font-size: 1.82vw;
  font-weight: bold;
  color: #044F82;
  margin-bottom: 40px;
}
.career-info{
  width: 100%;
  display: inline-block;
}
.career-text{
  margin-bottom: 40px;
}
.info-left, .info-right{
  float: left;
  width: 20%;
}
.info-website{
  font-size: 1.56vw;
  font-weight: bold;
  text-transform: capitalize;
  color: #5D5D5D;
  padding-bottom: 10px;
}
.info-website-text, .info-website-text a{
  font-size: 1.04vw;
  font-weight: bold;
  color: #6D9D31;
}
@media (max-width: 767px) {
  .info-website{
    font-size: 6vw;
  }
  .info-website-text, .info-website-text a{
    font-size: 3vw;
  }
  .info-left, .info-right {
  	width: 50%;
  }
}
/* line 157, layout/_career.scss */
.detalhe-career h1 {
  /* font-size: 75px !important;
  font-weight: 400 !important;
  color: rgba(26, 92, 137, 0.1) !important; */
}

/* line 167, layout/_career.scss */
.detalhe-career h2 {
  /* font-size: 42px;
  color: #1a5c89;
  line-height: 60px; */
}

/* line 177, layout/_career.scss */
.detalhe-career .tag-career {
  font-size: 13px;
  color: #62c1ff;
  font-weight: 700;
  text-align: right;
}
/* line 184, layout/_career.scss */
.detalhe-career .box-career {
  position: relative;
  left: 0;
  margin-left: -16px;
  background-color: #ffffff;
  width: 100%;
  max-width: 835px;
  height: 350px;
}
/* line 193, layout/_career.scss */
.detalhe-career .box-career .img-career-detalhe {
  margin: 50px 0;
  width: 100%;
  max-width: 210px;
}
/* line 199, layout/_career.scss */
.detalhe-career .box-career .info {
  font-size: 12px;
  font-weight: 700;
}
/* line 202, layout/_career.scss */
.detalhe-career .box-career .info .title-info {
  display: block;
  color: #62c1ff;
  margin: 0;
}
/* line 208, layout/_career.scss */
.detalhe-career .box-career .info .detalhe-info {
  display: block;
  color: #5d5d5d;
  margin-top: -20px;
}
/* line 216, layout/_career.scss */
.detalhe-career p {
  font-size: 15px;
  line-height: 30px;
  font-weight: 400;
}
@media (max-width: 767px) {
  /* line 216, layout/_career.scss */
  .detalhe-career p {
    font-size: 13px;
  }
}
/* line 226, layout/_career.scss */
.detalhe-career .destak-text {
  color: #034f82;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  /* line 226, layout/_career.scss */
  .detalhe-career .destak-text {
    margin-bottom: 20px;
  }
}
/* line 235, layout/_career.scss */
.detalhe-career .share-career {
  display: inline-block;
  font-size: 12px;
  text-decoration: none;
  color: #1a5c89;
  vertical-align: middle;
  line-height: 30px;
}
/* line 243, layout/_career.scss */
.detalhe-career .share-career i {
  display: inline-block;
  margin-right: 10px;
  -webkit-transition: margin-right 0.5s ease-in-out;
  transition: margin-right 0.5s ease-in-out;
}
/* line 248, layout/_career.scss */
.detalhe-career .share-career i::before {
  font-size: 12px;
}
/* line 254, layout/_career.scss */
.detalhe-career .share-career:hover i {
  margin-right: 20px;
}
/* line 260, layout/_career.scss */
.detalhe-career .upload-cv {
  background: none;
  border: none;
  font-size: 13px;
  line-height: 26px;
  font-weight: bold;
  color: #034f82;
  width: 100%;
  text-align: left;
  vertical-align: middle;
  padding: 0 10px 0 0;
}
/* line 272, layout/_career.scss */
.detalhe-career .upload-cv i {
  display: inline-block;
  float: right;
}
/* line 276, layout/_career.scss */
.detalhe-career .upload-cv i::before {
  font-size: 22px;
}
/* line 282, layout/_career.scss */
.detalhe-career .inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}
/* line 291, layout/_career.scss */
.detalhe-career .inputfile + label {
  font-size: 1.25em;
  font-weight: 700;
  display: inline-block;
  cursor: pointer;
}
/* line 298, layout/_career.scss */
.detalhe-career .inputfile + label * {
  pointer-events: none;
}
/* line 302, layout/_career.scss */
.detalhe-career .inputfile:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}
/* line 307, layout/_career.scss */
.detalhe-career .progress {
  position: relative;
  width: 100%;
  margin: 30px 0 0 0;
  height: 2px;
}
/* line 313, layout/_career.scss */
.detalhe-career .progress .bar {
  width: 100%;
  height: 2px;
  background-color: #5d5d5d;
}
/* line 319, layout/_career.scss */
.detalhe-career .progress .bar-percent {
  position: absolute;
  top: 0;
  width: 0%;
  height: 2px;
  background-color: #62c1ff;
}

/* line 329, layout/_career.scss */
.career-list-detalhe {
  position: relative;
  padding-bottom: 0px;
  background-color: #dedede;
}
/* line 334, layout/_career.scss */
.career-list-detalhe .color-background {
  background-color: #ffffff;
}
/* line 338, layout/_career.scss */
.career-list-detalhe .count {
  font-size: 15px;
  font-weight: 700;
  color: #6d9d31;
  text-align: center;
  position: absolute;
  bottom: -20%;
  left: 25%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (max-width: 991px) {
  /* line 338, layout/_career.scss */
  .career-list-detalhe .count {
    display: inline-block;
    position: relative;
    bottom: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    vertical-align: middle;
    margin-bottom: 5px;
  }
}
/* line 359, layout/_career.scss */
.career-list-detalhe h2 {
  float: none;
  margin: auto;
  -webkit-writing-mode: tb-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: tb-rl;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media (max-width: 991px) {
  /* line 359, layout/_career.scss */
  .career-list-detalhe h2 {
    position: relative;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    -webkit-transform: none;
            transform: none;
    text-align: center;
    margin: 28px auto;
  }
}
/* line 376, layout/_career.scss */
.career-list-detalhe .our-career-carousel .owl-stage-outer .owl-stage {
  padding-right: 0 !important;
}
@media (max-width: 991px) {
  /* line 376, layout/_career.scss */
  .career-list-detalhe .our-career-carousel .owl-stage-outer .owl-stage {
    padding-left: 0 !important;
  }
}
/* line 383, layout/_career.scss */
.career-list-detalhe .our-career-carousel .owl-stage-outer .owl-item {
  direction: ltr;
}
/* line 386, layout/_career.scss */
.career-list-detalhe .our-career-carousel .owl-stage-outer .owl-item .tag-card {
  color: #034f82;
}
/* line 393, layout/_career.scss */
.career-list-detalhe .drag {
  position: relative;
  left: 40%;
  -webkit-transform: translateX(-40%);
          transform: translateX(-40%);
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #cdcdcd;
  z-index: 10;
}
/* line 404, layout/_career.scss */
.career-list-detalhe .drag .drag-position {
  position: relative;
  width: 100%;
  height: 100%;
}
/* line 408, layout/_career.scss */
.career-list-detalhe .drag .drag-position span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  color: #cdcdcd;
}
/* line 416, layout/_career.scss */
.career-list-detalhe .drag .drag-position span i {
  margin: 0 5px;
}
/* line 418, layout/_career.scss */
.career-list-detalhe .drag .drag-position span i.left {
  display: inline-block;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
/* line 423, layout/_career.scss */
.career-list-detalhe .drag .drag-position span i::before {
  font-size: 12px;
  color: #cdcdcd;
}
@media (max-width: 991px) {
  /* line 393, layout/_career.scss */
  .career-list-detalhe .drag {
    display: none;
  }
}

/* line 1, layout/_news.scss */
.news-list {
  position: relative;
}
.news-list .container{
  width: 71.50vw;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}
.news-list .container .row{
  margin-left: 0;
  margin-right: 0;
}
.news-list .container .equal{
  /* display: flex;
  flex-wrap: wrap;
  justify-content: space-between; */
  display: inline-block;
  margin-left: 0;
  margin-right: 0;
}
.card-container{
  float: left;
  width: 22.204vw;
  height: 28.652vw;
  background-color: #E4E4E4;
  margin-bottom: 4.784vw;
}
@media (max-width: 767px) {
  .card-container{
    margin-bottom: 40px;
  }
}
.card-container .card-info{
	display: inline-flex;
	flex-direction: column;
	position: relative;
	width: 100%;
	max-width: unset;
	height: 100%;
	/* border: 1px solid #cdcdcd; */
	/* padding: 30px; */
	line-height: 1.3;
  overflow: hidden;
}
.card-info .imagem-topo{
  height: 11vw;
  overflow: hidden;
}
.card-info .card-info-pub .imagem-topo img{
  width: 100%;
}
.card-container .card-info .info{
	padding-bottom: 0;
}
.card-container .card-info .img-card img {
	display: block;
	margin: 0 auto;
	width: 100%;
	max-width: 100%;
	height: 11.024vw;
	max-height: 212px;
}
.card-container .card-info h5{
  font-family: 'Raleway', sans-serif;
  font-size: 0.936vw;
  font-weight: bold;
  padding-left: 2.6vw;
  padding-right: 2.6vw;
}
.card-container .card-info p{
  font-family: "Noto Sans", sans-serif;
  font-size: 0.832vw;
  line-height: 1.5;
  padding-left: 2.6vw;
  padding-right: 2.6vw;
  padding-top: 0.5vw;
}
.publications-active .card-info p {
	font-family: "Noto Sans", sans-serif;
	font-size: 0.832vw;
	line-height: 1.5;
	padding-left: 2.6vw;
	padding-right: 2.6vw;
	padding-top: 1.5vw;
}
.card-container .card-info .btn-event {
	position: absolute;
	background: none;
	border: none;
	width: 100%;
	height: auto;
	text-align: left;
	margin-top: 25vw;
	padding-left: 2.6vw;
	padding-right: 2.6vw;
	text-transform: capitalize;
	line-height: 1.5vw;
}
.card-center {
	margin-left: 2.38vw;
	margin-right: 2.38vw;
}
/* line 4, layout/_news.scss */
.news-list .filters {
  margin-bottom: 25px;
}
/* line 6, layout/_news.scss */
.news-list .filters .filter-name {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  font-size: 12px;
}
@media (max-width: 767px) {
  /* line 6, layout/_news.scss */
  .news-list .filters .filter-name {
    margin-right: 25px;
  }
}
/* line 17, layout/_news.scss */
.news-list .filters .filter {
  float: right;
}
/* line 20, layout/_news.scss */
.news-list .filters .filter .filters-options {
  display: inline-block;
  padding-left: 15px;
}
@media (max-width: 767px) {
  /* line 20, layout/_news.scss */
  .news-list .filters .filter .filters-options {
    padding-left: 0px;
  }
}
/* line 27, layout/_news.scss */
.news-list .filters .filter .filters-options > li {
  font-weight: 700;
  display: inline-block;
  font-size: 12px;
  margin: 0 15px;
}
/* line 33, layout/_news.scss */
.news-list .filters .filter .filters-options > li:last-child {
  margin: 0 0 0 15px;
}
@media (max-width: 767px) {
  /* line 27, layout/_news.scss */
  .news-list .filters .filter .filters-options > li {
    margin: 0 2px;
  }
  /* line 40, layout/_news.scss */
  .news-list .filters .filter .filters-options > li:first-child {
    margin: 0 0 0;
  }
  /* line 44, layout/_news.scss */
  .news-list .filters .filter .filters-options > li:last-child {
    margin: 0;
  }
}
/* line 50, layout/_news.scss */
.news-list .filters .filter .filters-options > li.active > a {
  color: #034f82;
}
/* line 55, layout/_news.scss */
.news-list .filters .filter .filters-options > li > a {
  color: #5d5d5d;
}
/* line 58, layout/_news.scss */
.news-list .filters .filter .filters-options > li > a:focus, .news-list .filters .filter .filters-options > li > a:active, .news-list .filters .filter .filters-options > li > a:hover {
  text-decoration: none;
  color: #034f82;
}
/* line 70, layout/_news.scss */
.news-list .more {
  background: transparent;
  border: none;
  color: #6d9d31;
  font-weight: 700;
  width: 100%;
  text-align: center;
}
/* line 78, layout/_news.scss */
.news-list .more i {
  display: inline-block;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  padding-left: 30px;
}
/* line 83, layout/_news.scss */
.news-list .more i::before {
  font-size: 30px;
}
/* line 88, layout/_news.scss */
.news-list .more:after {
  content: "";
  display: block;
  opacity: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-top-color: #6d9d31;
  border-right-color: #6d9d31;
  -webkit-animation: linear centeredRotation 0.8s infinite;
  animation: linear centeredRotation 0.8s infinite;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}
/* line 108, layout/_news.scss */
.news-list .more.loading {
  color: transparent !important;
}
/* line 110, layout/_news.scss */
.news-list .more.loading:after {
  opacity: 1;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

/* line 118, layout/_news.scss */
.detalhe-event,
.detalhe-news {
  background-color: #dedede;
  padding: 200px 0 0 0;
}
.detalhe-news {
  background-color: #fff;
  padding: 0 0 0 0;
  /* margin-top: 6.4vw; */
}
.detalhe-news .container .row{
	margin-left: 0;
	margin-right: 0;
}
.detalhe-news-titulo{
  width: 100%;
  font-size: 1.82vw;
  font-weight: bold;
  text-align: left;
  font-family: "Noto Sans", sans-serif;
  color: #044f82;
  margin-top: 1vw;
}
.detalhe-news-lead{
  width: 100%;
  font-size: 0.988vw;
  font-weight: bold;
  text-align: left;
  font-family: "Noto Sans", sans-serif;
  color: #000;
  margin-top: 1.8vw;
}
.detalhe-news-imagem{
  width: 37.024vw;
  height: auto;
  margin-top: 1.8vw;
}
.detalhe-news-texto{
  width: 100%;
  font-size: 0.832vw;
  text-align: left;
  font-family: "Noto Sans", sans-serif;
  color: #5D5D5D;
  margin-top: 1.8vw;
}
/* line 128, layout/_news.scss */
.detalhe-event .in-front,
.detalhe-news .in-front {
  z-index: 10;
}
/* line 132, layout/_news.scss */
.detalhe-event h1,
.detalhe-news h1 {
  font-size: 75px;
  font-weight: 400;
  color: rgba(26, 92, 137, 0.1);
}
@media (max-width: 767px) {
  /* line 132, layout/_news.scss */
  .detalhe-event h1,
  .detalhe-news h1 {
    font-size: 40px;
  }
}
/* line 142, layout/_news.scss */
.detalhe-event h2,
.detalhe-news h2 {
  font-size: 42px;
  color: #1a5c89;
  line-height: 60px;
  z-index: 1;
}
.detalhe-news .container {
  width: 71.50vw;
  margin: auto;
  padding-left: 0;
  padding-right: 0;
}
.detalhe-news h5{
  /* color: #6d9d31;
  text-transform: none;
  margin-left: 8px;
  margin-top: -10px; */
  font-weight: bold;
}

@media (max-width: 767px) {
  /* line 142, layout/_news.scss */
  .detalhe-event h2,
  .detalhe-news h2 {
    font-size: 22px;
    line-height: 35px;
  }
}
/* line 154, layout/_news.scss */
.detalhe-event .img-news-detail,
.detalhe-news .img-news-detail {
  position: relative;
  top: 0;
  width: 100%;
  max-width: 550px;
  z-index: 0;
  opacity: 0.6;
  margin: 0 auto;
}

.detalhe-news .img-news-detail.news {
  width: 100%;
  max-width: 1200px;
}

@media (min-width: 1500px) {
  /* line 154, layout/_news.scss */
  .detalhe-event .img-news-detail,
  .detalhe-news .img-news-detail {
    width: 100%;
    max-width: 550px;
  }

  .detalhe-news .img-news-detail.news {
    width: 100%;
    max-width: 1200px;
  }
}
@media (max-width: 999px) {
  /* line 154, layout/_news.scss */
  .detalhe-event .img-news-detail,
  .detalhe-news .img-news-detail {
    top: auto;
    -webkit-transform: none;
            transform: none;
    margin: 0 -16px;
  }
}
/* line 175, layout/_news.scss */
.detalhe-event .img-event-detail,
.detalhe-news .img-event-detail {
  width: 100%;
  height: 100%;
}
/* line 180, layout/_news.scss */
.detalhe-event .date-new-event,
.detalhe-event .date-new,
.detalhe-news .date-new-event,
.detalhe-news .date-new {
  font-size: 13px;
  font-weight: 700;
  color: #62c1ff;
  text-align: right;
}
/* line 188, layout/_news.scss */
.detalhe-event .date-new-event,
.detalhe-news .date-new-event {
  text-align: right;
  line-height: 80px;
}
@media (max-width: 767px) {
  /* line 188, layout/_news.scss */
  .detalhe-event .date-new-event,
  .detalhe-news .date-new-event {
    line-height: normal;
  }
}
/* line 197, layout/_news.scss */
.detalhe-event .info-destak,
.detalhe-news .info-destak {
  /* margin-top: -80px; */
  position: relative;
}
@media (max-width: 999px) {
  /* line 197, layout/_news.scss */
  .detalhe-event .info-destak,
  .detalhe-news .info-destak {
    margin-top: 10px;
  }
}
/* line 204, layout/_news.scss */
.detalhe-event .info-destak p,
.detalhe-news .info-destak p {
  font-size: 28px;
  color: #1a5c89;
  line-height: 40px;
}
@media (max-width: 991px) {
  /* line 204, layout/_news.scss */
  .detalhe-event .info-destak p,
  .detalhe-news .info-destak p {
    font-size: 18px;
  }
}
/* line 215, layout/_news.scss */
.detalhe-event .destak,
.detalhe-news .destak {
  margin-top: 50px;
  font-size: 28px;
  color: #1a5c89;
  line-height: 40px;
}
@media (max-width: 991px) {
  /* line 215, layout/_news.scss */
  .detalhe-event .destak,
  .detalhe-news .destak {
    font-size: 18px;
  }
}
/* line 226, layout/_news.scss */
.detalhe-event .reading-more,
.detalhe-news .reading-more {
  position: relative;
  /*bottom: 10%;*/
  left: 0;
}
/* line 231, layout/_news.scss */
.detalhe-event .reading-more.news,
.detalhe-news .reading-more.news {
  /*bottom: 50%;*/
}
/* line 235, layout/_news.scss */
.detalhe-event .reading-more button,
.detalhe-news .reading-more button {
  background: transparent;
  border: none;
  color: #6d9d31;
  font-weight: 700;
  width: 100%;
  text-align: left;
}
/* line 243, layout/_news.scss */
.detalhe-event .reading-more button sup,
.detalhe-news .reading-more button sup {
  font-weight: normal;
  color: #6d9d31;
}
/* line 248, layout/_news.scss */
.detalhe-event .reading-more button i,
.detalhe-news .reading-more button i {
  display: inline-block;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  padding-left: 30px;
}
/* line 253, layout/_news.scss */
.detalhe-event .reading-more button i::before,
.detalhe-news .reading-more button i::before {
  font-size: 30px;
}

@media (max-width: 991px) {
  /* line 262, layout/_news.scss */
  .detalhe-event .p-b-80 {
    padding-bottom: 20px;
  }
}
@media (max-width: 991px) {
  /* line 261, layout/_news.scss */
  .detalhe-event {
    padding: 100px 0 0px 0;
  }
}

/* line 273, layout/_news.scss */
.news-list-detalhe {
  position: relative;
  padding-bottom: 0px;
  background-color: #dedede;
}
/* line 278, layout/_news.scss */
.news-list-detalhe .color-background {
  background-color: #ffffff;
}
/* line 282, layout/_news.scss */
.news-list-detalhe .count {
  font-size: 15px;
  font-weight: 700;
  color: #6d9d31;
  text-align: center;
  position: absolute;
  bottom: -20%;
  left: 25%;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (max-width: 999px) {
  /* line 282, layout/_news.scss */
  .news-list-detalhe .count {
    display: inline-block;
    position: relative;
    bottom: auto;
    left: auto;
    -webkit-transform: none;
            transform: none;
    vertical-align: middle;
    margin-bottom: 5px;
  }
}
/* line 303, layout/_news.scss */
.news-list-detalhe h2 {
  float: none;
  margin: auto;
  -webkit-writing-mode: tb-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: tb-rl;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
@media (max-width: 999px) {
  /* line 303, layout/_news.scss */
  .news-list-detalhe h2 {
    position: relative;
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
    -webkit-transform: none;
            transform: none;
    text-align: center;
    margin: 28px auto;
  }
}
/* line 320, layout/_news.scss */
.news-list-detalhe .our-news-carousel .owl-stage-outer .owl-stage {
  padding-right: 0 !important;
}
@media (max-width: 991px) {
  /* line 320, layout/_news.scss */
  .news-list-detalhe .our-news-carousel .owl-stage-outer .owl-stage {
    padding-left: 0 !important;
  }
}
/* line 327, layout/_news.scss */
.news-list-detalhe .our-news-carousel .owl-stage-outer .owl-item {
  direction: ltr;
}
/* line 330, layout/_news.scss */
.news-list-detalhe .our-news-carousel .owl-stage-outer .owl-item .tag-card {
  color: #034f82;
}
/* line 337, layout/_news.scss */
.news-list-detalhe .drag {
  position: relative;
  left: 40%;
  -webkit-transform: translateX(-40%);
          transform: translateX(-40%);
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid #cdcdcd;
  z-index: 10;
}
/* line 348, layout/_news.scss */
.news-list-detalhe .drag .drag-position {
  position: relative;
  width: 100%;
  height: 100%;
}
/* line 352, layout/_news.scss */
.news-list-detalhe .drag .drag-position span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  color: #cdcdcd;
}
/* line 360, layout/_news.scss */
.news-list-detalhe .drag .drag-position span i {
  margin: 0 5px;
}
/* line 362, layout/_news.scss */
.news-list-detalhe .drag .drag-position span i.left {
  display: inline-block;
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
/* line 367, layout/_news.scss */
.news-list-detalhe .drag .drag-position span i::before {
  font-size: 12px;
  color: #cdcdcd;
}
@media (max-width: 999px) {
  /* line 337, layout/_news.scss */
  .news-list-detalhe .drag {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media (max-width: 991px) {
  /* line 337, layout/_news.scss */
  .news-list-detalhe .drag {
    display: none;
  }
}

/* line 386, layout/_news.scss */
.info-news {
  background-color: #dedede;
}

/* line 1, layout/_projects.scss */
.projects-list {
  position: relative;
}
/* line 4, layout/_projects.scss */
.projects-list .projects-card {
  margin-top: 20px;
  background-color: #ffffff;
  border: 1px solid #cdcdcd;
  z-index: 10;
  height: 100%;
}
/* line 11, layout/_projects.scss */
.projects-list .projects-card img {
  width: auto;
  display: block;
  margin: 50px auto;
  width: 100%;
  max-width: 200px;
  -o-object-fit: contain;
     object-fit: contain;
}
/* line 21, layout/_projects.scss */
.projects-list .projects-card .info-projects-card {
  padding: 15px 15px 10px;
  margin: 5px 0;
  border-top: 1px solid #cdcdcd;
}
/* line 26, layout/_projects.scss */
.projects-list .projects-card .info-projects-card p {
  margin: 0;
  font-size: 12px;
  line-height: normal;
  color: #5d5d5d;
}
/* line 32, layout/_projects.scss */
.projects-list .projects-card .info-projects-card p:first-of-type {
  text-transform: uppercase;
  font-weight: 700;
  color: #62c1ff;
  margin-bottom: 10px;
}
/* line 42, layout/_projects.scss */
.projects-list .financiamento {
  font-size: 12px;
  width: 100%;
  text-align: center;
  margin-top: 20px;
}
/* line 48, layout/_projects.scss */
.projects-list .financiamento a {
  color: rgba(93, 93, 93, 0.5);
  text-decoration: none;
}
/* line 52, layout/_projects.scss */
.projects-list .financiamento a i {
  display: inline-block;
  vertical-align: middle;
}
/* line 56, layout/_projects.scss */
.projects-list .financiamento a i::before {
  font-size: 10px;
  margin-left: 0;
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out;
}
/* line 65, layout/_projects.scss */
.projects-list .financiamento:hover a {
  display: inline-block;
}
/* line 68, layout/_projects.scss */
.projects-list .financiamento:hover a i::before {
  margin-left: 10px;
}

/* line 1, layout/_publication.scss */
.publications-active {
  position: relative;
}
/* line 4, layout/_publication.scss */
.publications-active .filters {
  margin-bottom: 25px;
}
/* line 6, layout/_publication.scss */
.publications-active .filters .filter-name {
  display: inline-block;
  font-weight: 700;
  text-transform: uppercase;
  display: inline-block;
  font-size: 12px;
}
/* line 15, layout/_publication.scss */
.publications-active .filter {
  float: right;
}
/* line 18, layout/_publication.scss */
.publications-active .filter .filters-options {
  display: inline-block;
  padding-left: 15px;
}
@media (max-width: 767px) {
  /* line 18, layout/_publication.scss */
  .publications-active .filter .filters-options {
    padding-left: 0px;
  }
}
/* line 25, layout/_publication.scss */
.publications-active .filter .filters-options > li {
  font-weight: 700;
  display: inline-block;
  font-size: 12px;
  margin: 0 15px;
}
/* line 31, layout/_publication.scss */
.publications-active .filter .filters-options > li:last-child {
  margin: 0 0 0 15px;
}
@media (max-width: 767px) {
  /* line 25, layout/_publication.scss */
  .publications-active .filter .filters-options > li {
    margin: 0 5px;
  }
  /* line 38, layout/_publication.scss */
  .publications-active .filter .filters-options > li:first-child {
    margin: 0 5px 0 20px;
  }
}
/* line 44, layout/_publication.scss */
.publications-active .filter .filters-options > li.active > a {
  color: #034f82;
}
/* line 49, layout/_publication.scss */
.publications-active .filter .filters-options > li > a {
  color: #5d5d5d;
}
/* line 52, layout/_publication.scss */
.publications-active .filter .filters-options > li > a:focus, .publications-active .filter .filters-options > li > a:active, .publications-active .filter .filters-options > li > a:hover {
  text-decoration: none;
  color: #034f82;
}
/* line 62, layout/_publication.scss */
.publications-active .careers-card {
  margin-top: 20px;
  background-color: #ffffff;
  border: 1px solid #cdcdcd;
  z-index: 10;
}
/* line 68, layout/_publication.scss */
.publications-active .careers-card img {
  width: auto;
  display: block;
  margin: 0 auto;
  padding: 25px 10px;
  width: 100%;
  max-width: 150px;
}
/* line 77, layout/_publication.scss */
.publications-active .careers-card .info-careers-card {
  padding: 15px 15px 10px;
  margin: 5px 0;
  border-top: 1px solid #cdcdcd;
}
/* line 82, layout/_publication.scss */
.publications-active .careers-card .info-careers-card p {
  margin: 0;
  font-size: 12px;
  line-height: 15px;
  color: #5d5d5d;
}
/* line 88, layout/_publication.scss */
.publications-active .careers-card .info-careers-card p:first-of-type {
  text-transform: uppercase;
  font-weight: 700;
  color: #62c1ff;
}
/* line 97, layout/_publication.scss */
.publications-active .more {
  background: transparent;
  border: none;
  color: #6d9d31;
  font-weight: 700;
  width: 100%;
  text-align: center;
}
/* line 105, layout/_publication.scss */
.publications-active .more i {
  display: inline-block;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  padding-left: 30px;
}
/* line 110, layout/_publication.scss */
.publications-active .more i::before {
  font-size: 30px;
}
/* line 115, layout/_publication.scss */
.publications-active .more:after {
  content: "";
  display: block;
  opacity: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-top-color: #6d9d31;
  border-right-color: #6d9d31;
  -webkit-animation: linear centeredRotation 0.8s infinite;
  animation: linear centeredRotation 0.8s infinite;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}
/* line 135, layout/_publication.scss */
.publications-active .more.loading {
  color: transparent !important;
}
/* line 137, layout/_publication.scss */
.publications-active .more.loading:after {
  opacity: 1;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

/* line 1, layout/_contactos.scss */
.location-entrepise {
  background-color: #f0f0f0;
  padding: 50px 0 0 0;
}
/* line 6, layout/_contactos.scss */
.location-entrepise .offices .office-local {
  font-size: 50px;
  line-height: 60px;
  color: #2c2c2c;
  font-weight: 700;
}
/* line 12, layout/_contactos.scss */
.location-entrepise .offices .office-local span {
  display: block;
  font-size: 15px;
  color: #6d9d31;
  line-height: 26px;
}
/* line 20, layout/_contactos.scss */
.location-entrepise .offices .icon-img {
  width: 100%;
  max-width: 12px;
  height: 100%;
  max-height: 12px;
  margin-right: 5px;
}
/* line 28, layout/_contactos.scss */
.location-entrepise .offices .address-office {
  display: inline-block;
  margin-top: 50px;
  line-height: 26px;
}
/* line 33, layout/_contactos.scss */
.location-entrepise .offices .address-office span {
  white-space: pre-line;
}
@media (max-width: 767px) {
  /* line 28, layout/_contactos.scss */
  .location-entrepise .offices .address-office {
    margin-top: 0;
  }
}
/* line 43, layout/_contactos.scss */
.location-entrepise .offices .phone {
  margin-bottom: -10px;
}
/* line 47, layout/_contactos.scss */
.location-entrepise .offices .phone > a {
  color: #5d5d5d;
}
/* line 50, layout/_contactos.scss */
.location-entrepise .offices .phone > a:focus, .location-entrepise .offices .phone > a:active, .location-entrepise .offices .phone > a:hover {
  color: #6d9d31;
  text-decoration: none;
}
/* line 61, layout/_contactos.scss */
.location-entrepise .offices .email-office {
  font-size: 14px;
  color: #5d5d5d;
}
/* line 65, layout/_contactos.scss */
.location-entrepise .offices .email-office:focus, .location-entrepise .offices .email-office:active, .location-entrepise .offices .email-office:hover {
  color: #6d9d31;
  text-decoration: none;
}
@media (max-width: 767px) {
  /* line 5, layout/_contactos.scss */
  .location-entrepise .offices {
    margin-top: 20px;
    margin-bottom: 20px;
  }
}

/* line 79, layout/_contactos.scss */
.talk-to-us {
  background-color: #f0f0f0;
}
/* line 82, layout/_contactos.scss */
.talk-to-us h1 {
  font-size: 100px;
  color: rgba(44, 44, 44, 0.1);
  margin-bottom: 50px;
}
@media (min-width: 1500px) {
  /* line 82, layout/_contactos.scss */
  .talk-to-us h1 {
    font-size: 150px;
  }
}
@media (max-width: 991px) {
  /* line 82, layout/_contactos.scss */
  .talk-to-us h1 {
    font-size: 50px;
  }
}
/* line 97, layout/_contactos.scss */
.talk-to-us form .form-group {
  position: relative;
  margin: 50px 0;
}
/* line 102, layout/_contactos.scss */
.talk-to-us form input[type="text"],
.talk-to-us form input[type="email"],
.talk-to-us form input[type="password"],
.talk-to-us form input[type="number"],
.talk-to-us form input[type="phone"],
.talk-to-us form textarea {
  background: none;
  border: none;
  border-bottom: 1px solid black;
  -webkit-box-shadow: none;
          box-shadow: none;
  border-radius: 0;
  padding: 10px 0;
  line-height: 20px;
  font-size: 13px;
}
/* line 118, layout/_contactos.scss */
.talk-to-us form input[type="text"]:focus ~ span, .talk-to-us form input[type="text"]:not(:focus):valid ~ span,
.talk-to-us form input[type="email"]:focus ~ span,
.talk-to-us form input[type="email"]:not(:focus):valid ~ span,
.talk-to-us form input[type="password"]:focus ~ span,
.talk-to-us form input[type="password"]:not(:focus):valid ~ span,
.talk-to-us form input[type="number"]:focus ~ span,
.talk-to-us form input[type="number"]:not(:focus):valid ~ span,
.talk-to-us form input[type="phone"]:focus ~ span,
.talk-to-us form input[type="phone"]:not(:focus):valid ~ span,
.talk-to-us form textarea:focus ~ span,
.talk-to-us form textarea:not(:focus):valid ~ span {
  top: -20px;
  -webkit-transition: top 0.3s ease-in-out;
  transition: top 0.3s ease-in-out;
}
/* line 126, layout/_contactos.scss */
.talk-to-us form .error {
  position: relative;
  color: red;
}
/* line 131, layout/_contactos.scss */
.talk-to-us form .label-contatos {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: 700;
  font-size: 13px;
  color: #2c2c2c;
}
/* line 140, layout/_contactos.scss */
.talk-to-us form .open-rgpd {
  position: relative;
  background: none;
  border: none;
  float: right;
  font-size: 14px;
  color: #62c1ff;
  font-weight: bold;
  opacity: 0.2;
}
.detalhe-career form .open-rgpd  {
  position: relative;
  background: none;
  border: none;
  float: right;
  line-height: 26px;
font-weight: bold;
color: #034f82;
  opacity: 1;
}
.detalhe-career form .open-rgpd i {
  font-size: 22px;
}
@media (max-width: 767px) {
  .detalhe-career form .open-rgpd {
  	margin-top: 15vw;
  	left: -45%;
  }
}





/* line 150, layout/_contactos.scss */
.talk-to-us form .open-rgpd.unblock {
  opacity: 1;
}
/* line 154, layout/_contactos.scss */
.talk-to-us form .open-rgpd span,.detalhe-career form .open-rgpd span {
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: 15px;
}
/* line 161, layout/_contactos.scss */
.talk-to-us form .open-rgpd .btn-primary {
  display: inline-block;
  width: 25px;
  height: 25px;
  border: 2px solid #62c1ff;
  vertical-align: middle;
}
/* line 168, layout/_contactos.scss */
.talk-to-us form .open-rgpd .btn-primary i {
  left: 2px;
  bottom: -8px;
}
/* line 171, layout/_contactos.scss */
.talk-to-us form .open-rgpd .btn-primary i::before {
  font-size: 12px;
  color: #62c1ff;
}
.talk-to-us form .open-rgpd  i::before {
  font-size: 22px;
  margin-top: 5px;
  color: #62c1ff;
}

/* line 178, layout/_contactos.scss */
.talk-to-us form .open-rgpd.loading {
  opacity: 1;
}
/* line 180, layout/_contactos.scss */
.talk-to-us form .open-rgpd.loading::after {
  border-top-color: #62c1ff;
  border-right-color: #62c1ff;
}
/* line 187, layout/_contactos.scss */
.talk-to-us form .rgpd {
  left: auto;
  right: 0;
}

/* line 2, layout/_resultados.scss */
.resultados .resultados-pesq {
  position: relative;
  padding: 0 0 20px 0;
  border-bottom: 1px solid #6d6d6d;
}
/* line 7, layout/_resultados.scss */
.resultados .resultados-pesq::after {
  content: "";
  position: absolute;
  bottom: -1px;
  display: block;
  width: 70%;
  border-bottom: 1px solid #62c1ff;
}
/* line 17, layout/_resultados.scss */
.resultados .btn-all-search {
  position: relative;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
}
/* line 25, layout/_resultados.scss */
.resultados .btn-all-search .btn-primary {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(93, 93, 93, 0.5);
  margin-top: 5px;
}
/* line 31, layout/_resultados.scss */
.resultados .btn-all-search .btn-primary i {
  bottom: -9px;
}
/* line 33, layout/_resultados.scss */
.resultados .btn-all-search .btn-primary i::before {
  color: rgba(93, 93, 93, 0.5);
  font-size: 15px;
}
/* line 40, layout/_resultados.scss */
.resultados .btn-all-search span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  margin-left: 20px;
  color: rgba(93, 93, 93, 0.5);
  font-size: 13px;
  font-weight: 700;
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out;
}
/* line 52, layout/_resultados.scss */
.resultados .btn-all-search:hover span {
  margin-left: 30px;
  -webkit-transition: margin-left 0.5s ease-in-out;
  transition: margin-left 0.5s ease-in-out;
}
@media (max-width: 991px) {
  /* line 17, layout/_resultados.scss */
  .resultados .btn-all-search {
    padding: 0;
  }
}
/* line 63, layout/_resultados.scss */
.resultados p {
  line-height: 26px;
  margin: 15px 0;
}

/* line 1, layout/_interview.scss */
.infoInterview {
  background-color: #dedede;
}
/* line 4, layout/_interview.scss */
.infoInterview .background-video {
  position: relative;
  margin-top: 50px;
  z-index: 1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 150px;
  max-height: 150px;
  cursor: pointer !important;
}
/* line 15, layout/_interview.scss */
.infoInterview .background-video.deactive {
  z-index: 0;
  background-image: url("") !important;
}
/* line 21, layout/_interview.scss */
.infoInterview .background-video:hover ~ .playVideo {
  opacity: 1;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
@media (max-width: 767px) {
  /* line 4, layout/_interview.scss */
  .infoInterview .background-video {
    margin-top: 0px;
  }
}
/* line 32, layout/_interview.scss */
.infoInterview .vidwrap {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  margin-top: 50px;
}
/* line 39, layout/_interview.scss */
.infoInterview .vidwrap.deactive {
  z-index: -1;
  opacity: 0;
}
/* line 43, layout/_interview.scss */
.infoInterview .vidwrap iframe {
  width: 100%;
  max-width: 300px;
  height: 100%;
  max-height: 150px;
}
@media (max-width: 1499px) {
  /* line 43, layout/_interview.scss */
  .infoInterview .vidwrap iframe {
    max-width: 200px;
  }
}
@media (max-width: 767px) {
  /* line 43, layout/_interview.scss */
  .infoInterview .vidwrap iframe {
    max-width: calc(100vw - 30px);
  }
}
@media (max-width: 767px) {
  /* line 32, layout/_interview.scss */
  .infoInterview .vidwrap {
    margin-top: 0px;
    left: auto;
  }
}
/* line 64, layout/_interview.scss */
.infoInterview .playVideo {
  position: relative;
  font-weight: bold;
  color: #62c1ff;
  font-size: 13px;
  text-transform: uppercase;
  top: -5px;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

/*----members---*/
/* line 1, layout/_members.scss */
.become-member {
  padding: 130px 0 50px;
}
/* line 3, layout/_members.scss */
.become-member .text-member {
  color: #000;
  line-height: 26px;
  padding-bottom: 125px;
}
/* line 9, layout/_members.scss */
.become-member .open-member {
  cursor: pointer;
}
/* line 11, layout/_members.scss */
.become-member .open-member .h2-member {
  color: #000;
}
/* line 14, layout/_members.scss */
.become-member .open-member .h2-member:after, .become-member .open-member .h2-member:before {
  content: "";
  display: inline-block;
  width: 50px !important;/*LO 50px*/
  height: 1px;
  background-color: #000;
  vertical-align: middle;
}
/* line 25, layout/_members.scss */
.become-member .open-member .h2-member:after {
  width: 115px;
  margin-left: 40px;
}
/* line 32, layout/_members.scss */
.become-member .open-member .h2-member::before {
  margin-right: 40px;
}
/* line 39, layout/_members.scss */
.become-member .open-member .btn-primary {
  position: absolute;
  top: 50%;
  right: 2%;
  -webkit-transform: translate(1%, -50%);
          transform: translate(1%, -50%);
  display: inline-block;
  border: 2px solid black;
  -webkit-transition: none;
  transition: none;
}
/* line 50, layout/_members.scss */
.become-member .open-member .btn-primary i::before {
  color: black;
}

/* line 58, layout/_members.scss */
.hidden-us {
  display: none;
}

/* line 231, layout/_members.scss */
.members-active .more {
  background: transparent;
  border: none;
  color: #6d9d31;
  font-weight: 700;
  width: 100%;
  font-size: 14px;
  text-align: center;
}
/* line 240, layout/_members.scss */
.members-active .more .btn-primary {
  position: relative;
  top: 10px;
  border: 2px solid #6d9d31;
  padding: 0;
  width: 30px;
  height: 30px;
  background-color: transparent;
  color: white;
  border-radius: 50%;
  margin-right: 15px;
}
/* line 252, layout/_members.scss */
.members-active .more .btn-primary i {
  display: inline-block;
  -webkit-transform: rotate(78deg);
          transform: rotate(78deg);
  left: 3px;
  bottom: 0px;
}
/* line 258, layout/_members.scss */
.members-active .more .btn-primary i::before {
  font-size: 15px;
  color: #6d9d31;
}
/* line 265, layout/_members.scss */
.members-active .more:after {
  content: "";
  display: block;
  opacity: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: transparent;
  border-right-color: transparent;
  border-top-color: #6d9d31;
  border-right-color: #6d9d31;
  -webkit-animation: linear centeredRotation 0.8s infinite;
  animation: linear centeredRotation 0.8s infinite;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}
/* line 285, layout/_members.scss */
.members-active .more.loading {
  color: transparent !important;
}
/* line 287, layout/_members.scss */
.members-active .more.loading:after {
  opacity: 1;
  -webkit-transition: opacity 0.1s linear;
  transition: opacity 0.1s linear;
}

/* line 295, layout/_members.scss */
.members-interview {
  margin: 0 0 150px 0;
}
@media (max-width: 767px) {
  .members-interview {
  	margin: 0 0 0 0;
  }
}
/* line 297, layout/_members.scss */
.members-interview .spotlight {
  right: 0;
}
/* line 302, layout/_members.scss */
.members-interview .department-team.monthly {
  font-weight: 400;
  font-size: 12px;
  margin-top: -10px;
}
/* line 296, layout/_members.scss */
.members-active .spotlight {
  position: absolute;
  top: 130px;
  right: 12%;
  -webkit-transform: translate(-12%, -15%);
          transform: translate(-12%, -15%);
  font-size: 150px;
  line-height: 26px;
  color: rgba(1, 38, 62, 0.07);
  z-index: 10;
  font-weight: 700;
}
@media (max-width: 991px) {
  /* line 296, layout/_members.scss */
  .members-active .spotlight {
    display: none;
  }
}
.filtros-alterados{
  margin-left: 0;
}
