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

a {
  color: #ff4a17;
  text-decoration: none;
}

a:hover {
  color: #ff724a;
  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: 996;
  background: #ff4a17;
  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: #ff6a40;
  color: #fff;
}

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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ff4a17;
  border-top-color: #ffe9e3;
  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;
  }
}

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

#header.header-scrolled{
  background: rgba(21, 34, 43, 0.85);
  padding: 10px 0;
}

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

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

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


/*--------------------------------------------------------------
# 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 > ul > li {
  white-space: nowrap;
  padding: 8px 12px;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  position: relative;
  justify-content: space-between;
  padding: 0 3px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  transition: 0.3s;
}

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

.navbar > ul > li > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #ff4a17;
  visibility: hidden;
  width: 0px;
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before, .navbar li:hover > a:before, .navbar .active:before {
  visibility: visible;
  width: 100%;
}

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

.navbar .getstarted {
  padding: 8px 25px;
  margin-left: 30px;
  border-radius: 4px;
  color: #fff;
  border: 2px solid #fff;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #fd3800;
  border-color: #ff4a17;
}

.navbar > ul > li > .getstarted:before {
  visibility: hidden;
}


/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  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(4, 7, 9, 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: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

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

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

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



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

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

.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: #5c8eb0;
  font-family: "Poppins", sans-serif;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: #ff8664;
  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: #263d4d;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#main {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") top center;
  background-size:cover;
  position: relative;
  padding: 0;
}

#hero:before {
  content: "";
  background: rgba(13, 20, 26, 0.7);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}

@media (min-width: 1024px) {
  #hero {
    background-attachment: fixed;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about .item {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.about .content {
  font-size: 14px;
}

.about .content h3 {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
  color: #263d4d;
}

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

@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .about .content {
    padding-bottom: 20px;
  }
}


/*--------------------------------------------------------------
# About-boxes
--------------------------------------------------------------*/
.about-boxes {
  padding-top: 3px;
}

.about-boxes .row {
  margin-top: 2rem;
}

.about-boxes .box {
  min-height: 130px;
  background-color: #E6E7D7;
  text-align: center;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  transition: all ease-in-out 0.3s;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.about-boxes .box h4 {
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 10px;
  color: #191919;
}

.about-boxes .box p {
  color: #D09159;
  font-size: 14px;
  margin: 0;
  padding: 0;
}

.about-boxes .box .item {
  border-left: 1px solid gray;
  border-right: 1px solid gray;
}

.about-boxes .box .item:first-of-type {
  border-left: 0;
}

.about-boxes .box .item:last-of-type {
  border-right: 0;
}

.about-boxes .box .item h4 {
  font-weight: 600;
  color: #D09159;
  border: 0;
  padding: 5px;
}

.about-boxes .box .item p {
  color: #D09159;
}

.about-boxes .box:hover {
  box-shadow: 10px 15px 30px rgba(0, 0, 0, 0.18);
}

@media (max-width: 768px) {
  .about-boxes .box {
    width: 100%;
    margin: 20px 0;
    padding: 30px;
  }

  .about-boxes .box .item {
    border-bottom: 1px solid gray;
    border-top: 1px solid gray;
    border-left: 0;
    border-right: 0;
    padding: 20px 0;
  }

  .about-boxes .box .item:first-of-type {
    border-top: 0;
    padding-top: 0;
  }
  
  .about-boxes .box .item:last-of-type {
    border-bottom: 0;
    padding-bottom: 0;
  }
}


/*--------------------------------------------------------------
# Product
--------------------------------------------------------------*/
.product .item {
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  padding: 15px;
}

.product .content {
  font-size: 14px;
}

.product .content h3 {
  margin: 20px 0;
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  color: #263d4d;
}

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


/*--------------------------------------------------------------
# Team
--------------------------------------------------------------*/
.team .member {
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  background: #fff;
  min-height: 31rem;
}

.team .member img {
  max-width: 60%;
  height: var(width);
  border-radius: 50%;
  margin: 0 0 30px 0;
}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 18px;
}

.team .member span {
  display: block;
  text-align: left;
  padding: 3px 0;
  font-size: 12px;
}

.team .member p {
  padding-top: 10px;
  font-size: 14px;
  color: #aaaaaa;
}



/*--------------------------------------------------------------
# Knowlage
--------------------------------------------------------------*/
.knowlage .nav-tabs {
  border: 0;
}

.knowlage .nav-link {
  border: 0;
  padding: 12px 15px;
  transition: 0.3s;
  color: black;
  border-radius: 0;
  font-weight: 600;
  font-size: 16px;
}

.knowlage .nav-link:hover {
  color: #ff4a17;
  border-color: #ff4a17;
}

.knowlage .nav-link.active {
  color: #1a1814;
  background: #ff4a17;
  border-color: #ff4a17;
}

.knowlage .tab-pane.active {
  -webkit-animation: fadeIn 0.5s ease-out;
  animation: fadeIn 0.5s ease-out;
}

.knowlage .tab-content {
  border-left: 2px solid #ff4a17;
  padding-left: 20px;
}

.knowlage .details {
  height: 300px;
  overflow-x: hidden;
  overflow-y: auto;
}
.knowlage .details h3 {
  font-size: 12px;
  font-weight: 600;
  color: black;
}

.knowlage .details p {
  text-indent: 2em;
  font-size: 12px;
  color: #aaaaaa;
}

.knowlage .details p:last-child {
  margin-bottom: 0;
}

@media (max-width: 991px) {
  .knowlage .tab-content {
    border-left: 0px;
    border-top: 2px solid #ff4a17;
    padding: 20px 0;
  }

  .knowlage .details {
    padding-top: 10px;
  }
}



/*--------------------------------------------------------------
# Joinus
--------------------------------------------------------------*/
.joinus .nav-tabs {
  border: 0;
}

.joinus .nav-link {
  border: 1px solid #ff4a17;
  padding: 5px;
  transition: 0.3s;
  color: black;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.joinus .nav-link i {
  padding-right: 15px;
  font-size: 25px;
}

.joinus .nav-link h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.joinus .nav-link:hover {
  color: #ff4a17;
  border-color: #ffd1c4;
}

.joinus .nav-link.active {
  background: #ff4a17;
  color: #fff;
  border-color: #ff4a17;
}

@media (max-width: 768px) {
  .joinus .nav-link i {
    padding: 0;
    line-height: 1;
    font-size: 36px;
  }

  .joinus .nav-item {
    display: flex !important;
  }
}

@media (max-width: 575px) {
  .joinus .nav-link {
    padding: 15px;
  }
  .joinus .nav-link i {
    font-size: 24px;
  }
}

.joinus .tab-content {
  margin-top: 30px;
}

.joinus .tab-pane {
  min-height: 600px;
}

.joinus .tab-pane h3 {
  font-weight: 600;
  font-size: 16px;
}

.joinus .tab-pane ul {
  list-style: none;
  padding: 0;
}

.joinus .tab-pane ul li {
  padding-bottom: 10px;
  font-size: 14px;
}

.joinus .tab-pane ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #ff4a17;
}

.joinus .tab-pane p {
  font-size: 14px;
}

.joinus .tab-pane p span {
  color: red;
}

.joinus .tab-pane p:last-child {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #121d24;
  color: #fff;
  font-size: 14px;
}

#footer .footer-top {
  background: #15222b;
  border-bottom: 1px solid #1d303c;  
  padding: 20px 0 10px 0;
}

#footer .footer-top .barcode img{
  max-width: 145px;
  max-height: 145px;
} 

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

#footer .footer-top .footer-info p.tips {
  font-size: 10px;
  color: #ff4a17;
}

#footer .copyright {
  text-align: center;
  padding: 10px 0;
}

@media (max-width: 768px) {
  #footer .footer-top .footer-info {
    margin-bottom: 10px;
  }
}