@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i|Raleway:300,300i,400,400i,500,500i,600,600i,700,700i|Poppins:300,300i,400,400i,500,500i,600,600i,700,700i&display=swap");
body {
  font-family: "Open Sans", sans-serif;
  color: #444444;
  font-size: 0.9rem;
}

/* html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
} */
a {
  color: #f45000;
  text-decoration: none;
}
a:hover {
  color: #f28149;
  text-decoration: none;
}

.a-white {
  color: #FFFFFF;
  text-decoration: none;
}
.a-white:hover {
  color: #f28149;
  text-decoration: none;
}

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

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #f45000;
  width: 40px;
  height: 40px;
  border-radius: 0px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #151515;
  line-height: 0;
}
.back-to-top:hover {
  background: #151515;
}
.back-to-top:hover i {
  color: #f45000;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

#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 #f45000;
  border-top-color: #151515;
  border-bottom-color: #151515;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
}
@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}
#header.header-scrolled, #header.header-inner-pages {
  background: rgba(0, 0, 0, 0.8);
}
#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: #FFFFFF;
}
#header .logo a span {
  color: #f45000;
}
#header .logo img {
  max-height: 40px;
}

.nav-btn {
  color: #FFFFFF;
  border-radius: 0px;
  padding: 7px 25px 8px 25px;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 14px;
  display: inline-block;
  /* border: 2px solid $color-default; */
}
.nav-btn:hover {
  /* background: #ffbb38; */
  color: #f45000;
}

@media (max-width: 992px) {
  .nav-btn {
    padding: 7px 20px 8px 20px;
    margin-right: 15px;
  }
}
.navbar {
  padding: 0;
  font-family: "Raleway", sans-serif;
}
.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}
.navbar li {
  position: relative;
}
.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  transition: 0.3s;
}
.navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  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 {
  color: #f45000;
}
.navbar .active {
  color: #f45000;
}
.navbar .active:focus {
  color: #f45000;
}
.navbar li:hover > a {
  color: #f45000;
}
.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: white;
  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: #151515;
  font-weight: 400;
}
.navbar .dropdown ul a i {
  font-size: 12px;
}
.navbar .dropdown ul a:hover {
  background-color: #f45000;
}
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover > a {
  background-color: #f45000;
  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-nav-toggle {
  color: #FFFFFF;
  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: #FFFFFF;
  overflow-y: auto;
  transition: 0.3s;
}
.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #151515;
}
.navbar-mobile a:hover {
  color: #151515;
  background-color: #f45000;
}
.navbar-mobile .active,
.navbar-mobile li:hover > a {
  color: #151515;
  background-color: #f45000;
}
.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: white;
  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 {
  background-color: #f45000;
}
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a {
  background-color: #f45000;
}
.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size: cover;
  position: relative;
}
#hero:before {
  content: "";
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}
#hero .container {
  position: relative;
  padding-top: 74px;
  text-align: center;
}
#hero h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
}
#hero h1 span {
  color: #f45000;
}
#hero h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}
#hero .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;
}
#hero .icon-box i {
  font-size: 32px;
  line-height: 1;
  color: #f45000;
}
#hero .icon-box h3 {
  font-weight: 700;
  margin: 10px 0 0 0;
  padding: 0;
  line-height: 1;
  font-size: 20px;
  line-height: 26px;
}
#hero .icon-box h3 a {
  color: #FFFFFF;
  transition: ease-in-out 0.3s;
}
#hero .icon-box h3 a:hover {
  color: #f45000;
}
#hero .icon-box:hover {
  border-color: #f45000;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}
@media (max-width: 768px) {
  #hero {
    height: auto;
  }
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
}
section {
  padding: 40px 0;
  overflow: hidden;
  background-color: #FFFFFF;
}

.section-title {
  padding-bottom: 40px;
}
.section-title h2 {
  font-size: 14px;
  font-weight: 500;
  padding: 0;
  line-height: 1px;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #aaaaaa;
  font-family: "Poppins", sans-serif;
}
.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #f28149;
  margin: 4px 10px;
}
.section-title p {
  margin: 0;
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

.catalog-spacer-parallax {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/catalog.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}
.catalog-spacer-parallax h3 {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
}
.catalog-spacer-parallax p {
  color: #FFFFFF;
}

.performance-spacer-parallax {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/performance.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}
.performance-spacer-parallax h3 {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
}
.performance-spacer-parallax p {
  color: #FFFFFF;
}

.campaigns-spacer-parallax {
  background: linear-gradient(rgba(2, 2, 2, 0.5), rgba(0, 0, 0, 0.5)), url("../img/campaigns.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}
.campaigns-spacer-parallax h3 {
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
}
.campaigns-spacer-parallax p {
  color: #FFFFFF;
}

.products {
  background: white;
  padding: 60px 0;
}
.products .product-box {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 0px;
  background: white;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.products .product-box .product-img {
  position: relative;
  overflow: hidden;
  padding: 20px;
  max-width: 250px;
  max-height: 250px;
  text-align: center;
  margin: 0 auto;
}
.products .product-box .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}
.products .product-box .social a {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-color: #777777;
  color: #777777;
  background-image: linear-gradient(45deg, #777777 50%, transparent 50%);
  transition: background 300ms ease-in-out;
  border-radius: 0.6em;
  cursor: pointer;
  /* display: flex; */
  align-self: center;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1;
  padding: 1.2em 2.8em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background-color: transparent;
  background-image: linear-gradient(45deg, #f45000 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  color: #f45000;
  border: 3px solid #f45000;
}
.products .product-box .social a:hover {
  background-position: 0;
  background-color: #f45000;
  color: #FFFFFF;
  border: 3px solid #f45000;
}
.products .product-box .social i {
  font-size: 18px;
  line-height: 0;
}
.products .product-box .product-info {
  padding: 25px 15px;
}
.products .product-box .product-info h4 {
  font-weight: 400;
  margin-bottom: 5px;
  font-size: 16px;
  color: #151515;
}
.products .product-box .product-info span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #f45000;
  text-align: center;
}
.products .product-box .product-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.products .product-box:hover .social {
  opacity: 1;
  bottom: 18px;
}

.news {
  background: white;
  padding: 60px 0;
}
.news .news-box {
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 0px;
  background: white;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
.news .news-box .news-img {
  position: relative;
  overflow: hidden;
  padding: 20px;
}
.news .news-box .social {
  position: absolute;
  left: 0;
  bottom: 30px;
  right: 0;
  opacity: 0;
  transition: ease-in-out 0.3s;
  text-align: center;
}
.news .news-box .social a {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-color: #777777;
  color: #777777;
  background-image: linear-gradient(45deg, #777777 50%, transparent 50%);
  transition: background 300ms ease-in-out;
  border-radius: 0.6em;
  cursor: pointer;
  /* display: flex; */
  align-self: center;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1;
  padding: 1.2em 2.8em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  background-color: transparent;
  background-image: linear-gradient(45deg, #f45000 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  color: #f45000;
  border: 3px solid #f45000;
}
.news .news-box .social a:hover {
  background-position: 0;
  background-color: #f45000;
  color: #FFFFFF;
  border: 3px solid #f45000;
}
.news .news-box .social i {
  font-size: 18px;
  line-height: 0;
}
.news .news-box .news-info {
  padding: 25px 15px;
}
.news .news-box .news-info h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
  color: #151515;
}
.news .news-box .news-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
  overflow: hidden;
  height: 60px;
}
.news .news-box .news-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}
.news .news-box:hover .social {
  opacity: 1;
  bottom: 15px;
}

.contact .info {
  width: 100%;
  background: white;
}
.contact .info i {
  font-size: 20px;
  background: #f45000;
  color: #151515;
  float: left;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0px;
  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 60px;
  margin-bottom: 0;
  font-size: 14px;
  color: #484848;
}
.contact .info .email,
.contact .info .phone {
  margin-top: 40px;
}
@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.breadcrumbs {
  padding: 15px 0;
  background: #eaeaea;
  min-height: 40px;
  margin-top: 74px;
  font-size: 12px;
}
.breadcrumbs h2 {
  font-size: 28px;
  font-weight: 400;
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs ol li + li {
  padding-left: 10px;
}
.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #444444;
  content: "/";
}

@media (max-width: 992px) {
  .breadcrumbs {
    margin-top: 68px;
  }
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}
#footer {
  background: black;
  padding: 0 0 30px 0;
  color: #FFFFFF;
  font-size: 14px;
}
#footer .footer-top {
  background: #151515;
  border-bottom: 1px solid #222222;
  padding: 60px 0 30px 0;
}
#footer .footer-top .footer-info {
  margin-bottom: 30px;
}
#footer .footer-top .footer-info h3 {
  font-size: 28px;
  margin: 0 0 20px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
}
#footer .footer-top .footer-info h3 span {
  color: #f45000;
}
#footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Raleway", sans-serif;
  color: #FFFFFF;
}
#footer .footer-top h4 {
  font-size: 16px;
  font-weight: 600;
  color: #FFFFFF;
  position: relative;
  padding-bottom: 12px;
}
#footer .footer-top .footer-links {
  margin-bottom: 30px;
}
#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #f45000;
  font-size: 18px;
  line-height: 1;
}
#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}
#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}
#footer .footer-top .footer-links ul a {
  color: #FFFFFF;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}
#footer .footer-top .footer-links ul a:hover {
  color: #f45000;
}
#footer .copyright {
  text-align: center;
  padding-top: 30px;
}
#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #FFFFFF;
}

.product-info {
  padding: 25px 15px;
}
.product-info .product-title {
  height: 95px;
  /* overflow: auto; */
}
.product-info h4 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 18px;
  color: #151515 !important;
  text-align: center;
}
.product-info h4 a {
  color: #151515 !important;
}
.product-info span {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #f45000;
}
.product-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.news-info {
  padding: 25px 15px;
}
.news-info .news-title {
  height: 45px;
  overflow: hidden;
}
.news-info h4 {
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 18px;
  color: #151515;
  text-align: left;
}
.news-info span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
  text-align: left;
}
.news-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #777777;
}

.form-control {
  height: 40px;
  padding: 8px 12px;
  font-size: 0.9rem;
  line-height: 1.467;
  border: 1px solid #d9d9d6;
  border-radius: 0px;
  box-shadow: none;
  transition: border 0.25s linear, color 0.25s linear, background-color 0.25s linear;
}

.btn {
  box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-color: #777777;
  color: #777777;
  background-image: linear-gradient(45deg, #777777 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  transition: background 300ms ease-in-out;
  border-radius: 0.6em;
  cursor: pointer;
  /* display: flex; */
  align-self: center;
  font-size: 0.8rem;
  font-weight: 300;
  line-height: 1;
  padding: 1.2em 2.8em;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
}
.btn:hover {
  background-position: 0;
}

.btn:hover,
.btn:focus {
  color: #FFFFFF;
  outline: 0;
}

.btn-primary {
  background-color: transparent;
  background-image: linear-gradient(45deg, #f45000 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  color: #f45000;
  border: 3px solid #f45000;
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active,
.btn-primary .active {
  background-color: #f45000;
  color: #FFFFFF;
  border: 3px solid #f45000;
}

.btn-check:focus + .btn-primary,
.btn-primary:focus,
.btn-check:active + .btn-primary:focus,
.btn-check:checked + .btn-primary:focus,
.btn-primary.active:focus,
.btn-primary:active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  box-shadow: none;
}

.btn-danger {
  background-color: transparent;
  background-image: linear-gradient(45deg, #e66767 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  color: #e66767;
  border: 3px solid #e66767;
}
.btn-danger:hover, .btn-danger:focus, .btn-danger:active,
.btn-danger .active {
  background-color: #e66767;
  color: #FFFFFF;
  border: 3px solid #e66767;
}

.btn-white {
  background-color: transparent;
  background-image: linear-gradient(45deg, white 50%, transparent 50%);
  background-position: 100%;
  background-size: 400%;
  color: #FFFFFF;
  border: 3px solid white;
}
.btn-white:hover, .btn-white:focus, .btn-white:active,
.btn-white .active {
  background-color: #FFFFFF;
  color: black;
  border: 3px solid white;
}

.value-number-dash {
  margin: 0;
  margin: 0;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #151515;
}

.dash-box {
  padding: 20px;
  background-color: #FFFFFF;
  margin-bottom: 20px;
  overflow: hidden;
  border-radius: 0px;
  background: white;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

.dash-p {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: #aaaaaa;
}

.dash-icon {
  font-size: 25px;
  color: #f45000;
  padding: 30px;
}

h2.top-title-h2 {
  margin: 0;
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
  color: #333333;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  background-color: #eaeaea;
}

.nav-pills .nav-link {
  background: 0 0;
  padding: 15px 30px;
  margin-bottom: 0.6rem;
  border: 0;
  border-radius: 0px;
  background-color: white4;
  color: #444444;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
}
.nav-pills .nav-link.no-margin {
  margin-bottom: 0px;
}
.nav-pills .nav-link.active, .nav-pills .nav-link.nav-pills .show > .nav-link {
  color: #FFF;
  background-color: #f45000;
  font-weight: 700;
}

.form-check-input:checked {
  background-color: #f45000;
  border-color: #f45000;
}
.form-check-input:focus {
  border-color: #f28149;
  box-shadow: 0 0 0 0.25rem #f28149;
}

.search-input-catalog {
  height: 49px;
}

.accordion-item-catalog {
  margin-bottom: 0.6rem;
}

.accordion-button-catalog {
  font-size: 14px;
  padding: 15px 30px;
}

.accordion-button.collapsed {
  background-color: white4;
  font-weight: 400;
}

.accordion-button {
  color: #444444;
  font-weight: 700;
}

.accordion-button:not(.collapsed) {
  color: #444444;
  font-weight: 700;
  background-color: #f7f7f7;
  /* box-shadow: inset 0 -1px 0 rgb(0, 0, 0 / 13%); */
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-link-category {
  color: #aaaaaa;
}
.accordion-link-category:hover {
  color: #444444;
  font-weight: 900;
}

.form-select-catalog-tools {
  font-size: 0.8rem;
  padding-top: 0.88rem;
  padding-bottom: 0.88rem;
  padding-left: 1rem;
  border-radius: 0px;
}

.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/black/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.shopping-cart-product-image {
  max-width: 100px;
}

.order-done {
  color: #10ac84;
  font-size: 1.7rem;
  font-weight: 900;
}

.bi.bi-bag-check-fill.order {
  font-size: 4.8rem;
  color: #10ac84;
}

.shopping-cart-message-order {
  padding: 20px;
  background-color: rgba(19, 172, 131, 0.1882352941);
}

.scroll-eula {
  height: 300px;
  overflow-y: scroll;
}

html.html-body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #777777 !important;
}

body.login-body {
  width: 100%;
  height: 100vh; /* Tela cheia */
  position: relative;
  background: url("../img/login_2.png") no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1; /* Para garantir que o conteúdo está acima da imagem de fundo */
}

.user-card {
  /* height: 440px; */
  width: 350px;
  margin-top: auto;
  margin-bottom: auto;
  background: #f45000;
  /* color: $color-white; */
  position: relative;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 10px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -webkit-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  -moz-box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 5px;
  margin-bottom: 25px;
}
.user-card.lg-h {
  /*  height: 560px; */
}
.user-card.xl-lg-h {
  /* height: 860px; */
}

.brand-logo-container {
  position: absolute;
  height: 170px;
  width: 170px;
  top: -75px;
  border-radius: 50%;
  background: #f45000;
  padding: 10px;
  text-align: center;
}
.brand-logo-container .brand-logo {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  border: 2px solid white;
}

.form-container {
  margin-top: 100px;
}
.form-container .login-container {
  padding: 0 2rem;
}
.form-container .input-group-text {
  background: black !important;
  color: white !important;
  border: 0 !important;
  border-radius: 0.25rem 0 0 0.25rem !important;
  height: 39px;
}

.carousel-item {
  height: 100vh;
  min-height: 350px;
  background: no-repeat center center scroll;
  background-size: cover;
}

#carousel h1 {
  margin: 0;
  font-size: 56px;
  font-weight: 700;
  line-height: 64px;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
}
#carousel h2 {
  color: rgba(255, 255, 255, 0.9);
  margin: 10px 0 0 0;
  font-size: 24px;
}

.offline-icon {
  animation-name: stretch;
  animation-duration: 1.5s;
  animation-timing-function: ease-out;
  animation-direction: alternate;
  animation-iteration-count: infinite;
  animation-play-state: running;
  color: #777777;
}

@keyframes stretch {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(5);
  }
}
.animation {
  margin-top: 20%;
  display: inline-block;
  margin-bottom: 10%;
}

.one,
.two,
.three {
  display: block;
  float: left;
}

.one {
  font-size: 80px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -10px;
  margin-right: 8px;
}

.two {
  font-size: 100px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: #777777;
}

.three {
  font-size: 80px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  margin-top: -50px;
  margin-left: -10px;
}

@keyframes spin-one {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-359deg);
  }
}
.spin-one {
  animation: spin-one 1.5s infinite linear;
}

@keyframes spin-two {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.spin-two {
  animation: spin-two 2s infinite linear;
}

.msger-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  border-bottom: 2px solid #ddd;
  background: #eee;
  color: #666;
}

.msger-chat {
  flex: 1;
  overflow-y: auto;
  padding: 10px;
}

.msger-chat::-webkit-scrollbar {
  width: 6px;
}

.msger-chat::-webkit-scrollbar-track {
  background: #ddd;
}

.msger-chat::-webkit-scrollbar-thumb {
  background: #bdbdbd;
}

.msg {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}

.msg {
  margin: 15px 0px;
}

.msg-img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  background: #ddd;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}

.msg-bubble {
  max-width: 450px;
  padding: 15px;
  border-radius: 15px;
  background: #ececec;
}

.msg-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.msg-info-name {
  margin-right: 10px;
  font-weight: bold;
}

.msg-info-time {
  font-size: 0.85em;
}

.left-msg .msg-bubble {
  border-bottom-left-radius: 0;
}

.right-msg {
  flex-direction: row-reverse;
}

.right-msg .msg-bubble {
  background: #7a83ea;
  color: #FFFFFF;
  border-bottom-right-radius: 0;
}

.right-msg .msg-img {
  margin: 0 0 0 10px;
}

.msger-inputarea {
  display: flex;
  padding: 10px;
  border-top: 2px solid #ddd;
  background: #eee;
}

.msger-inputarea * {
  padding: 10px;
  border: none;
  border-radius: 3px;
  font-size: 1em;
}

.msger-input {
  flex: 1;
  background: #ddd;
}

.msger-send-btn {
  margin-left: 10px;
  background: rgb(0, 196, 65);
  color: #FFFFFF;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.23s;
}

.msger-send-btn:hover {
  background: rgb(0, 180, 50);
}

.msger-chat {
  background-color: #fcfcfe;
  background-image: url("http://sbus.mpcsistemas.com.br/jchat/images/chat-bg/geometry.png");
}

.mt-25vh {
  padding-top: 25vh;
}

.list-group-item.active {
  z-index: 2;
  color: #FFFFFF;
  background-color: #FFFFFF;
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
  font-weight: 700;
}

.list-group-item {
  padding: 0.8rem 1rem;
}

.navbar-mobile ul {
  right: 0px;
  bottom: 0px;
  left: 0px;
  padding: 2px 0;
}

.navbar-mobile .dropdown ul {
  margin: 0px 0px;
}

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

.list-group-item.active {
  border-color: rgba(0, 0, 0, 0.125);
}

.price-tag {
  font-size: 20px;
  color: #f45000;
  font-weight: 600;
}

.datepicker-days {
  margin: 15px;
}

.alert {
  border-radius: 0px !important;
  border: 0px !important;
  padding: 25px !important;
  /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px !important; */
}

.btn-primary.sm-text {
  font-size: 11px;
}

.catalog-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  background-color: #fff;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  margin-top: 20px;
  height: 420px;
  overflow: hidden;
}

.catalog-item:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 15px;
}

.product-title {
  margin: 15px 0px 10px 0px;
  padding: 0px 10px;
}

.product-title > h4 > a {
  color: #151515 !important;
  font-size: 0.7em !important;
}

.product-image a {
  color: #151515 !important;
}

.product-price {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #f45000;
  text-align: center;
}

.btn-catalog-category {
  background-color: white;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
}

.category-button.selected {
  color: #f45000;
}

.slideshow-container {
  max-width: 1000px;
  position: relative;
  margin: auto;
  padding: 15px;
}

.mySlides {
  display: none;
}

.prev,
.next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  margin-top: -22px;
  padding: 16px;
  color: #dfdfdf;
  font-weight: bold;
  font-size: 16px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.next:hover {
  color: #dfdfdf;
}

.prev {
  left: 0;
  border-radius: 3px 0 0 3px;
}
.prev:hover {
  color: #dfdfdf;
}

.text {
  color: #dfdfdf;
  font-size: 15px;
  padding: 8px 12px;
  position: absolute;
  bottom: 8px;
  width: 100%;
  text-align: center;
}

.numbertext {
  color: #dfdfdf;
  font-size: 10px;
  padding: 8px 12px;
  position: absolute;
  top: 0;
}

.dot {
  cursor: pointer;
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #bbb;
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.6s ease;
}
.dot.active, .dot:hover {
  background-color: #717171;
}

.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}
.btn-tags {
  padding: 0.6em 2em !important;
  width: 100% !important;
  font-size: 0.8em !important;
  font-weight: 400 !important;
  border: 1px solid !important;
  border-radius: 50px;
  color: #d9d9d6;
  border-color: #d9d9d6;
}
.btn-tags:hover, .btn-tags:focus, .btn-tags:active,
.btn-tags .active {
  background-color: #d9d9d6;
  color: #fff;
  border: 1px solid #d9d9d6 !important;
}
.btn-tags.selected {
  color: #fff;
  background-color: #f45000;
  border: 1px solid #f45000;
}

.btn-search-box {
  height: 58px;
}

.btn-group > .btn-group:not(:first-child),
.btn-group > :not(.btn-check:first-child) + .btn {
  margin-left: -3px !important;
}

.category-title {
  font-weight: 600;
  font-size: 0.7em;
}

.category-title-div {
  height: 60px;
}

.noUi-connect {
  background: #f45000 !important;
}

.a-clean-all {
  color: #444444;
}

.color-default {
  color: #f45000;
}

.thumbnail-container {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  overflow-x: auto;
}

.thumbnail-container .thumbnail {
  margin-right: 10px;
}

.thumbnail-container .thumbnail.active img {
  border: 1px solid #b0b0b0;
}

.progress.arrow {
  height: 20px;
  border-radius: 50px;
}

.panel-ranking {
  background: #212529;
  border-radius: 0px;
  padding: 20px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
  /*  border: 1px solid #FFF; */
}

h4.ranking-panel {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #ccc;
  text-transform: uppercase;
  font-weight: bold;
  font-family: "Poppins", sans-serif;
}

h3.ranking-panel {
  font-size: 1rem;
  margin-bottom: 10px;
  color: #ccc;
  text-transform: uppercase;
  font-family: "Poppins", sans-serif;
}

.circle-chart__percent {
  font-weight: bold;
  color: #fff;
}

.extra-title {
  display: none;
}

.nav-pills .nav-item {
  display: flex;
  flex: 1 1 0;
}

/* .nav-pills .nav-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
 */
#avatar-big-container {
  height: 280px !important;
}
@media (max-width: 768px) {
  #avatar-big-container {
    height: 220px !important;
  }
}

@media (max-width: 575.98px) {
  #avatar-big-container {
    height: 280px !important;
  }
  #avatar-big-inner {
    width: 240px !important;
    height: 280px !important;
    margin-top: 89px !important;
    margin-left: 50px !important;
  }
}
@media (min-width: 576px) and (max-width: 767.98px) {
  #avatar-big-container {
    height: 280px !important;
  }
  #avatar-big-inner {
    width: 200px !important;
    height: 280px !important;
    margin-top: 100px !important;
    margin-left: 50px !important;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  #avatar-big-container {
    height: 280px !important;
  }
  #avatar-big-inner {
    width: 160px !important;
    height: 288px !important;
    margin-top: 100px !important;
    margin-left: 13px !important;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  #avatar-big-container {
    height: 280px !important;
  }
  #avatar-big-inner {
    width: 200px !important;
    height: 280px !important;
    margin-top: 100px !important;
    margin-left: 30px !important;
  }
}
@media (min-width: 1199.99px) and (max-width: 1400px) {
  #avatar-big-container {
    height: 280px !important;
  }
  #avatar-big-inner {
    width: 200px !important;
    height: 280px !important;
    margin-top: 91px !important;
    margin-left: 48px !important;
  }
}
.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
  color: #f45000;
  cursor: not-allowed;
  background-color: #fff;
  border: 3px solid #f45000;
}

.pagination > li > a, .pagination > li > span {
  position: relative;
  float: left;
  padding: 10px 15px;
  margin-left: -1px;
  line-height: 1.42857143;
  color: #f45000;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #ddd;
}

.btn-default-pagination-catalog {
  font-size: 0.6rem;
  padding: 1em 2em;
  border-width: 1px;
}
.btn-default-pagination-catalog:hover {
  border-width: 1px;
}
.btn-default-pagination-catalog:focus {
  border-width: 1px;
}
.btn-default-pagination-catalog:active {
  border-width: 1px;
}

@media (max-width: 576px) {
  .swiper-pagination-bullet {
    background: #f45000 !important;
    opacity: 1;
  }
  .swiper-pagination-bullet-active {
    background: #f45000 !important;
    opacity: 1;
  }
}
.thumbnail-container::-webkit-scrollbar {
  height: 6px;
}

.thumbnail-container::-webkit-scrollbar-thumb {
  background: #eee;
  border-radius: 3px;
}

@media (max-width: 575.98px) {
  .catalog-item {
    height: 280px;
    margin-top: 10px;
    font-size: 0.85em;
  }
  .catalog-item .product-title {
    margin: 10px 0px 5px 0px;
    padding: 0px 5px;
  }
  .catalog-item .product-image {
    max-height: 120px;
    margin-bottom: 8px;
  }
}/*# sourceMappingURL=app.css.map */