/*
Date: 2021-04-07
Template: PeriavaTptV001042021
Author: Periava, Lda.
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  background: #FAFAFA;
}

a {
  color: #0000ff;
  text-decoration: none;
}

a:hover {
  color: #0000ff;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Raleway", sans-serif;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 995;
  background: #0000ff;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #EEEEEE;
  line-height: 0;
}

.back-to-top:hover {
  background: #151515;
  color: #EEEEEE;
}

.back-to-top:hover i {
  color: #EEEEEE;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #0000ff;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Div block to accept cookies
--------------------------------------------------------------*/
#cookie-block {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 996;
  background: rgb(161, 161, 161, 0.9);
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;

  /*background: rgba(161, 161, 161, 0.7);*/

  background: rgb(161, 161, 161);
}

#header.header-scrolled, #header.header-inner-pages {
  /*background: rgba(0, 0, 0, 0.3);*/
  background: rgb(161, 161, 161);
  /*background: rgba(0, 0, 0, 0.3);*/
}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo a span {
  color: #0000ff;
}

#header .logo img {
  max-height: 40px;
}


/*-------------------------------------------------------------
# Disable Logo on mobile devices
-------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  #header .logo .img-icon {
    display: none;
    /*Visibility: hidden;*/
  }
}


/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
  text-shadow: 1px 1px 15px #000;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 20px;
  font-size: 16px;
  font-weight: 800;
  color: #0000ff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 16px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #fff;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #EEEEEE;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #0000ff;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 14px;
  font-weight: 400;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  background-color: #fff;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #0000ff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #151515;
  background-color: #fff;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
  color: #151515;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  background-color: #fff;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Per Section
--------------------------------------------------------------*/
#per {
  width: 100%;
  height: 100vh;
  
  position: relative;
}

#per:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#per .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
  
}

.carousel-item .img1 {

  background-color: #111;
  opacity: 0.7;

}


.carousel-item .img2 {

  background-color: #111;
  opacity: 1;

}

/*----------Carousel-------------*/
.carousel-control-prev-icon {  
  /*background-image:"data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$carousel-control-color}'><path d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/></svg>";*/
  background-image: url("assets/img/chevron-left-solid.svg");
}
.carousel-control-next-icon {      
  /*background-image: "data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$carousel-control-color}'><path d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/></svg>";*/
  background-image: url("assets/img/chevron-right-solid.svg");
}

#per .carousel-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  position: relative;
  height: 70vh;
  padding-top: 60px;
  

}


#carouselMultiItemPortefolio .carousel-control-prev .carousel-control-prev-icon {
  display : block;  
  background-image: "data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$carousel-control-color}'><path d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/></svg>";
  background-image: url("assets/img/chevron-left-solid.svg");
}
#carouselMultiItemPortefolio .carousel-control-next .carousel-control-next-icon {  
  display : block;    
  background-image: "data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='#{$carousel-control-color}'><path d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/></svg>";
  background-image: url("assets/img/chevron-right-solid.svg");
}

#carouselMultiItemPortefolio .carousel-control-next-icon, #carouselMultiItemPortefolio .carousel-control-prev-icon {
  background: none;
  font-size: 60px;
  line-height: 1;
  width: auto;
  height: auto;
  text-shadow: 1px 1px 15px #000;
}

#carouselMultiItemPortefolio .carousel-control-prev, #carouselMultiItemPortefolio .carousel-control-next {
  width: 20%;
}

#carouselMultiItemPortefolio .carousel-indicators { 
  top: 75%;
}

.carousel-caption {
  position: absolute;
  top: 50%;
  transform: translateY(-10%);
}

.carousel-caption h1 
{
  display: block;
  font-size: 200%;
  font-weight: 150;
  text-transform: uppercase;
  text-shadow: 3px 3px 6px #000;
  -webkit-text-stroke: 1px #333;
}

.gray {
  color: #555;
}

.carousel-caption h3 {
 font-size: 150%;
 font-weight: 100;
 text-transform: uppercase;
 text-shadow: 1px 1px 15px #000;
}

.black{
  color: #222;
}

.blue{
  color :#0000ff;
  font-weight: bold;
}

.margem {
  margin-top: 2em; 
}

/*---Firefox Bug Fix --*/
.carousel-item {
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
}

/*
#per h2 {
  color: #fff;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
}

#per p {
  width: 80%;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
  margin: 0 auto 30px auto;
  color: #fff;
}
*/

#per .carousel-control-prev, #per .carousel-control-next {
  width: 20%;
}

#per .carousel-control-next-icon, #per .carousel-control-prev-icon {
  background: none;
  font-size: 60px;
  line-height: 1;
  width: auto;
  height: auto;
  text-shadow: 1px 1px 15px #000;
}

#per .carousel-indicators {
  top: 75%;
  /*transform: translateY(-10%);*/
}
/*----------Carousel-------------*/

#per h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  /*color: #FFF;*/
  font-family: "Poppins", sans-serif;
}



#per h1 span {
  color: #0000ff;
}

#per h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

#per .icon-box {
  padding: 30px 20px;
  transition: ease-in-out 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  height: 100%;
  text-align: center;
}

#per .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #0000ff;
}

#per .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}

#per .icon-box h3 a {
  color: #fff;
  transition: ease-in-out 0.3s;
}

#per .icon-box h3 a:hover {
  color: #0000ff;
}

#per .icon-box:hover {
  border-color: #0000ff;
}

@media (min-width: 1024px) {
  #per {
    
    background-attachment: fixed;
  }
}
@media (max-width: 1024px) {
  #per h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #per h2 {
    font-size: 28px;
    line-height: 24px;
  }

  #per .carousel-control-prev, #per .carousel-control-next {
    width: 40%;
  }


}

@media (max-width: 768px) {

  #per {
    background-attachment: fixed;
  }
  /*
  #per {
    height: auto;
  }
  */
  #per h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #per h2 {
    font-size: 20px;
    line-height: 24px;
  }

  #per .carousel-control-prev, #per .carousel-control-next {
    width: 50%;
  }

  /*#per h1 span::before {
    content: "\A";
    white-space: pre;
  }*/

  .carousel-caption h1 
  {
    display: block;
    font-size: 100%;
    font-weight: 150;
    text-transform: uppercase;
    text-shadow: 2px 2px 15px #000;
  }

  
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-title {
  padding-bottom: 40px;
}

.section-title h2 {
  font-size: 24px;
  font-weight: 800;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #0000ff;
  font-family: "Poppins", sans-serif;
}


/*
.section-title h2::after {
  content: "";
  width: 200px;
  height: 1px;
  display: inline-block;
  background: #0000ff;
  margin: 4px 10px;
}
*/
hr {
  width: 100%;
  height: 1px;
  background: #0000ff;
  margin-left: 0%;
  margin-right: 5%;
  margin-top: 1rem;
}


.section-title p {
  margin: 0;
  margin: 0;
  /*font-size: 36px;*/
  font-size: 24px;
  font-weight: 100;
  /*text-transform: uppercase;*/
  font-family: "Poppins", sans-serif;
  color: #151515;

}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 28px;
  font-family: "Poppins", sans-serif;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding: 0 0 8px 26px;
  position: relative;
}

.about .content ul i {
  position: absolute;
  font-size: 20px;
  left: 0;
  top: -3px;
  color: #0000ff;
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .row {

  text-align: justify;
  text-justify: auto;

}

/*--------------------------------------------------------------
# Clients
--------------------------------------------------------------*/

.clients {
  padding: 60px 0;
  overflow: hidden;
}

.clients .swiper-slide img {
  opacity: 0.5;
  transition: 0.3s;
  size: 40%;
  filter: grayscale(100);
}

.clients .swiper-slide img:hover {
  filter: none;
  opacity: 1;
}

.clients .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.clients .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  background-color: #ddd;
}

.clients .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #0000ff;
}

.clients .img-clients {
  width: 50%;
  margin: 20px;

}


/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {

  background-color: #DDD;
}

.services .icon-box {
  text-align: center;
  border: 1px solid #ebebeb;
  padding: 80px 5px;
  transition: all ease-in-out 0.3s;
  background: #FFF;
  width: 80%;
  border-radius: 8px;
  box-shadow: 0px 0px 20px 10px rgba(127, 137, 161, 0.25);
}

.services .icon-box .icon {
  margin: 0 auto;
  width: 64px;
  height: 64px;
  background: #0000ff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: 0.3s;
  color: #DDDDDD;
}

.services .icon-box .icon i {
  color: #151515;
  font-size: 28px;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  text-transform: uppercase;
}

.services .icon-box h4 a {
  color: #151515;
  transition: ease-in-out 0.3s;
}

.services .icon-box h4 a:hover {
  color: #0000ff;
}

.services .icon-box p {
  line-height: 24px;
  font-size: 18px;
  margin-bottom: 0;
}

.services .icon-box:hover {
  border-color: #fff;
  box-shadow: 0px 0 25px 0 rgba(0, 0, 0, 0.1);
  transform: translateY(-10px);
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/slide/work1.jfif") fixed center center;
  background-size: cover;
  padding: 60px 0;
  height: 300px;
}

.cta h3 {
  color: #CCC;
  font-style: italic;
  font-size: 20px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.map-container{
  overflow:hidden;
  /*padding-bottom:56.25%;*/
  position:relative;
  height:0;
  padding-bottom: 2rem; 
}
.map-container iframe{
  left:0;
  top:0;
  height:100%;
  width:100%;
  position:absolute;
  border-radius: 10px;
   
}


.contact .info {
  width: 100%;
  background: #fff;
}

.contact .info .tele i {
  width: 100%;
  background: #fff;
  font-style: italic;
  font-size: small;
}

.contact .info .number i {
  font-size: 20px;
  background: #ffc451;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
}

.contact .info h4 {
  padding: 0 0 0 60px;
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #151515;
}

.contact .info p {
  padding: 0 0 0 10px;
  margin-bottom: 0;
  font-weight: 400;
  font-size: 14px;
  color: #484848;
}

.contact .info .email, .contact .info .phone, .contact .info .fax, .contact .info .address {
  margin-top: 1em;
  margin-right: 1em;
  font-size: 16px;
  font-weight: 400;
  color :#0000ff;
}



@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Info
--------------------------------------------------------------*/
#info
{
  background: #c3c3c3;
  padding: 2em;
  color: #333;
  font-size: 16px;

}

#info .row p img {

  max-width: 250px;

  border: 0px dotted #999999;

}

@media screen and (max-width: 768px) {
  
  #info .row p img {
    max-width: 150px;
    
  }


}

#info p 
{
  font-size: 16px;
  font-weight: 300;
  /*text-transform: uppercase;*/
  /*font-family: "Poppins", sans-serif;*/
  color: #151515;
}

#info .section-title h2::after {
  
  line-height: 40px;
  content: "\a";
  white-space: pre;
}

#info .row p img {
  max-height: 200px;
  margin-left: 0px;
  margin-right: 0px;
}




/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #222;
  padding: 20px 0 30px 0;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}

#footer .footer-top .footer-info p {
  font-size: 12px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #fff;
}

#footer .i-facebook {
  
  margin-right: 50px;
  color: #dddddd;
}

#footer .logo {
  max-height: 50px;
}

/*---------------------------------------------------------------
# Candidaturas
---------------------------------------------------------------*/
#candidatura {

  /*margin-top: 5em;*/
  background-color: #eee;
}

#candidatura .space {

  /*margin-top: 5em;*/
  height: 5em;
}

#form {
  padding: 1em;

}

#form .form-group
{
  margin-top: 20px;

}

#form h5 {
  font-weight: bold ;
  margin-top: 20px;
}

#form .btn {

  margin-top: 20px;
  
}

#form .form-group .custom-file {
  padding: 5px;
  border: 1px solid #CCC;
  margin: 3px;
  background-color: #fff;
}

#form .form-group .obs-input {
  padding: 5px;
  width: 100%;
  margin: 3px;
  border: 1px solid #CCC;
}

#form .data_nasc {
  position: relative;
}

#form .form-group .input-group-addon{
  position: absolute;
  right: 15px;
  top: 5px;
  color: gray;
}

/*--------------------------------------------------------------
# Preloader Candidatura
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
/*
#preloader-cand {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #151515;
}

#preloader-cand:before {
  content: "";
  position: fixed;
  top: calc(50% - 0px);
  left: calc(50% - 30px);
  border: 6px solid #0000ff;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader-cand 1s linear infinite;
  animation: animate-preloader-cand 1s linear infinite;
}
*/

#form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #0000ff;
  border-top-color: #eee;
  -webkit-animation: animate-loading-cand 1s linear infinite;
  animation: animate-loading-cand 1s linear infinite;
}


@-webkit-keyframes animate-loading-cand {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading-cand {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*---------------------------------------------------------------
# Cookie Banner
---------------------------------------------------------------*/

.cookie-banner {
  z-index: 997;
  position: fixed;
  bottom: 0px;
  left: 0%;
  right: 0%;
  width: 100%;
  padding: 5px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #333;
  color:#FFF;
  font-size: small;
  border-radius: 0px;
  box-shadow: 0 0 2px 1px rgba(0, 0, 0, 0.2);
  min-height: 90%;
}
.cookie-banner p {
  text-align: center;
  color : #FFF;
  padding : 2%;
}


.toggle-off.btn {  
  background-color: #FFF;
  color: #666;
}

.toggle-on.btn {  
  background-color: #000;
  color: #fff;
}

.cookie-banner .close {
  height: 20px;
  background-color: #111;
  border: none;
  color: white;
  border-radius: 2px;
  cursor: pointer;  
}

#cookie-banner .btn {
  margin: 3px;
  background-color: #000;
  
}

#cookie-banner hr {
  width: 100%;
  color: #fff;
  background: #fff;
  margin-left: 0%;
  margin-right: 5%;
  margin-top: 1rem;
}

a#btn-privacidade.link-politica:link {
  color: white;
  text-decoration: underline;

}

a#btn-privacidade.link-politica:visited {
  color: white;
  text-decoration: underline;

}

a#btn-privacidade.link-politica:active {
  color: white;
  text-decoration: underline;

}

a#btn-privacidade.link-politica:hover {
  color: white;
  text-decoration: none;

}

a#btn-direitos.link-privacidade:link {
  color: white;
  text-decoration: underline;
}

a#btn-direitos.link-privacidade:visited {
  color: white;
  text-decoration: underline;
}

a#btn-direitos.link-privacidade:active {
  color: white;
  text-decoration: underline;
}

a#btn-direitos.link-privacidade:hover {
  color: white;
  text-decoration: none;
}


a#btn-privacidade-2.link-politica:link {
  color: white;
  text-decoration: underline;

}

a#btn-privacidade-2.link-politica:visited {
  color: white;
  text-decoration: underline;

}

a#btn-privacidade-2.link-politica:active {
  color: white;
  text-decoration: underline;

}

a#btn-privacidade-2.link-politica:hover {
  color: white;
  text-decoration: none;

}

a#btn-direitos-2.link-privacidade:link {
  color: white;
  text-decoration: underline;
}

a#btn-direitos-2.link-privacidade:visited {
  color: white;
  text-decoration: underline;
}

a#btn-direitos-2.link-privacidade:active {
  color: white;
  text-decoration: underline;
}

a#btn-direitos-2.link-privacidade:hover {
  color: white;
  text-decoration: none;
}

a#btn-qualidade-2.link-qualidade:link {
  color: white;
  text-decoration: underline;
}

a#btn-qualidade-2.link-qualidade:visited {
  color: white;
  text-decoration: underline;
}

a#btn-qualidade-2.link-qualidade:active {
  color: white;
  text-decoration: underline;
}

a#btn-qualidade-2.link-qualidade:hover {
  color: white;
  text-decoration: none;
}

a#id-btn-cookies-aceitar {

  width: 100%;
  height:auto;
  display:inline-block;
}

a#id-btn-cookies-rejeitar {

  width: 100%;
  height:auto;
  display:inline-block;
}

#PolitPtivModal {
  font-family: "Times New Roman", Times, serif;

}

#PolitPrivModal h4 {
  font-weight: 600;
  text-align: center;
  

}

#PolitPrivModal h5,h6 {
  font-weight: 800;
  text-align: center;

}

#PolitPrivModal p {
  size: 12px;
  text-align: justify;
  text-justify: auto;
}

#PolitPrivModal .small{
  size: 8px;
  font-style: italic;
}

#PolitPrivModal .li2{
    padding: 0;
    list-style-type: none;
}  

#PolitPrivModal .space {
  height: 50px;

}


