*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article,
aside,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section {
  display: block;
}

body {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  margin-bottom: 0.625rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

b,
strong {
  font-weight: bolder;
}

a {
  text-decoration: none;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: 0.625rem;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.3;
  color: #222;
}

@media (max-width: 1200px) {

  h1,
  .h1 {
    font-size: 3rem;
  }
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.btn {
  display: inline-block;
  font-weight: 600;
  color: #788487;
  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: 2px solid transparent;
  padding: 1rem 1.875rem;
  font-size: 0.75rem;
  line-height: 1.5;
  border-radius: 0.1875rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out,
    border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.btn-brand {
  color: #fff;
  background-color: #505cfd;
  border-color: #505cfd;
}

.btn-brand:hover {
  color: #fff;
  background-color: #2a39fd;
  border-color: #2a39fd;
}

.btn-brand:focus,
.btn-brand.focus {
  box-shadow: 0 0 0 0.2rem rgba(80, 92, 253, 0.5);
}

.btn-outline-new-white {
  color: #fff;
  border-color: #fff;
}

.btn-outline-new-white:hover {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-header {
  display: block;
  padding: 4px;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #6c757d;
  white-space: nowrap;
}

.nav-link {
  display: block;
  padding: 0.625rem 1rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  align-items: flex-start;
  text-align: left;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.text-center {
  text-align: center !important;
}

.btn {
  text-transform: uppercase;
  letter-spacing: 0.1125rem;
  font-size: 0.75rem;
  cursor: pointer;
}

.btn.btn-circle {
  border-radius: 1.875rem;
}

a {
  transition: all 0.3s ease-in-out;
}

a:hover,
a:focus {
  outline: 0;
}

h1,
.h1 {
  font-weight: 400;
}

h6,
.h6 {
  font-weight: 500;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}

body {
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.page-loader {
  background: #fff;
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
}

.page-loader-inner {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  padding: 20px;
  transform: translateY(-50%);
}

.spinner {
  position: relative;
  height: 30px;
  width: 30px;
  margin: 100px auto;
}

.double-bounce1,
.double-bounce2 {
  position: absolute;
  background-color: #505cfd;
  border-radius: 50%;
  opacity: 0.5;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  -webkit-animation: bounce 2s infinite ease-in-out;
  animation: bounce 2s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}

@-webkit-keyframes bounce {

  0%,
  100% {
    -webkit-transform: scale(0);
  }

  50% {
    -webkit-transform: scale(1);
  }
}

@keyframes bounce {

  0%,
  100% {
    transform: scale(0);
  }

  50% {
    transform: scale(1);
  }
}

.header {
  position: fixed;
  height: 74px;
  width: 100%;
  transition: height 0.3s ease-out, background 0.3s ease-out,
    box-shadow 0.3s ease-out;
  transform: translate3d(0, 0, 0);
  z-index: 1000;
}

.header .container-fluid {
  position: relative;
  height: 100%;
}

.inner-header::before {
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-right: -1px;
  content: "";
}

.inner-header {
  position: relative;
  height: 100%;
  float: left;
  z-index: 1;
}

.header.header-small {
  height: 60px;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, .07);
}

.header-small .menu-btn {
  top: 19px;
}

.header-small .escudo {
  height: 45px;
  margin-top: 2.5px;
}

.header.header-small {
  background: #252525;
  border-bottom: 1px solid #252525;
}

.header.header-small .inner-brand {
  color: #fff;
}

.header.header-small .extra-nav>ul>li>a,
.header.header-small .inner-nav>ul>li>a {
  color: #fff;
}


.header.header-small .extra-nav>ul>li>a:hover,
.header.header-small .extra-nav>ul>li>a.active,
.header.header-small .inner-nav>ul>li>a:hover,
.header.header-small .inner-nav>ul>li>a.active {
  color: rgba(255, 255, 255, 0.7);
}

.header.header-small .extra-nav>ul>li:first-child {
  border-color: rgba(255, 255, 255, 1);
}

.header.header-small .inner-nav>ul>li>a:hover::after {
  background-color: #f5f5f5;
  margin-left: 0;
  width: 100%;
  left: 0;
}

.header.header-small .inner-nav>ul>li>a::after {
  position: absolute;
  background: rgb(255, 255, 255);
  display: block;
  height: 1px;
  width: 20px;
  bottom: 1px;
  left: 50%;
  margin-left: -10px;
  content: "";
  transition: all 0.3s ease-out;
}

.inner-brand {
  display: inline-block;
  vertical-align: middle;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  height: 50px;
  font-size: 1.25rem;
}

.extra-nav {
  position: relative;
  height: 100%;
  float: right;
  text-align: right;
}

.inner-navigation {
  position: absolute;
  height: 100%;
  float: left;
  right: 15px;
  left: 15px;
  text-align: center;
}

.inner-nav,
.extra-nav {
  vertical-align: middle;
  display: inline-block;
  height: 100%;
}

.inner-nav>ul {
  height: 100%;
  padding: 0;
  margin: 0;
}

.inner-nav>ul>li {
  position: relative;
  display: block;
  height: 100%;
  float: left;
  padding: 0 0.625rem;
  margin: 0;
}

.inner-nav>ul>li>a {
  position: relative;
  display: block;
  height: 100%;
  width: 100%;
  padding: 0 7px;
  letter-spacing: 0.05625rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.75rem;
}

.inner-nav>ul>li>a>.menu-item-span {
  transform: translateY(-50%);
  position: relative;
  display: block;
  top: 50%;
}

.extra-nav {
  padding-left: 10px;
}

.extra-nav>ul {
  height: 100%;
}

.extra-nav>ul>li {
  position: relative;
  display: block;
  height: 100%;
  float: left;
  margin: 0;
  transition: padding 0.3s ease-out;
}

.extra-nav>ul>li:first-child {
  padding: 0 0 0 15px;
}

.extra-nav>ul>li:only-child {
  padding-left: 5px;
}

.extra-nav>ul>li:last-child {
  padding-right: 0 !important;
}

.extra-nav>ul>li:last-child>a {
  padding-right: 0 !important;
}

.header.header-transparent {
  background: rgba(0, 0, 0, 0.1);
}

.header.header-transparent .inner-brand {
  color: #fff;
}

.header.header-transparent .extra-nav>ul>li>a,
.header.header-transparent .inner-nav>ul>li>a {
  color: #fff;
}

.header.header-transparent .extra-nav>ul>li>a:hover,
.header.header-transparent .extra-nav>ul>li>a.active,
.header.header-transparent .inner-nav>ul>li>a:hover,
.header.header-transparent .inner-nav>ul>li>a.active {
  color: rgba(255, 255, 255, 0.7);
}

.header.header-transparent .extra-nav>ul>li:first-child {
  border-color: rgba(255, 255, 255, 0.1);
}

.header.header-transparent .inner-nav>ul>li>a:hover::after {
  background-color: #f5f5f5;
  margin-left: 0;
  width: 100%;
  left: 0;
}

.header.header-transparent .inner-nav>ul>li>a::after {
  position: absolute;
  background: rgba(255, 255, 255, 0.8);
  display: block;
  height: 1px;
  width: 20px;
  bottom: -1px;
  left: 50%;
  margin-left: -10px;
  content: "";
  transition: all 0.3s ease-out;
}

@media (min-width: 992px) {
  .nav-toggle {
    display: none !important;
  }

  .inner-navigation.collapse {
    display: block;
  }
}

@media (max-width: 993px) {
  .header-transparent {
    background: transparent;
  }

  .header-small {
    background-color: #f5f5f5;
  }

  .header .inner-brand,
  .header.header-small .inner-brand,
  .header.header-transparent .inner-brand {
    color: #222;
  }

  .header .extra-nav>ul>li:first-child,
  .header.header-small .extra-nav>ul>li:first-child,
  .header.header-transparent .extra-nav>ul>li:first-child {
    border-color: rgba(240, 240, 240, 0.8);
  }

  .header .extra-nav>ul>li>a,
  .header.header-small .extra-nav>ul>li>a,
  .header.header-transparent .extra-nav>ul>li>a {
    color: #222;
  }

  .header .extra-nav>ul>li>a:hover,
  .header.header-small .extra-nav>ul>li>a:hover,
  .header.header-transparent .extra-nav>ul>li>a:hover {
    color: rgba(34, 34, 34, 0.65);
  }

  .inner-navigation {
    background: #222;
    text-align: left !important;
    max-height: 340px;
    height: auto;
    top: 100%;
    right: 0;
    left: 0;
  }

  .inner-navigation.show {
    overflow-y: auto;
  }

  .inner-navigation.collapse {
    display: none;
  }

  .inner-navigation.collapse.show {
    display: block;
  }

  .inner-navigation.collapsing {
    height: 0;
    transition: height 0.35s ease;
  }

  .inner-nav {
    display: block;
    padding: 20px 0;
  }

  .inner-nav>ul {
    height: auto;
  }

  .inner-nav>ul>li {
    float: none;
  }

  .inner-nav>ul>li>a {
    padding: 10px 0;
  }

  .inner-nav>ul>li>a>.menu-item-span {
    transform: translateY(0);
    top: 0;
  }
}

.inner-nav .sub-menu,
.inner-nav .mega-menu {
  position: absolute;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 14px 32px 4px rgba(0, 0, 0, 0.1);
  min-width: 180px;
  left: 10px;
  margin-top: 5px;
  visibility: hidden;
  text-align: left;
  padding: 15px 0;
  opacity: 0;
}

.inner-nav .sub-menu:not(.mega-menu-row) {
  list-style: none;
}

.inner-nav .sub-menu:not(.mega-menu-row) li {
  position: relative;
  padding: 0;
  margin: 0;
}

.inner-nav .mega-menu {
  white-space: nowrap;
  padding: 0;
}

.inner-nav .mega-menu .sub-menu {
  position: relative;
  background: transparent;
  box-shadow: none;
  padding: 0;
  left: 0;
}

.inner-nav .mega-menu .sub-menu .sub-menu {
  left: auto;
}

.inner-nav .mega-menu .sub-menu .mega-menu-col {
  display: inline-block;
  vertical-align: top;
  padding: 0 10px;
}

.inner-nav .mega-menu .sub-menu .mega-menu-col .sub-menu {
  min-width: 180px;
}

.inner-nav .mega-menu .sub-menu .mega-menu-col+.mega-menu-col {
  padding-left: 0;
}

.inner-nav .mega-menu .sub-menu .mega-menu-col>a {
  pointer-events: none;
  cursor: default;
}

.inner-nav .mega-menu .mega-menu-row {
  background-position: right bottom;
  background-repeat: no-repeat;
  padding: 30px 20px;
}

.inner-nav .sub-menu li>a {
  position: relative;
  padding: 8px 20px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.0625rem;
  font-weight: 900;
  font-size: 0.75rem;
  color: #666;
}

.inner-nav .sub-menu.mega-menu-row li>a {
  padding-right: 0;
  padding-left: 0;
}

.inner-nav .sub-menu li>a:hover,
.inner-nav .sub-menu li.sub-menu-open,
.inner-nav .sub-menu li.sub-menu-open>a {
  color: rgba(157, 157, 157, 0.65);
}

.inner-nav .mega-menu .sub-menu .mega-menu-col>a {
  font-weight: bold;
  color: #000;
  font-size: 14px;
}

.inner-nav>ul li.menu-item-has-children .sub-menu,
.inner-nav>ul li.menu-item-has-children .mega-menu {
  transform: translateY(5px);
  transition: opacity 0.3s 0.1s, transform 0.3s 0.1s, visibility 0.3s 0.1s;
}

.inner-nav .sub-menu-open>.sub-menu,
.inner-nav .sub-menu-open>.mega-menu,
.inner-nav .sub-menu-open>.mega-menu .sub-menu {
  visibility: visible;
  opacity: 1;
}

.inner-nav>ul li.menu-item-has-children .mega-menu .sub-menu {
  transform: translateY(0);
  margin: 0;
}

.header+.wrapper .module:first-child {
  padding-top: 194px;
}

.header+.wrapper section.maps-container:first-child {
  padding-top: 74px;
}

.module,
.module-cover {
  background-position: 50%;
  background-repeat: no-repeat;
  background-color: #f5f5f5;
  background-size: cover;
  padding: 100px 0;
}

.parallax {
  background-color: transparent;
}

.parallax .container,
.parallax .container-fluid {
  position: relative;
  z-index: 2;
}

.overlay-background {
  background: #333;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

.module-page-title {
  padding-top: 119px;
  padding-bottom: 45px;
}

.module-page-title .page-title-desc>*:last-child {
  margin-bottom: 0;
}

.module-page-title .page-title-heading {
  font-weight: 500;
  font-size: 1.125rem;
  margin-bottom: 2px;
}

@media (max-width: 991.98px) {
  .module-page-title {
    padding-top: 45px;
    padding-bottom: 45px;
  }
}

.module-cover {
  padding: 240px 0 240px;
}

.module-cover .container {
  position: relative;
  z-index: 1;
}

.module-cover h1,
.module-cover-slides h1 {
  font-weight: 600;
  font-size: 4rem;
}

.module-cover .btn,
.module-cover-slides .btn {
  margin: 2px 10px 2px 0;
}

.fullscreen,
.module-cover-slides {
  padding: 0;
  height: 100vh;
}

.fullscreen .container,
.fullscreen .container>.row,
.module-cover-slides .container,
.module-cover-slides .container>.row {
  height: 100%;
}

.fullscreen .container>.row,
.module-cover-slides .container>.row {
  align-items: center;
}

@media (max-width: 1200px) {

  .module-cover,
  .module-cover-slides {
    min-height: auto;
    padding: 120px 0 120px;
  }

  .module-cover h1,
  .module-cover-slides h1 {
    font-size: 3rem;
  }
}

@media (max-width: 993px) {

  .module-cover h1,
  .module-cover-slides h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 767.98px) {

  .module-cover,
  .module-cover-slides {
    font-size: 0.875rem;
  }

  .module-cover h1,
  .module-cover-slides h1 {
    font-size: 2rem;
  }

  .module-cover h6,
  .module-cover-slides h6 {
    font-size: 0.875rem;
  }
}

.parallax:not(.bg-light) {
  color: #fff;
}

.parallax:not(.bg-light) h1,
.parallax:not(.bg-light) .h1,
.parallax:not(.bg-light) h2,
.parallax:not(.bg-light) .h2,
.parallax:not(.bg-light) h3,
.parallax:not(.bg-light) .h3,
.parallax:not(.bg-light) h4,
.parallax:not(.bg-light) .h4,
.parallax:not(.bg-light) h5,
.parallax:not(.bg-light) .h5,
.parallax:not(.bg-light) h6,
.parallax:not(.bg-light) .h6,
.parallax:not(.bg-light) .blockquote-footer,
.parallax:not(.bg-light) .counter .counter-icon {
  color: #fff;
}