::selection{
  color: #000000;
  background-color: #fcce00;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: rgb(31, 30, 30);
}

::-webkit-scrollbar-thumb {
  background-color: #fcce00;
  border-radius: 8px;
}


body {
  font-family: "Saira";
  color: #444444;
}

a {
  
  text-decoration: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: "Saira";
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #000000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #fcce00;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 20px 0;
}
#header.header-scrolled {
  background: rgba(0, 0, 0, 0.59);
  border-radius: 16px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  
  -webkit-backdrop-filter: blur(4.9px);
  border: 1px solid rgba(0, 0, 0, 0.65);
  padding: 12px 0;
}

#header.header-scrolled a {
  color: rgb(189, 189, 189);
}
#header.header-scrolled a:hover {
  color: #f0e000;

}

#header .logo {
  font-size: 32px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
}
#header .logo a {
  color: #000000;
}
#header .logo img {
  max-height: 70px;
}

#header .social i{
  color: #424141;
  font-size: x-large;
  margin: 0 5px;
  
}

#header .social i:hover{
  color: #f0e000;
  font-size: x-large;
}

#header.header-scrolled i{
  color:#8f8e8e;
  
}



@media (max-width: 991px) {
  #header {
    padding: 12px 0;
  }
  #header .social{
    padding-right: 50px;
  }
}

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

.navbar ul {
  
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  
  font-size: 16px;
  font-weight: bold;
  color: #424141;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}
.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #f0e000;
}
.navbar .getstarted, .navbar .getstarted:focus {
  padding: 10px 25px;
  margin-left: 30px;
  border-radius: 4px;
  line-height: 1;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid #f0e000;
}
.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  background: #131312;
  color: #f0e000;
  border-color: #f0e000;
  ;
}
.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: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}
.navbar .dropdown ul li {
  min-width: 200px;
}
.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 15px;
  text-transform: none;
  font-weight: 600;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #fcce00;
}
.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: #5f687b;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}
.mobile-nav-toggle.bi-x {
  color: #fff;
}

@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(73, 80, 94, 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;
  border-radius: 10px;
  background-color: rgb(10, 10, 10);
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #5f687b;
}
.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #f0e000;
}
.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
  padding: 10px 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;
}
.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/

.main-image {
  position: relative;
  background: url(/assets/img/bk-espelho1.jpg) no-repeat center;
  background-size: cover;
  height: 550px;
  overflow: hidden;
}

#hero {
  width: 100%;
  height: 80vh;
  
  padding-top: 82px;
  
}
#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #3e4450;
}
#hero h2 {
  color: #858ea1;
  margin: 10px 0 30px 0;
  font-size: 24px;
}

@media (max-width: 991px) {
  #hero {
    height: 100vh;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}
@media (max-width: 768px) {
  #hero {
    height: auto;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}
@media (max-width: 575px) {
  #hero .hero-img img {
    width: 80%;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}
/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/


.flex-cards{
  display: flex;
  justify-content: space-between;
}

.card-section h2{
  color: #a5a3a3;
  text-align:center;
  margin-bottom: 50px;
  letter-spacing: 5px;
  transition: color .7s;
}

.card-section h2:hover{
  color: #f0e000
  
}

.card-section{
  background: rgb(46, 46, 46);
  background: linear-gradient(0deg, rgb(70, 68, 68) 19%, rgba(0,0,0,1) 96%);
  padding: 50px 0;
}

.card{
  width: 356px;
  background-color: #0c0c0c;
  padding: 38px;
  box-sizing: border-box; /*Faz com que o padding não some valor a dimensão*/
  border-radius: 5px;
  box-shadow: 3px 3px 10px rgb(248, 232, 3);
  
}

.card h3{
  color: #a5a3a3;
  font-size: 18px;
  line-height: 32px;
  font-weight: bold;
  text-align: center;
}

.card h4{
  font-size: 20px;
  font-weight: 400;
  text-align:center;
  color: #a5a3a3 ;
}

.card img{
  border-radius: 5px;
  margin-bottom: 17px;
}

.card .social img{
  align-items: center;
  width: 35px;
}






@media (max-width: 1200px){

  .card{
    width: 32%;
    padding: 15px;
    /*text-align: center;*/
  }
  
  .text-presentation h2, .card-section h2{
    font-size: 36px;
    line-height: 100%;
  }

  .text-presentation h2, .card-section h2{
    font-size: 28px;
  }

  .flex-cards{
    flex-direction: column;
    align-items: center;
  }

  


  .card{        
    width: 100%;
    max-width: 356px;
    padding: 38px;     
    margin-bottom: 30px;
  }

  .card:last-child{
    margin-bottom: 0;
  }

}

section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f9f9fa;
}

.section-title {
  text-align: center;
  padding: 30px 0;
  position: relative;
}
.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  color: #5f687b;
  position: relative;
  z-index: 2;
}
.section-title span {
  position: absolute;
  top: 30px;
  color: #f0f1f3;
  left: 0;
  right: 0;
  z-index: 1;
  font-weight: 700;
  font-size: 52px;
  text-transform: uppercase;
  line-height: 0;
}
.section-title p {
  margin-bottom: 0;
  position: relative;
  z-index: 2;
  font-size: 20px;
}
@media (max-width: 575px) {
  .section-title h2 {
    font-size: 28px;
    margin-bottom: 15px;
  }
  .section-title span {
    font-size: 38px;
  }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .content h3 {
  font-weight: 700;
  font-size: 40px;
  color: #5f687b;
  
}

.about .content p {
  margin-bottom: 10px;
  font-size: 20px;
  color: #000000;
}



.comment{
  text-align: center;
  padding: 20px 20px;
  background-color: #000000;
}


.comment span{
  display: block;
  font-size: 40px;
  
  color: #f0e000;
  margin: 18px 0;


}

.comment p{
  margin: 0;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-top: 0;
  
}
.counts .counters span {
  font-size: 48px;
  display:block ;
  color: #f0e000;
  font-weight: 700;
  
}
.counts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  font-weight: 600;
  
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/

.portfolio .social a {
  color: #444444;
  transition: 0.3s;
}
.portfolio .social a:hover {
  color: #fcce00;
}
.portfolio .social i {
  font-size: 25px;
  margin: 0 2px;
}

.portfolio .social img{
  align-items: center;
  width: 35px;
}


.portfolio #portfolio-flters {
  border-top: 3px solid #fcce00;
  padding: 0;
  margin: 0 auto 25px auto;
  list-style: none;
  text-align: center;
  border-radius: 50px;
}


.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #444444;
  transition: all 0.3s ease-in-out;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #fcce00;
}
.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}
.portfolio .portfolio-item {
  margin-bottom: 30px;
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  z-index: 3;
  transition: all ease-in-out 0.3s;
  background: rgba(255, 255, 255, 0.9);
  padding: 15px;
}
.portfolio .portfolio-item .portfolio-info h4 {
  font-size: 18px;
  color: #fff;
  font-weight: 600;
  color: #5f687b;
}
.portfolio .portfolio-item .portfolio-info p {
  color: #949cac;
  font-size: 14px;
  margin-bottom: 0;
}
.portfolio .portfolio-item .portfolio-info .preview-link, .portfolio .portfolio-item .portfolio-info .details-link {
  position: absolute;
  right: 40px;
  font-size: 24px;
  top: calc(50% - 18px);
  color: #206bfb;
  transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-info .preview-link:hover, .portfolio .portfolio-item .portfolio-info .details-link:hover {
  color: #fcce00;
}
.portfolio .portfolio-item .portfolio-info .details-link {
  right: 10px;
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  bottom: 20px;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background-image:url(/Component\ 1.jpg);
  background-size: 1080px ;
  padding: 10% 0;
  background-position: center;
  background-repeat: no-repeat;
  
}


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  padding: 30px 20px;
  
}
.team .member img {
  max-width: 70%;
  border-radius: 5px;
  margin-bottom: 17px;
  
  
}
.team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}
.team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}
.team .member p {
  padding-top: 10px;
  font-size: 14px;
  font-style: italic;
  color: #aaaaaa;
}
.team .member .social {
  margin-top: 15px;
}
.team .member .social a {
  color: #aaaaaa;
  transition: 0.3s;
}
.team .member .social a:hover {
  color: #fcce00;
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact{
  background-color: #000000;
}
.contact .info {
  width: 100%;
  border-radius: 50px;
  border-top: 3px solid #fcce00;
  border-bottom: 3px solid #fcce00;
  padding: 30px;
  background-color: #070707;
}

.contact .info img{
  border-radius: 10px;
}
.contact .info i {
  font-size: 20px;
  color: #fcce00;
  float: left;
  width: 44px;
  height: 44px;
  background: rgb(12, 12, 12);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  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: #5f687b;
}
.contact .info p {
  padding: 0 0 10px 60px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #949cac;
}
.contact .info .social-links {
  padding-left: 60px;
}
.contact .info .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #333;
  color: rgb(19, 18, 18);
  line-height: 1;
  padding: 8px 0;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  margin-right: 10px;
}
.contact .info .social-links a:hover {
  background: #fcce00;
  color: #fff;
}
.contact .info .email:hover i, .contact .info .linkedin:hover i, .contact .info .github:hover i {
  background: #fcce00;
  color: rgb(53, 8, 252);
}
.contact .card {
  
  width: 100%;
  border-radius: 50px;
  border-top: 3px solid #fcce00;
  border-bottom: 3px solid #fcce00;
  padding: 30px;
  background-color: #070707;
  box-shadow: none;
}
.contact .card .form-group {
  padding-bottom: 8px;
}
.contact .card .error-message {
  display: none;
  color: #fff;
  background: #fc0000;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}
.contact .card .error-message br + br {
  margin-top: 25px;
}
.contact .card .sent-message {
  display: none;
  color: #fff;
  background: #fcce00;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}
.contact .card .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}
.contact .card .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #fcce00;
  border-top-color: #fff;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}
.contact .card input, .contact .card textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
  border-radius: 4px;
}
.contact .card input:focus, .contact .card textarea:focus {
  border-color: #fcce00;
}
.contact .card input {
  height: 44px;
}
.contact .card textarea {
  padding: 10px 12px;
}
.contact .card button[type=submit] {
  font-weight: bold;
  background: #fcce00;
  border: 0;
  padding: 10px 24px;
  color: rgb(8, 8, 8);
  transition: 0.4s;
  border-radius: 4px;
}
.contact .card button[type=submit]:hover {
  background: #206bfb;
}
@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background-color: #fff;
  color: #5f687b;
  font-size: 14px;
  position: relative;
}
#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}

#footer .footer-top .social-links {
  margin-top: 30px;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #fff  ;
  color: #5f687b;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 4px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #050505;
  color: #fff;
  text-decoration: none;
}
#footer .footer-bottom {
  border-top: 1px solid #d9dce2;
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
#footer .copyright {
  float: left;
}
#footer .copyright a{
  color: #000000;
}

@media (max-width: 992px) {
  #footer .copyright, #footer .credits {
    float: none;
    -moz-text-align-last: center;
    text-align-last: center;
  }
}


