@font-face {
  font-family: 'Poppins';
 /*-webkit-font-smoothing: antialiased;*/
  src: url('../fonts/Poppins-Regular.ttf')
}

body {
  font-family: 'Poppins';
    -webkit-font-smoothing: antialiased;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.5);
    font-weight: 400;
    font-size: 1rem;
 }

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

a:hover,
a:active,
a:focus {
  color: #cd1013;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
  /*text-align: justify;*/
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 0 0 20px 0;
  padding: 0;
  color:#000;
}

/* Back to top button */

.back-to-top {
  position: fixed;
  display: none;
  background: #cd1013;
  color: #fff;
  padding: 6px 12px 9px 12px;
  font-size: 16px;
  border-radius: 2px;
  right: 15px;
  bottom: 15px;
  transition: background 0.5s;
}

.back-to-top:focus {
  background: #cd1013;
  color: #fff;
  outline: none;
}

.back-to-top:hover {
  background: #05016a;
  color: #fff;
}

/*--------------------------------------------------------------
# Top Bar
--------------------------------------------------------------*/

#topbar {
  background: #fff;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

#topbar .contact-info a {
  line-height: 1;
  color: #555;
}

#topbar .contact-info a:hover {
  color: #cd1013;
}

#topbar .contact-info i {
  color: #cd1013;
  padding: 4px;
}

#topbar .contact-info .fa-phone {
  padding-left: 20px;
  margin-left: 20px;
  border-left: 1px solid #e9e9e9;
}

#topbar .social-links a {
  color: #555;
  padding: 4px 12px;
  display: inline-block;
  line-height: 1px;
  border-left: 1px solid #e9e9e9;
}

#topbar .social-links a:hover {
  color: #cd1013;
}

#topbar .social-links a:first-child {
  border-left: 0;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  padding: 20px 0;
  height: 84px;
  transition: all 0.5s;
  z-index: 997;
  background: #fff;
  box-shadow: 0px 6px 9px 0px rgba(0, 0, 0, 0.06);
}

#header #logo h1 {
  font-size: 42px;
  margin: 0;
  padding: 0;
  line-height: 1;
  /*font-family: "Montserrat", sans-serif;*/
  font-weight: 700;
}

#header #logo h1 a {
  color: #05016a;
  line-height: 1;
  display: inline-block;
}

#header #logo h1 a span {
  color: #cd1013;
}

#header #logo img {
  padding: 0;
  margin-top: -20px;
}

.text-center {
  text-align: center!important;
}
/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/

#intro {
  width: 100%;
  height: 60vh;
  position: relative;
  background: url("../images/img1.jpg") no-repeat;
  background-size: cover;
}

#intro .intro-content {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

#intro .intro-content h2 {
  color: #05016a;
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 700;
}

#intro .intro-content h2 span {
  color: #cd1013;
  font-size:20px
  }

#intro .intro-content .btn-get-started,
#intro .intro-content .btn-projects {
  font-family: "Raleway", sans-serif;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 32px;
  border-radius: 2px;
  transition: 0.5s;
  margin: 10px;
  color: #fff;
}

#intro .intro-content .btn-get-started {
  background: #05016a;
  border: 2px solid #05016a;
}

#intro .intro-content .btn-get-started:hover {
  background: none;
  color: #05016a;
}

#intro .intro-content .btn-projects {
  background: #cd1013;
  border: 2px solid #cd1013;
}

#intro .intro-content .btn-projects:hover {
  background: none;
  color: #cd1013;
}

#intro #intro-carousel {
  z-index: 8;
}

#intro #intro-carousel::before {
  content: '';
 /* background-color: rgba(255, 255, 255, 0.7);*/
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 7;
}

#intro #intro-carousel .item {
  width: 100%;
  height: 60vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition-property: opacity;
}

/*--------------------------------------------------------------
# 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;
}

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

.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: 22px;
}

.sf-arrows .sf-with-ul:after {
  content: "\f107";
  position: absolute;
  right: 8px;
  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;
}

/* Nav Meu Styling */

.nav-menu a {
  padding: 10px 15px;
  text-decoration: none;
  display: inline-block;
  color: #27272f;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 14px;
  outline: none;
}

.nav-menu li:hover > a,
.nav-menu .menu-active > a,.menu-has-children > ul > li a {
  color: #cd1013;
}

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

.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: 13px;
  text-transform: none;
}

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

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

.valign-center {
  display: inline-flex !important;
  vertical-align: middle !important;
  align-items: center !important;
}

/* Mobile Nav Toggle */

#mobile-nav-toggle {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
  margin: 20px 20px 0 0;
  border: 0;
  background: none;
  font-size: 20px;
  display: none;
  transition: all 0.4s;
  outline: none;
  cursor: pointer;
}

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

/* Mobile Nav Styling */

#mobile-nav {
  position: fixed;
  top: 0;
  padding-top: 18px;
  bottom: 0;
  z-index: 998;
  background: rgba(52, 59, 64, 0.9);
  left: -260px;
  width: 260px;
  overflow-y: auto;
  transition: 0.4s;
}

#mobile-nav ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

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

#mobile-nav ul li a {
  color: #fff;
  font-size: 16px;
  overflow: hidden;
  padding: 10px 22px 10px 15px;
  position: relative;
  text-decoration: none;
  width: 100%;
  display: block;
  outline: none;
}

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

#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: #fff;
}

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

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

#mobile-body-overly {
  width: 100%;
  height: 100%;
  z-index: 997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(52, 59, 64, 0.9);
  display: none;
}

/* 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;}

/*Sections*/

/* Sections Header*/
.section-header {
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 2rem;
  /*color: #05016a;*/
  font-weight: 500;
  position: relative;
  padding-bottom: 20px;
}


.section-header h2::before {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 2px;
  background: #cd1013;
  bottom: 0;
  left: 0;
}

.section-header p {
  padding: 0;
  margin: 0;
}

.p-link, a.p-link {
  border: solid 1px rgba(0, 0, 0, 0.2);
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
 padding:5px 20px;
  border-radius: 2px;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
   display: inline-block;
  text-align: center;
 }
 .p-link:hover{background-color:#cd1013;color:#fff;border: solid 1px #cd1013}
 a svg:hover #arrow{fill:#fff;}


/* About Section*/
#about {padding:5rem 0;}
.bg-light {background-color: #f8f9fa!important;}
#about .about-img {overflow: hidden;}
#about .about-img img {margin-left: -15px;max-width: 100%;}
#about .content h2 {font-weight: 700;font-size:30px;}
#about .content h3{color:#555;font-weight:300;font-size:18px;line-height:26px;font-style:italic}
#about .content p{line-height:26px}#about .content p:last-child{margin-bottom:0}
#about .content i{font-size:20px;padding-right:4px;color:#cd1013}
#about .content ul{list-style:none;padding:0}#about .content ul li{padding-bottom:10px}

/* Products Section*/
#products {padding: 5rem 0;background-color:#fcfcfc;/*margin-top:10px;*/}
#products .box{padding:15px;margin-bottom:40px;box-shadow:10px 10px 15px rgba(73,78,92,.1);background:#fff;transition:.4s}
#products .box:hover{box-shadow:0 0 30px rgba(73,78,92,.15);transform:translateY(-10px);-webkit-transform:translateY(-10px);-moz-transform:translateY(-10px)}
#products .box .icon{float:left;padding-bottom:20px}
#products .box .icon i{color:#444;font-size:64px;transition:.5s;line-height:0;margin-top:34px}
#products .box .icon i:before {
background: #05016a;background: linear-gradient(45deg, #cd1013 0%, #a3ebd5 100%);background-clip: border-box;
-webkit-background-clip: text;-webkit-text-fill-color: transparent;}
#products .box h4 {margin-left: 100px;font-weight: 700;margin-bottom: 15px;font-size: 22px;}
#products .box h4 a {color: #444;}
#products .box p {font-size: 14px;margin-bottom: 0;line-height: 24px;text-align: justify;}
#products .table thead tr{background-color:#444;color:#fff; text-align: center;}
#products .table thead th{width: 33.3333%;}   

/* Contact Section*/
#contact {padding: 5rem 0;}#contact .contact-info {margin-bottom: 20px;text-align: center;}
#contact .contact-info i {font-size: 40px;display: inline-block;margin-bottom: 10px;color: #666;}
#contact .contact-info address,#contact .contact-info p {margin-bottom: 0;color: #000;}
#contact .contact-info h3 {font-size: 18px;margin-bottom: 15px;font-weight: bold;text-transform: uppercase;color: #999;}
#contact .contact-info a {color: #000;}#contact .contact-info a:hover {color: #cd1013;}
#contact .contact-address,#contact .contact-phone,#contact .contact-email {margin-bottom: 20px;}
#contact #google-map {height: 290px;margin-bottom: 20px;}


/* Testimonials Section
--------------------------------*/

.cta-100 {
   padding-left: 8%;
 /* padding-top: 7%;
  margin-bottom:100px*/
}

.mt{float: left;margin-top: -20px;padding-top: 20px;}
.bg-blue-ui {
  background-color: #ccc !important;
}
figure img{width:300px;}

.blog .carousel-indicators {
  left: 0;
  bottom: -50px;
 /* height: 50%;*/
}


/* The colour of the indicators */

.blog .carousel-indicators li {
  background: #ccc;
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.blog .carousel-indicators .active {
  background: #cd1013;
}




.item-carousel-blog-block {
  outline: medium none;
  padding: 15px;
}

.item-box-blog {
  border-bottom: 1px solid #dadada;
  text-align: center;
  z-index: 4;
  padding: 20px;
}

.item-box-blog-image {
  position: relative;
}

.item-box-blog-image figure img {
/*  width: 100%;
  height: auto;*/
}

.item-box-blog-date {
  position: absolute;
  z-index: 5;
  padding: 4px 20px;
  top: -20px;
  right: 8px;
  background-color: #41cb52;
}

.item-box-blog-date span {
  color: #fff;
  display: block;
  text-align: center;
  line-height: 1.2;
}


.item-box-blog-body {
  padding: 10px;
}

.item-heading-blog a h5 {
  margin: 0;
  line-height: 1;
  text-decoration:none;
  transition: color 0.3s;
}

.item-box-blog-data p {
  font-size: 13px;
}

.item-box-blog-data p i {
  font-size: 12px;
}

.btn.bg-blue-ui.white.read {
  cursor: pointer;
  padding: 4px 20px;
  float: left;
  margin-top: 10px;
}

.btn.bg-blue-ui.white.read:hover {
  box-shadow: 0px 5px 15px inset #05016a;
}
/*Footer*/
#footer{background:#cd1013;padding:0 0 30px 0;font-size:14px}
#footer .copyright{text-align:center;padding-top:30px;color:#fff}
#footer .credits{text-align:center;font-size:13px;color:#fff}#footer .credits a{color:#05016a}


@media (min-width: 768px) {
#contact .contact-address,#contact .contact-phone,#contact .contact-email {padding: 20px 0;}
#contact .contact-phone {border-left: 1px solid #ddd;border-right: 1px solid #ddd;}
}

@media (min-width: 769px) {
#call-to-action .cta-btn-container{display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;
display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;
-webkit-box-pack:end;-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end}
}

@media (max-width: 768px) {
.back-to-top {bottom: 15px;}#header{padding: 20px 0;height: 74px;}
#header #logo h1 {font-size: 34px;}#header #logo img {max-height: 40px;margin-top:0;}
#nav-menu-container {display: none;}#mobile-nav-toggle {display: inline;}
#about .about-img {height: auto;}#about .about-img img {margin-left: 0;padding-bottom: 30px;}
.border-right {border-right: 0px solid #dee2e6!important;}
#contact .contact-address,#contact .contact-phone,#contact .contact-email {padding-bottom:20px; border-bottom:1px dotted #ccc;}
#about p{text-align:justify!important}
#about,#products,#contact{padding: 3rem 0;}
.mob-center{text-align: center}
}

@media (max-width: 767px) {
  #intro .intro-content h2{font-size:34px}#products .box .box{margin-bottom:20px}
  #products .box .icon{float:none;text-align:center;padding-bottom:15px}
  #products .box h4{margin-left:0;text-align:center}
  #testimonials .testimonial-item{margin:30px 10px}
}

@media (max-width: 576px) {
  #contact #google-map {margin-top: 20px;}
}