/*
* **********************************
* ################################## ESTILOS GERAIS
* **********************************
*/

/*
========================
======================== GLOBAL MASK
========================
*/

#global-mask {
  width: 100%;
  height: 100%;
  background-color: #271e41;
  position: fixed;
  top: 0;
  z-index: 15;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;
  transition: 0.4s;
}

#global-mask.active {
  display: table;

  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
  opacity: 0.9;
  visibility: visible;
}

/*
========================
======================== GLOBAL LOADING
========================
*/

#global-loading {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  opacity: 0;
  visibility: hidden;

  border: 5px solid #ffffff;
  border-radius: 30px;
  height: 30px;
  left: 50%;
  margin: -15px 0 0 -15px;
  position: fixed;
  top: 50%;
  width: 30px;
  z-index: 20;

  animation: pulsate 1s ease-out;
  animation-iteration-count: infinite;

  transition: 0.4s;
}

#global-loading.active {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
  filter: alpha(opacity=90);
  opacity: 0.9;
  visibility: visible;
}

@keyframes pulsate {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }

  50% {
    opacity: 1;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/*
========================
======================== HTML/BODY
========================
*/

html {
  font-size: 62.5%;
}

@media (max-width: 768px) {
  html {
    font-size: 50%;
  }
}

html,
body {
  height: 100vh;
  font-family: "Montserrat", sans-serif;
}

body {
  font-size: 1.6rem;
  color: #212729;
}

/*
========================
======================== HEADER
========================
*/

.header {
  position: relative;
  z-index: 9;
}

@media (max-width: 1024px) {
  .header {
    z-index: 99999;
  }
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 10px 0 20px 0;
}

.nav {
  display: flex;
  gap: 20px;
  width: 30%;
}

@media (max-width: 1170px) {
  .nav {
    display: none;
  }
}

.nav li a,
.nav li a {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  color: #f26544;
}

.nav li a:hover,
.nav li a:hover {
  color: #812a16;
}

.header-logo img {
  height: 110px;
}

@media (max-width: 980px) {
  .header-logo img {
    height: 70px;
  }
}

.header-social {
  display: flex;
  justify-content: flex-end;
  gap: 5px;
  width: 30%;
}

@media (max-width: 1170px) {
  .header-social {
    display: none;
  }
}

.header-social img {
  height: 32px;
  transition: 0.4s;
}

.header-social a:hover img {
  opacity: 0.5;
  transition: 0.4s;
}

.header-nav-mobile-modile {
  background-color: #f26544;
  width: 40px;
  height: 40px;
  color: #2e2e37;
  display: none;
  text-align: center;
  line-height: 40px;
  font-size: 1.8rem;
  cursor: pointer;
  transition: 0.4s;
  border-radius: 4px;
  position: absolute;
  right: 0;
  top: 0;
}

@media (min-width: 1024px) {
  .header-nav-mobile {
    display: none;
  }
}

/* MOBILE */
@media (max-width: 1024px) {
  .header-nav-mobile-modile {
    display: block;
  }

  .header-nav-mobile {
    display: block;
    width: 100%;
    text-align: right;
    position: absolute;
    right: 0;
    top: 50%;
    z-index: 10;
    margin-top: -20px;
  }

  .header-nav-mobile-ul {
    width: 100%;
    display: none;
    margin-top: 50px;
    border-radius: 6px;
    overflow: hidden;
  }

  .header-nav-mobile-item {
    display: block;
  }

  .header-nav-mobile-item a {
    display: block;
    background-color: #f26544;
    color: #2e2e37;
    font-size: 1.8rem;
    text-transform: uppercase;
    padding: 15px 20px;
    text-align: center;
    transition: 0.4s;
  }

  .header-nav-mobile-item a:hover {
    background-color: #947636;
  }

  .header-nav-mobile-arrow {
    margin-left: 10px;
    color: #27303d;
  }

  .header-nav-mobile-arrow:before {
    font-family: "Font Awesome 5 Pro";
    content: "\f107" !important;
  }

  .opened > a > .header-nav-mobile-arrow:before {
    content: "\f106" !important;
  }

  .header-nav-mobile-sub {
    display: none;
  }
}

/*
========================
======================== BG
========================
*/

.bg {
  /* background: #271e41 url("../../img/global/custom/bg-body.jpg") no-repeat; */
  background-size: cover;
  position: relative;
}

.bg-image-left {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.bg-image-right {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}

/*
========================
======================== FOOTER
========================
*/

.footer {
}

.footer .container {
  text-align: center;
}

.footer-logo {
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

.footer-logo img {
  display: inline-block;
}

.footer-txt {
  font-size: 16px;
  font-weight: 400;
}

.footer-txt strong {
  display: block;
}

.footer-coppy {
  border-top: 1px solid #2474c6;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.footer-coppy p {
  font-size: 1.4rem;
  font-weight: 300;
  color: #1f242b;
  display: block;
}

.footer-coppy a {
  margin-top: 5px;
}

/*
========================
======================== HTML CHARS
========================
*/

.htmlchars {
  width: 100%;
}

.htmlchars p {
  font-size: 1.6rem;
  line-height: 2rem;
  margin-bottom: 15px;
}

.htmlchars ul,
.htmlchars ol {
  margin: 15px;
}

.htmlchars a {
  color: #555;
}

.htmlchars a:hover {
  text-decoration: underline;
}

.htmlchars iframe {
  border: none;
}

/*
========================
======================== PAGINATION
========================
*/

.pagination-links {
  margin-top: 6rem;
  width: 100%;
  text-align: center;
}

.pagination-links li {
  display: inline-block;
  margin: 0 1px;
}

.pagination-links li a,
.pagination-links li p {
  display: block;
  padding: 10px 16px 10px 16px;
  font-size: 1.6rem;
  font-weight: 300;
  color: #ffffff;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 100px;
  transition: 0.4s;
}

.pagination-links li a:hover,
.pagination-links li.link-current p {
  background: #f26544;
  color: #2e2e37;
}

.pagination-links li.link-disabled p {
  color: #aaa;
}
