@charset "UTF-8";
@font-face {
  font-family: 'DIN Condensed Bold';
  src: url('../fonts/DIN Condensed Bold.ttf') format('truetype');
}

@font-face {
  font-family: 'FF_DIN_Medium';
  src: url('../fonts/FF_DIN_Medium.otf') format('opentype');
}

@font-face {
  font-family: 'FF_DIN_Pro_Black_Italic';
  src: url('../fonts/FF_DIN_Pro_Black_Italic.otf') format('opentype');
}

@font-face {
  font-family: 'FF_DIN_Pro_Bold_Italic';
  src: url('../fonts/FF_DIN_Pro_Bold_Italic.otf') format('opentype');
}

@font-face {
  font-family: 'FF_DIN_Pro_Regular_Italic';
  src: url('../fonts/FF_DIN_Pro_Regular_Italic.otf') format('opentype');
}

@font-face {
  font-family: 'SourceSansVariable_Roman';
  src: url('../fonts/SourceSansVariable-Roman.otf') format('opentype');
}
.font-din-condensed-bold{
  font-family: 'DIN Condensed Bold', sans-serif !important;
}
.font-din-medium{
  font-family: 'FF_DIN_Medium', sans-serif !important;
}
.font-din-pro-black-italic{
  font-family: 'FF_DIN_Pro_Black_Italic', sans-serif !important;
}
.font-din-pro-bold-italic{
  font-family: 'FF_DIN_Pro_Bold_Italic', sans-serif !important;
}
.font-din-pro-regular-italic{
  font-family: 'FF_DIN_Pro_Regular_Italic', sans-serif !important;
}
.font-source-sans{
  font-family: 'SourceSansVariable_Roman', sans-serif !important;
}

body{
  font-family: 'SourceSansVariable_Roman', sans-serif;
}
/*--- Bg Color ---*/
.black {
  background-color: black !important;
}

.transparent {
  background-color: rgba(0, 0, 0, 0) !important;
}

.white {
  background-color: white !important;
}

.primary {
  background-color: #e9348f !important;
}

.facebook {
  background-color: #3b5998 !important;
}

.bg-cream{
  background-color: #E3DAD1 !important;
}

.bg-navy{
  background-color: #002c5f !important;
}
.bg-light-cream{
  background-color: #F7F3F2 !important;
}
.bg-light-grey{
  background-color: #f8f9fa !important;
}
.bg-black{
  background-color: #231F20 !important;
}
.bg-cream-new{
  background-color: #f0f0f0 !important;
}
.bg-blue{
  background-color: #007CC2 !important;
}
/*--- /Bg Color ---*/

/*--- Text Color ---*/
.text-black {
  color: black !important;
}

.text-white {
  color: white !important;
}

.text-prim {
  color: #e9348f !important;
}

.text-sec {
  color: #ff6a27 !important;
}

.text-navy{
  color: #1D325F !important;
}

.text-skyblue{
  color: #3C7DCD !important;
}
.text-light-gray{
  color: #8f8f8f !important;
}
.text-yellow{
  color: #ffd02c !important;
}

/*--- /Text Color ---*/

/*--- Text Weight ---*/
.fw-100 {
  font-weight: 100 !important;
}

.fw-200 {
  font-weight: 200 !important;
}

.fw-300 {
  font-weight: 300 !important;
}

.fw-400 {
  font-weight: 400 !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-700 {
  font-weight: 700 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

/*--- /Text Weight ---*/
/*--- Text Size ---*/
.fs-8 {
  font-size: 8pt;
}

.fs-9 {
  font-size: 9pt;
}

.fs-10 {
  font-size: 10pt;
}

.fs-11 {
  font-size: 11pt;
}

.fs-12 {
  font-size: 12pt;
}

.fs-13 {
  font-size: 13pt;
}

.fs-14 {
  font-size: 14pt;
}

.fs-15 {
  font-size: 15pt;
}

.fs-16 {
  font-size: 16pt;
}

/*--- Text Size ---*/
/*--- Button ---*/
.btn-line-rounded {
  border-radius: 50px;
  padding: 0.356rem 0.975rem;
  transition: 0.3s all;
  cursor: pointer;
}
.btn-line-rounded:hover {
  color: white !important;
  border: 2px solid rgba(0, 0, 0, 0);
  text-decoration: none;
  transition: 0.3s all;
}

.btn-white {
  color: white !important;
  border: 2px solid white;
}
.btn-white:hover {
  background-color: white !important;
  color: black !important;
  text-decoration: none;
}

/*--- /Button ---*/
/*--- Image ---*/
.of-cover {
  object-fit: cover !important;
}

.of-contain {
  object-fit: contain !important;
}

.img-circle {
  border-radius: 50%;
}

.img-zoom {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5);
}

.img-rounded-5 {
  border-radius: 5px;
}

.img-rounded-10 {
  border-radius: 10px;
}

/*--- /Image ---*/
/*--- Scroll Horizontal ---*/
.scroll {
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

.item-scroll,
.vertical-align-middle {
  display: inline-block;
  vertical-align: middle;
}

.scroll::-webkit-scrolbar {
  display: none;
}

/*--- /Scroll Horizontal ---*/
/*--- Header ---*/
#headerHome {
  width: 100%;
  height: 70px;
  background: white;
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0);
  position: fixed;
  z-index: 2;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
#headerHome.fixed-nav {
  background: white;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
#headerHome.fixed-nav .nav-header .nav-menu li a {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 700;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
#headerHome.fixed-nav .nav-header .nav-menu li a:hover {
  background: #e9348f;
  color: white;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

#header {
  width: 100%;
  height: 70px;
  background: #E3DAD1;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  position: fixed;
  z-index: 2;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
#header .nav-header .nav-menu li a {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 700;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
#header .nav-header .nav-menu li a:hover {
  background: #e9348f;
  color: white;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.brand {
  width: 110px;
  height: auto;
}
.brand .hamburger {
  margin-left: -0.6rem;
}

.src-m {
  width: 45px;
  height: auto;
  padding: 0.5rem;
}

.nav-header .nav-menu li a {
  color: white;
  font-weight: 700;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.nav-header .nav-menu li a:hover {
  background: #ff6a27;
  color: white;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

#header-m {
  position: fixed;
  width: 100%;
  height: 92vh;
  background: white;
  z-index: 1070;
  bottom: 0;
}

.nav-menu-m li a {
  color: rgba(0, 0, 0, 0.7);
  font-size: 16pt;
  font-weight: 700;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.nav-menu-m li a:hover {
  background: #e9348f;
  color: white;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.header-space {
  width: 100%;
  height: 46px;
  background: white;
}

.hamburger-inner {
  background-color: #212121;
}

.hm-d-con {
  padding-top: 10rem;
}

/*--- /Header ---*/
/*--- Footer ---*/
footer {
  /*background: #231F20;*/
  /*min-height: 300px;*/
  display: block;
  /*align-items: center;*/
  /*position: absolute;*/
  /*bottom: 0;*/
  /*width: 100%;*/
}

.foot-menu li a {
  color: #fff;
  font-size: 1rem;
}
.foot-menu li a:hover {
  cursor: pointer;
}

.foot-desc {
  color: #fff;
  font-size: 12pt;
  font-weight: normal;
}
@media (max-width: 767.98px) {
  .foot-desc {
    font-weight: lighter;
  }
  .header-space {
    width: 100%;
    height: 45.6px;
    background: white;
  }
}

/*--- /Footer ---*/
/*--- Main ---*/
/*--- Top Baner ---*/
.hm-b-c .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
}
@media (max-width: 767.98px) {
  .hm-b-c .owl-nav {
    top: 25%;
  }
}
.hm-b-c .owl-nav .owl-prev {
  left: 0;
  position: absolute;
  margin: 0;
}
@media (max-width: 767.98px) {
  .hm-b-c .owl-nav .owl-prev img {
    width: 50px;
    display: none;
  }
}
.hm-b-c .owl-nav .owl-next {
  right: 0;
  position: absolute;
  margin: 0;
}
@media (max-width: 767.98px) {
  .hm-b-c .owl-nav .owl-next img {
    width: 50px;
    display: none;
  }
}
.hm-b-c .owl-nav [class*=owl-] {
  background: rgba(0, 0, 0, 0);
}
.hm-b-c .owl-dots {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 1rem 0;
}
.hm-b-c .owl-dots .owl-dot span {
  color: white;
  margin: 3px;
}
.hm-b-c .owl-dots .owl-dot.active span {
  background: #f22f46;
}

.hm-b-i {
  height: 147px;
}
@media (min-width: 576px) {
  .hm-b-i {
    height: 600px;
  }
}
/*--- Service Section ---*/
.hm-sv {
  background: #ebebeb;
}

.hm-sv-c .hm-sv-ico {
  width: 75px;
  display: inline-block;
  margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
  .hm-sv-c .hm-sv-ico {
    width: 65px;
  }
}
.hm-sv-c h5 {
  font-weight: medium;
  font-size: 18pt;
  color: rgba(0, 0, 0, 0.85);
}
@media (max-width: 767.98px) {
  .hm-sv-c h5 {
    font-size: 10pt;
  }
}
.hm-sv-c h6 {
  font-weight: regular;
  font-size: 14pt;
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 767.98px) {
  .hm-sv-c h6 {
    font-size: 9pt;
    font-weight: lighter;
  }
}

/*--- Category Section ---*/
.hm-cg {
  background: white;
  padding: 1rem 0;
  min-height: 233px;
}
@media (max-width: 767.98px) {
  .hm-cg {
    min-height: 632px;
  }
}

.hm-cg-c {
  background: white;
}
.hm-cg-c:hover .hm-cg-img img {
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  cursor: pointer;
}
.hm-cg-c .hm-cg-img img {
  height: 200px;
  object-fit: cover;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.hm-cg-c .hm-cg-bdy {
  position: absolute;
}
.hm-cg-c .hm-cg-bdy h5 {
  font-size: 24pt;
  font-weight: bolder;
  color: white;
  text-transform: uppercase;
  letter-spacing: 9px;
}
.hm-cg-c .hm-cg-bdy .hm-cg-c-btn a {
  font-size: 13pt;
  font-weight: normal;
  background: #e9348f;
  color: white;
  padding: 6px 20px;
  border-radius: 2px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
@media (max-width: 767.98px) {
  .hm-cg-c .hm-cg-bdy .hm-cg-c-btn a {
    font-weight: lighter;
  }
}
.hm-cg-c .hm-cg-bdy .hm-cg-c-btn a:hover {
  text-decoration: none;
  box-shadow: 0 18px 40px -12px #e9348f;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

/*--- Featured Product ---*/
.hm-fp {
  background: white;
}

.mr-btn a {
  font-size: 13pt;
  font-weight: normal;
  background: #e9348f;
  color: white;
  padding: 7px 28px;
  border-radius: 3px;
  box-shadow: 0 18px 40px -12px #e9348f;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
@media (max-width: 767.98px) {
  .mr-btn a {
    font-weight: lighter;
  }
}
.mr-btn a:hover {
  text-decoration: none;
  box-shadow: 0 24px 48px -12px #e9348f;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  padding: 7px 50px;
}

.hm-fp-c {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.hm-fp-c:hover {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  cursor: pointer;
}
.hm-fp-c:hover .hm-fp-bdy h5 {
  color: rgba(0, 0, 0, 0.65);
}
.hm-fp-c .hm-fp-img {
  width: 255px;
  height: 255px;
  position: relative;
}
@media (max-width: 1200px) {
  .hm-fp-c .hm-fp-img {
    width: 149px;
    height: 149px;
  }
}
.hm-fp-c .hm-fp-img img {
  width: 255px;
  height: 255px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .hm-fp-c .hm-fp-img img {
    width: 149px;
    height: 149px;
  }
}
.hm-fp-c .hm-fp-img .hm-fp-img-nt {
  background: #e9348f;
  position: absolute;
  color: white;
  text-align: center;
  padding: 1px 8px;
  font-size: 10pt;
  font-weight: normal;
  margin: 0.7rem;
  top: 0;
  left: 0;
  display: inline-table;
  border-radius: 2px;
}
@media (max-width: 767.98px) {
  .hm-fp-c .hm-fp-img .hm-fp-img-nt {
    font-weight: lighter;
  }
}
.hm-fp-c .hm-fp-img .hm-fp-img-wl {
  background: rgba(0, 0, 0, 0);
  top: 0;
  right: 0;
  position: absolute;
  color: #999999;
  text-align: center;
  margin: 0.3rem 0.5rem;
  font-size: 16pt;
  font-weight: normal;
}
.hm-fp-c .hm-fp-img .hm-fp-img-wl .fa-heart.checked {
  color: #e9348f;
}
.hm-fp-c .hm-fp-bdy h5 {
  font-size: 12pt;
  font-weight: bolder;
  color: rgba(0, 0, 0, 0.85);
}
@media (max-width: 1200px) {
  .hm-fp-c .hm-fp-bdy h5 {
    font-size: 13pt;
  }
}
.hm-fp-c .hm-fp-bdy .hm-fp-bdy-pr {
  font-size: 12pt;
  font-weight: normal;
  color: #e9348f;
}
@media (max-width: 1200px) {
  .hm-fp-c .hm-fp-bdy .hm-fp-bdy-pr {
    font-size: 12pt;
  }
}
.hm-fp-c .hm-fp-bdy .hm-fp-bdy-pr strike {
  color: rgba(0, 0, 0, 0.6);
  margin-right: 0.5rem;
}
@media (max-width: 767.98px) {
  .hm-fp-c .hm-fp-bdy .hm-fp-bdy-pr strike {
    display: block;
  }
}
.hm-fp-c .hm-fp-bdy .hm-fp-bdy-ct {
  font-size: 12pt;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 1200px) {
  .hm-fp-c .hm-fp-bdy .hm-fp-bdy-ct {
    font-size: 11pt;
  }
}
.hm-fp-c .hm-fp-bdy .hm-fp-bdy-rt {
  font-size: 10pt;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
  .hm-fp-c .hm-fp-bdy .hm-fp-bdy-rt {
    font-size: 10pt;
  }
}
.hm-fp-c .hm-fp-bdy .hm-fp-bdy-rt .fa-star.checked {
  color: #e9348f;
}
.hm-fp-c .hm-fp-bdy .hm-fp-bdy-rt .rt-t {
  font-size: 12pt;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.6);
  display: inline-block;
}
@media (max-width: 1200px) {
  .hm-fp-c .hm-fp-bdy .hm-fp-bdy-rt .rt-t {
    font-size: 11pt;
  }
}

.m-c-sc {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  width: 149px;
}
.m-c-sc:hover {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  cursor: pointer;
}
.m-c-sc:hover .hm-fp-bdy h5 {
  color: rgba(0, 0, 0, 0.65);
}
.m-c-sc .hm-fp-img {
  width: 255px;
  height: 255px;
  position: relative;
}
@media (max-width: 1200px) {
  .m-c-sc .hm-fp-img {
    width: 149px;
    height: 149px;
  }
}
.m-c-sc .hm-fp-img img {
  width: 255px;
  height: 255px;
  object-fit: cover;
}
@media (max-width: 1200px) {
  .m-c-sc .hm-fp-img img {
    width: 149px;
    height: 149px;
  }
}
.m-c-sc .hm-fp-img .hm-fp-img-nt {
  background: #e9348f;
  position: absolute;
  color: white;
  text-align: center;
  padding: 1px 8px;
  font-size: 10pt;
  font-weight: normal;
  margin: 0.7rem;
  top: 0;
  left: 0;
  display: inline-table;
  border-radius: 2px;
}
@media (max-width: 767.98px) {
  .m-c-sc .hm-fp-img .hm-fp-img-nt {
    font-weight: lighter;
  }
}
.m-c-sc .hm-fp-img .hm-fp-img-wl {
  background: rgba(0, 0, 0, 0);
  top: 0;
  right: 0;
  position: absolute;
  color: #999999;
  text-align: center;
  margin: 0.3rem 0.5rem;
  font-size: 16pt;
  font-weight: normal;
}
.m-c-sc .hm-fp-img .hm-fp-img-wl .fa-heart.checked {
  color: #e9348f;
}
.m-c-sc .hm-fp-bdy h5 {
  font-size: 12pt;
  font-weight: bolder;
  color: rgba(0, 0, 0, 0.85);
  white-space: normal;
}
@media (max-width: 1200px) {
  .m-c-sc .hm-fp-bdy h5 {
    font-size: 13pt;
  }
}
.m-c-sc .hm-fp-bdy .hm-fp-bdy-pr {
  font-size: 12pt;
  font-weight: normal;
  color: #e9348f;
}
@media (max-width: 1200px) {
  .m-c-sc .hm-fp-bdy .hm-fp-bdy-pr {
    font-size: 12pt;
  }
}
.m-c-sc .hm-fp-bdy .hm-fp-bdy-pr strike {
  color: rgba(0, 0, 0, 0.6);
  margin-right: 0.5rem;
}
@media (max-width: 767.98px) {
  .m-c-sc .hm-fp-bdy .hm-fp-bdy-pr strike {
    display: block;
  }
}
.m-c-sc .hm-fp-bdy .hm-fp-bdy-ct {
  font-size: 12pt;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 1200px) {
  .m-c-sc .hm-fp-bdy .hm-fp-bdy-ct {
    font-size: 11pt;
  }
}
.m-c-sc .hm-fp-bdy .hm-fp-bdy-rt {
  font-size: 10pt;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
  .m-c-sc .hm-fp-bdy .hm-fp-bdy-rt {
    font-size: 10pt;
  }
}
.m-c-sc .hm-fp-bdy .hm-fp-bdy-rt .fa-star.checked {
  color: #e9348f;
}
.m-c-sc .hm-fp-bdy .hm-fp-bdy-rt .rt-t {
  font-size: 12pt;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.6);
  display: inline-block;
}
@media (max-width: 1200px) {
  .m-c-sc .hm-fp-bdy .hm-fp-bdy-rt .rt-t {
    font-size: 11pt;
  }
}

/*--- Best Seller ---*/
.hm-bs {
  background: white;
  min-height: 705px;
}

.hm-bs-c {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.hm-bs-c:hover {
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  cursor: pointer;
}
.hm-bs-c:hover .hm-bs-bdy h5 {
  color: rgba(0, 0, 0, 0.55);
}
.hm-bs-c .hm-bs-img {
  width: 150px;
  height: 150px;
  position: relative;
}
.hm-bs-c .hm-bs-img img {
  width: 150px;
  height: 150px;
  object-fit: cover;
}
.hm-bs-c .hm-bs-img .hm-fp-img-nt {
  background: #f22f46;
  position: absolute;
  color: white;
  text-align: center;
  padding: 1px 8px;
  font-size: 8pt;
  font-weight: normal;
  margin: 0.7rem;
  top: 0;
  left: 0;
  display: inline-table;
  border-radius: 2px;
}
@media (max-width: 767.98px) {
  .hm-bs-c .hm-bs-img .hm-fp-img-nt {
    font-weight: lighter;
  }
}
.hm-bs-c .hm-bs-img .hm-bs-img-wl {
  background: rgba(0, 0, 0, 0);
  top: 0;
  right: 0;
  position: absolute;
  color: #999999;
  text-align: center;
  margin: 0.3rem 0.5rem;
  font-size: 16pt;
  font-weight: normal;
}
.hm-bs-c .hm-bs-img .hm-bs-img-wl .fa-heart.checked {
  color: #f22f46;
}
.hm-bs-c .hm-bs-bdy h5 {
  font-size: 12pt;
  font-weight: bolder;
  color: rgba(0, 0, 0, 0.85);
}
@media (max-width: 767.98px) {
  .hm-bs-c .hm-bs-bdy h5 {
    font-size: 11pt;
  }
}
.hm-bs-c .hm-bs-bdy .hm-bs-bdy-pr {
  font-size: 12pt;
  font-weight: normal;
  color: #ff6a27;
}
@media (max-width: 767.98px) {
  .hm-bs-c .hm-bs-bdy .hm-bs-bdy-pr {
    font-size: 12pt;
  }
}
.hm-bs-c .hm-bs-bdy .hm-bs-bdy-pr strike {
  color: rgba(0, 0, 0, 0.6);
  margin-right: 0.5rem;
}
@media (max-width: 767.98px) {
  .hm-bs-c .hm-bs-bdy .hm-bs-bdy-pr strike {
    display: block;
  }
}
.hm-bs-c .hm-bs-bdy .hm-bs-bdy-ct {
  font-size: 12pt;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.6);
}
@media (max-width: 767.98px) {
  .hm-bs-c .hm-bs-bdy .hm-bs-bdy-ct {
    font-size: 10pt;
    font-weight: lighter;
  }
}
.hm-bs-c .hm-bs-bdy .hm-bs-bdy-rt {
  font-size: 10pt;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 767.98px) {
  .hm-bs-c .hm-bs-bdy .hm-bs-bdy-rt {
    font-size: 10pt;
    font-weight: lighter;
  }
}
.hm-bs-c .hm-bs-bdy .hm-bs-bdy-rt .fa-star.checked {
  color: #ff6a27;
}
.hm-bs-c .hm-bs-bdy .hm-bs-bdy-rt .rt-t {
  font-size: 12pt;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.6);
  display: inline-block;
}
@media (max-width: 767.98px) {
  .hm-bs-c .hm-bs-bdy .hm-bs-bdy-rt .rt-t {
    font-size: 10pt;
    font-weight: lighter;
  }
}

/*--- Cover Image ---*/
.cv-s img {
  width: 100%;
  height: 345px;
}

/*--- Header Link ---*/
.hd-lnk {
  background: rgba(0, 0, 0, 0);
  padding: 3px 10px;
  font-size: 10pt;
  font-weight: 500;
  color: #e9348f;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.hd-lnk:hover {
  border-bottom: 3px solid #e9348f;
  color: rgba(0, 0, 0, 0.8);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  text-decoration: none;
}
.hd-lnk.actived {
  border-bottom: 3px solid #e9348f;
  color: rgba(0, 0, 0, 0.8);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  text-decoration: none;
}
.hd-lnk.lnk-filter:before {
  content: url("../img/filter.svg");
  width: 15px;
  height: 15px;
  margin-right: 0.5rem;
  color: rgba(0, 0, 0, 0.6);
}
.hd-lnk.lnk-filter:hover:before {
  content: url("../img/filter-w.svg");
}
.hd-lnk.lnk-filter.active:after {
  content: "•";
  margin-left: 0.5rem;
  color: #e9348f;
}
.hd-lnk.lnk-sort:before {
  content: url("../img/sort.svg");
  width: 15px;
  height: 15px;
  margin-right: 0.5rem;
  color: rgba(0, 0, 0, 0.6);
}
.hd-lnk.lnk-sort:hover:before {
  content: url("../img/sort-w.svg");
}
.hd-lnk.lnk-sort.active:after {
  content: "•";
  margin-left: 0.5rem;
  color: #e9348f;
}
.hd-lnk.lnk-sort.active:hover:after {
  content: "•";
  color: white;
}

.hd-lnk-fil {
  background: #f22f46;
  padding: 0.35rem 1rem;
  font-size: 9pt;
  font-weight: 500;
  color: white;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  border-radius: 50px;
}
.hd-lnk-fil:hover {
  border-bottom: 3px solid #e9348f;
  color: rgba(0, 0, 0, 0.8);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  text-decoration: none;
}
.hd-lnk-fil.actived {
  border-bottom: 3px solid #e9348f;
  color: rgba(0, 0, 0, 0.8);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  text-decoration: none;
}

.hd-lnk-del {
  background: #f7f7f7;
  padding: 0.25rem 0.5rem;
  font-size: 9pt;
  font-weight: 500;
  color: #333;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
  border-radius: 50%;
}
.breadcrumb-item a {
  color: rgba(0, 0, 0, 0.6);
}
.breadcrumb-item.active {
  color: rgba(0, 0, 0, 0.9);
  font-weight: 500;
}

.hd-lnk-m {
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.hd-lnk-m::-webkit-scrollbar {
  height: 6px;
  background-color: #f8f8f8;
  display: none;
}
.hd-lnk-m::-webkit-scrollbar-thumb {
  background-color: #e9348f;
  border-radius: 5px;
}
.hd-lnk-m::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f8f8f8;
}
.hd-lnk-m li {
  display: inline-block;
}

.hd-lnk-s div div div ul {
  padding: 12px 0;
}

/*--- Paginaton ---*/
.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: rgba(0, 0, 0, 0.6);
  background-color: #f5f5f5;
  border: none;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
  border-radius: 0.25rem;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.page-link:hover {
  color: white;
  background-color: #007bff;
  box-shadow: 0 18px 40px -12px #007bff;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.page-link.actived {
  color: white;
  background-color: #007bff;
  box-shadow: 0 18px 40px -12px #007bff;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}


/*--- Deskripsi & Review ---*/
.dt-dsc div div {
  background: #f5f5f5;
}

.desc-nav {
  border-bottom: 3px solid #ebebeb;
}
.desc-nav .nav-tabs {
  border-bottom: none;
}
.desc-nav .nav-tabs .nav-link {
  background: #f5f5f5;
  padding: 7px 18px;
  color: rgba(0, 0, 0, 0.85);
  font-size: 12pt;
  font-weight: normal;
  border-color: rgba(0, 0, 0, 0);
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 3px solid rgba(0, 0, 0, 0);
  cursor: pointer;
  border-radius: 0;
}
.desc-nav .nav-tabs .nav-link:hover {
  border-color: #ffd02c;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 3px solid #ffd02c;
  color: #ffd02c;
}
.desc-nav .nav-tabs .nav-link.active {
  border-color: #ffd02c;
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 3px solid #ffd02c;
  color: #ffd02c;
}
@media (max-width: 767.98px) {
  .desc-nav .nav-tabs .nav-link {
    padding: 7px 34px;
  }
}

.desc-nav-content {
  padding: 1rem;
  min-height: 250px;
}
.desc-nav-content .desc-content {
  font-size: 12pt;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.6);
}

.card.accord {
  border: none;
}

.card-header.accord {
  background: #ebebeb;
  padding: 6px 8px;
}
.card-header.accord h2 button {
  font-size: 13pt;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
}
.card-header.accord h2 button:active {
  text-decoration: none;
}
.card-header.accord h2 button:focus {
  text-decoration: none;
}
.card-header.accord h2 button img {
  width: 12px;
  height: 12px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.card-header.accord h2 button img.active {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.card-body.accord {
  background: #f8f8f8;
  font-size: 10pt;
}

/*--- Detail Product ---*/
.inf-rt {
  font-size: 9pt;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 1200px) {
  .inf-rt {
    font-size: 11pt;
  }
}
.inf-rt .fa-star.checked {
  color: #ff6a27;
}
.inf-rt .rt-t {
  font-size: 12pt;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.6);
  display: inline-block;
}
@media (max-width: 1200px) {
  .inf-rt .rt-t {
    font-size: 11pt;
  }
}
.inf-rt .rt-lnk {
  font-size: 12pt;
  font-weight: normal;
  display: inline-block;
}
@media (max-width: 1200px) {
  .inf-rt .rt-lnk {
    font-size: 11pt;
  }
}

.inf-pr {
  font-size: 14pt;
  font-weight: bold;
  color: #e9348f;
}
@media (max-width: 767.98px) {
  .inf-pr {
    font-size: 13pt;
  }
}
.inf-pr strike {
  color: rgba(0, 0, 0, 0.6);
  margin-right: 0.5rem;
  font-size: 11pt;
  font-weight: normal;
  display: block;
}
@media (max-width: 767.98px) {
  .inf-pr strike {
    display: block;
    font-size: 10pt;
  }
}
.inf-pr span {
  color: red;
  font-size: 10pt;
  font-weight: normal;
}
@media (max-width: 767.98px) {
  .inf-pr span {
    font-size: 10pt;
  }
}

.inf-desc {
  font-size: 11pt;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.6);
}

.inf-sh .inf-soc-mn .soc-itm {
  float: left;
  margin-right: 0.25rem;
  margin-bottom: 1rem;
}
.inf-sh .inf-soc-mn .soc-itm .soc-lnk {
  font-size: 11pt;
  font-weight: normal;
  padding: 10px 32px;
  cursor: pointer;
  color: white;
  border-radius: 3px;
  display: block;
  width: 231.39px;
  text-align: center;
}
.inf-sh .inf-soc-mn .soc-itm .soc-lnk.fb {
  background: #3b5998;
}
.inf-sh .inf-soc-mn .soc-itm .soc-lnk.wa {
  background: #25d366;
}
.inf-sh .inf-soc-mn .soc-itm .soc-lnk.ig {
  background: #c13584;
}
.inf-sh .inf-soc-mn .soc-itm .soc-lnk.tw {
  background: #ffd02c;
}
.inf-sh .inf-soc-mn .soc-itm:last-child {
  margin-right: 0;
}

.inf-lnk .lnk-stok {
  width: 110px;
  margin-right: 0.25rem;
}
.inf-lnk .lnk-stok .stok-itm {
  height: 45px;
  float: left;
  background: white;
  padding: 0.5rem;
}
.inf-lnk .lnk-stok .stok-itm:nth-child(1) {
  border-right: none;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  padding-left: 0;
  padding-right: 0;
  width: 30px;
}
.inf-lnk .lnk-stok .stok-itm:nth-child(2) {
  border-left: none;
  border-right: none;
  width: 50px;
}
.inf-lnk .lnk-stok .stok-itm:nth-child(3) {
  border-left: none;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  padding-left: 0;
  padding-right: 0;
  width: 30px;
}
.inf-lnk .lnk-stok .stok-itm a {
  width: 100%;
  text-align: center;
}
.inf-lnk .lnk-stok .stok-itm a:hover {
  cursor: pointer;
}
.inf-lnk .lnk-stok .stok-itm a img {
  width: 25px;
  height: 25px;
}
.inf-lnk .lnk-stok .stok-itm input {
  width: 100%;
  border: none;
  text-align: center;
  background: white;
}
.inf-lnk .lnk-solid {
  color: white;
  background: #e9348f;
  margin-right: 0.25rem;
  padding: 10px 34px;
  border-radius: 4px;
}
.inf-lnk .lnk-solid:hover {
  text-decoration: none;
  box-shadow: 0 18px 40px -12px #e9348f;
}
.inf-lnk .lnk-reg {
  color: #e9348f;
  background: white;
  margin-right: 0.25rem;
  padding: 10px 15px;
  border-radius: 4px;
}
.inf-lnk .lnk-reg:hover {
  text-decoration: none;
}
.inf-lnk .lnk-reg:hover img {
  width: 16px;
  height: 16px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.inf-lnk .lnk-reg img {
  width: 14px;
  height: 14px;
  margin-right: 0.5rem;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
@media (max-width: 991.98px) {
  .inf-lnk .lnk-reg {
    padding: 10px 15px;
  }
  .inf-lnk .lnk-reg img {
    margin-right: 0;
  }
}

.prd-c {
  width: 326px;
  margin-bottom: 0.25rem;
}
.prd-c .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
}
@media (max-width: 767.98px) {
  .prd-c .owl-nav {
    top: 40%;
  }
}
.prd-c .owl-nav .owl-prev {
  left: 0;
  position: absolute;
  margin: 0;
}
.prd-c .owl-nav .owl-prev:hover {
  outline: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.prd-c .owl-nav .owl-prev:focus {
  outline: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.prd-c .owl-nav .owl-prev:active {
  outline: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.prd-c .owl-nav .owl-prev img {
  width: 40px;
}
@media (max-width: 767.98px) {
  .prd-c .owl-nav .owl-prev img {
    width: 40px;
  }
}
.prd-c .owl-nav .owl-next {
  right: 0;
  position: absolute;
  margin: 0;
}
.prd-c .owl-nav .owl-next:hover {
  outline: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.prd-c .owl-nav .owl-next:focus {
  outline: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.prd-c .owl-nav .owl-next:active {
  outline: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.prd-c .owl-nav .owl-next img {
  width: 40px;
}
@media (max-width: 767.98px) {
  .prd-c .owl-nav .owl-next img {
    width: 40px;
  }
}
.prd-c .item .c-img {
  width: 326px;
  height: 326px;
}
@media (max-width: 767.98px) {
  .prd-c {
    width: 330px;
  }
  .prd-c .item .c-img {
    width: 330px;
    height: 330px;
  }
}

.c-img-wl {
  background: rgba(0, 0, 0, 0);
  top: 0;
  right: 20px;
  position: absolute;
  color: #999999;
  text-align: center;
  margin: 0.3rem 0.5rem;
  font-size: 20pt;
  font-weight: normal;
  z-index: 2;
  cursor: pointer;
}
.c-img-wl .fa-heart.checked {
  color: #ff6a27;
}

.prd-g {
  flex-direction: row;
  -ms-flex-direction: row;
  overflow-x: scroll;
  overflow-y: hidden;
  height: 79px;
  min-height: 79px;
  max-height: 79px;
  margin-right: 0;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.prd-g::-webkit-scrollbar {
  height: 6px;
  background-color: #f8f8f8;
}
.prd-g::-webkit-scrollbar-thumb {
  background-color: #e9348f;
  border-radius: 5px;
}
.prd-g::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f8f8f8;
}
.prd-g .g-itm {
  direction: ltr;
  display: inline-flex;
  margin-right: 0.25rem;
}
.prd-g .g-itm .g-img {
  width: 79px;
  height: 79px;
  margin-bottom: 0.25rem;
}

.dt-bot-nav {
  position: fixed;
  width: 100%;
  bottom: 0;
  background: #ebebeb;
  padding: 12px 0;
  z-index: 3;
}
.dt-bot-nav div div div .lnk-solid {
  color: white;
  background: #e9348f;
  margin-right: 0.25rem;
  padding: 13px;
  border-radius: 4px;
  width: 100%;
  text-align: center;
}
.dt-bot-nav div div div .lnk-solid:hover {
  text-decoration: none;
  box-shadow: 0 18px 40px -12px #e9348f;
}
.dt-bot-nav div div div .lnk-reg {
  color: #e9348f;
  background: white;
  margin-right: 0.25rem;
  padding: 10px;
  border-radius: 4px;
  width: 100%;
  border: 1px solid #e9348f;
}
.dt-bot-nav div div div .lnk-reg:hover {
  text-decoration: none;
}
.dt-bot-nav div div div .lnk-reg:hover img {
  width: 20px;
  height: 20px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.dt-bot-nav div div div .lnk-reg img {
  width: 17px;
  height: 17px;
  margin-right: 0.5rem;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
@media (max-width: 991.98px) {
  .dt-bot-nav div div div .lnk-reg {
    padding: 12px 15px;
  }
  .dt-bot-nav div div div .lnk-reg img {
    margin-right: 0.5rem;
  }
}

.dt-bs-c {
  border: 1px solid #ebebeb;
  border-radius: 3px;
}
.dt-bs-c .owl-dots .owl-dot span {
  margin: 5px 2px;
}
.dt-bs-c .owl-dots .owl-dot.active span {
  background: #e9348f;
}

/*--- Blog ---*/
.hm-bl-c {
  background: white;
}
.hm-bl-c:hover .hm-bl-img img {
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  cursor: pointer;
}
.hm-bl-c .hm-bl-img img {
  height: 140px;
  object-fit: cover;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  border-radius: 9px;
}
.hm-bl-c .hm-bl-bdy h5 {
  font-size: 12pt;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 22px;
  max-height: 44px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.hm-bl-c .hm-bl-bdy .hm-bl-c-btn a {
  font-size: 13pt;
  font-weight: normal;
  background: #e9348f;
  color: white;
  padding: 6px 20px;
  border-radius: 2px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
@media (max-width: 767.98px) {
  .hm-bl-c .hm-bl-bdy .hm-bl-c-btn a {
    font-weight: lighter;
  }
}
.hm-bl-c .hm-bl-bdy .hm-bl-c-btn a:hover {
  text-decoration: none;
  box-shadow: 0 18px 40px -12px #e9348f;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.filter-border {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 3px;
}

.text-desc {
  font-size: 14pt;
  font-weight: normal;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
}

/*--- Search ---*/
.src-g .src-inp {
  border: none;
  background: #f8f8f8;
  height: 50px;
  border-radius: 5px;
  padding: 1rem 3.2rem 1rem 1rem;
}
.src-g .src-inp:focus {
  outline: none;
  box-shadow: none;
}
.src-g .src-inp:active {
  outline: none;
  box-shadow: none;
}
.src-g .src-img {
  top: 12px;
  right: 1rem;
  width: 21px;
  border: none;
  background: transparent;
  padding: 0;
}

/*--- Scroll Horizontal ---*/
.scroll-h {
  white-space: nowrap;
  overflow-y: hidden;
  overflow-x: scroll;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: -ms-autohiding-scrollbar;
}
.scroll-h::-webkit-scrollbar {
  height: 6px;
  background-color: #f8f8f8;
  display: none;
}
.scroll-h::-webkit-scrollbar-thumb {
  background-color: #e9348f;
  border-radius: 5px;
}
.scroll-h::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f8f8f8;
}
.scroll-h li {
  display: inline-block;
}

.sort-panel {
  display: none;
}
.sort-panel.active {
  display: flex;
  flex-direction: column;
}

.text-date {
  font-size: 1rem;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.6);
}

/*--- /Main ---*/
/*--- Mobile ---*/
.m-cg-c img {
  width: 150px;
  height: 90px;
  border-radius: 4px;
}

.m-c-sc-art {
  width: 300px;
}
.m-c-sc-art img {
  width: 300px;
  height: 130px;
}
.m-c-sc-art h3 {
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 20px;
  max-height: 40px;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.prd-c-mb {
  width: 100%;
  margin-bottom: 0.25rem;
}
.prd-c-mb .owl-nav {
  position: absolute;
  top: 40%;
  width: 100%;
}
@media (max-width: 767.98px) {
  .prd-c-mb .owl-nav {
    top: 40%;
  }
}
.prd-c-mb .owl-nav .owl-prev {
  left: 0;
  position: absolute;
  margin: 0;
}
.prd-c-mb .owl-nav .owl-prev:hover {
  outline: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.prd-c-mb .owl-nav .owl-prev:focus {
  outline: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.prd-c-mb .owl-nav .owl-prev:active {
  outline: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.prd-c-mb .owl-nav .owl-prev img {
  width: 40px;
}
@media (max-width: 767.98px) {
  .prd-c-mb .owl-nav .owl-prev img {
    width: 40px;
  }
}
.prd-c-mb .owl-nav .owl-next {
  right: 0;
  position: absolute;
  margin: 0;
}
.prd-c-mb .owl-nav .owl-next:hover {
  outline: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.prd-c-mb .owl-nav .owl-next:focus {
  outline: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.prd-c-mb .owl-nav .owl-next:active {
  outline: none;
  box-shadow: none;
  background: rgba(0, 0, 0, 0);
}
.prd-c-mb .owl-nav .owl-next img {
  width: 40px;
}
@media (max-width: 767.98px) {
  .prd-c-mb .owl-nav .owl-next img {
    width: 40px;
  }
}
.prd-c-mb .item .c-img {
  width: 100%;
  height: 375px;
}

.space-bot-nav {
  padding-top: 74px;
}

.nav-menu-m {
  box-shadow: 0 1px 6px 0 rgba(32, 33, 36, 0.28);
  height: 50px;
  z-index: 3;
  width: 100%;
  background: white;
  position: fixed;
  bottom: 0;
}

.menu-link-m {
  color: #d8d8d8;
  fill: #d8d8d8;
  font-size: 8pt;
  font-weight: normal;
}
.menu-link-m:hover {
  color: #e9348f;
  fill: #e9348f;
}
.menu-link-m.active {
  color: #e9348f;
  fill: #e9348f;
}
.menu-link-m svg {
  width: 22px;
  height: 22px;
}

.space-nav-menu {
  height: 50px;
}

/*--- /Mobile ---*/
/*--- Login ---*/
.login-sec {
  min-height: 100vh;
  overflow-x: hidden;
}

.form-login {
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 50px;
  color: rgba(0, 0, 0, 0.4);
  padding: 0.85rem 1rem;
  text-align: center;
}
.form-login:active {
  outline: none;
}
.form-login:focus {
  outline: none;
}
.form-login::placeholder {
  color: rgba(0, 0, 0, 0.4);
}
.form-login-btn {
  background-color: #e9348f;
  border: 1px solid white;
  border-radius: 50px;
  color: white;
  padding: 0.85rem 1rem;
  text-align: center;
}

/*--- /Login ---*/
.border-rounded {
  border-radius: 2rem;
}

.ts {
  color: #383838;
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 1366px) {
  .ts {
    font-size: 2.5rem;
  }
}

.ds {
  color: #383838;
  font-size: 1rem;
  font-weight: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  line-height: 25px;
  max-height: 75px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

/* input {
  border: 1px solid #ccc;
  font-size: 12px;
  height: 30px;
  padding: 4px 8px;
  position: absolute;
  width: 50%;
}
input:focus {
  outline: none;
}

button {
  text-align: center;
}
button:focus {
  outline: none;
}
button.btn-search, button.btn-reset {
  background: #ffd02c;
  border: none;
  height: 30px;
  font-size: 12px;
  padding: 4px;
  position: absolute;
  width: 30px;
}

.sample.five, .sample.six {
  perspective: 400px;
}
.sample.five input, .sample.six input {
  width: 120px;
}
.sample.five input:focus ~ button.btn-search, .sample.six input:focus ~ button.btn-search {
  transform: rotateY(180deg) translateX(60px);
  transition: all .6s ease-in-out .2s;
  width: 60px;
}
.sample.five input:focus ~ button.btn-reset, .sample.six input:focus ~ button.btn-reset {
  transform: rotateY(0deg);
  transition: all .6s ease-in-out .8s;
}
.sample.five button.btn-search, .sample.six button.btn-search {
  backface-visibility: visible;
  color: #fff;
  padding: 0;
  position: relative;
  transform: rotateY(0deg) translateX(0px);
  transform-origin: 121px 0;
  transform-style: preserve3d;
  transition: all .6s ease-in-out .2s;
  width: 120px;
}
.sample.five button.btn-reset, .sample.six button.btn-reset {
  backface-visibility: hidden;
  background: #ccc;
  left: 184px;
  transform: rotateY(180deg);
  transform-origin: left 0;
  transform-style: preserve3d;
  transition: all .6s ease-in-out .2s;
  width: 60px;
}

@keyframes bounceRight {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes jumpTowardSearch {
  0% {
    background: #ccc;
    opacity: 1;
    transform: rotateZ(0deg) scale(1);
  }
  20% {
    background: #ccc;
    opacity: 0;
    transform: rotateZ(-60deg) scale(50);
  }
  55% {
    background: hotpink;
    opacity: 0;
    transform: rotateZ(-30deg) scale(100);
  }
  90% {
    background: hotpink;
    opacity: 0;
    transform: rotateZ(-30deg) scale(50);
  }
  100% {
    background: hotpink;
    opacity: 1;
    transform: rotateZ(0deg) scale(1);
  }
}
@keyframes jumpTowardReset {
  0% {
    opacity: 0;
    transform: rotateZ(0deg) scale(1);
  }
  20% {
    opacity: 0;
    transform: rotateZ(-60deg) scale(50);
  }
  55% {
    opacity: 0;
    transform: rotateZ(-30deg) scale(100);
  }
  90% {
    opacity: 0;
    transform: rotateZ(-30deg) scale(50);
  }
  100% {
    opacity: 1;
    transform: rotateZ(0deg) scale(1);
  }
} */

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu a::after {
  transform: rotate(-90deg);
  position: absolute;
  right: 6px;
  top: .8em;
}

.dropdown-submenu .dropdown-menu {
  top: 0;
  left: 100%;
  margin-left: .1rem;
  margin-right: .1rem;
}

.dropdown-toggle::after{
  display: none;
}
.dropleft .dropdown-toggle::before{
  display: none;
}
.dropleft .dropdown-menu{
  top: 40px;
  right: 0;
}
.searchform {
  position: absolute;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
}
input {
  border: none;
  outline: none;
}
input[type="text"] {
  padding: 15px 16px;
  /* border-bottom-left-radius: 10px; */
  /* border-top-left-radius: 10px; */
}
input[type="text"]:focus {
  outline: none;
}

/* #Navigation
================================================== */

.start-header {
  opacity: 1;
  transform: translateY(0);
  padding: 10px 0;
  box-shadow: 0 10px 30px 0 rgba(138, 155, 165, 0.15);
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.start-header.scroll-on {
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  padding: 5px 0;
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.start-header.scroll-on .navbar-brand img{
  height: 28px;
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.navigation-wrap{
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.navbar{
  padding: 0;
}
.navbar-brand img{
  height: 52px;
  width: auto;
  display: block;
  -webkit-transition : all 0.3s ease-out;
  transition : all 0.3s ease-out;
}
.navbar-toggler {
  float: right;
  border: none;
  padding-right: 0;
}
.navbar-toggler:active,
.navbar-toggler:focus {
  outline: none;
}
.navbar-dark .navbar-toggler-icon {
  width: 24px;
  height: 17px;
  background-image: none;
  position: relative;
  border-bottom: 2px solid rgba(255,255,255,.5);
  transition: all 300ms linear;
}
.navbar-dark .navbar-toggler-icon:after,
.navbar-dark .navbar-toggler-icon:before{
  width: 24px;
  position: absolute;
  height: 2px;
  background-color: rgba(255,255,255,.5);
  top: 0;
  left: 0;
  content: '';
  z-index: 2;
  transition: all 300ms linear;
}
.navbar-dark .navbar-toggler-icon:after{
  top: 8px;
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
  transform: rotate(45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
  transform: translateY(8px) rotate(-45deg);
}
.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  border-color: transparent;
}
.nav-item:hover .nav-link{
  color: #fff !important;
}
.nav-item.active .nav-link{
  color: #FFF !important;
}
.nav-link {
  position: relative;
  padding: 5px 0 !important;
  display: inline-block;
  font-family: 'SourceSansVariable_Roman', sans-serif;
  text-transform: uppercase;
  font-size: .8rem;
  font-weight: 700;
  color: #d0d0d0;
  transition: all 200ms linear;
}
.nav-item:after{
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  content: '';
  background-color: #E70000;
  opacity: 0;
  transition: all 200ms linear;
}
.nav-item:hover:after{
  bottom: 0;
  opacity: 1;
}
.nav-item.active:hover:after{
  opacity: 0;
}
.nav-item{
  position: relative;
  transition: all 200ms linear;
}

.nav-item .dropdown-menu {
  transform: translate3d(0, 10px, 0);
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  display: block;
  padding: 0;
  margin: 0;
  transition: all 200ms linear;
}
.nav-item.show .dropdown-menu {
  opacity: 1;
  visibility: visible;
  max-height: 999px;
  transform: translate3d(0, 0px, 0);
}
.dropdown-menu {
  padding: 10px!important;
  margin: 0;
  font-size: 13px;
  letter-spacing: 1px;
  color: #212121;
  background-color: #fcfaff;
  border: none;
  border-radius: 3px;
  box-shadow: 0 5px 10px 0 rgba(138, 155, 165, 0.15);
  transition: all 200ms linear;
}
.dropdown-toggle::after {
  display: none;
}

.dropdown-item {
  padding: 3px 15px;
  color: #212121;
  border-radius: 2px;
  transition: all 200ms linear;
}
.dropdown-item:hover,
.dropdown-item:focus {
  color: #fff;
  background-color: #ffd02c;
}

.dropdown-vehicle{
  width: 450px;
}

.dropdown-menu.columns-3 {
	min-width: 600px;
}

.dropdown-menu.columns-7 {
  min-width: 1024px;
}
.dropdown-menu li a {
	padding: 5px 15px;
	font-weight: 300;
}
.multi-column-dropdown {
	list-style: none;
  margin: 0px;
  padding: 0px;
}
.multi-column-dropdown li a {
	display: block;
	clear: both;
	line-height: 1.428571429;
	color: #333;
	white-space: normal;
}
.multi-column-dropdown li a:hover {
	text-decoration: none;
	color: #262626;
	background-color: #999;
}
.vehicle-dropdown-item{
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 14.2857%;
  flex: 0 0 14.2857%;
  max-width: 14.2857%;
}

.slider-div {
  position: relative;
  width: 100%;
}

.slider-div img {
  width: 100%;
  height: auto;
}

.slider-div .btn-slider {
  position: absolute;
  top: 85%;
  left: 5%;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  /*background-color: #ffd02c;*/
  /*color: #fff;*/
  /*font-size: 12px;*/
  /*padding: 12px 24px;*/
  border: none;
  cursor: pointer;
  /*border-radius: 5px;*/
  text-align: center;
  width: 75px;
  height: 75px;
}

.slider-div .btn-slider:hover {
  /*background-color: #fff;*/
  /*color: #ffd02c;*/
}

@media (max-width: 767px) {
  .dropdown-menu.multi-column {
      min-width: 240px !important;
      overflow-x: hidden;
  }
  .slider-div .btn-slider{
    width: 25px;
    height: 25px;
  }
}

/* Bootstrap 4 text input with search icon */

.has-search .form-control {
  padding-left: 2.375rem;
}

.has-search .form-control-feedback {
  position: absolute;
  z-index: 2;
  display: block;
  width: 2.375rem;
  height: 2.375rem;
  line-height: 2.375rem;
  text-align: center;
  pointer-events: none;
  color: #aaa;
}
.homepage-article-title{
  color: #5f5f5f;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
  font-family: 'SourceSansVariable_Roman', sans-serif;
}
.homepage-article-subtitle{
  font-size: 2rem;
  line-height: 1.1;
  color: #000;
  font-family: 'SourceSansVariable_Roman', sans-serif;
  font-weight: 700;
}
.homepage-second-article-topic{
  color: #e5e5e5;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 0.3rem;
  font-size: .8rem;
  text-transform: uppercase;
  font-family: 'SourceSansVariable_Roman', sans-serif;
  font-weight: 700;
}
.homepage-second-article-title{
  margin-bottom: 0;
  font-family: 'SourceSansVariable_Roman', sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 1.2rem;
  line-height: 1.1;
  height: 2.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.homepage-third-article-topic{
  color: #5f5f5f;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 0.3rem;
  font-size: .8rem;
  text-transform: uppercase;
  font-family: 'SourceSansVariable_Roman', sans-serif;
  font-weight: 700;
}
.homepage-third-article-title{
  margin-bottom: 0;
  font-family: 'SourceSansVariable_Roman', sans-serif;
  font-weight: 700;
  color: #000000;
  font-size: 1rem;
  line-height: 1.1;
  height: 2.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.homepage-third-article-excerpt{
  font-size: 1rem;
  line-height: 1.2;
  height: 3.8rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.homepage-corporate-news-title{
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.3rem;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.homepage-corporate-news-subtitle{
  font-size: 2.4rem;
  color: #fff;
  line-height: 1.1;
}

.homepage-corporate-news-news-topic{
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 0.3rem;
  font-size: .8rem;
  text-transform: uppercase;
}
.homepage-corporate-news-news-title{
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.1;
  margin-bottom: 0;
}

.pricelist-car-image{
  height: 155px;
}
.pricelist-footnote ul{
  margin-bottom: 0;
}

.corporate-compro-title{
  font-size: 1.2rem;
  letter-spacing: .1em;
  margin-bottom: 0;
}

.corporate-compro-subtitle{
  font-size: 2rem;
}

.service-spare-part-carousel .arrow-prev{
  width: 25px;
  height: 50px;
  position: absolute;
  top: 40%;
  left: 5%;
  z-index: 2;
}

.homepage-carousel .arrow-next{
  width: 50px;
  height: 50px;
  position: absolute;
  top: 40%;
  right: 0;
  z-index: 2;
}

.homepage-carousel .arrow-prev{
  width: 50px;
  height: 50px;
  position: absolute;
  top: 40%;
  left: 0;
  z-index: 2;
}

.service-spare-part-carousel .arrow-next{
  width: 25px;
  height: 50px;
  position: absolute;
  top: 40%;
  right: 46%;
  z-index: 2;
}

.service-call-center{
  font-size: 2rem;
}
.service-call-center-call-us{
  font-size: 2rem;
}
.service-call-center-call-us-desc{
  font-size: 2rem;
}

/* Breadcrumbs */
.bc-icons-2 .breadcrumb-item + .breadcrumb-item::before {
  content: none;
}
.bc-icons-2 .breadcrumb-item.active {
  color: #455a64;
}
.breadcrumb{
  background-color: #f8f9fa;
}

.network-contact-form-div{
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  margin-left: -20%;
}

.nav-link.active{
  font-weight: 700;
  color: #fff !important;
  border-bottom: 2px solid #E70000;
}

.network-sole-agent{
  text-align: right;
}

.network-sole-distributor{
  text-align: left;
}
.service-booking-service{
  font-size: 3rem;
  font-weight: 700;
  letter-spacing: .1rem;
}
.service-booking-service-2{
  font-size: 1.2rem;
}
.service-booking-service-3{
  font-size: 1.2rem;
  line-height: 1.1;
}
.service-email-us{
  text-align: right;
  font-size: 3rem;
  font-weight: 700;
}
.social-media-caption-overlay{
  width: 80%;
  height: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: .5s ease;
  background-color: rgba(29,50,95,1);
}
.social-media-img-div:hover .social-media-caption-overlay{
  opacity: 1;
}

.social-media-caption{
  width: 90%;
  position: absolute;
  top: 30%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: rgba(29,50,95,1);

}
.social-media-caption-text{
  font-size: .9rem;
  line-height: 1.2rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}
.social-media-caption-button{
  position: absolute;
  right: 5%;
  bottom: 5%;
}
.foot-menu > li > a:hover{
  color: #fff;
}

.news-type-img{
  height: 12rem;
}

/* MASONRY GRID NEWS GALLERY */
.grid:after {
  content: '';
  display: block;
  clear: both;
}

.grid-sizer,
.grid-item {
  width: 33.333%;
}
@media (max-width: 575px) {
  .grid-sizer,
  .grid-item {
    width: 100%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  .grid-sizer,
  .grid-item {
    width: 50%;
  }
}

/* To change the amount of columns on larger devices, uncomment the code below */

/* @media (min-width: 768px) and (max-width: 991px) {
  .grid-sizer,
  .grid-item {
    width: 33.333%;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .grid-sizer,
  .grid-item {
    width: 25%;
  }
}
@media (min-width: 1200px) {
  .grid-sizer,
  .grid-item {
    width: 20%;
  }
} */

.grid-item {
  float: left;
}

.grid-item img {
  display: block;
  max-width: 100%;
  padding-right: .25rem;
  padding-left: .25rem;
  padding-bottom: .25rem;
}


@media (max-width: 767px) {
  .homepage-article-title{
    font-size: .8rem;
    margin-bottom: .3rem;
  }
  .homepage-article-subtitle{
    font-size: 1.5rem;
  }
  .homepage-corporate-news-title{
    font-size: .8rem;
  }
  .homepage-corporate-news-subtitle{
    font-size: 1.5rem;
  }
  .network-contact-form-div{
    width: 250px;
    margin-left: -125px;
  }
  .network-sole-agent{
    text-align: left;
  }
  .service-call-center{
    font-size: 2rem;
  }
  .service-call-center-call-us{
    font-size: 2rem;
  }
  .service-call-center-call-us-desc{
    font-size: 1.5rem;
  }
  .service-booking-service{
    font-size: 2rem;
  }
  .service-booking-service-2{
    font-size: 1rem;
  }

  .service-booking-service-3{
    font-size: 1rem;
  }

  .service-email-us{
    text-align: left;
    font-size: 2.5rem;
    font-weight: 700;
  }

  h1{
    font-size: 38px;
  }
  .nav-item:after{
    display: none;
  }
  .nav-item::before {
    position: absolute;
    display: block;
    top: 15px;
    left: 0;
    width: 11px;
    height: 1px;
    /*content: "";*/
    border: none;
    background-color: #000;
    /* vertical-align: 0; */
  }
  .dropdown-toggle::after {
    position: absolute;
    display: block;
    top: 10px;
    left: -23px;
    width: 1px;
    /*height: 11px;*/
    content: "";
    border: none;
    background-color: #000;
    /* vertical-align: 0; */
    transition: all 200ms linear;
  }
  .dropdown-toggle[aria-expanded="true"]::after{
    transform: rotate(90deg);
    opacity: 0;
  }
  .dropdown-menu {
    padding: 0 !important;
    background-color: #fff;
    box-shadow: none;
    transition: all 200ms linear;
  }
  .dropdown-toggle[aria-expanded="true"] + .dropdown-menu {
    margin-top: 10px !important;
    margin-bottom: 20px !important;
  }
  body.dark .nav-item::before {
    background-color: #fff;
  }
  body.dark .dropdown-toggle::after {
    background-color: #fff;
  }
  body.dark .dropdown-menu {
    background-color: transparent;
    box-shadow: none;
  }
  .dropdown-vehicle{
    max-width: 100%;
  }
  .navbar-collapse{
    max-width: 100%;
  }
  .social-media-caption{
    top: 40%;
  }

  .homepage-carousel .arrow-next{
    width: 25px;
    height: 25px;
  }

  .homepage-carousel .arrow-prev{
    width: 25px;
    height: 25px;
  }

}

.homepage-headline-article-container{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
}
.homepage-first-headline-article-img-div{
  height: 22vmax;
  width: 100%;
}
.homepage-first-headline-article-title-div{
  background-color: #F6B700;
  position: absolute;
  bottom: 0;
  font-size: 1rem;
  line-height: 1.2;
  width: 100%;
  transition: .5s ease;
  display: flex;
  align-items: center;
}

.homepage-second-headline-article-container{
  height: 30vmax;
  width: 100%;
}
.homepage-second-headline-article-title-div{
  background-color: #F6B700;
  line-height: 1.2;
  width: 100%;
  height: 7vmax;
  align-items: center;
  /*justify-content: center;*/
}
.homepage-second-headline-article-img-div{
  height: 23vmax;
  width: 100%;
}
.homepage-third-headline-article-img-div{
  /* height: 30vmax; */
  width: 100%;
}
.social-media-img-div{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-media-statement-headline-img{
  height: 23rem;
}
.btn-whatsapp {
  color: #fff;
  background-color: #25d366;
  border-color: rgba(0,0,0,.2);
}

.btn-whatsapp:hover{
  color: #fff;
  background-color: #1f8b47;
  border-color: rgba(187, 155, 155, 0.2);
}
.cursor-pointer:hover{
  text-decoration: none;
  cursor: pointer;
}

.corporate-brand-manifesto-title{
  font-size: 4rem;
  font-weight: 700;
}
.corporate-vision-title{
  font-size: 3rem;
  font-weight: 700;
}
.corporate-achievements-title{
  font-size: 2rem;
}

.three-news:first-child{
  padding-left: 0 !important;
}

.related-news:first-child{
  padding-left: 0 !important;
}
.hyundai-lovers-news:not(:last-child){
  padding-right: 1rem !important;
}
.navbar-vehicles{
  background-color: #444;
}
.nav-vehicles{
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-tabs-vehicles {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs-vehicles .nav-item-vehicles.show .nav-link-vehicles, .nav-tabs-vehicles .nav-link-vehicles.active {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs-vehicles .nav-link-vehicles {
  border: 1px solid transparent;
  border-radius: unset;
}

.nav-tabs-vehicles .nav-item-vehicles {
  margin-bottom: -1px;
}

.nav-link-vehicles {
  display: block;
  padding: .5rem 1rem !important;
  color: #fff !important;
  font-weight: 500;
  transition: all 200ms linear;
}
.nav-link-vehicles.active {
  font-weight: 700;
  color: #000 !important;
}
.carousel-item img{
  height: available;
  object-fit: cover;
  width: 100%;
}

.carousel-indicators {
  margin: 0;
  position: absolute;
  top: 50%;
  bottom: unset;
  right: 0;
  left: unset;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 15;
  display: block;
  justify-content: center;
  padding-left: 0;
  list-style: none;
}

.carousel-indicators-numbers li {
  text-indent: 9px;
  margin: 0 2px;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 10%;
  line-height: 30px;
  color: #fff;
  background-color: transparent;
  transition: all 0.25s ease;
  font-size: 2rem;
  font-family: 'FF_DIN_Pro_Regular_Italic', sans-serif;
}
.carousel-indicators-numbers li.active, .carousel-indicators-numbers li:hover {
  margin: 0 2px;
  width: 30px;
  height: 30px;
  background-color: transparent;
}
.homepage-social-media-img{
  position: absolute;
  top: 50%;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  transform: translateY(-50%);
}
.homepage-social-media-carousel .arrow-next{
  width: 50px;
  height: 50px;
  position: absolute;
  top: 40%;
  right: 0;
  z-index: 2;
  opacity: .8;
}

.homepage-social-media-carousel .arrow-prev{
  width: 50px;
  height: 50px;
  position: absolute;
  top: 40%;
  left: 0;
  z-index: 2;
  opacity: .8;
}
.homepage-product-carousel .arrow-next{
  width: 35px;
  height: 35px;
  position: absolute;
  top: 40%;
  right: 0;
  z-index: 4;
  opacity: .8;
}

.homepage-product-carousel .arrow-prev{
  width: 35px;
  height: 35px;
  position: absolute;
  top: 40%;
  left: 0;
  z-index: 4;
  opacity: .8;
}
.heading-title{
  font-size: 3rem;
  margin-bottom: 0;
  font-family: 'DIN Condensed Bold', sans-serif;
}
#homepage-products-section{
  background-image: url('../../assets/img/bg-homepage-products-section.jpg');
  background-repeat:no-repeat;
  background-size:cover;
}
.homepage-product-container::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(27, 32, 33, 0.88);
  -webkit-transform: skewX(-25deg);
  -moz-transform: skewX(-25deg);
  -ms-transform: skewX(-25deg);
  -o-transform: skewX(-25deg);
  transform: skewX(-25deg);
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  -o-transform-origin: 0 0;
  transform-origin: 0 0;
  opacity: .7;
}
.homepage-product-title{
  font-family: 'FF_DIN_Pro_Bold_Italic', sans-serif;
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 0;
  font-style: italic;
}
.homepage-product-subtitle{
  font-family: 'DIN Condensed Bold', sans-serif;
  font-size: 1.4rem;
  color: #2b2b2b;
  font-style: italic;
}
.homepage-product-image{
  height: 19rem;
}
.homepage-product-feature-title{
  font-family: 'FF_DIN_Medium', sans-serif;
  font-size: 1rem;
  color: #e5e5e5;
  margin-bottom: 0;
}
.homepage-product-feature-desc{
  font-family: 'SourceSansVariable_Roman', sans-serif;
  font-size: 1rem;
  color: #a9a9a9;
  line-height: 1.1;
}
#products-header-section{
  background-image: url('../../assets/img/product-header-bg.jpg');
  background-repeat:no-repeat;
  background-size:cover;
}
.products-header-container{
  background-color: rgba(0,0,0,.9);
}
.products-header-section-title{
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'DIN Condensed Bold', sans-serif;
  font-size: 3.5rem;
  margin-bottom: 0;
}
.products-header-section-search-title{
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'DIN Condensed Bold', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0;
}
.products-header-section-search-category{
  color: #fff;
  text-transform: uppercase;
  margin: 0 1rem;
  font-size: 2.5rem;
  font-family: 'DIN Condensed Bold', sans-serif;
}
.products-header-section-search-category:hover{
  color: #007bff;
}
.products-header-section-search-category.active{
  color: #007bff;
  /*text-decoration: underline;*/
}
.products-header-section-search-category-item-btn{
  border-radius: 0;
  color: #007bff;
  text-transform: uppercase;
  font-family: 'DIN Condensed Bold', sans-serif;
  letter-spacing: 1.2px;
  font-size: 1.2rem;
}
.products-header-section-search-category-item-btn.active{
  background-color: #007bff !important;
  color: #000000 !important;
}
.products-header-section-search-category-item-search-btn{
  border-radius: 0;
  color: #ffffff;
  text-transform: uppercase;
  font-family: 'DIN Condensed Bold', sans-serif;
}
.products-products-title{
  font-family: 'DIN Condensed Bold', sans-serif;
  color: #ffffff;
  text-transform: uppercase;
  font-size: 3rem;
  margin-bottom: 0;
}
.products-products-subtitle{
  font-family: 'DIN Condensed Bold', sans-serif;
  text-transform: uppercase;
  color: #007bff;
  font-style: italic;
}
.products-products-carousel .arrow-next{
  width: 35px;
  height: 35px;
  position: absolute;
  top: 40%;
  right: 0;
  z-index: 4;
  opacity: .8;
}

.products-products-carousel .arrow-prev{
  width: 35px;
  height: 35px;
  position: absolute;
  top: 40%;
  left: 0;
  z-index: 4;
  opacity: .8;
}
.products-category-products-carousel .arrow-next{
  width: 35px;
  height: 35px;
  position: absolute;
  top: 40%;
  right: 0;
  z-index: 4;
  opacity: .8;
}

.products-category-products-carousel .arrow-prev{
  width: 35px;
  height: 35px;
  position: absolute;
  top: 40%;
  left: 0;
  z-index: 4;
  opacity: .8;
}
.slick-slide:focus{
  outline: none;
}
.image-overlay{
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, .7);
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-align: center;
}
.image-overlay-2{
  position: absolute;
  top: 0;
  background: rgba(0, 0, 0, .5);
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-align: center;
}
.image-overlay-white{
  position: absolute;
  top: 0;
  background: rgba(255,255,255,.7);
  width: 100%;
  height: 100%;
  color: #ffffff;
  text-align: center;
}
.header-title{
  padding-top: 3rem;
  margin-bottom: 0;
  font-size: 5rem;
  font-family:'DIN Condensed Bold', sans-serif;
  letter-spacing: 5px;
  text-transform: uppercase;
}
.winner-header-title{
  padding-top: 3rem;
  margin-bottom: 0;
  font-size: 3rem;
  font-family: 'DIN Condensed Bold', sans-serif;
  color: #027bc0;
  text-transform: uppercase;
}
.winner-description{
  margin-top: 7rem;
  text-transform: uppercase;
  font-size: 2rem;
  padding: 0 1rem;
  line-height: 1;
  font-family: 'FF_DIN_Medium', sans-serif;
}
.winner-description-2{
  margin-top: 5rem;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 0 2rem;
  line-height: 1;
}
.winner-description-3{
  margin-top: 3rem;
  text-transform: uppercase;
  font-size: 1rem;
  padding: 0 2rem;
  line-height: 1;
}
.winner-logo{
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translate(-50%, -50%);
  margin: 0 auto;
}
.related-article-title{
  font-family: 'DIN Condensed Bold', sans-serif;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}
.related-article-title::after{
  content: '';
  flex: 1;
  margin-left: 1rem;
  height: 2px;
  background-color: #ffd02c;
}
.news-details-title{
  font-weight: 700;
  color: #000000;
}
.accelera-wheel-corner-news-title{
  font-weight: 700;
  color: #000000;
  padding: 1rem;
  font-size: 1.5rem;
  line-height: 1.2;
  height: 4.7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.distribution-map-search-title{
  text-transform: uppercase;
  font-family: 'DIN Condensed Bold', sans-serif;
  font-size: 2.5rem;
  margin-bottom: 0;
}

/* TIMELINE ON ABOUT PAGE */
.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}
.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: " ";
  width: 3px;
  background-color: #eeeeee;
  left: 50%;
  margin-left: -1.5px;
}
.timeline > li {
  margin-bottom: 20px;
  position: relative;
}
.timeline > li:before, .timeline > li:after {
  content: " ";
  display: table;
}
.timeline > li:after {
  clear: both;
}
.timeline-badge.warning {
  background-color: #f0ad4e !important;
}

.timeline > li > .timeline-badge {
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 16px;
  left: 50%;
  margin-left: -25px;
  background-color: #999999;
  z-index: 100;
  border-top-right-radius: 50%;
  border-top-left-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
}
.timeline > li > .timeline-panel {
  width: 46%;
  float: left;
  border: 1px solid #d4d4d4;
  border-radius: 2px;
  padding: 20px;
  position: relative;
  -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}
.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
}
.timeline > li > .timeline-panel:before {
  position: absolute;
  top: 26px;
  right: -15px;
  display: inline-block;
  border-top: 15px solid transparent;
  border-left: 15px solid #ccc;
  border-right: 0 solid #ccc;
  border-bottom: 15px solid transparent;
  content: " ";
}
.timeline > li.timeline-inverted > .timeline-panel:before {
  border-left-width: 0;
  border-right-width: 15px;
  left: -15px;
  right: auto;
}
.timeline-title {
  margin-top: 0;
  color: inherit;
}
.timeline-body > p, .timeline-body > ul {
  margin-bottom: 0;
}
.timeline > li > .timeline-panel:after {
  position: absolute;
  top: 27px;
  right: -14px;
  display: inline-block;
  border-top: 14px solid transparent;
  border-left: 14px solid #fff;
  border-right: 0 solid #fff;
  border-bottom: 14px solid transparent;
  content: " ";
}
.timeline > li.timeline-inverted > .timeline-panel:after {
  border-left-width: 0;
  border-right-width: 14px;
  left: -14px;
  right: auto;
}

.products-details-title{
  font-family: 'FF_DIN_Pro_Bold_Italic', sans-serif;
  font-size: 5rem;
  color: #ffffff;
  margin-bottom: 0;
}
.products-details-subtitle{
  font-family: 'SourceSansVariable_Roman', sans-serif;
  font-size: 2rem;
  color: #007bff;
  font-style: italic;
}
.products-product-feature-title{
  font-family: 'FF_DIN_Medium', sans-serif;
  font-size: 1rem;
  color: #262626;
}
.products-product-feature-desc{
  font-family: 'SourceSansVariable_Roman', sans-serif;
  font-size: 1rem;
  color: #606060;
  line-height: 1.1;
}
.homepage-header-text-container{
  position: absolute;
  top: 0;
  color: #fff;
  font-size: 1rem;
  padding-top: 13rem;
}
.homepage-header-text-title{
  font-size: 2rem;
  font-family: 'DIN Condensed Bold', sans-serif;
  text-transform: uppercase;
  margin-bottom: 0;
}
.homepage-header-text-description{
  color: #b6b6b6;
  font-size: 1.4rem;
}
.nav-tabs-products{
  border-bottom: unset;
}
.nav-tabs-products .nav-link {
  border: unset;
  border-top-left-radius: unset;
  border-top-right-radius: unset;
}
.nav-tabs-products .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  color: #007bff !important;
  background-color: unset;
  border: unset;
}

.selectr-container.products-tire-size-select.selectr-desktop {
  width: 250px !important;
  font-family: 'DIN Condensed Bold', sans-serif;
  font-size: 1.2rem;
  letter-spacing: 1px;
}
#nprogress .bar {
  background: #007bff;
}
.nice-select .list{
  max-height: 250px;
  overflow-y: scroll;
}
.aspect-ratio-16-9{
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 Aspect Ratio */
}
.aspect-ratio-9-16{
  position: relative;
  width: 100%;
  padding-top: 177.78%; /* 9:16 Aspect Ratio */
}
.image-ratio{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.open-chat-button {
  background-color: #f0f0f0;
  color: #151599;
  padding: 4px 8px;
  cursor: pointer;
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 150px;
  border-radius: 25px;
  z-index: 9;
  text-transform: uppercase;
  border: 2px solid #151599;
  font-weight: 700;
  text-align: center;
}
.open-chat-button:hover {
  text-decoration: none;
}

/* Extra small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
  .homepage-first-headline-article-img-div{
    height: 27vmax;
  }
  .homepage-first-headline-article-title-div{
    position: relative;
  }
  .homepage-second-headline-article-container{
    height: auto;
  }
  .news-second-headline-article-container{
    padding-top: 5.5rem;
  }
  .homepage-second-headline-article-title-div{
    height: auto;
  }
  .homepage-second-headline-article-img-div{
    height: 27vmax;
  }
  .homepage-third-headline-article-img-div{
    height: 27vmax;
  }
  .news-media-statement-headline-img{
    height: 13rem;
  }
  .news-details-title{
    font-size: 1.4rem;
  }
  .three-news{
    box-shadow: 0 0 4px 1px #c3c3c3;
  }
  .corporate-brand-manifesto-title{
    font-size: 3rem;
  }
  .corporate-vision-title{
    font-size: 2rem;
  }
  .corporate-achievements-title{
    font-size: 2rem;
  }
  .carousel-item img{
    height: auto;
    object-fit: cover;
    width: 100%;
  }
  .carousel-indicators-numbers li {
    width: 15px;
    height: 15px;
    font-size: 1rem;
  }
  .carousel-indicators-numbers li.active, .carousel-indicators-numbers li:hover {
    width: 15px;
    height: 15px;
  }
  .homepage-product-container::after {
    content: unset;
  }
  .homepage-product-carousel .arrow-next{
    right: 10px;
  }
  .homepage-product-carousel .arrow-prev{
    left: 10px;
  }
  .homepage-social-media-carousel .arrow-next{
    right: -25px;
  }
  .homepage-social-media-carousel .arrow-prev{
    left: -25px;
  }
  .product-section-container{
    background-color: rgba(0,0,0,0.5);
  }
  .products-header-section-title{
    font-size: 1.5rem;
  }
  .products-header-section-search-title{
    font-size: 1.5rem;
  }
  .products-header-section-search-category{
    font-size: 1.5rem;
  }
  .products-products-carousel .arrow-next{
    width: 25px;
    height: 25px;
    right: 4px;
  }
  .products-products-carousel .arrow-prev{
    display: none !important;
  }
  .products-category-products-carousel .arrow-next{
    width: 25px;
    height: 25px;
    right: 4px;
  }
  .products-category-products-carousel .arrow-prev{
    display: none !important;
  }
  .accelera-wheel-corner-news-title{
    font-weight: 700;
    color: #000000;
    padding: .5rem;
    font-size: 1.3rem;
    height: 3.8rem;
  }
  .products-details-title{
    font-size: 3rem;
  }
  .products-details-subtitle{
    font-size: 1rem;
  }
  .homepage-header-text-container{
    padding-top: 2rem;
  }
  .homepage-header-text-title{
    font-size: 1.4rem;
  }
  .homepage-header-text-description{
    font-size: .6rem;
  }
  .homepage-product-image{
    height: 15rem;
  }
  .selectr-container.products-tire-size-select.selectr-mobile{
    width: 250px !important;
    font-family: 'DIN Condensed Bold', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin: 0 auto;
  }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
  .homepage-first-headline-article-img-div{
    height: 33vmax;
  }
  .homepage-second-headline-article-container{
    height: 42vmax;
  }
  .homepage-second-headline-article-title-div{
    height: 9vmax;
  }
  .homepage-second-headline-article-img-div{
    height: 33vmax;
  }
  .homepage-third-headline-article-img-div{
     height: 33vmax;
  }
}

@media (min-width: 768px){
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
    left: -250px;
  }
  .products-products-section-container{
    min-height: 24rem;
  }
}


/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
  .homepage-first-headline-article-img-div{
    height: 28vmax;
  }
  .homepage-second-headline-article-container{
    height: 28vmax;
  }
  .homepage-second-headline-article-title-div{
    height: 11vmax;
  }
  .homepage-second-headline-article-img-div{
    height: 17vmax;
  }
  .homepage-third-headline-article-img-div{
    height: 10vmax;
  }
  .homepage-first-headline-article-title-div{
    opacity: 0;
  }
  .homepage-first-headline-article-img-div:hover .homepage-first-headline-article-title-div{
    opacity: 1;
  }
  .homepage-product-image{
    height: 9rem;
  }
  .homepage-header-text-container{
    padding-top: 6rem;
  }
  .homepage-header-text-description{
    font-size: 1rem;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .homepage-first-headline-article-img-div{
    height: 28vmax;
  }
  .homepage-second-headline-article-container{
    height: 28vmax;
  }
  .homepage-second-headline-article-title-div{
    height: 7vmax;
  }
  .homepage-second-headline-article-img-div{
    height: 21vmax;
  }
  .homepage-third-headline-article-img-div{
    height: 12vmax;
  }
  .homepage-first-headline-article-title-div{
    opacity: 0;
  }
  .homepage-first-headline-article-img-div:hover .homepage-first-headline-article-title-div{
    opacity: 1;
  }
  .homepage-social-media-carousel .arrow-next{
    width: 35px;
    height: 35px;
  }
  .homepage-social-media-carousel .arrow-prev{
    width: 35px;
    height: 35px;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) and (max-width: 1399.98px) {
  .homepage-first-headline-article-img-div{
    height: 24vmax;
  }
  .homepage-second-headline-article-container{
    height: 24vmax;
  }
  .homepage-second-headline-article-title-div{
    height: 6vmax;
  }
  .homepage-second-headline-article-img-div{
    height: 18vmax;
  }
  .homepage-third-headline-article-img-div{
    height: 13vmax;
  }
  .homepage-first-headline-article-title-div{
    opacity: 0;
  }
  .homepage-first-headline-article-img-div:hover .homepage-first-headline-article-title-div{
    opacity: 1;
  }
}

/* XXL devices (large desktops, 1400px and up) */
@media (min-width: 1400px) and (max-width: 1599.98px) {
  .homepage-first-headline-article-img-div{
    height: 23vmax;
  }
  .homepage-second-headline-article-container{
    height: 23vmax;
  }
  .homepage-second-headline-article-title-div{
    height: 6vmax;
  }
  .homepage-second-headline-article-img-div{
    height: 17vmax;
  }
  .homepage-third-headline-article-img-div{
    height: 12vmax;
  }
  .homepage-first-headline-article-title-div{
    opacity: 0;
  }
  .homepage-first-headline-article-img-div:hover .homepage-first-headline-article-title-div{
    opacity: 1;
  }
}

/* XXXL devices (large desktops, 1600 and up) */
@media (min-width: 1600px) and (max-width: 1919.98px) {
  .homepage-first-headline-article-img-div{
    height: 20vmax;
  }
  .homepage-second-headline-article-container{
    height: 20vmax;
  }
  .homepage-second-headline-article-title-div{
    height: 5vmax;
  }
  .homepage-second-headline-article-img-div{
    height: 15vmax;
  }
  .homepage-third-headline-article-img-div{
    height: 11vmax;
  }
  .homepage-first-headline-article-title-div{
    opacity: 0;
  }
  .homepage-first-headline-article-img-div:hover .homepage-first-headline-article-title-div{
    opacity: 1;
  }
}

/* XXXXL devices (large desktops, 1920 and up) */
@media (min-width: 1920px) and (max-width: 2559.98px) {
  .homepage-first-headline-article-img-div{
    height: 17vmax;
  }
  .homepage-second-headline-article-container{
    height: 17vmax;
  }
  .homepage-second-headline-article-title-div{
    height: 4vmax;
  }
  .homepage-second-headline-article-img-div{
    height: 13vmax;
  }
  .homepage-third-headline-article-img-div{
    height: 9vmax;
  }
  .homepage-first-headline-article-title-div{
    opacity: 0;
  }
  .homepage-first-headline-article-img-div:hover .homepage-first-headline-article-title-div{
    opacity: 1;
  }
}

/* 4K devices (large desktops, 2560 and up) */
@media (min-width: 2560px){
  .homepage-first-headline-article-img-div{
    height: 13vmax;
  }
  .homepage-second-headline-article-container{
    height: 13vmax;
  }
  .homepage-second-headline-article-title-div{
    height: 4vmax;
  }
  .homepage-second-headline-article-img-div{
    height: 9vmax;
  }
  .homepage-third-headline-article-img-div{
    height: 7vmax;
  }
  .homepage-first-headline-article-title-div{
    opacity: 0;
  }
  .homepage-first-headline-article-img-div:hover .homepage-first-headline-article-title-div{
    opacity: 1;
  }
}



/*# sourceMappingURL=style.css.map */
