
/*--------------------------------------------------------------
# General Tag
--------------------------------------------------------------*/

body {
  font-family: "Open Sans", sans-serif;
  background: #0c0b09;
  color: #fff;
}

a {
  color: #006db1;
  text-decoration: none;
}

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

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


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

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #1a1814;
  border-top-color: rgba(125, 1, 0, 0.85);
  border-bottom-color: rgba(125, 1, 0, 0.85);
  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);
  }
}


/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
  border: 2px solid rgba(125, 1, 0, 0.85);
}

.back-to-top i {
  font-size: 28px;
  color: rgba(125, 1, 0, 0.85);
  line-height: 0;
}

.back-to-top:hover {
  border: 2px solid rgba(255, 255, 255, 1);
  background: rgba(125, 1, 0, 0.85);
  color: #1a1814;
}

.back-to-top:hover i {
  color: rgba(255, 255, 255, 1);
}

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


/*--------------------------------------------------------------
# swiper
--------------------------------------------------------------*/

.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #006db1;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #006db1;
}

.swiper-button-prev,
.swiper-button-next {
  opacity: 0.5;
  color: #006db1;
}

.gprev, .gnext {
  opacity: 0;
}


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


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

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

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

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

.header-scrolled {
  background: rgba(125, 1, 0, 0.85);
  top: 0;
}

/*--------------------------------------------------------------
# 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;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
  font-size: 16px;
}

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

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

/**
* 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: transparent;
  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: 60px;
  right: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

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

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


/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  width: 100%;
  padding: 40px 0;
  overflow: hidden;
}

.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;
}

.section-title h2::after {
  content: "";
  width: 120px;
  height: 1px;
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  margin: 4px 10px;
}

.section-title p {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  color: #006db1;
}


/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  height: 100vh;
  background: url("../img/background/bg_hero.jpg") top center;
  background-size: cover;
  position: relative;
  padding: 0;
}

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

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: #eee;
  margin-top: 20px;
  font-size: 22px;
}

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

@media (max-width: 992px) {
  #hero .play-btn {
    margin-top: 30px;
  }
}

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

@media (max-height: 500px) {
  #hero {
    height: auto;
  }
}


/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
#about {
  background: url("../img/background/bg_about.jpg") center center;
  background-size: cover;
  position: relative;
}

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

#about .about-introduce .about-img::before {
  position: absolute;
  left: 20px;
  top: 20px;
  width: 60px;
  height: 60px;
  z-index: 1;
  content: '';
  border-left: 5px solid #006db1;
  border-top: 5px solid #006db1;
  transition: .5s;
}

#about .about-introduce .about-img::after {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  z-index: 2;
  content: '';
  border-right: 5px solid #006db1;
  border-bottom: 5px solid #006db1;
  transition: .5s;
}

#about .about-introduce .about-img:hover {
  transform: scale(1.03);
}

#about .about-introduce .about-img:hover::before {
  left: 10px;
  top: 10px;
}

#about .about-introduce .about-img:hover::after {
  right: 10px;
  bottom: 10px;
}

#about .brand-list {
  margin-top: 150px;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  position: relative;
}

#about .brand-list::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  top: 50%;
}

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

/*--------------------------------------------------------------
# Objective
--------------------------------------------------------------*/
#objective {
  background: url("../img/background/bg_objective.jpg") center center;
  background-size: cover;
  position: relative;
}

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

#objective .card {
  opacity: 0.5;
}

#objective .card .card-body .svg-icon {
  width: 64px;
  height: 64px;
  vertical-align: text-bottom;
  stroke: currentColor;
  stroke-width: 3;
  --layer1: currentColor;
  --layer2: currentColor;
  --layer3: currentColor;
}


/*--------------------------------------------------------------
# Products
--------------------------------------------------------------*/
#products {
  background: url(../img/background/bg_product.jpg) center center no-repeat;
  background-size: cover;
  position: relative;
}

#products::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.8);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

#products .product-filter .product-desc {
  margin-bottom: 80px;
  position: relative;
  z-index: 5;
}

#products .product-filter .product-button-head {
  width: 100%;
  height: 100%;
  position: relative;
}

#products .product-filter .product-btn-wrapper {
  position: relative;
  text-align: left;
}

#products .product-filter .product-btn-wrapper button {
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #051441;
  margin-right: 10px;
  margin-bottom: 10px;
  -webkit-transition: all .3s ease-out 0s;
  transition: all .3s ease-out 0s;
  background: white;
  border: 1px solid #eee;
  border-radius: 30px;
}

#products .product-filter .product-btn-wrapper button:hover,
#products .product-filter .product-btn-wrapper button.active {
  background: #3763EB !important;
  border-color: transparent;
  color: #fff;
}

#products .product-filter .product-btn-wrapper button:last-child {
  margin-right: 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  #products .product-filter .product-btn-wrapper button {
    margin-right: 10px;
    padding: 7px 18px;
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  #products .product-filter .product-btn-wrapper button {
    margin-right: 10px;
    padding: 7px 18px;
    font-size: 16px;
  }
}

#products .product-item-container {
  margin-top: 20px;
}

#products .product-item-container .product-item .product-item-wrapper {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 30px;
}

#products .product-item-container .product-item .product-item-wrapper a {
  margin-top: 5px;
  color: white;
  font-size: 18px;
  font-weight: 500;
}

#products .product-item-container .product-item .product-item-wrapper .product-img {
  overflow: hidden;
  position: relative;
}

#products .product-item-container .product-item .product-item-wrapper .product-img::before {
  position: absolute;
  content: "";
  left: -50%;
  top: -50%;
  background-color: #fff;
  height: 0;
  width: 0;
  z-index: 5;
  opacity: 0;
  -webkit-transform: scale(0);
  transform: scale(0);
  transition: all 0.7s ease;
  -webkit-transition: all 0.7s ease;
  -moz-transition: all 0.7s ease;
}

#products .product-item-container .product-item .product-item-wrapper:hover .product-img::before {
  opacity: 0.2;
  -webkit-transform: scale(1);
  transform: scale(1);
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
}

#products .product-item-container .product-item .product-item-wrapper .product-img::after {
  position: absolute;
  content: "";
  right: -50%;
  bottom: -50%;
}

#products .product-item-container .product-item .product-item-wrapper:hover .product-img::after {
  opacity: 0.2;
  -webkit-transform: scale(1);
  transform: scale(1);
  height: 100%;
  width: 100%;
  right: 0;
  bottom: 0;
}

#products .product-item-container .product-item .product-item-wrapper .product-img img {
  width: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

#products .product-item-container .product-item .product-item-wrapper .product-img {
  overflow: hidden;
  position: relative;
}

#products .product-item-container .product-item .product-item-wrapper:hover .product-img img {
  -webkit-transform: scale(1);
  transform: scale(1);
}

#products .product-item-container .product-item .product-item-wrapper:hover .product-overlay {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale(1);
  transform: scale(1);
}

#products .product-item-container .product-item .product-item-wrapper .pf-content {
  margin-top: 15px;
}

#products .product-item-container .product-item .product-item-wrapper .pf-content .category {
  font-size: 16px;
  color: #9b9ba7;
  font-weight: 300;
}

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


/*--------------------------------------------------------------
# Product detail
--------------------------------------------------------------*/
.product-detail  {
   position: relative;
 }

.product-detail::before {
  content: '';
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}

.product-detail .container {
  margin-top: 80px;
}


/*--------------------------------------------------------------
# contact
--------------------------------------------------------------*/
#contact {
  background: url("../img/background/bg_about.jpg") center center;
  background-size: cover;
  position: relative;
}

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

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

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

#contact .contact_info p.tips {
  font-size: 10px;
  color: #ff4a17;
}


/*--------------------------------------------------------------
# copyright
--------------------------------------------------------------*/
#copyright {
  background: rgba(125, 1, 0, 0.85);
  text-align: center;
  padding: 10px 0;
  font-size: small;
}

#copyright a {
  font-size: smaller;
}

@media (max-width: 480px) {
  #footer .copyright a {
    display: block;
  }
}
