html {
  margin: 1rem;
  margin-top: 0;
}

body {
  font-size: 10pt;
  line-height: 18pt;
  background-color: #fff;
  color: #4A4A4A;
  font-family: "Montserrat", sans-serif;
}

@media (min-width: 1920px) {
  body {
    max-width: 1688px;
    margin: auto;
    font-size: 1.2em;
    line-height: 1.8em
  }

  header#header {
    max-width: 1688px;
    margin: auto;
  }
}

a {
  color: #fff;
  transition: 0.5s;
}

a:hover, a:active, a:focus {
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}

p {
  text-align: justify;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  margin: 0 0 20px 0;
  padding: 0;
  color: #B61F24;
}

h1 {
  font-size: 1.7rem;
}

h3 {
  font-size: 1.3rem;
}

h5 {
  font-size: 1rem;
}

/* Back to top button */
.back-to-top {
  position: fixed;
  display: none;
  background: #fff;
  display: inline-block;
  width: 44px;
  height: 44px;
  text-align: center;
  line-height: 1;
  font-size: 16px;
  right: 45px;
  bottom: 45px;
  transition: background 0.5s;
  z-index: 11;
  border: 1px solid #B61F24;
}

.back-to-top i {
  padding-top: 10px;
  color: #B61F24;
}

@media (max-width: 767px) {
  .back-to-top {
    bottom: 15px;
  }
}

ol.breadcrumb {
  background-color: transparent;
  padding: .75rem 0;
}

ol.breadcrumb li,
ol.breadcrumb li a {
  font-style: italic;
  color: #EB553B;
}

ol.breadcrumb.active li,
ol.breadcrumb.active li a {
  color: #9B9B9B;
}

/* Material Icon
--------------------------------*/
.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;  /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';
}

.material-icons.md-18 { font-size: 18px; }
.material-icons.md-24 { font-size: 24px; }
.material-icons.md-36 { font-size: 36px; }
.material-icons.md-48 { font-size: 48px; }

/* Rules for using icons as black on a light background. */
.material-icons.md-dark { color: rgba(0, 0, 0, 0.54); }
.material-icons.md-dark.md-inactive { color: rgba(0, 0, 0, 0.26); }

/* Rules for using icons as white on a dark background. */
.material-icons.md-light { color: rgba(255, 255, 255, 1); }
.material-icons.md-light.md-inactive { color: rgba(255, 255, 255, 0.3); }

/* Loader
--------------------------------*/
.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: #B61F24;
  z-index: 9999;
  width: 100vw;
  height: 25vh;
  opacity: .9;
  transform: translate(-50%, -55%);
}

.loader img {
  position: absolute;
  width: 100px;
  height: 100px;
  top:calc(50% - 60px);
  left: calc(50% - 50px);
}

.loader p {
  position: absolute;
  color: white;
  width: 100%;
  text-align: center;
  top: 55%;
  font-style: italic;
  letter-spacing: .2rem;
}

/* Sections Header
--------------------------------*/
section {
  padding: 60px 0 30px 0;
}

.section-header {
  position: relative;
  left: 50px;
}

.section-header::before {
  content: '';
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  background: #B61F24;
  bottom: calc(50% - 15px);
  left: -50px;
}

@media (max-width: 768px) {
  .section-header {
    font-size: 1.3rem;
    left: 30px;
  } 

  .section-header::before {
    width: 15px;
    height: 15px;
    bottom: calc(50% - 7.5px);
    left: -30px;
  }

  section {
    padding: 30px 0 0 0;
  }
}

@media (max-width: 576px) {
  section {
    padding: 40px 0 0 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Nav Menu Essentials */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu ul {
  position: absolute;
  display: none;
  top: 100%;
  left: 0;
  z-index: 99;
}

.nav-menu li {
  position: relative;
  white-space: nowrap;
  padding: 18px 10px;
}

.nav-menu > li {
  float: left;
}

.nav-menu li.call-cont {
  background-color: #EB553B;  
  color: #fff;
  padding: 10px 20px;
  font-size: 0.8rem;
  border-radius: 25px;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
  display: block;
}

.nav-menu ul ul {
  top: 0;
  left: 100%;
}

.nav-menu ul li {
  min-width: 180px;
}

/* Nav Menu Arrows */
.sf-arrows .sf-with-ul {
  padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 15px;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
  content: "\f105";
}

/* Nav Meu Container */
#nav-menu-container {
  float: right;
  margin: 0;
}

@media (max-width: 767px) {
  #nav-menu-container {
    display: none;
  }
}

/* Nav Meu Styling */
.nav-menu a {
  padding: 0 8px 10px 8px;
  text-decoration: none;
  display: inline-block;
  color: #2e2e2e;
  font-family: "Montserrat", sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  outline: none;
}

.nav-menu li:hover > a, .nav-menu > .menu-active > a {
  color: #4A4A4A;
  font-weight: 700;
  position: relative;
}

.nav-menu > .menu-active > a::before {
  content: '';
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  background: #B61F24;
  bottom: 18px;
  left: -18px;
}

.nav-menu > li {
  margin-left: 10px;
}

.nav-menu > li a {
  font-size: .8rem;
  font-weight: 500;
}

.nav-menu ul {
  margin: 4px 0 0 0;
  padding: 10px;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  background: #fff;
}

.nav-menu ul li {
  transition: 0.3s;
}

.nav-menu ul li a {
  padding: 10px;
  color: #333;
  transition: 0.3s;
  display: block;
  font-size: 1rem;
  text-transform: none;
}

.nav-menu ul li:hover > a {
  color: #E30717;
}

.nav-menu ul ul {
  margin: 0;
}

.img-flag {
  vertical-align: baseline;
}

/* Mobile Nav Toggle */
#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 35px 35px 0 0;
  border: 0;
  background: none;
  font-size: 24px;
  color: #B61F24;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

#mobile-nav-toggle.sticky {
  margin: 20px 35px 0 0;
}

#mobile-nav-flag {
  position: fixed;
  right: 1.5rem;
  top: 19px;
  z-index: 998;
  display: none;
  transition: all 0.4s;
  cursor: pointer;
  color: white;
  background-color: #EB553B;
  padding: 5px 10px;
}

#mobile-nav-flag a,
#mobile-nav-flag a:hover,
#mobile-nav-flag a:active {
  color: white !important;
}


#mobile-nav-flag i {
  margin-top: 3px;
}

#mobile-nav-flag img.img-flag {
  margin-right: 0;
}


#mobile-nav-toggle i {
  color: #383838;
}

@media (max-width: 767px) {
  #mobile-nav-toggle,
  #mobile-nav-flag {
    display: inline;
  }
}

/* Mobile Nav Styling */
#mobile-nav {
  position: fixed;
  top: 72px;
  bottom: 0;
  z-index: 998;
  background: white;
  left: -100%;
  width: 100%;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  margin-left: 15px;
  padding-top: 15px;
  list-style: none;
}

#mobile-nav ul li {
  position: relative;
}

#mobile-nav ul li:first-child {
  border-top: 1px solid #B61F24;
}

#mobile-nav ul li a {
  color: #383838;
  font-size: 1rem;
  text-transform: uppercase;
  overflow: hidden;
  padding: 18px 22px 18px 70px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

#mobile-nav ul li a::before {
  content: '';
  position: absolute;
  display: block;
  width: 10px;
  height: 10px;
  background: #B61F24;
  bottom: 23px;
  left: 35px;
}

#mobile-nav ul li a:hover {
  color: #B61F24;
}

#mobile-nav ul li li {
  padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
  position: absolute;
  right: 0;
  z-index: 99;
  padding: 15px;
  cursor: pointer;
  color: #383838;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
  color: #E30717;
}

#mobile-nav ul .menu-has-children li a {
  text-transform: none;
}

#mobile-nav ul .menu-item-active {
  color: #E30717;
}

/* Mobile Nav body classes */
body.mobile-nav-active {
  overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
  left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
  color: #fff;
}

@media (max-width: 767px) {
  #mobile-nav ul li a {
    font-weight: 400;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  padding: 20px;
  height: 100px;
  transition: all 0.5s;
  z-index: 997;
  color: #2e2e2e;
}

#header div {
  padding-left: 0;
  padding-right: 0;
}

#header.sticky {
  background-color: white;
  position: fixed;
  top:0;
  right: 0;
  left: 0;
  padding-left: 2rem;
  padding-right: 2rem;
  transition: all 0.5s;
  -webkit-box-shadow: 0px 10px 5px -1px rgba(138,138,138,0.15);
  -moz-box-shadow: 0px 10px 5px -1px rgba(138,138,138,0.15);
  box-shadow: 0px 10px 5px -1px rgba(138,138,138,0.15);
}

#header #logo {
  float: left;
}

#header #logo img {
  padding: 0;
  margin: 0;
  max-height: 80px;
  margin-top: -10px;
}

@media (max-width: 767px) {
  #header {
    padding-left: 0;
  }

  #header #logo {
    transform: translateX(20px);
  }

  #header.sticky {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  #header.sticky {
    height: 65px;
  }

  #header.sticky #logo img {
    max-width: 45px;
  }

  #header.sticky #logo {
    transform: translateX(36px);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  padding: 0 15px;
  margin-bottom: 1rem;
  color: #fff;
}

#footer {
  background-color: #B61F24;
  padding: 50px;
}

#footer hr {
  margin-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .5);
}

#footer #footer-logo {
  width: 150px;
  height: auto;
}

#footer #footer-text-container h2 {
  color: #fff;
}

#footer #footer-text-container p {
  line-height: 1.7rem;
}

#footer #copyright-text {
  margin-top: 20px;
  text-align: left;
}

@media (max-width: 768px) {
  #footer #footer-logo {
    width: 100px;
    margin-bottom: 50px;
  }

  #footer hr {
    border-top: 1px solid rgba(255, 255, 255, .5);
  }
}

@media (max-width: 576px) {
  #footer {
    padding: 30px;
  }
}