/* FONT */

@font-face {
  font-family: imperator;
  src: url(../fonts/Imperator.ttf);
}

/* ANIMATION */

@keyframes change-width-line {
    0% {
      width: 0%; 
      height: 0.30rem;
      transition: all .3s;
    }
    50% {
      width: 70%; 
      height: 0.30rem;
      transition: all .3s;
    }
    100% {
      width: 0; 
      height: 0.30rem;
      transition: all .3s;
    }
}
@keyframes up-down-about-text-1-move {
  0% { z-index: 2; top: 25%; }
  17% { z-index: 2; top: -40px; }
  33% { z-index: 0; top: -40px; }
  50% { z-index: 0; top: 25%; }
  67% { z-index: 0; top: -40px; }
  83% { z-index: 2; top: -40px; }
  100% { z-index: 2; top: 25%; }
}
@keyframes up-down-about-text-2-move {
  0% { z-index: 0; bottom: 25%; }
  17% { z-index: 0; bottom: -70px; }
  33% { z-index: 2; bottom: -70px; }
  50% { z-index: 2; bottom: 25%; }
  67% { z-index: 2; bottom: -70px; }
  83% { z-index: 0; bottom: -70px; }
  100% { z-index: 0; bottom: 25%; }
}
@keyframes top-bottom-download-img-move {
  0% { bottom: 0; }
  20% { bottom: 0; }
  40% { bottom: -300px; }
  60% { bottom: 0; }
  80% { bottom: -150px; }
  100% { bottom: 0; }
}
@media screen and (max-width: 960px){
  @keyframes top-bottom-download-img-move {
    0% { bottom: 0; }
    20% { bottom: 0; }
    40% { bottom: -160px; }
    60% { bottom: 0; }
    80% { bottom: -80px; }
    100% { bottom: 0; }
  }
}
@keyframes change-style-news-link {
  0% { opacity: 0.3; }
  50% { opacity: 1; }
  100% { opacity: 0.3; }
}
@keyframes change-style-category-product-link {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}
@keyframes change-style-maps-info {
  0% { opacity: 1; }
  50% { opacity: 0.5; }
  100% { opacity: 1; }
}
@keyframes fade-in {
  from {opacity: 0; transform: scale(.5,.5)}
  to {opacity: 1;}
}
@keyframes rotate-about-img-move {
  0% { transform: rotate(45deg); top: -120px;}
  12.5% { transform: rotate(0deg); top: 0px;}
  25% { transform: rotate(45deg); top: -120px;}
  37.5% { transform: rotate(0deg); top: 0px;}
  50% { transform: rotate(45deg); top: 120px;}
  62.5% { transform: rotate(0deg); top: 0px;}  
  75% { transform: rotate(45deg); top: 120px;}  
  87.5% { transform: rotate(0deg); top: 0px;}  
  100% { transform: rotate(45deg); top: -120px;}  
}
@media screen and (max-width: 960px){
  @keyframes rotate-about-img-move {
    0% { transform: rotate(30deg); top: -120px;}
    12.5% { transform: rotate(0deg); top: -60px;}
    25% { transform: rotate(30deg); top: -120px;}
    37.5% { transform: rotate(0deg); top: -60px;}
    50% { transform: rotate(30deg); top: 0px;}
    62.5% { transform: rotate(0deg); top: -60px;}  
    75% { transform: rotate(30deg); top: 0px;}  
    87.5% { transform: rotate(0deg); top: -60px;}  
    100% { transform: rotate(30deg); top: -120px;}  
  }
}
@keyframes top-bottom-animation-contact-img-move {
  0% { top: 13%;}
  50% { top: 5%;}
  100% { top: 13%;}
}
@keyframes change-weight-section-title-list-news{
  0% { font-weight: normal; }
  25% { font-weight: bold; }
  50% { font-weight: normal; }
  75% { font-weight: bold; }  
  100% { font-weight: normal; }  
}
@keyframes bounce-right {
  0% {right: 5px}
  50% {right: 0px}
  100% {right: 5px}
}




.hidden {
  opacity: 0;
}
.fade-in {
  animation: fade-in 1.4s;
}



/* ALL PAGE */

/* DOWNLOAD SECTION */

.download-section{
  padding: 60px 0;
  background-color: #977124;
  position: relative;
  z-index: 1;
}
.download-section .download-container{
  row-gap: 2rem;
  text-align: left;
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
}
.download-section .download-info .section-title{
  font-size: var(--h5-font-size);
  color: #FFF;
  margin-top: 0;
  margin-bottom: 0;
  text-align: left;
  font-weight: bold;
  line-height: 28px;
}
.download-section .download-img{
  width:30%;
  margin: auto;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  animation-name: top-bottom-download-img-move;
  animation-iteration-count: infinite;
  animation-duration: 10s;
  animation-timing-function: cubic-bezier(0.25,0.1,0.25,1);
}
.download-section .download-img img{
  width:100%;
}
.download-section .download-button-container{
  display: flex;
  justify-content: center;
  align-items: center;
}
.download-section .download-button{
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #000;
  color: var(--third-color);
  font-weight: var(--font-semi);
  outline: none;
  font-size: var(--normal-font-size);
  cursor: pointer;
  width: 150px;
  height: 50px;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  margin: 0 5px;
}
.download-section .download-button img{
  width: 100%;
  background-color: #000;
}
.download-section .download-button:hover{
  outline: none;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 6px 10px, rgba(0, 0, 0, 0.2) 0px 2px 4px;
  transform: translateY(-2px);
}
.download-section .download-button:active {
  outline: none;
  transform: translateY(0px);
  box-shadow: none;
}



/* HOME PAGE */

#homePage{
  overflow: hidden;
}

/* BANNER SECTION */

#homePage .banner-section{
  overflow: hidden;
  width: 100%;
  z-index: 1;
}
#homePage .banner-section .slider, 
#homePage .banner-section .slide {
  height: auto;
}
#homePage .banner-section .slide {
  position: relative;
  opacity: 0;
}
#homePage .banner-section .slide.slick-active {
  opacity: 1 !important;
}
#homePage .banner-section .slide .slide__img.slide-img-mobile,
#homePage .banner-section .slide .slide__img.slide-img-tablet {
  display: none;
}
#homePage .banner-section .slide .slide__img.slide-img-desktop {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  left: 0;
}
#homePage .banner-section .slide .slide__img.slide-img-desktop img {
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  animation-duration: 3s;
  transition: all 1s ease;
}
#homePage .banner-section .slide .slide__content {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 650px;
}
#homePage .banner-section .slide .slide__content--headings {
  text-align: center;
  color: #FFF;
}
#homePage .banner-section .slide .slide__content--headings h2 {
  font-size: var(--big-font-size);
  font-weight: bold;
  margin: 0 0 20px;
}
#homePage .banner-section .slide .slide__content--headings hr{
    border: none;
    width: 0%;
    height: 0;
    background-color: #FFF;
    margin: 0 auto;
    transition: all .3s ease-in-out;
    animation: change-width-line 3s infinite;
    animation-delay: 1s;
}
#homePage .banner-section .slick-dotted .slick-slider {
  margin-bottom: 30px;
}
#homePage .banner-section .slick-dots {
  position: absolute;
  bottom: 25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
#homePage .banner-section .slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
#homePage .banner-section .slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: all .3s ease-in-out;
}
#homePage .banner-section .slick-dots li button:hover{
  outline: none;
}
#homePage .banner-section .simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}
#homePage .banner-section .simple-dots .slick-dots li button {
  border-radius: 100%;
  background-color: #FFF;
  opacity: 0.5;
  width: 20px;
  height: 20px;
  -webkit-tap-highlight-color: transparent;
}
#homePage .banner-section .simple-dots .slick-dots li button:hover{
  opacity: 1;
}
#homePage .banner-section .simple-dots .slick-dots li.slick-active button {
  color: #FFF;
  opacity: 0.5;
}
#homePage .banner-section .stick-dots .slick-dots li {
  height: 20px;
  width: 20px;
  border-radius: 100%;
}
#homePage .banner-section .stick-dots .slick-dots li button {
  position: relative;
  background-color: #FFF;
  opacity: 0.5;
  width: 20px;
  height: 20px;
  padding: 0;
  border-radius: 100%;
  -webkit-tap-highlight-color: transparent;
}
#homePage .banner-section .stick-dots .slick-dots li button:hover{
  opacity: 1;
}
#homePage .banner-section .stick-dots .slick-dots li.slick-active button {
  color: #FFF;
  opacity: 1;
  -webkit-tap-highlight-color: transparent;
}
#homePage .banner-section .stick-dots .slick-dots li.slick-active button:hover{
  opacity: 1;
}

/* PRODUCT SECTION */

#homePage .product-section{
  padding: 80px 0;
  background-color: #FFF;
  overflow-x: hidden;
}
#homePage .product-info{
  z-index: 0;
}
#homePage .product-section .product-container{
  row-gap: 2rem;
  align-items: center;
  text-align: left;  
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
}
#homePage .product-section .section-title{
  display: flex;
  align-items: center;
}
#homePage .product-section .section-title hr{
  width: 100px; 
  height: 0; 
  border: 1px solid #8E1537;
  margin: 0;
}
#homePage .product-section .section-title h5{
  margin-left: 20px;
  font-size: var(--normal-font-size);
  margin-top: 0;
  margin-bottom: 0;
  color: #8E1537;
  font-weight: 500;
}
#homePage .product-section .section-subtitle h1{
  font-size: var(--big-font-size);
  font-weight: 300;
  width: 70%;
}
#homePage .product-section .section-subtitle .red-text-subtitle{
  color: #8E1537;
}
#homePage .product-section .list-product-category a{
  -webkit-tap-highlight-color: transparent;
}
#homePage .product-section .list-product-category .product-category{
  position: relative;
  margin: var(--mb-4) 0; 
  overflow: hidden;
}
#homePage .product-section .list-product-category .category-image{
  width: 100%;
  height: 100%;
  position: relative;
}
#homePage .product-section .list-product-category .category-image img{
  width: 100%;
  height: 100%;
}
#homePage .product-section .list-product-category .category-image::before{
  content: '';
  position:absolute;
  top:0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.54) 100%);
}
#homePage .product-section .list-product-category .category-text{
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  text-align: center;
  z-index: 2;
}
#homePage .product-section .list-product-category .category-text h3{
  font-size: var(--h3-font-size);
  font-weight: 500;
  color: #FFF;
  margin-top: 0;
  margin-bottom: var(--mb-6);
  font-family: 'Imperator';
  letter-spacing: 2px;
} 
#homePage .product-section .list-product-category .category-text p{
  font-size: var(--normal-font-size);
  color: #FFF;
  font-weight: 500;
  display: inline-block;
  position: relative;
  animation-name: change-style-category-product-link;
  animation-iteration-count: infinite;
  animation-duration: 1.5s;
  transition: all .3s ease-in-out;
}
#homePage .product-section .list-product-category .category-text p:hover{
  opacity: 1 !important;
  animation-play-state: paused;
  transition: all .3s ease-in-out;
}
#homePage .product-section .list-product-category .category-text p::after{
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  opacity: 0;
  left: 0;
  top: 1.7rem;
  bottom: 0;
  right: 0;
  margin: 0 auto;
  background-color: #FFF;
  transition: all .3s ease-in-out;
}
#homePage .product-section .list-product-category .category-text p:hover::after{
  width: 100%;
  height: 0.15rem;
  opacity: 1;
  transition: all .3s ease-in-out;
}



/* PRODUCT PAGE */

#productPage{
  overflow: hidden;
}

/* PRODUCT SECTION */

#productPage .product-section{
  padding: 180px 0 80px;
  background-color: #FFF;
}
#productPage .product-info{
  position: relative;
  z-index: 0;
}
#productPage .product-section .section-title{
  display: flex;
  align-items: center;
  margin-bottom: 4rem;
}
#productPage .product-section .section-title hr{
  width: 100px; 
  height: 0; 
  border: 1px solid #8E1537;
  margin: 0;
}
#productPage .product-section .section-title h5{
  margin-left: 20px;
  font-size: var(--normal-font-size);
  margin-top: 0;
  margin-bottom: 0;
  color: #8E1537;
  font-weight: 500;
}
#productPage .product-panel-container{
  position: relative;
}
#productPage .product-section .product-tab-container{
  row-gap: 2rem;
  grid-template-columns: repeat(8,1fr); 
  align-items: center;
  text-align: left;  
  max-width: 1124px;
  display: grid;
  grid-column-gap: 1rem;
  width: calc(100% - 0rem);
  margin-bottom: 1rem;
}
#productPage .product-section .product-category-mobile {
  display: none;
}
#productPage .product-section .btn-tab-product{
  border: none;
  width: 100%;
  outline:none;
  cursor: pointer;
  padding: 10px;
  background-color: #977124;
  box-shadow: 0 5px 10px 0px rgba(0, 0, 0, 0.3);
  display: block;
  -webkit-tap-highlight-color: transparent;
  transition: background-color .5s ease-in-out, box-shadow .5s ease-in-out;
}
#productPage .product-section .btn-tab-product:hover{
  background-color: #977124 !important;
  box-shadow: 0 15px 20px -10px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
  transition: background-color .5s ease-in-out, box-shadow .5s ease-in-out;
}
#productPage .product-section .btn-tab-product:active {
  transform: translateY(0px);
  box-shadow: none;
}
#productPage .product-section .icon-tab-product{
  width: 100%;
  height: 100%;
  margin: auto;
}
#productPage .product-section .icon-tab-product img{
  max-width: 200px;
  max-height: 70px;
  display: block;
  margin: auto;
}
#productPage .product-section .name-tab-product{
  margin: auto;
  height: 100%;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
  transition: color .3s ease-in-out;
}
#productPage .product-section .btn-tab-product:hover .name-tab-product{
  color: #FFF;
  transition: color .3s ease-in-out;
}
#productPage .product-section .text-panel-product{
  row-gap: 2rem;
  grid-template-columns: repeat(2,1fr); 
  align-items: center;
  justify-content: center;
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
  margin-bottom: 1rem;
}
#productPage .product-section .name-panel-product{
  font-size: var(--h2-font-size);
  color: #8E1537;
  text-align: left;
  font-weight: bold;
  font-family: "Imperator";
  letter-spacing: 2px;
  line-height: 38px;
}
#productPage .product-section .sort-by-product{
  margin-top: 0;
  text-align: right;
}
.select2.select2-container {
  width: 40% !important;
  text-align: left;
}
.select2.select2-container .select2-selection {
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 2px solid #8E1537;
  height: 34px;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.15s ease-in-out;
}
.select2.select2-container .select2-selection .select2-selection__rendered {
  color: #8E1537;
  line-height: 32px;
  padding-right: 33px;
  padding-left: 0;
}
.select2.select2-container .select2-selection .select2-selection__arrow { 
  height: 32px;
  width: 33px;
}
.select2-container .select2-dropdown {
  background: transparent;
  outline: none;
  margin-top: 10px;
  z-index: 90;
  border: none;
}
.select2-container .select2-dropdown .select2-search .select2-search__field[aria-controls*="select2-sort"]{
  padding: 0;
  display: none;
}
.select2-container .select2-dropdown .select2-search input {
  outline: none !important;
  border: 1px solid #8E1537 !important;
  border-bottom: none !important;
  padding: 4px 6px !important;
  font-size: var(--normal-font-size);
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: 'Poppins';
}
.select2-container .select2-dropdown .select2-results {
  padding: 0;
}
.select2-container .select2-dropdown .select2-results ul {
  background: #fff;
  border: 1px solid #8E1537 !important;  
}
.select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
  background-color: #8E1537;
}
.select2-container--default .select2-results__option{
  -webkit-tap-highlight-color: transparent;
}
.select2-container--default .select2-results__option[aria-selected=true]{
  background-color: #8E1537;
  color: #FFF;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder{
  color: #8E1537;
  font-weight: 400;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
  border-color: #8E1537 transparent transparent transparent
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
  border-color: transparent transparent #8E1537 transparent;
}
.select2-container--default .select2-search--dropdown .select2-search__field{
  border: none !important;
}
#productPage .product-section .list-panel-product{
  row-gap: 2rem;
  grid-template-columns: repeat(4,1fr); 
  align-items: center;
  text-align: left;  
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
  margin-bottom: 50px;
}
#productPage .product-section .box-product{
  width: 100%;
  box-shadow: 0 20px 20px -20px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: box-shadow .5s ease-in-out;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
#productPage .product-section .box-product:hover{
  box-shadow: 0 25px 25px -10px rgba(0, 0, 0, 0.5);
  transform: translateY(-2px);
  transition: box-shadow .5s ease-in-out;
}
#productPage .product-section .box-product img{
  width: 100%;
}
#productPage .product-section .info-product{
  width: 100%;
  height: 120px;
  display: flex;
  flex-direction: column;
  padding: 10px;
  border: 1px solid #8E1537;
  margin-left: auto; 
  margin-right: auto; 
  transition: background-color .3s ease-in-out;
}
#productPage .product-section .box-product:hover .info-product{
  background-color: #8E1537;
  transition: background-color .3s ease-in-out;
}
#productPage .product-section .product-name{
  flex-grow: 1;
  font-weight: bold;
  font-size: var(--h5-font-size);
  margin-top: 0;
  margin-bottom: var(--mb-1);
  color: #8E1537;
  transition: color .3s ease-in-out;
}
#productPage .product-section .product-price{
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 0;
  vertical-align: bottom;
  transition: color .3s ease-in-out;
}
#productPage .product-section .box-product:hover .product-name,
#productPage .product-section .box-product:hover .product-size,
#productPage .product-section .box-product:hover .product-price{
  color: #FFF;
  transition: color .3s ease-in-out;
}
#productPage .product-section .product-link{
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
#productPage .product-section .modal-product{
  display: none;
  position: fixed;
  padding-top: 100px;
  z-index: 2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}
#productPage .product-section .modal-content-product{
  background-color: #FFF;
  margin: auto;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  grid-column-gap: 2rem;
  padding: 20px;
  max-width: 1124px;
  width: calc(100% - 2rem);
}
#productPage .product-section .modal-header-product{
  padding: 2px 0 20px;
  display: block;
  overflow: hidden;
}
#productPage .product-section .close-modal-product{
  float: right;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
#productPage .product-section .close-modal-product img{
  width: 30px;
  height: 30px;
  -webkit-tap-highlight-color: transparent;
}
#productPage .product-section .modal-body-product{
  display: block;
  overflow-y: auto;
  padding: 20px;
  border: 3px solid #8E1537;
  row-gap: 0rem;
  grid-template-columns: repeat(2,1fr); 
  align-items: center;
  text-align: left;  
  max-width: 1124px;
  display: grid;
  grid-column-gap: 0rem;
  width: calc(100% - 0rem);
}
#productPage .product-section .modal-body-product .modal-product-image.modal-product-image-desktop{
  width: 90%;
}
#productPage .product-section .modal-body-product .modal-product-image.modal-product-image-mobile{
  display: none;
}
#productPage .product-section .modal-body-product .modal-product-name{
  font-size: var(--h2-font-size);
  font-weight: bold;
  margin-top: 0;
  margin-bottom: 2rem;
  letter-spacing: 2px;
  line-height: 38px;
  color: #8E1537;
  font-family: 'Imperator';
}
#productPage .product-section .modal-body-product .modal-product-description{
  font-size: var(--h5-font-size);
  margin-bottom: 1rem;
  line-height: 28px;
  color: #000;
}
#productPage .product-section .modal-body-product .modal-product-price{
  font-size: var(--h4-font-size);
  color: #8E1537;
  margin-top: 1rem;
}
#productPage .product-section .modal-body-product .modal-product-size{
  color: #000;
}



/* ABOUT PAGE */

#aboutPage {
  overflow: hidden;
}

/* BANNER SECTION */

#aboutPage .banner-section{
  padding: 0;
  margin-top: 6rem;
}
#aboutPage .banner-section .banner-container{
  row-gap: 2rem;
  text-align: left;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
}
#aboutPage .banner-section .banner-section-img{
  display: block;
  width:100%;
  margin: auto;
  position: relative;
}
#aboutPage .banner-section .banner-section-img .banner-about-page-img{
  width: 100%;
  margin: auto;
}

/* ABOUT SECTION */

#aboutPage .about-section{
  padding: 80px 0 0;
}
#aboutPage .about-section .about-container{
  row-gap: 2rem;
  align-items: center;
  text-align: left;  
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
}
#aboutPage .about-section .section-title{
  display: flex;
  align-items: center;
}
#aboutPage .about-section .section-title hr{
  width: 100px; 
  height: 0; 
  border: 1px solid #8E1537;
  margin: 0;
}
#aboutPage .about-section .section-title h5{
  margin-left: 20px;
  font-size: var(--normal-font-size);
  margin-top: 0;
  margin-bottom: 0;
  color: #8E1537;
  font-weight: 500;
}
#aboutPage .about-section .section-subtitle{
  row-gap: 2rem;
  text-align: left;
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
}
#aboutPage .about-section .section-subtitle h1{
  font-size: var(--big-font-size);
  font-weight: 300;
}
#aboutPage .about-section .section-subtitle h1 .brand-name{
  font-size: var(--h2-font-size);
}
#aboutPage .about-section .section-subtitle .red-text-subtitle{
  color: #8E1537;
}
#aboutPage .about-section .section-subtitle p{
  line-height: 28px;
}

/* HISTORY SECTION */

#aboutPage .history-section{
  padding: 100px 0;
}
#aboutPage .history-section .history-container{
  row-gap: 2rem;
  align-items: center;
  text-align: left;  
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
}
#aboutPage .history-section .section-title{
  display: flex;
  align-items: center;
}
#aboutPage .history-section .section-title hr{
  width: 100px; 
  height: 0; 
  border: 1px solid #8E1537;
  margin: 0;
}
#aboutPage .history-section .section-title h5{
  margin-left: 20px;
  font-size: var(--normal-font-size);
  margin-top: 0;
  margin-bottom: 0;
  color: #8E1537;
  font-weight: 500;
}
#aboutPage .history-section .section-subtitle{
  row-gap: 2rem;
  text-align: left;
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
}
#aboutPage .history-section .section-subtitle h1{
  font-size: var(--big-font-size);
  font-weight: 300;
}
#aboutPage .history-section .section-subtitle h1 .brand-name{
  font-size: var(--h2-font-size);
}
#aboutPage .history-section .section-subtitle .red-text-subtitle{
  color: #8E1537;
}
#aboutPage .history-section .section-subtitle p{
  line-height: 28px;
}
#aboutPage .history-section .list-history-img{
  row-gap: 2rem;
  justify-items: center;
  text-align: left;  
  max-width: 1124px;
  display: grid;
  grid-column-gap: 4rem;
  width: calc(100% - 0rem);
}
#aboutPage .history-section .list-history-img .history-img:last-child{
  margin-top: 10rem;
}
#aboutPage .history-section .list-history-img .history-img{
  width: 100%;
}
#aboutPage .history-section .list-history-img .history-img img{
  width: 100%;
}
#aboutPage .history-section .list-history-img .history-img img:last-child{
  margin-top: 4rem;
}
#aboutPage .history-section .list-history-img .history-img:first-child img:first-child{
  margin-top: 2rem;
}
#aboutPage .history-section .list-history-img .history-img:last-child img:last-child{
  margin-bottom: 2rem;
}



/* =============================== CONTACT PAGE =========================== */

#contactPage {
  background-color: #8E1537;
  overflow: hidden;
}

/* CONTACT SECTION */

#contactPage .contact-section{
  padding: 180px 0 80px;
  background-color: #FFF;
  overflow: hidden;
}
#contactPage .contact-section .contact-container{
  row-gap: 2rem;
  text-align: left;
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
}
#contactPage .contact-section .section-title{
  display: flex;
  align-items: center;
}
#contactPage .contact-section .section-title hr{
  width: 100px; 
  height: 0; 
  border: 1px solid #8E1537;
  margin: 0;
}
#contactPage .contact-section .section-title h5{
  margin-left: 20px;
  font-size: var(--normal-font-size);
  margin-top: 0;
  margin-bottom: 0;
  color: #8E1537;
  font-weight: 500;
}
#contactPage .contact-section .contact-info-container{
  margin-bottom: var(--mb-2);
}
#contactPage .contact-section .contact-info-container p{
  margin-bottom: var(--mb-1);
  margin-top: 0;
}
#contactPage .contact-section .subcontact-container{
  row-gap: 2rem;
  text-align: left;
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
  margin-top: 6rem;
}
#contactPage .contact-section .section-subtitle h1{
  font-size: var(--big-font-size);
  width: 80%;
  text-align: center;
  font-weight: 300;
  margin: 0 auto 0.5rem;
}
#contactPage .contact-section .section-subtitle h1 .brand-name{
  font-size: var(--h2-font-size);
}
#contactPage .contact-section .section-subtitle .red-text-subtitle{
  color: #8E1537;
}
#contactPage .contact-section .whatsapp-button{
  text-align: center;
}
#contactPage .contact-section .whatsapp-button a{
  margin: 0 auto;
  display: inline-block;
  background-color: #FFF;
  color: #8E1537;
  padding: 1rem;
  outline: none;
  font-size: var(--h3-font-size);
  cursor: pointer;
  text-align: center;
  border: 1px solid #8E1537;
  transition: background-color .5s ease-in-out, color .5s ease-in-out, box-shadow .5s ease-in-out;
  -webkit-tap-highlight-color: transparent;
}
#contactPage .contact-section .whatsapp-button a:hover{
  outline: none;
  background-color: #8E1537;
  color: #FFF;
  box-shadow: rgba(142, 21, 55, 0.3) 0px 6px 10px, rgba(142, 21, 55, 0.2) 0px 2px 4px;
  transform: translateY(-2px);
  transition: background-color .5s ease-in-out, color .5s ease-in-out, box-shadow .5s ease-in-out;
}
#contactPage .contact-section .whatsapp-button a:active {
  outline: none;
  transform: translateY(0px);
  box-shadow: none;
}
#contactPage .contact-section .whatsapp-button a .text-whatsapp-button{
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
#contactPage .contact-section .whatsapp-button a .icon-whatsapp{
  background-color: #8E1537;
  mask: url('../img/icon-whatsapp.png') no-repeat center / contain;
  -webkit-mask: url('../img/icon-whatsapp.png') no-repeat center / contain;
  width: var(--h4-font-size);
  height: var(--h4-font-size);
  margin-right: 10px;
  transition: background-color .5s ease-in-out;
}
#contactPage .contact-section .whatsapp-button a:hover .icon-whatsapp{
  background-color: #FFF;
  transition: background-color .5s ease-in-out;
}
#contactPage .contact-section .contact-section-img{
  display: block;
  width:90%;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  position: relative;
}
#contactPage .contact-section .contact-section-img .contact-page-img{
  width: 100%;
  margin: auto;
}
#contactPage .contact-section .success-message,
#contactPage .contact-section .failed-message{
  color: #FFF; 
  background-color:#8E1537; 
  font-weight: bold; 
  padding: 10px; 
  text-align: center; 
  width: 100%; 
  margin: 4rem 0 0;
}
#contactPage .contact-section form {
  margin: 2rem 0 0;
  overflow: hidden;
}
#contactPage .contact-section .form-group {
  width: 100%;
  line-height: 44px;
  margin: 2rem 0 0;
}
#contactPage .contact-section .form-label {
  width: 100%;
  color: #8E1537;
  transition: 0.2s all;
  font-size: var(--normal-font-size);
  cursor: text;
}
#contactPage .contact-section .form-input {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0 0 5px;  
  border-bottom: 2px solid #8E8E8E;
  box-shadow: none;
  color: #111;
  font-size: var(--normal-font-size);
  font-family: 'Poppins';
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s ease-in-out;
}
#contactPage .contact-section textarea.form-input {
  resize: none;
}
#contactPage .contact-section .form-input[type=number]::-webkit-outer-spin-button,
#contactPage .contact-section .form-input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#contactPage .contact-section .form-input[type=number] {
  -moz-appearance:textfield;
}
#contactPage .contact-section .form-input:focus{
  border-color: #8E1537;
  transition: all 0.3s ease-in-out;
}
#contactPage .contact-section .form-select {
  width: 100%;
  border: 0;
  outline: 0;
  padding: 0 0 5px;  
  border-bottom: 2px solid #8E8E8E;
  box-shadow: none;
  color: #111;
  background-color: transparent;
  font-size: var(--normal-font-size);
  font-family: 'Poppins';
  cursor: pointer;
}
#contactPage .contact-section .form-select:focus{
  border-color: #8E1537;
}
#contactPage .contact-section .contact-form .error-message{
  font-family: 'Poppins';
  font-size: var(--normal-font-size);
  color: #977124;
  margin-top: var(--mb-1);
  font-style: italic;
}
#contactPage .select2.select2-container {
  width: 100% !important;
  text-align: left;
}
#contactPage .select2.select2-container .select2-selection {
  border-top: none;
  border-right: none;
  border-left: none;
  border-bottom: 2px solid #8E8E8E;
  height: 34px;
  padding-bottom: 5px;
  outline: none !important;
  -webkit-tap-highlight-color: transparent;
  transition: all 0.3s ease-in-out;
}
#contactPage .select2.select2-container .select2-selection:focus {
  border-bottom: 2px solid #8E1537;
  transition: all 0.3s ease-in-out;
}
.select2.select2-container .select2-selection .select2-selection__rendered[id*="select2-subject"] {
  color: #111;
  line-height: 32px;
  padding-right: 33px;
  padding-left: 0;
}
#contactPage .select2.select2-container .select2-selection .select2-selection__arrow { 
  height: 32px;
  width: 33px;
}
#contactPage .select2-container .select2-dropdown {
  background: transparent;
  outline: none;
  margin-top: 10px;
  z-index: 90;
  border: none;
}
.select2-search--dropdown{
  padding: 0 !important;
}
.select2-container .select2-dropdown .select2-search .select2-search__field[aria-controls*="select2-subject"]{
  padding: 0;
}
#contactPage .select2-container .select2-dropdown .select2-search input {
  outline: none !important;
  border: 1px solid #8E1537 !important;
  border-bottom: none !important;
  padding: 4px 6px !important;
  font-size: var(--normal-font-size);
  font-family: 'Poppins';
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
#contactPage .select2-container .select2-dropdown .select2-results {
  padding: 0;
}
#contactPage .select2-container .select2-dropdown .select2-results ul {
  background: #fff;
  border: 1px solid #8E1537 !important;  
}
#contactPage .select2-container .select2-dropdown .select2-results ul .select2-results__option--highlighted[aria-selected] {
  background-color: #8E1537;
}
#contactPage .select2-container--default .select2-results__option{
  -webkit-tap-highlight-color: transparent;
}
#contactPage .select2-container--default .select2-results__option[aria-selected=true]{
  background-color: #8E1537;
  color: #FFF;
}
#contactPage .select2-container--default .select2-selection--single .select2-selection__placeholder{
  color: gray;
  font-weight: 400;
}
#contactPage .select2-container--default .select2-selection--single .select2-selection__arrow b{
  border-color: #8E1537 transparent transparent transparent
}
#contactPage .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{
  border-color: transparent transparent #8E1537 transparent;
}
#contactPage .select2-container--default .select2-search--dropdown .select2-search__field{
  border: none !important;
}
.select2-container--default .select2-results>.select2-results__options[id*="select2-subject"]{
  max-height: 100px;
}
#contactPage .contact-section .submit-button-container{
  margin-top: 3rem;
  padding-bottom: 10px;
  padding-top: 10px;
}
#contactPage .contact-section .submit-button{
  display: block;
  background-color: #FFF;
  color: #8E1537;
  padding: 1rem 1rem;
  font-weight: bold;
  outline: none;
  font-size: var(--normal-font-size);
  cursor: pointer;
  width: 175px;
  text-align: center;
  border: 1px solid #8E1537;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: background-color .5s ease-in-out, color .5s ease-in-out, box-shadow .5s ease-in-out;
  -webkit-tap-highlight-color: transparent;
}
#contactPage .contact-section .submit-button:hover{
  outline: none;
  background-color: #8E1537;
  color: #FFF;
  box-shadow: rgba(142, 21, 55, 0.3) 0px 6px 10px, rgba(142, 21, 55, 0.2) 0px 2px 4px;
  transform: translateY(-2px);
  transition: background-color .5s ease-in-out, color .5s ease-in-out, box-shadow .5s ease-in-out;
}
#contactPage .contact-section .submit-button:active {
  outline: none;
  transform: translateY(0px);
  box-shadow: none;
}

/* CONTACT 2 SECTION */

#contactPage .contact-2-section{
  padding: 80px 0 80px;
  background-color: #8E1537;
}
#contactPage .contact-2-section .contact-2-container{
  row-gap: 2rem;
  text-align: left;
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
}
#contactPage .contact-2-section .contact-2-info .section-title{
  font-size: var(--h5-font-size);
  margin-bottom: var(--mb-2);
  margin-top: 0;
  color: #FFF;
  text-align: left;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  line-height: 38px;
}
#contactPage .contact-2-section .contact-2-info-container{
  margin-bottom: var(--mb-2);
}
#contactPage .contact-2-section .contact-2-info-container p{
  margin-bottom: var(--mb-2);
  font-size: var(--h4-font-size);
  line-height: 28px;
  margin-top: 0;
  color: #FFF;
  font-weight: 500;
}
#contactPage .contact-2-section .contact-2-info-container a{
  color: #FFF;
  -webkit-tap-highlight-color: transparent;
}
#contactPage .contact-2-section .contact-2-info-container a:hover{
  color: #977124;
}
#contactPage .contact-2-section .contact-2-section-img{
  display: block;
  width:100%;
  margin: auto;
  overflow: hidden;
}
#contactPage .contact-2-section .contact-2-section-img .contact-2-page-img{
  width: 100%;
  margin: auto;
}
#contactPage .contact-2-section .contact-2-social-media-container {
  margin-top: 3rem;
}
#contactPage .contact-2-section .contact-2-social-media-container p{
  margin-bottom: var(--mb-2);
  font-size: var(--h4-font-size);
  line-height: 28px;
  margin-top: 0;
  color: #FFF;
  font-weight: 500;
}
#contactPage .contact-2-section .contact-2-social-media{
  display: flex;
  align-items: center;
  margin-top: 1.5rem;
  margin-bottom: auto;
}
#contactPage .contact-2-section .contact-2-social-media a{
  -webkit-tap-highlight-color: transparent;
  display: inline-block;
  margin-right: 2rem;
}
#contactPage .contact-2-section .contact-2-social-media .icon-facebook{
  background: #FFF;
  mask: url('../img/icon-facebook-large.png') no-repeat center / contain;
  -webkit-mask: url('../img/icon-facebook-large.png') no-repeat center / contain;
  width: 50px;
  height: 50px;
}
#contactPage .contact-2-section .contact-2-social-media a:hover .icon-facebook{
  background: #977124;
}
#contactPage .contact-2-section .contact-2-social-media .icon-instagram{
  background: #FFF;
  mask: url('../img/icon-instagram-large.png') no-repeat center / contain;
  -webkit-mask: url('../img/icon-instagram-large.png') no-repeat center / contain;
  width: 50px;
  height: 50px;
}
#contactPage .contact-2-section .contact-2-social-media a:hover .icon-instagram{
  background: #977124;
}
#contactPage .contact-2-section .contact-2-social-media .icon-twitter{
  background: #FFF;
  mask: url('../img/icon-twitter-large.png') no-repeat center / contain;
  -webkit-mask: url('../img/icon-twitter-large.png') no-repeat center / contain;
  width: 50px;
  height: 50px;
}
#contactPage .contact-2-section .contact-2-social-media a:hover .icon-twitter{
  background: #977124;
}

/* EMPTY SECTION */

#contactPage .empty-section{
  padding: 70px 0;
  background-color: #FFF;
}



/* ================= NEWS PAGE ================= */

#newsPage {
  overflow: hidden;
}

/* LIST NEWS SECTION */

#newsPage .list-news-section{
  padding: 180px 0 80px;
}
#newsPage .list-news-section .list-news-container{
  row-gap: 2rem;
  align-items: center;
  text-align: left;
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
}
#newsPage .list-news-section .section-title{
  display: flex;
  align-items: center;
}
#newsPage .list-news-section .section-title hr{
  width: 100px; 
  height: 0; 
  border: 1px solid #8E1537;
  margin: 0;
}
#newsPage .list-news-section .section-title h5{
  margin-left: 20px;
  font-size: var(--normal-font-size);
  margin-top: 0;
  margin-bottom: 0;
  color: #8E1537;
  font-weight: 500;
}
#newsPage .list-news-section .section-subtitle h1{
  font-size: var(--big-font-size);
  font-weight: 300;
  width: 70%;
}
#newsPage .list-news-section .section-subtitle h1 .brand-name{
  font-size: var(--h2-font-size);
}
#newsPage .list-news-section .section-subtitle .red-text-subtitle{
  color: #8E1537;
}
#newsPage .list-news-section .list-news-info-container{
  row-gap: 2rem;
  grid-template-columns: repeat(3,1fr); 
  text-align: left;  
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
}
#newsPage .list-news-section .list-news-image{
  margin-top: var(--mb-4);
}
#newsPage .list-news-section .box-list-news{
  width: 100%;
  overflow: hidden;
}
#newsPage .list-news-section .box-list-news img{
  width: 100%;
}
#newsPage .list-news-section .info-list-news{
  width: 100%;
}
#newsPage .list-news-section .list-news-name{
  font-weight: 500;
  color: #000;
  font-size: var(--h5-font-size);
  margin-top: var(--mb-3);
  margin-bottom: var(--mb-2);
}
#newsPage .list-news-section .list-news-name .brand-name{
  font-size: var(--normal-font-size);
  font-weight: bold;
}
#newsPage .list-news-section .list-news-content{
  margin-top: 0;
  margin-bottom: var(--mb-2);
}
#newsPage .list-news-section .list-news-link{
  color: #8E1537;
  font-weight: 500;
  display: inline-block;
  width: 120px;
  -webkit-tap-highlight-color: transparent;
}
#newsPage .list-news-section .list-news-link img{
  display: inline-block;
  width: 18px;
  margin-left: 10px;
  animation: bounce-right 1s infinite;
  position: relative;
  right: 0px;
}
#newsPage .list-news-section .list-news-link:after{
  content: '';
  display: block;
  width: 0px;
  height: 0.10rem;  
  background: linear-gradient(to right, #8E1537 0%, #8E1537 60%);
  margin-top: var(--mb-1);
  transition: all .3s ease-in-out;
}
#newsPage .list-news-section .list-news-link:hover:after{
  width: 110px;
  transition: all .3s ease-in-out;
}




/* ============================= DETAIL NEWS PAGE =========================== */

#detailNewsPage {
  overflow: hidden;
}

/* NEWS SECTION */

#detailNewsPage .news-section{
  padding: 180px 0 80px;
}
#detailNewsPage .news-section .news-container{
  row-gap: 2rem;
  text-align: left;
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
}
#detailNewsPage .news-section ul.breadcrumb {
  list-style: none;
}
#detailNewsPage .news-section ul.breadcrumb li {
  display: inline;
}
#detailNewsPage .news-section ul.breadcrumb li+li:before {
  padding: 8px;
  vertical-align: middle;
  content: url('../img/icon-chevron-right-breadcrumb.png');
}
#detailNewsPage .news-section ul.breadcrumb li a {
  color: #A1A1A1;
  text-decoration: none;
  transition: all .3s ease-in-out;
}
#detailNewsPage .news-section ul.breadcrumb li a:hover {
  color: #8E1537;
  transition: all .3s ease-in-out;
}
#detailNewsPage .news-section .news-banner-page-img{
  width: 100%;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
#detailNewsPage .news-section .section-title{
  display: flex;
  align-items: center;
}
#detailNewsPage .news-section .section-title hr{
  width: 100px; 
  height: 0; 
  border: 1px solid #8E1537;
  margin: 0;
}
#detailNewsPage .news-section .section-title h5{
  margin-left: 20px;
  font-size: var(--normal-font-size);
  margin-top: 0;
  margin-bottom: 0;
  color: #8E1537;
  font-weight: 500;
}
#detailNewsPage .news-section .section-subtitle h1{
  font-size: var(--big-font-size);
  font-weight: 300;
  width: 70%;
}
#detailNewsPage .news-section .section-subtitle h1 .brand-name{
  font-size: var(--h2-font-size);
}
#detailNewsPage .news-section .section-subtitle .red-text-subtitle{
  color: #8E1537;
}
#detailNewsPage .news-section .news-info-container{
  margin-bottom: var(--mb-2);
}
#detailNewsPage .news-section .news-info-container p{
  margin-bottom: var(--mb-2);
  margin-top: 0;
  line-height: 28px;
}
#detailNewsPage .news-section .news-info-container .news-date{
  margin-bottom: var(--mb-3);
  margin-top: 0;
  color: #977124;
  font-style: italic;
}
#detailNewsPage .news-section .news-info-container .news-share{
  margin-top: var(--mb-4);
  color: #977124;
  display: flex;
}
#detailNewsPage .news-section .news-info-container .news-text-share{
  color: #977124;
  font-style: italic;
  margin-right: 1rem;
}
#detailNewsPage .news-section .news-info-container a{
  -webkit-tap-highlight-color: transparent;
  display: inline-block;
  margin-left: 1rem;
}
#detailNewsPage .news-section .news-info-container .icon-twitter{
  background: #8E1537;
  mask: url('../img/icon-twitter.png') no-repeat center / contain;
  -webkit-mask: url('../img/icon-twitter.png') no-repeat center / contain;
  width: 23px;
  height: 23px;
}
#detailNewsPage .news-section .news-info-container a:hover .icon-twitter{
  background: #977124;
}
#detailNewsPage .news-section .news-info-container .icon-facebook{
  background: #8E1537;
  mask: url('../img/icon-facebook.png') no-repeat center / contain;
  -webkit-mask: url('../img/icon-facebook.png') no-repeat center / contain;
  width: 23px;
  height: 23px;
}
#detailNewsPage .news-section .news-info-container a:hover .icon-facebook{
  background: #977124;
}




/* ================ OUTLET PAGE =================== */

#outletPage {
  overflow: hidden;
}

/* OUTLET SECTION */

#outletPage .outlet-section{
  padding: 180px 0 120px;
}
#outletPage .outlet-section .section-title{
  display: flex;
  align-items: center;
}
#outletPage .outlet-section .section-title hr{
  width: 100px; 
  height: 0; 
  border: 1px solid #8E1537;
  margin: 0;
}
#outletPage .outlet-section .section-title h5{
  margin-left: 20px;
  font-size: var(--normal-font-size);
  margin-top: 0;
  margin-bottom: 0;
  color: #8E1537;
  font-weight: 500;
}
#outletPage .outlet-section .section-subtitle h1{
  font-size: var(--big-font-size);
  font-weight: 300;
  width: 70%;
  margin: 2rem 0 4rem;
}
#outletPage .outlet-section .section-subtitle .red-text-subtitle{
  color: #8E1537;
}
#outletPage .outlet-section .maps-container{
  row-gap: 2rem;
  text-align: left;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
  margin: 0 0 4rem;
  position: relative;
}
#outletPage .outlet-section .maps-container .maps{
  width: 100%;
  height: 85vh;
  z-index: 0 !important;
  position: relative;
}
#outletPage .outlet-section .maps-container .maps-info{
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #8E1537;
  padding: 10px;
}
#outletPage .outlet-section .maps-container .maps-info p{
  color: #FFF;
  margin-bottom: 0;
  margin-top: 0;
  font-weight: 500;
  font-family: 'Poppins';
  font-size: var(--normal-font-size);
  animation-name: change-style-maps-info;
  animation-iteration-count: infinite;
  animation-duration: 1.5s;
}
#outletPage .outlet-section .leaflet-control-zoom .leaflet-control-zoom-in,
#outletPage .outlet-section .leaflet-control-zoom .leaflet-control-zoom-out{
  background-color: #8E1537;
  color: #FFF;
}
#outletPage .outlet-section .leaflet-control-search{
  background-color: #8E1537;
  padding: 10px;
  border-radius: 0;
  border: none;
}
#outletPage .outlet-section .leaflet-control-search .search-input{
  background-color: #8E1537;
  color: #FFF;
  border: 1px solid #977124;
  margin: 0;
  height: 30px;
  border-radius: 0;
  font-family: 'Poppins';
  font-size: var(--normal-font-size);
  width: 350px;
  padding: 10px 5px;
}
#outletPage .outlet-section .leaflet-control-search .search-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #FFF;
  opacity: 1; /* Firefox */
}
#outletPage .outlet-section .leaflet-control-search .search-input:focus{
  outline: none;
}
#outletPage .outlet-section .leaflet-control-search .search-cancel{
  visibility: hidden;
}
#outletPage .outlet-section .leaflet-control-search .search-button{
  background-color: #977124;
  background: url('../leaflet-search/images/search-icon.png') no-repeat 4px 4px #977124;
  border-radius: 0;
  display: none !important;
}
#outletPage .outlet-section .leaflet-control-search .search-tooltip{
  background-color: #8E1537;
  border: 1px solid #977124;
  padding: 5px;
  margin-top: 5px;
}
#outletPage .outlet-section .leaflet-control-search .search-tooltip .search-tip{
  background-color: #8E1537;
  color: #FFF;
  font-family: 'Poppins';
  font-size: var(--small-font-size);
}
#outletPage .outlet-section .leaflet-control-search .search-tooltip .search-tip:hover{
  background-color: #977124;
}
#outletPage .outlet-section .leaflet-control-search .search-alert{
  color: #FFF;
  font-family: 'Poppins';
  font-size: var(--small-font-size);
  padding-top: 10px;
}
#outletPage .outlet-section .leaflet-popup-content-wrapper{
  border-radius: 5px !important;
  outline: none !important;
  border: 0 !important;
}
#outletPage .outlet-section .leaflet-popup-content-wrapper, 
#outletPage .outlet-section .leaflet-popup-tip{
  background-color: #8E1537;
  color: #FFF;
  box-shadow: 0 3px 14px rgba(142, 21, 55, 0.4) !important;
}
#outletPage .outlet-section .leaflet-popup-content-wrapper .leaflet-popup-content h3{
  font-family: 'Poppins';
}
#outletPage .outlet-section .leaflet-popup-content-wrapper .leaflet-popup-content p{
  font-family: 'Poppins';
}
#outletPage .outlet-section .leaflet-control-layers{
  display: none;
}
#outletPage .outlet-section .search-outlet-city{
  outline: 0;
  padding: 0 0 5px;
  border-style: solid;
  border-width: 0 0 2px;  
  border-color:#8E1537;
  font-size: var(--normal-font-size);
  font-family: 'Poppins';
  width: 40%;
}
#outletPage .outlet-section .search-outlet-city::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #8E1537;
  opacity: 1; /* Firefox */
}
#outletPage .outlet-section .search-outlet-city:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #8E1537;
}
#outletPage .outlet-section .search-outlet-city::-ms-input-placeholder { /* Microsoft Edge */
  color: #8E1537;
}
#outletPage .outlet-section .outlet-container{
  width: 100%;
  overflow: hidden;
}
#outletPage .outlet-section .outlet-info .section-title-outlet{
  font-size: var(--h5-font-size);
  margin-bottom: var(--mb-2);
  margin-top: 0;
  text-align: left;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  line-height: 28px;
}
#outletPage .outlet-section .outlet-info-container{
  margin-bottom: var(--mb-2);
}
#outletPage .outlet-section .outlet-info-container p{
  margin-bottom: var(--mb-1);
  margin-top: 0;
  color: #000;
}
#outletPage .outlet-section .list-outlet {
  display: flex;
  flex-direction: column;
  margin-top: 2rem;
  margin-bottom: 2rem;
  text-decoration: none;
  border: 2px solid #8E1537;
  padding: 10px;
}
#outletPage .outlet-section .list-outlet .list
{
  row-gap: 2rem;
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
}
#outletPage .outlet-section .outlet-section-img{
  display: block;
  width:100%;
  margin: auto;
  position: relative;
  overflow: hidden;
}
#outletPage .outlet-section .outlet-section-img .outlet-page-img{
  width: 100%;
  margin: auto;
}



/* ==================== ERROR 404 PAGE ======================= */

#error404Page {
  overflow: hidden;
}

/* ERROR 404 SECTION */

#error404Page .error404-section{
  padding: 180px 0 120px;
}
#error404Page .error404-section .error404-container{
  row-gap: 2rem;
  align-items: center;
  text-align: left;  
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
}
#error404Page .error404-section .section-title{
  display: flex;
  align-items: center;
}
#error404Page .error404-section .section-title hr{
  width: 100px; 
  height: 0; 
  border: 1px solid #8E1537;
  margin: 0;
}
#error404Page .error404-section .section-title h5{
  margin-left: 20px;
  font-size: var(--normal-font-size);
  margin-top: 0;
  margin-bottom: 0;
  color: #8E1537;
  font-weight: 500;
}
#error404Page .error404-section .section-subtitle{
  row-gap: 2rem;
  text-align: left;
  max-width: 1124px;
  display: grid;
  grid-column-gap: 2rem;
  width: calc(100% - 0rem);
}
#error404Page .error404-section .section-subtitle h1{
  font-size: var(--big-font-size);
  font-weight: 300;
  margin-bottom: var(--mb-4);
}
#error404Page .error404-section .section-subtitle .red-text-subtitle{
  color: #8E1537;
}
#error404Page .error404-section .section-subtitle p{
  line-height: 28px;
  margin-bottom: var(--mb-6);
}
#error404Page .error404-section .back-to-home-button a{
  margin: 0 auto;
  display: inline-block;
  background-color: #FFF;
  color: #8E1537;
  padding: .7rem 1rem;
  outline: none;
  font-size: var(--normal-font-size);
  font-weight: bold;
  cursor: pointer;
  text-align: center;
  border: 1px solid #8E1537;
  transition: background-color .5s ease-in-out, color .5s ease-in-out, box-shadow .5s ease-in-out;
  -webkit-tap-highlight-color: transparent;
}
#error404Page .error404-section .back-to-home-button a:hover{
  outline: none;
  background-color: #8E1537;
  color: #FFF;
  box-shadow: rgba(142, 21, 55, 0.3) 0px 6px 10px, rgba(142, 21, 55, 0.2) 0px 2px 4px;
  transform: translateY(-2px);
  transition: background-color .5s ease-in-out, color .5s ease-in-out, box-shadow .5s ease-in-out;
}
#error404Page .error404-section .back-to-home-button a:active {
  outline: none;
  transform: translateY(0px);
  box-shadow: none;
}
#error404Page .error404-section .error404-section-img-desktop{
  display: block;
}
#error404Page .error404-section .error404-section-img-mobile{
  display: none;
}
#error404Page .error404-section .error404-section-img{
  width:90%;
  margin-top: auto;
  margin-bottom: auto;
  margin-left: auto;
  position: relative;
}
#error404Page .error404-section .error404-section-img .error404-page-img{
  width: 100%;
  margin: auto;
}




/* ================================================== */
/* =================== MEDIA QUERY ===================*/
/* ================================================== */

@media screen and (max-width: 460px){

  /* ALL PAGE */ 

  /* DOWNLOAD SECTION */

  .download-section .download-info{
    margin-bottom: 7rem !important;
  }

  /* HOME PAGE */ 

  /* BANNER SECTION */

  #homePage .banner-section .slider, 
  #homePage .banner-section .slide {
    height: 500px !important;
  }
  #homePage .banner-section .slide .slide__img.slide-img-desktop,
  #homePage .banner-section .slide .slide__img.slide-img-tablet {
    display: none;
  }
  #homePage .banner-section .slide .slide__img.slide-img-mobile {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    left: 0;
  }

  /* ================== PRODUCT PAGE ==================== */

  /* PRODUCT SECTION */

  #productPage .product-section .name-panel-product{
    font-size: var(--h4-font-size);
  }
  .select2.select2-container {
    width: 100% !important;
    text-align: left;
  }
  #productPage .product-section .modal-body-product{
    grid-template-columns: 100%; 
    max-height: 70vh;
    overflow-y: auto;
  }
  #productPage .product-section .modal-body-product .modal-product-image.modal-product-image-desktop{
    display: none;
  }
  #productPage .product-section .modal-body-product .modal-product-image.modal-product-image-mobile{
    display: block;
    width: 100%;
    margin-bottom: 2rem;
  }
  #productPage .product-section .modal-body-product .modal-product-name{
    font-size: var(--h3-font-size);
    margin-bottom: 2rem;
  }
  #productPage .product-section .modal-body-product .modal-product-description{
    font-size: var(--normal-font-size);
    margin-bottom: 2rem;
    line-height: 24px;
  }
  #productPage .product-section .modal-body-product .modal-product-price{
    font-size: var(--h5-font-size);
    margin-top: 0.5rem;
  }
  #productPage .product-section .modal-body-product .modal-product-price:last-child{
    margin-bottom: 20px;
    margin-top: 0;
  }
}
@media screen and (max-width: 600px) and (min-width: 461px){

  /* HOME PAGE */ 

  /* BANNER SECTION */

  #homePage .banner-section .slider, 
  #homePage .banner-section .slide {
    height: 300px;
  }
  #homePage .banner-section .slide .slide__img.slide-img-desktop,
  #homePage .banner-section .slide .slide__img.slide-img-mobile {
    display: none;
  }
  #homePage .banner-section .slide .slide__img.slide-img-tablet {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    left: 0;
  }

  /* ================== PRODUCT PAGE ==================== */

  /* PRODUCT SECTION */

  #productPage .product-section .name-panel-product{
    font-size: var(--h4-font-size);
  }
  .select2.select2-container {
    width: 80% !important;
    text-align: left;
  }
  #productPage .product-section .modal-body-product{
    grid-template-columns: 100%; 
    max-height: 70vh;
    overflow-y: auto;
  }
  #productPage .product-section .modal-body-product .modal-product-image.modal-product-image-desktop{
    display: none;
  }
  #productPage .product-section .modal-body-product .modal-product-image.modal-product-image-mobile{
    display: block;
    width: 100%;
    margin-bottom: 2rem;
  }
  #productPage .product-section .modal-body-product .modal-product-name{
    font-size: var(--h3-font-size);
    margin-bottom: 2rem;
  }
  #productPage .product-section .modal-body-product .modal-product-description{
    font-size: var(--normal-font-size);
    margin-bottom: 2rem;
    line-height: 24px;
  }
  #productPage .product-section .modal-body-product .modal-product-price{
    font-size: var(--h5-font-size);
    margin-top: 0.5rem;
  }
  #productPage .product-section .modal-body-product .modal-product-price:last-child{
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 960px) and (min-width: 601px){

  /* ================= HOME PAGE ==================== */ 

  /* BANNER SECTION */

  #homePage .banner-section .slider, 
  #homePage .banner-section .slide {
    height: 400px;
  }
  #homePage .banner-section .slide .slide__img.slide-img-desktop,
  #homePage .banner-section .slide .slide__img.slide-img-mobile {
    display: none;
  }
  #homePage .banner-section .slide .slide__img.slide-img-tablet {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    left: 0;
  }

  /* ================== PRODUCT PAGE ==================== */

  /* PRODUCT SECTION */

  #productPage .product-section .name-panel-product{
    font-size: var(--h3-font-size);
  }
  .select2.select2-container {
    width: 60% !important;
    text-align: left;
  }
  #productPage .product-section .modal-body-product{
    grid-template-columns: 100%; 
    max-height: 70vh;
    overflow-y: auto;
  }
  #productPage .product-section .modal-body-product .modal-product-image.modal-product-image-desktop{
    display: none;
  }
  #productPage .product-section .modal-body-product .modal-product-image.modal-product-image-mobile{
    display: block;
    width: 60%;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 2rem;
  }
  #productPage .product-section .modal-body-product .modal-product-name{
    margin-bottom: 2rem;
    text-align: center;
  }
  #productPage .product-section .modal-body-product .modal-product-description{
    margin-bottom: 2rem;
    line-height: 24px;
  }
  #productPage .product-section .modal-body-product .modal-product-price{
    font-size: var(--h5-font-size);
    margin-top: 0.5rem;
  }
  #productPage .product-section .modal-body-product .modal-product-price:last-child{
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 960px){

    /* ALL PAGE */

    /* DOWNLOAD SECTION */

    .download-section .download-info{
      margin-bottom: 15rem;
    }
    .download-section .download-info .section-title{
      text-align: center;
    }
    .download-section .download-section-empty{
      display: none;
    }
    .download-section .download-button-container{
      display: block;
      margin: 0 auto;
    }
    .download-section .download-button{
      margin: 20px auto;
    }
    .download-section .download-img{
      width:60% !important;
    }

    /* ================= HOME PAGE ==================== */ 

    
    /* ==================== PRODUCT SECTI0N ===================== */

    #homePage .product-section .section-title hr{
      width: 50px; 
    }
    #homePage .product-section .section-subtitle h1{
      width: 100%;
      font-size: var(--h2-font-size);
    }
    #homePage .product-section .list-product-category .category-text h3{
      margin-bottom: var(--mb-4);
      font-size: var(--h3-font-size);
    }
    #homePage .product-section .list-product-category a:last-child .product-category{
      margin: 0 !important; 
    }

   

    /* ======================= PRODUCT PAGE ================= */

    /* PRODUCT SECTI0N */

    #productPage .product-section{
      padding: 150px 0 60px;
    }
    #productPage .product-section .section-title{
      margin-bottom: 3rem;
    }
    #productPage .product-section .section-title hr{
      width: 50px; 
    }
    #productPage .product-section .product-tab-container{
      row-gap: 1rem;
      align-items: center;
      text-align: left;
      grid-column-gap: 1rem;
    }
    #productPage .product-section .product-category-desktop {
      display: none;
    }
    #productPage .product-section .product-category-mobile {
      width: 100%;
      overflow: hidden;
      display: block;
    }
    #productPage .product-section .btn-tab-product-mobile{
      border: none;
      width: 100%;
      outline:none;
      cursor: pointer;
      padding: 10px;
      background-color: #977124;
      box-shadow: 0 4px 10px 0px rgba(0, 0, 0, 0.3);
      display: block;
      -webkit-tap-highlight-color: transparent;
      transition: background-color .5s ease-in-out, box-shadow .5s ease-in-out;
    }
    #productPage .product-section .btn-tab-product-mobile:hover{
      background-color: #977124 !important;
      box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
      transform: translateY(-1px);
      transition: background-color .5s ease-in-out, box-shadow .5s ease-in-out;
    }
    #productPage .product-section .btn-tab-product-mobile:active {
      transform: translateY(0px);
      box-shadow: none;
    }
    #productPage .product-section .icon-tab-product{
      width: 100%;
      height: 100%;
      margin: auto;
    }
    #productPage .product-section .icon-tab-product img{
      max-width: 200px;
      max-height: 70px;
      display: block;
      margin: auto;
    }
    #productPage .product-section .name-tab-product{
      margin: auto;
      height: 100%;
      font-family: "Poppins", sans-serif;
      font-weight: bold;
      font-size: 16px;
      white-space: nowrap;
      transition: color .3s ease-in-out;
    }
    #productPage .product-section .btn-tab-product:hover .name-tab-product{
      color: #FFF;
      transition: color .3s ease-in-out;
    }
    #productPage .product-section .list-category {
      display: flex;
      justify-content: center;
      flex-direction: column;
      padding-left: 10px;
      margin-left: 5px;
      margin-right: 5px;
      text-decoration: none;
      width: 150px;
    }
    #productPage .product-section .icon-tab-product img{
      max-width: 110px;
      max-height: 45px;
    }
    #productPage .product-section .slick-track {
      display: flex;
      align-items: center;
      justify-content: center;
      height: 80px;
    }
    #productPage .product-section .slick-slider {
      display: flex;
      flex-wrap: wrap;
      position: relative;
    }
    #productPage .product-section .slick-slide {
      outline: none !important;
    }
    #productPage .product-section .slick-list {
      width: 80%;
      padding: 0 2px 0 0;
      margin: auto;
    }
    #productPage .product-section .slick-next {
      position: absolute;
      top: 50%;
      right: 0;
      transform: translateY(-50%);
      width: 30px;
      height: 40px;
      background: #fff;
      border-left: 1px solid #8E1537;
      border-top: 1px solid #8E1537;
      border-bottom: 1px solid #8E1537;
      border-right: none;
      outline: none;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 2;
    }
    #productPage .product-section .slick-next:hover {
      background: #8E1537;
      transition: all .3s ease-in-out;
    }
    #productPage .product-section .slick-prev {
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      width: 30px;
      height: 40px;
      background: #fff;
      border-right: 1px solid #8E1537;
      border-top: 1px solid #8E1537;
      border-bottom: 1px solid #8E1537;
      border-left: none;      
      outline: none;
      display: flex;
      justify-content: center;
      align-items: center;
      cursor: pointer;
      z-index: 2;
    }
    #productPage .product-section .slick-prev:hover {
      background: #8E1537;
      transition: all .3s ease-in-out;
    }
    #productPage .product-section .slick-next .icon-chevron-right{
      background: #8E1537;
      mask: url('../img/icon-chevron-right.png') no-repeat center / contain;
      -webkit-mask: url('../img/icon-chevron-right.png') no-repeat center / contain;
      width: 30px;
      height: 30px;
      text-align: center;
    }
    #productPage .product-section .slick-next:hover .icon-chevron-right{
      background: #FFF;
      transition: all .3s ease-in-out;
    }
    #productPage .product-section .slick-prev .icon-chevron-left{
      background: #8E1537;
      mask: url('../img/icon-chevron-left.png') no-repeat center / contain;
      -webkit-mask: url('../img/icon-chevron-left.png') no-repeat center / contain;
      width: 30px;
      height: 30px;
      text-align: center;
    }
    #productPage .product-section .slick-prev:hover .icon-chevron-left{
      background: #FFF;
      transition: all .3s ease-in-out;
    }
    #productPage .product-section .slick-disabled{
      opacity: 0.5;
      cursor: not-allowed;
    }
    #productPage .product-section .text-panel-product{
      grid-column-gap: 1rem;
    }
    #productPage .product-section .list-panel-product{
      grid-template-columns: repeat(2,1fr); 
      row-gap: 2rem;
      grid-column-gap: 1rem;
    }
    #productPage .product-section .info-product{
      height: 120px;
    }
    #productPage .product-section .product-name{
      font-size: var(--normal-font-size);
    }
    #productPage .product-section .modal-body-product{
      grid-template-columns: 100%;
    }
    /* SCROLL BAR WEB */

    ::-webkit-scrollbar {
      width: 5px;
    }
    /* Track */
    ::-webkit-scrollbar-track {
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); 
    }
    /* Handle */
    ::-webkit-scrollbar-thumb {
      background: rgba(151, 113, 36, 0.8); 
      -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); 
    }
    ::-webkit-scrollbar-thumb:window-inactive {
      background: rgba(151, 113, 36, 0.4); 
    }



    /* ===================== ABOUT PAGE =================== */

    /* BANNER SECTION */

    #aboutPage .banner-section{
      margin-top: 5rem;
    }

    /* ABOUT SECTION */

    #aboutPage .about-section .about-section-img{
      width: 100%;
    }
    #aboutPage .about-section .section-title hr{
      width: 50px; 
    }
    #aboutPage .about-section .section-subtitle h1{
      width: 100%;
      font-size: var(--h2-font-size);
    }
    #aboutPage .about-section .section-subtitle h1 .brand-name{
      font-size: var(--h3-font-size);
    }

    /* HISTORY SECTION */

    #aboutPage .history-section .section-title hr{
      width: 50px; 
    }
    #aboutPage .history-section .section-subtitle h1{
      width: 100%;
      font-size: var(--h2-font-size);
    }
    #aboutPage .history-section .section-subtitle h1 .brand-name{
      font-size: var(--h3-font-size);
    }
    #aboutPage .history-section .list-history-img{
      grid-template-columns: 100%; 
      grid-column-gap: 1rem;
    }
    #aboutPage .history-section .list-history-img .history-img:last-child{
      margin-top: 0rem;
    }
    #aboutPage .history-section .list-history-img .history-img img:last-child{
      margin-top: 2rem;
    }
    #aboutPage .history-section .list-history-img .history-img:last-child img:last-child{
      margin-bottom: 0rem;
    }



    /* ================ CONTACT PAGE  ====================== */

    /* CONTACT SECTION */

    #contactPage .contact-section{
      padding: 150px 0 80px;
    }
    #contactPage .contact-section .contact-section-img{
      width:100%;
    }
    #contactPage .contact-section .contact-section-img .contact-page-img{
      width: 100%;
      margin: auto;
    }
    #contactPage .contact-section .section-title hr{
      width: 50px; 
    }
    #contactPage .contact-section .section-subtitle h1{
      font-size: var(--h2-font-size);
      width: 100%;
    }
    #contactPage .contact-section .g-recaptcha{
      transform:scale(0.77);
      -webkit-transform:scale(0.77);
      transform-origin:0 0;
      -webkit-transform-origin:0 0;
    }
    .gc-reset{
      transform:scale(0.95) !important;
      -webkit-transform:scale(0.95) !important;
      transform-origin:0 0 !important;
      -webkit-transform-origin:0 0 !important;
    }
    #contactPage .contact-section .whatsapp-button a{
      font-size: var(--h4-font-size);
    }

    /* CONTACT 2 SECTION */

    #contactPage .contact-2-section{
      padding: 80px 0 150px;
    }
    #contactPage .contact-2-section .contact-2-section-img{
      width: 100%;
      margin: auto;
    }
    #contactPage .contact-2-section .contact-2-social-media-container {
      margin-top: 2rem;
    }
    #contactPage .contact-2-section .contact-2-info-container p{
      margin-bottom: var(--mb-1);
      font-size: var(--h5-font-size);
      line-height: 28px;
    }
    #contactPage .contact-2-section .contact-2-social-media-container p{
      margin-bottom: var(--mb-1);
      font-size: var(--h5-font-size);
      line-height: 28px;
    }
    #contactPage .contact-2-section .contact-2-social-media{
      /* justify-content: center; */
      margin-top: 1rem;
    }
    #contactPage .contact-2-section .contact-2-social-media .icon-facebook{
      width: 40px;
      height: 40px;
    }
    #contactPage .contact-2-section .contact-2-social-media .icon-instagram{
      width: 40px;
      height: 40px;
    }
    #contactPage .contact-2-section .contact-2-social-media .icon-twitter{
      width: 40px;
      height: 40px;
    }



    /* ======================== NEWS PAGE ======================== */

    /* LIST NEW SECTION */

    #newsPage .list-news-section{
      padding: 150px 0 80px;
    }
    #newsPage .list-news-section .list-news-info-container{
      row-gap: 2rem;
      grid-template-columns: repeat(1,1fr); 
      grid-column-gap: 2rem;
    }
    #newsPage .list-news-section .section-title hr{
      width: 50px; 
    }
    #newsPage .list-news-section .section-subtitle h1{
      width: 100%;
      font-size: var(--h2-font-size);
    }
    #newsPage .list-news-section .section-subtitle h1 .brand-name{
      font-size: var(--h3-font-size);
    }



    /* ===================== DETAIL NEWS PAGE ======================== */

    /* NEW SECTION */

    #detailNewsPage .news-section{
      padding: 150px 0 80px;
    }
    #detailNewsPage .news-section .news-banner-page-img{
      margin-bottom: 2rem;
    }
    #detailNewsPage .news-section .section-title hr{
      width: 50px; 
    }
    #detailNewsPage .news-section .section-subtitle h1{
      width: 100%;
      font-size: var(--h2-font-size);
    }
    #detailNewsPage .news-section .section-subtitle h1 .brand-name{
      font-size: var(--h3-font-size);
    }



    /* ================== OUTLET PAGE =================== */

    /* OUTLET SECTION */

    #outletPage .outlet-section{
      padding: 150px 0 60px;
    }
    #outletPage .outlet-section .section-title hr{
      width: 50px; 
    }
    #outletPage .outlet-section .section-subtitle h1{
      font-size: var(--h2-font-size);
    }
    #outletPage .outlet-section .maps-container .maps{
      height: 60vh;
    }
    #outletPage .outlet-section .maps-container .maps-info{
      width: 70%;
    }
    #outletPage .outlet-section .leaflet-control-search .search-input{
      width: 100%;
    }
    #outletPage .outlet-section .list-outlet {
      padding: 0;
    }
    #outletPage .outlet-section .list-outlet .list{
      row-gap: 1rem;
      grid-template-columns: repeat(1,1fr);
      align-items: center;
      text-align: initial;
    } 
    #outletPage .outlet-section .outlet-section-img{
      width:100%;
    }
    #outletPage .outlet-section .search-outlet-city{
      width: 100%;
    }
    #outletPage .outlet-section .outlet-section-info {
      padding: 10px;
    }

    

    /* ===================== ERROR 404 PAGE =================== */

    /* ERROR 404 SECTION */

    #error404Page .error404-section{
      padding: 150px 0 60px;
    }
    #error404Page .error404-section .section-title hr{
      width: 50px; 
    }
    #error404Page .error404-section .section-subtitle h1{
      width: 100%;
      font-size: var(--h2-font-size);
      margin-bottom: var(--mb-4);
    }
    #error404Page .error404-section .section-subtitle p{
      margin-bottom: var(--mb-4);
    }
    #error404Page .error404-section .error404-section-img-desktop{
      display: none;
    }
    #error404Page .error404-section .error404-section-img-mobile{
      display: block;
    }
    #error404Page .error404-section .error404-section-img{
      width:100%;
      margin-bottom: var(--mb-4);
    }
    #error404Page .error404-section .error404-section-img .error404-page-img{
      width: 100%;
      margin: auto;
    }
}

@media screen and (max-width: 1200px){

    /* ALL PAGE */

    /* DOWNLOAD SECTION */

    .download-section .download-img{
      width:40%;
    }

}

@media screen and (min-width: 960px){

    /* ALL PAGE */

    /* DOWNLOAD SECTION */

    .download-section .download-info-container{
      align-items: center;
      text-align: left;
    }
    .download-section .download-container{
      grid-template-columns: repeat(3,1fr); 
      align-items: center;
      text-align: left;
    }



    /* ================= HOME PAGE ========================== */

  
    /* ================= PRODUCT PAGE ======================= */

    /* PRODUCT SECTION */

    #productPage .product-section .product-info-container{
      align-items: center;
      text-align: left;
    }



    /* ================== ABOUT PAGE ======================*/

    /* ABOUT SECTION */

    #aboutPage .about-section .about-info-container{
      align-items: center;
      text-align: left;
    }
    #aboutPage .about-section .section-subtitle{
      grid-template-columns: repeat(2,1fr);
      align-items: center;
      text-align: left;
    }

    /* HISTORY SECTION */

    #aboutPage .history-section .about-info-container{
      align-items: center;
      text-align: left;
    }
    #aboutPage .history-section .section-subtitle{
      grid-template-columns: repeat(2,1fr);
      align-items: center;
      text-align: left;
    }
    #aboutPage .history-section .list-history-img{
      grid-template-columns: repeat(2,1fr);
      text-align: left;
    }



    /* ================================ CONTACT PAGE ================================ */

    /* CONTACT SECTION */

    #contactPage .contact-section .contact-info-container{
      align-items: center;
      text-align: left;
    }
    #contactPage .contact-section .contact-container{
      grid-template-columns: repeat(2,1fr); 
      align-items: center;
      text-align: left;
    }

    /* CONTACT 2 SECTION */

    #contactPage .contact-2-section .contact-2-info-container{
      align-items: center;
      text-align: left;
    }
    #contactPage .contact-2-section .contact-2-container{
      grid-template-columns: repeat(2,1fr); 
      align-items: center;
      text-align: left;
    }



    /* DETAIL NEWS PAGE */

    /* NEWS SECTION */

    #detailNewsPage .news-section .news-info-container{
      align-items: center;
      text-align: left;
    }
    #detailNewsPage .news-section .news-container{
      align-items: center;
      text-align: left;
    }



    /* ======================= OUTLET PAGE =============================== */

    /* OUTLET SECTION */

    #outletPage .outlet-section .outlet-info-container{
      align-items: center;
      text-align: left;
    }
    #outletPage .outlet-section .list-outlet .list{
      grid-template-columns: repeat(2,1fr);
      align-items: center;
      text-align: initial;
    } 



    /* ======================== ERROR 404 PAGE ======================== */

    /* ERROR 404 SECTION */

    #error404Page .error404-section .error404-info-container{
      align-items: center;
      text-align: left;
    }
    #error404Page .error404-section .section-subtitle{
      grid-template-columns: repeat(2,1fr);
      align-items: center;
      text-align: left;
    }
}

@media screen and (min-width: 1500px){

    /* ALL PAGE */

    /* DOWNLOAD SECTION */

    .download-section .download-img{
      width:25%;
    }
}