:root{
    --dark-bg: #1d1d1b;
    --grey-bg: #e4e4e2;
    --grey-light-bg: #f0f0ee;
}

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'nimbus_regular';
  scroll-behavior: smooth;
}


@font-face {
  font-family: 'nimbus_bold';
  src: url('../fonts/nimbussanl-bol-webfont.woff2') format('woff2'),
       url('../fonts/nimbussanl-bol-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'nimbus_ext_b';
  src: url('../fonts/NimbusSanExt.woff2') format('woff2'),
       url('../fonts/NimbusSanExt.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'nimbus_ext_r';
  src: url('../fonts/NimbusSanDExt.woff2') format('woff2'),
       url('../fonts/NimbusSanDExt.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}




@font-face {
  font-family: 'nimbus_regular';
  src: url('../fonts/nimbussanl-reg-webfont.woff2') format('woff2'),
       url('../fonts/nimbussanl-reg-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

.header-custom{
    width: 100%;
    position: absolute;
    background-color: var(--dark-bg);
    top: 0;
    right: 0;
    left: 0;
    height: 170px;
    padding: 10px 80px;
    z-index: 100;
}

.header-custom a{
  height: 100%;
  width: 320px;
  display: flex;
}

.header-custom .container-fluid{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

 .logo-header{
    max-height: 100%;
    max-width: 370px;
    margin-bottom: 40px;
    filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(172deg) brightness(106%) contrast(103%);
}

#page404 .logo-header{
  max-height: 100%;
  max-width: 370px;
  margin-bottom: 40px;
  filter: none !important;
}

.menu-bar {
    width: 32px;
    height: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
    z-index: 40;
  }
  
  .menu-line {
    height: 3px;
    background-color: var(--grey-light-bg);
    border-radius: 3px;
    transition: all 850ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
  }

  .open .menu-line{
    background-color: var(--dark-bg);
  }
  
  .menu-line:first-child {
    animation: firstLinetoClose 250ms cubic-bezier(0.23, 0.95, 0.58, 1.37);
  }
  
  .open .menu-line:first-child {
    animation: firstLinetoOpen 250ms cubic-bezier(0.23, 0.95, 0.58, 1.37);
    animation-fill-mode: forwards;
  }
  
  @keyframes firstLinetoOpen {
    0%   {
      transform: translateY(0);
    }
  
    50% { 
      transform: translateY(16px);
    }
  
    100% {
      transform: translateY(8px) rotate(45deg);
    }
  }
  
  @keyframes firstLinetoClose {
    0%   {
      transform: translateY(17px) rotate(0);
    }
  
    100% {
      transform: translateY(0);
    }
  }
  
  .menu-bar.open .menu-line:nth-child(2){
    opacity: 0;
  }
  
  .menu-line:last-child {
    animation: lastLinetoClose 240ms cubic-bezier(0.23, 0.95, 0.58, 1.37);  
  }
  
  .menu-bar.open .menu-line:last-child {
    animation: lastLinetoOpen 240ms cubic-bezier(0.23, 0.95, 0.58, 1.37);
    animation-fill-mode: forwards;
  }
  
  @keyframes lastLinetoOpen {
    0%   {
      transform: translateY(0);
    }
  
    50% {
      transform: translateY(-8px);
    }
  
    100% {
      transform: translateY(-8px) rotate(-45deg);
    }
  }

  .nav-custom.show{
    translate: 0;
  }

  .nav-custom {
    position: absolute;
    right: 0;
    top: 0px;
    background-color: var(--grey-bg);
    min-width: 270px;
    padding: 100px;
    text-align: right;
    width: 400px;
    translate: 400px;
    transition: all ease .5s;
    height: 100vh;
  }

  .nav-custom ul li{
    list-style: none;
    margin-bottom: 5px;
  }

  .nav-custom ul li a{
    color: #000;
    text-transform: uppercase;
    font-size: 25px;
    font-family: 'nimbus_ext_r';
    transition: all ease .3s;
  }

  .nav-custom ul li a:hover{
    color: #000 !important;
    text-decoration: underline !important;
  }

  section,
  .contact-btn,
  .section-img{
    min-height: 100vh;
    padding: 80px !important;
    position: relative;
    top: 0;
    display: flex !important;
    align-items: center;
  }

  .bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    content: ' ';
    z-index: 0;
    background: rgba(29, 29, 27,0.80) !important; 
    opacity: 1 !important;
  }

  .scroll-downs {
    position: absolute;
    right: 0;
    bottom: -30px;
    left: 0;
    margin: 0 auto;
    width: 34px;
    height: 17px;
  }

  .mousey {
    width: 3px;
    padding: 10px 10px;
    height: 17px;
    border: 2px solid #ffffff60;
    border-radius: 30px;
    opacity: 0.75;
    box-sizing: content-box;
    animation-duration: 3s;
    animation-name: inicio;
  }
  


@keyframes inicio {
  from { opacity: 0; }
  to { opacity: 1;}
}


  .scroller {
    width: 3px;
    height: 10px;
    border-radius: 25%;
    background-color: #ffffff60;
    animation-name: scroll;
    animation-duration: 2.2s;
    animation-timing-function: cubic-bezier(.15,.41,.69,.94);
    animation-iteration-count: infinite;
  }
  @keyframes scroll {
    0% { opacity: 0; }
    10% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0;}
  }

  .home, .contact, .distributors, .parfumerie,
  .stores, .brands, .companies, #slider, .brands-section, .slider-brands{
    background-color: var(--dark-bg) !important;
  }

  .home .titular{
    max-width: 700px;
  }

  .home .titular h4{
    margin-bottom: 40px;
  }
  
  .home .titular p{
    font-size: 22px;
    color: #ffffff;
    line-height: 125%;
    font-family: 'nimbus_regular';
  }


  .about{
    background: #ffffff url(../images/img-03.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .txt-title{
    text-align: right;
    color: #000000;
    font-size: 32px;
    line-height: 105%;
    margin-bottom: 40px;
    font-family: 'nimbus_ext_r';
  }

  .txt-2{
    color: #000000;
    font-size: 19px;
    line-height: 125%;
    text-align: justify;
    font-family: 'nimbus_ext_r';

  }

  .txt-2 strong{
    font-family: 'nimbus_ext_b';
  }

  .txt-title.white,
  .txt-2.white{
    color: #ffffff !important;
  }


  .distributors{
    overflow: hidden;
  }

  .distributors .bg{
    position: absolute;
    bottom: -30px;
    left: 0;
    max-width: 35%;
    pointer-events: none;
  }

  .distributors .bg img,
  .companies .bg img{
    max-width: 100%;
    max-height: 100%;
  }

  .distributors{
    background: #ffffff url(../images/img-01.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .build{
    background-color: var(--grey-bg);
  }

  .build .txt-title strong,
  .parfumerie .txt-title strong{
    font-family: 'nimbus_ext_r';
    text-align: center;
  }

  .build .txt-title,
  .parfumerie .txt-title{
    text-align: center;
  }

  .contenedor-img{
    margin: 0 auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 300px;
  }

  .contenedor-img img{
    max-width: 245px;
    margin-top: 35px;  
  }

  .accordion{
    min-height: 380px;
  }

  .accordion .card-header img{
    margin-right: 15px; 
    width: 15px;
    rotate: 90deg;
    transition: all ease .3s;
  }

  .accordion .card-header .btn-link.collapsed img{
    rotate: 0deg;
  }

  .accordion .card-header,
  .accordion .card-body,
  .accordion .collapse,
  .accordion .card,
  .accordion .btn-link{
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }

  .accordion .card-header {
    padding: 0 !important;
  }

  .accordion .card-body {
    padding: 0 1.25rem 0 50px !important;
}

  .accordion .btn-link:focus,
  .accordion .btn-link:active{
    box-shadow: none !important;
  }

  .accordion .btn-link {
    font-size: 17px !important;
    font-family: 'nimbus_ext_b' !important;
    text-decoration: none;
    text-transform: capitalize !important;
  }

  .accordion .card-body p{
    font-size: 16px;
    font-family: 'nimbus_ext_r';
  }

  .build .accordion .card-body p,
  .build .accordion .btn-link{
    color: #000 !important;
  }

  .parfumerie .accordion .card-body p,
  .parfumerie .accordion .btn-link{
    color: #ffffff !important;
  }

  .parfumerie .accordion .card-header .btn-link img{
    filter: invert(93%) sepia(0%) saturate(6318%) hue-rotate(174deg) brightness(106%) contrast(103%);
  }

.slider-brands{
  min-height: 250px !important;
}

.slider-brands .flickity-slider>div>img, .carousel .polo-carousel-item img {
  max-width: 170px;
  display: flex;
  height: auto;
}


.slider-brands .flickity-button{
  font-size: 15px;
  font-weight: 700;
  font-family: 'nimbus_ext_b' !important;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 30px !important;
  width: 30px !important;
  border: solid 1px #ffffff;
  background-color: transparent;
}

.slider-brands .polo-carousel-item{
  /* height: 100% !important; */
  display: flex !important;
  align-items: center !important;
  justify-content: center!important;
}


.slider-brands .flickity-button:hover {
  background-color: #ffffff;
  border: solid 1px #ffffff;
}

.slider-brands .flickity-button:hover:before,
.slider-brands .flickity-button:active:before {
  color: var(--dark-bg) !important;
}

.slider-brands .flickity-button.next:before {
  margin-left: 0;
  content: "\203A";
  position: relative;
  bottom: 3px;
  color: var();
  color: #ffffff;
}

.slider-brands .flickity-button.previous:before {
  margin-left: 0;
  content: "\2039";
  position: relative;
  bottom: 3px;
  color: #ffffff;
}

.slider-brands h3{
  color: #e4e4e470;
  margin-bottom: 40px !important;
}

.slider-brands .carousel{
  margin-bottom: 100px !important;
}

.contact-btn{
  background: #ffffff url(../images/img-02.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.contact-btn .btn-custom{
  color: var(--dark-bg);
  border: 2px solid var(--dark-bg);
  text-transform: uppercase;
  font-size: 17px;
  font-family: 'nimbus_ext_b';
  padding: 10px 30px;
  transition: all ease .4s;
}

.contact-btn .btn-custom:hover{
  background-color: var(--dark-bg);
  color: #ffffff !important;
  margin: 0 auto !important;
}


.companies .bg{
  position: absolute;
  bottom: 0px;
  left: 0;
  max-width: 25%;
  pointer-events: none;
}

.companies .companies-img{
  display: flex;
  align-items: center;
  justify-content: center;
}

.companies .companies-img img{
  max-width: 200px !important;
  margin: 30px 0;
  max-height: 40px;
}

.companies .txt-footer{
  color: #ffffff;
  font-family: 'nimbus_regular';
  font-size: 14px;
  text-align: center;
}

.companies .container-fluid{
  max-height: 400px !important;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

section.companies{
  height: 500px !important;
  min-height: 450px !important;
}

.logistic .galeria{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.logistic .galeria div{
  background-position: center;
  background-size: cover;
  height: 180px;
}

.gal-1 { 
  grid-area: 1 / 1 / 2 / 3; 
  background-image: url(../images/logistic/1.png);
}
.gal-2 { 
  grid-area: 1 / 3 / 2 / 4; 
  background-image: url(../images/logistic/2.png);
}

.gal-3 { 
  grid-area: 2 / 1 / 3 / 2; 
  background-image: url(../images/logistic/3.png);
}

.gal-4 {
  grid-area: 2 / 2 / 3 / 4; 
  background-image: url(../images/logistic/4.png);
}

.gal-5 {
  grid-area: 3 / 1 / 4 / 2; 
  background-image: url(../images/logistic/5.png);
}

.gal-6 { 
  grid-area: 3 / 2 / 4 / 3; 
  background-image: url(../images/logistic/6.png);
}

.gal-7 {
  grid-area: 3 / 3 / 4 / 4; 
  background-image: url(../images/logistic/7.png);
}

.stores{
  padding: 0 !important;
}

.stores .inspiro-slider{
  background-position: center center !important;
  max-height: calc(100vh - 80px) !important;
  min-height: 500px !important;
}

.stores .bg-overlay{
  opacity: 0 !important;
}

.stores .inspiro-slider .slide-captions{
  position: absolute;
  top: 35px;
  left: 15px;
}

.stores .inspiro-slider .slide .container{
  height: 100%;
  padding-top: 0 !important;
}

.stores .flickity-button.next:before{
  margin-left: 0;
  content: "\203A";
  position: relative;
  bottom: 3px;
}

.stores .flickity-button.previous:before{
  margin-left: 0;
  content: "\2039";
  position: relative;
  bottom: 3px;
}

.stores .flickity-button:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

.companies {
  overflow: revert !important;
}

#slider2 .bg-overlay{
  opacity: 0 !important;
}



  /*Contact*/

  .contact h1{
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 45px;
    line-height: 125%;
    font-size: 19px;
    font-family: 'nimbus_ext_r';
    letter-spacing: 1px;
  }

  .contact .form-control,
  .contact .form-control:focus,
  .contact .form-control:active,
  .contact .form-control:visited {
    height: 50px;
    margin-bottom: 10px;
    padding: 15px;
    font-size: 18px !important;
    border-bottom: 1px solid #ffffff !important;
    font-weight: 400;
    line-height: 50px;
    color: #ffffff !important;
    background-color: transparent;
    background-clip: padding-box;
    border: none;
    border-radius: 0;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

.contact textarea{
  min-height: 125px !important;
  line-height: 125% !important;
  border: 1px solid #ffffff !important;
}

.contact .form-control:focus{
  border: 1px solid #ffffff !important;
  box-shadow: none !important;
}

.contact .btn-submit{
  padding: 10px 40px;
  background-color: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
  line-height: 100%;
  text-transform: uppercase;
  font-size: 13px;
  transition: all ease .4s;
}

.contact .btn-submit:hover,
.contact .btn-submit:active,
.contact .btn-submit:focus{
  background-color: #ffffff;
  color: var(--dark-bg);
  font-family: 'nimbus_bold';
}

::placeholder{
  color: #ffffff !important;
}

.form-right{
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding-bottom: 30px;
}

.form-right .txt.mb-custom{
  margin-bottom: 20px !important;
}

.form-right a{
  margin-bottom: 15px !important;
}

.form-right .txt,
.form-right a{
  color: #ffffff;
  font-size: 16px;
  line-height: 125% !important;
}

.form-right a:hover{
  text-decoration: underline !important;
  color: #ffffff !important;
}

.brands-section .contenedor-brands{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

.brands-section .contenedor-brands .brand{
  max-width: 180px;
  min-width: 150px;
  max-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 35px;
}

.brands-section .contenedor-brands .brand img{
  max-width: 100%;
  max-height: 100%;
  filter: invert(100%) sepia(100%) saturate(0%) hue-rotate(172deg) brightness(106%) contrast(103%);
}

.fa-chevron-up:before {
  content: "\f077";
  display: none;
}

#scrollTop i.fa {
  font-size: 22px !important;
}

#scrollTop:after{
  background-color: var(--dark-bg) !important;
}

.box-fancy h1{
  font-family: 'nimbus_bold' !important;
  font-size: 40px;
  line-height: 125%;
  display: none;
}

.box-fancy h3{
  font-family: 'nimbus_ext_b';
  font-size: 25px;
  margin-bottom: 10px;
}

.box-fancy span{
  font-family: 'nimbus_ext_r';
}




.txt-footer{
    margin-top: 0;
    margin-bottom: 0 !important;
    text-align: center;
    color: #ffffff;
    font-size: 13px;
    font-family: 'nimbus_regular';

}

.alert.alert-success {
  border-color: #71c155 !important;
}

.alert-success {
  color: #71c155 !important;
}

.alert.alert-danger {
  border-color: #dc3545 !important;
}

.alert-danger {
  color: #dc3545 !important;
}

.alert {
  background-color: transparent !important;
  padding: 20px 25px !important;
  border: 2px solid transparent;
  border-radius: none !important;
  font-size: 17px !important;
  font-family: 'nimbus_ext_r' !important;
  text-align: center !important;

}

.box-fancy{
  padding: 0 !important;
  height: auto !important;
  min-height: fit-content !important;
}

footer{
  padding: 30px;
  background-color: var(--dark-bg);
}


@media (max-width: 992px){
  .distributors .row,
  .parfumerie .row{
    flex-direction: column-reverse;
  }

  .about{
    background-position: center;
  }


  .txt-title{
    text-align: left;
    margin-bottom: 60px !important;
    font-size: 30px;
  }

  .txt-2{
    font-size: 19px;
  }

  .build .col-lg-5,
  .parfumerie .col-lg-5,
  .contact-info-container{
    margin-bottom: 50px;
  }

  .stores .inspiro-slider{
    min-height: 0 !important;
  }

  .brands .carousel .flickity-button.next,
  .brands .carousel .flickity-button.next:hover{
    right: -35px !important;
  }

  .brands .carousel .flickity-button.previous,
  .brands .carousel .flickity-button.previous:hover{
    left: -35px !important;
  }


  .companies .companies-img {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
  }

  .brands-section .contenedor-brands .brand{
    min-width: 130px;
    margin: 20px 30px;
  }

  .companies .bg,
  .distributors .bg{
    max-width: 45%;
  }

}

@media (max-width: 767px){

  .about, .distributors{
    background: #ffffff url(../images/img-00.png);
    background-position: center;
  }


  section {
    padding: 80px 50px !important;
  }

  section.companies {
    height: auto !important;
    min-height: 450px !important;
  }

  .companies .container-fluid {
    max-height: 900px !important;
  }

  .distributors .txt-2,
  .parfumerie .contenedor-img,
  .build .contenedor-img{
    margin-bottom: 60px !important;
  }

  .contenedor-img {
    max-width: 212px;
}

  .header-custom {
    height: 100px;
    padding: 10px 50px;
  }

  .header-custom .logo-header {
    max-width: 160px;
  }

  .menu-bar {
    width: 26px;
    height: 20px;
  }


  .accordion .btn-link {
    height: fit-content !important;
  }

  .companies .bg,
  .distributors .bg{
    max-width: 45%;
  }

  .polo-carousel-item img {
    height: auto !important;
}

  section.stores,
  section.about,
  section.distributors {
    min-height: fit-content;
  }

}

@media (max-width: 600px){
  


  .txt-title {
    font-size: 26px;
  }

  .logistic .galeria{
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(5, 1fr);    
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }
  
  .logistic .galeria div{
    background-position: center;
    background-size: cover;
    height: 120px;
  }
  
  .gal-1 { 
    grid-area: 1 / 1 / 2 / 3; 
    background-image: url(../images/logistic/1.png);
  }
  .gal-2 { 
    grid-area: 2 / 1 / 3 / 2; 
    background-image: url(../images/logistic/2.png);
  }
  
  .gal-3 { 
    grid-area:2 / 2 / 3 / 3; 
    background-image: url(../images/logistic/3.png);
  }
  
  .gal-4 {
    grid-area: 3 / 1 / 4 / 3; 
    background-image: url(../images/logistic/4.png);
  }
  
  .gal-5 {
    grid-area: 4 / 1 / 5 / 2; 
    background-image: url(../images/logistic/5.png);
  }
  
  .gal-6 { 
    grid-area: 4 / 2 / 5 / 3; 
    background-image: url(../images/logistic/6.png);
  }
  
  .gal-7 {
    grid-area: 5 / 1 / 6 / 2; 
    background-image: url(../images/logistic/7.png);
    display: none;
  }

  .logo-header {
    max-width: 320px !important;
  }

  
}

@media (max-width: 577px){
  .companies .companies-img{
    width: 50% !important;
    padding: 0 15px !important;
  }

  .companies .companies-img img{
    max-width: 100% !important;
    max-height: 25px;

  }
}

@media (max-width: 500px){
  section {
    padding: 80px 30px !important;
  }

  .header-custom {
    padding: 10px 30px;
  }

  .brands-section .contenedor-brands .brand{
    min-width: 110px;
    margin: 15px 20px;
  }

  .txt-2{
    line-height: 135%;
  }

  .slider-brands .flickity-slider>div>img, .carousel .polo-carousel-item img {
    max-width: 130px;
  }

  .logo-header {
    max-width: 280px !important;
  }
  
}

@media (max-width: 450px){
  .d-767{
    display: none;
  }

  .contact {
    padding-top: 0 !important;
  }

  .logo-header {
    max-width: 220px !important;
  }

}