:root {
  --color-default: #111;
  --color-dark: #000;
  --color-primary: #000;
  --color-secondary: #FB4705;
  --color-light: #F8F8F8; }

.text-default           { color: var(--color-default) }
.text-primary           { color: var(--color-primary) !important }
.text-secondary         { color: var(--color-secondary) !important }
.text-white-75          { color: rgba(255,255,255,.75) !important }
.text-primary-75        { color: var(--color-primary) !important; opacity: .75 }

.bg-primary             { background: var(--color-primary) !important }
.bg-secondary           { background: var(--color-secondary) !important }
.bg-light               { background: var(--color-light) !important }
.bg-dark                { background: var(--color-dark) !important }

html, body { height: 100% }

body { 
  /* background: var(--color-light); */
  overflow-x: hidden;
  position: relative;
  font-family: "Poppins", Sans-serif;
  font-size: 12pt;
  font-weight: 400;
  color: var(--color-default) } 

a { text-decoration: none }

a:hover { text-decoration: underline }


 


/* wrapper 
//////////////////////////////////////////////////*/
section,
.wrapper { 
  padding-top: clamp(6rem, 10vw, 12rem);
  padding-bottom: clamp(6rem, 10vw, 12rem)  }

main { padding: clamp(5rem, 10vw, 7rem) 0 }


@media(max-width:767.98px){
  section { overflow-x: hidden }
  .container { padding-right: 2rem; padding-left: 2rem }
}




/* heading/texts
//////////////////////////////////////////////////*/
h1, .h1 { 
  margin-bottom: clamp(1rem, 1rem + 2vw, 3rem);
  font-size: clamp(175%, 3vw, 300%) }

h2, .h2 { 
  margin-bottom: clamp(1rem, 1rem + 2vw, 2rem);
  font-size: clamp(150%, 3vw, 200%) }

h3, .h3 { 
  margin-bottom: clamp(1rem, 1rem + 2vw, 1.5rem);
  font-size: clamp(125%, 3vw, 175%) }

h4, .h4 { 
  margin-bottom: clamp(1rem, 1rem + 2vw, 1.25rem);
  font-size: clamp(112.5%, 3vw, 150%) }

h5, .h5 { 
  font-size: clamp(106.5%, 3vw, 125%) }

li { margin-bottom: .5rem }

p { font-size: clamp(100%, 2vw, 100%) !important }

.fs-5 { font-size: clamp(100%, 2vw, 120%) !important }

p,
.fs-5 { margin-bottom: clamp(1rem, 1rem + 2vw, 1.5rem) }

.box-shadow-b { box-shadow: 0 2rem 2rem -1rem rgba(0,0,0,0.25) }




/* header 
//////////////////////////////////////////////////*/
header .navbar-brand { 
  padding: 1.25rem 0;
  margin: 0 }

/* 
bartop
header > div:first-child > div { font-size: clamp(70%, 1.25vw, 87.5%) }
header .border-bottom { border-bottom-color: rgba(255,255,255,.25) !important }
*/
header .navbar-collapse { 
  background: transparent;
  position: relative;
  z-index: 2 }

header .nav-link {
  background: 
      linear-gradient(currentColor 0 0) 
      0 100% /var(--d, 0) 1px 
    no-repeat;
  transition:0.5s;

  font-size: clamp(80%, 1.25vw, 100%);
  font-weight: bold;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-decoration: none;
  margin: 0;
  color: var(--color-default) }

header .nav-link.active,
header .nav-link:hover { 
  --d: 100%;
  color: var(--color-secondary) }

.navbar-toggler { 
  box-shadow: none!important;
  border: 0;
  width: 48px;
  font-size: 100%;
  padding: .25rem .5rem }

.navbar-toggler .navbar-toggler-icon { 
  width: 100%;
  height: 4px;
  margin: 5px 0;
  display: block;
  border-radius: 10px;
  background: var(--color-dark) !important }

.navbar-toggler:hover { background: rgba(255,255,255,.075) }

@media(max-width:991.98px){

  header .navbar-brand { 
    width: 100% !important;
    margin-left: .5rem }

  header .navbar-brand img:nth-child(1) { width: 50% }

  header .navbar-collapse { 
    background: #FFF;
    width: 100%;
    height: 100%;
    position: fixed;
    overflow-y: hidden;
    top: 0;
    left: 0  }

  header .navbar-nav {
    justify-content: center;
    width: 100%;
    height: 100vh }  

  header .nav-item { 
    padding: .5rem 3rem !important; 
    width: 100%;
    font-size: 130% }

  header .nav-item .btn { font-size: 100% }

  .header-social a { opacity: 1 }

}

.goog-te-gadget { 
  /* position: absolute;
  top: -.25rem;
  right: .75rem; */
  height: 30px;
  color: #FFF !important }

.goog-te-gadget > span > a { display: none }

.goog-te-combo {
  font-family: "Poppins", sans-serif !important;
}


  

/* hero
//////////////////////////////////////////////////*/
#hero {
  background: url(img/bg-hero.webp) center;
  background-size: cover;
  padding: 15rem 0 }

@media(max-height: 768px) and (min-width:768px){

  #hero .hero-caption h1  { font-size: 200% }
  #hero .hero-caption div  { font-size: 112.5% }

  #hero .hero-caption h1,
  #hero .hero-caption div  { margin-bottom: 1.5rem !important }
} 

@media(max-width:767.98px){
  #hero {
    background: url(img/bg-hero-xs.webp) center;
    padding: 5rem 0 30rem  }
}




  
/* complexity 
//////////////////////////////////////////////////*/
#services .d-flex { background:rgba(255,255,255,.025) }





/* pillars 
//////////////////////////////////////////////////*/
:root { 
  --width-bar: 100vw;
  --height-bar: 20vw  }

@media(max-width:767.98px){
  :root { --height-bar: 20rem  }
}

.pillar-item > span { 
  transition: all 500ms;
  position: relative;
  opacity: 0 }

.pillar-item.active > span { opacity: 1 }

.pillar-group { min-height: var(--height-bar) }

.pillar-item > span { top: 3rem }
.pillar-item.active > span { top: 0 }

.pillar-item .pillar-bar,
.pillar-item .pillar-bar span { 
  position: relative ;
  width: 100% }

.pillar-item .pillar-bar:before {
  width: 115%;
  height: 1rem;
  border-radius: .25rem;
  position: absolute;
  bottom: 0;
  left: -7.5%;
  z-index: 1;
  background: var(--color-secondary);
  content: "" }

.pillar-item.active .pillar-bar { height: var(--height-bar) }

.pillar-item.active .pillar-bar span { 
  -webkit-animation: growH both;
  animation: growH both;
  animation-duration: .75s }
  
@keyframes growH {
  0%    { height: 0 }
  100%  { height: 100% }
}



/* brands 
//////////////////////////////////////////////////*/
#partners img,
#vendors img {
  transition: all 300ms;
  opacity: .5;
  filter:grayscale(1) }

#partners img:hover,
#vendors img:hover {
  transition: all 300ms;
  opacity: 1;
  filter:grayscale(0) }


/* contact 
//////////////////////////////////////////////////*/
#contact {
  background: url(img/bg-contact.webp) center;
  background-size: cover;
}



/* footer 
//////////////////////////////////////////////////*/
footer section { padding: 3rem 0 }

footer .border-top { border-top-color: rgba(255,255,255,.2) !important }

#mapsite ul { 
  width: 100%;
  padding-left: 1rem }

#mapsite ul li { margin: 0 }

#mapsite a { 
  display: block;
  font-size: 87.5% }



/* form elements
//////////////////////////////////////////////////*/
.form-control { border: 1px solid rgba(0,0,0,.075) !important }

.form-control,
.form-floating>label{ 
  padding-left: 1.25rem !important;
  padding-right: 1.25rem !important; }

.form-check-input:checked {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary) }

.form-check-input:focus {
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 0.25rem rgba(0,0,0,.05);
}

.btn { 
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none !important;
  padding: 1rem 1.5rem;
  border: 0 }

.btn-sm { 
  font-size: 87.5%;
  padding: .75rem 1.5rem }

.btn-lg { padding: 1.25rem 1.5rem }

.btn-primary    { background: var(--color-primary) !important } 

.btn-secondary  { background: var(--color-secondary) !important } 

.btn-link       { color: var(--color-primary) !important } 

.btn-outline-primary {
  box-shadow: inset 0 0 0 2px var(--color-primary);
  color: var(--color-primary) } 

.btn-outline-primary:hover,
.btn-outline-primary:focus,
.btn-outline-primary:active {
  background: var(--color-primary);
  color: #FFF } 
  
.btn-outline-secondary {
  box-shadow: inset 0 0 0 2px var(--color-secondary);
  color: var(--color-secondary) }  

.btn-outline-secondary:hover,
.btn-outline-secondary:active,
.btn-outline-secondary:focus { background: var(--color-secondary) }   

.btn-outline-secondary-dark {
  box-shadow: inset 0 0 0 2px var(--color-secondary-dark);
  color: var(--color-primary) }  

.btn-outline-secondary-dark:hover,
.btn-outline-secondary-dark:active,
.btn-outline-secondary-dark:focus { 
  background: var(--color-secondary-dark);
  color: #FFF }  

.btn-whatsapp {
  background: #31BE42;
  color: #FFF !important }  

.btn-whatsapp-outline {
  border: 2px solid #31BE42;
  color: #31BE42 }  

.btn-whatsapp-outline:hover,
.btn-whatsapp-outline:active,
.btn-whatsapp-outline:focus {
  background: #31BE42;
  color: #FFF }  

.btn-light-outline {
  border: 3px solid #999;
  color: #999 }  

.btn-light-outline:hover,
.btn-light-outline:active,
.btn-light-outline:focus {
  background: #999;
  color: #FFF }  

.btn-white { background: #FFF }  

.btn-white:hover,
.btn-white:active,
.btn-white:focus { 
  color: #FFF;
  background: var(--color-dark) }  

.btn-white-10 { 
  color: #FFF;
  background: rgba(255,255,255,.1) }  

.btn-white-10:hover,
.btn-white-10:active,
.btn-white-10:focus { 
  color: var(--color-default);
  background: rgba(255,255,255,1) }  

.btn-light { background: var(--color-light) }  

.btn-light:hover,
.btn-light:active,
.btn-light:focus { 
  color: #FFF;
  background: var(--color-dark) }  

.btn-white-outline {
  border: 1px solid #FFF;
  color: #FFF }  

.btn-white-outline:hover,
.btn-white-outline:active,
.btn-white-outline:focus { 
  background: #FFF;
  color: var(--color-secondary)  }  

.btn:active,
.btn:hover,
.btn:focus { box-shadow: inset 0 0 100px rgba(255,255,255,0.2) }

@media(max-width:767.98px){
  .btn-block { width: 100% }
}


/* global 
//////////////////////////////////////////////////*/
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both }

.rounded-4 { border-radius: 1.5rem }
.rounded-5 { border-radius: 3rem }

.gap-10 { gap: 6rem }

.ps-10 { padding-left: 6rem }

.ls-1 { letter-spacing: .25rem }

.small-sm { font-size: 75% }

@media(min-width:992px){

  .scroll-x { overflow-x: scroll }

  .pt-md-10 { padding-top: 6rem !important }
  .ps-md-10 { padding-left: 6rem !important }
  .pb-md-10 { padding-bottom: 6rem !important }

  .gap-md-10 { gap: 6rem !important }

  .ps-md-10 { padding-left: 6rem !important }
    
  .g-md-10, 
  .gy-md-10 {
    --bs-gutter-y: 6rem;
  }

  .g-md-10, 
  .gx-md-10 {
    --bs-gutter-x: 6rem;
  }

}

@media(max-width:767.98px){
  .container.rounded-3,
  .container.rounded-5 { border-radius: 0 !important }
}





/* aspects ratio
//////////////////////////////////////////////////*/
[class~="ratio"]{
  position: relative;
  overflow: hidden;
  display: block }

[class~="ratio"] img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover }

  img[width]{
    width: 100%;
    height: auto;
    aspect-ratio: attr(width) / attr(height) }

.ratio-3x4 { padding-bottom: 133.33% }    

  


/* ANIMATION: DELAY / DURATION
//////////////////////////////////////////////////////////////////////////////////////////*/
.delay1   { animation-delay: 500ms !important }
.delay2   { animation-delay: 1000ms !important }
.delay3   { animation-delay: 1500ms !important }
.delay4   { animation-delay: 2000ms !important }
.delay5   { animation-delay: 2500ms !important }
.delay6   { animation-delay: 3000ms !important }
.delay7   { animation-delay: 3500ms !important }
.delay8   { animation-delay: 4000ms !important }
.delay9   { animation-delay: 4500ms !important }
.delay10  { animation-delay: 5000ms !important }
.delay11  { animation-delay: 6000ms !important }

.duration100  { animation-duration: 100ms !important }
.duration200  { animation-duration: 200ms !important }
.duration300  { animation-duration: 300ms !important }
.duration400  { animation-duration: 400ms !important }
.duration500  { animation-duration: 500ms !important }
.duration600  { animation-duration: 600ms !important }
.duration700  { animation-duration: 700ms !important }
.duration800  { animation-duration: 800ms !important }
.duration900  { animation-duration: 900ms !important }
.duration1000 { animation-duration: 1000ms !important }
.duration2000 { animation-duration: 2000ms !important }
.duration3000 { animation-duration: 3000ms !important }
.duration4000 { animation-duration: 4000ms !important }
.duration5000 { animation-duration: 5000ms !important }
.duration6000 { animation-duration: 6000ms !important }
.duration7000 { animation-duration: 7000ms !important }
.duration8000 { animation-duration: 8000ms !important }
.duration9000 { animation-duration: 9000ms !important }
.duration10000 { animation-duration: 10000ms !important }
.duration20000 { animation-duration: 20000ms !important }
.duration30000 { animation-duration: 30000ms !important }

.parallax {
  display: block;
  min-height: 100%;
  position: relative;
  overflow: hidden }

.parallax img { position: absolute }




/* SVG ICONS
//////////////////////////////////////////////////////////////////////////////////////////*/
.icon { 
  display: inline-block;
  position: relative }

.icon-16 { width: 16px; height: 16px }
.icon-24 { width: 24px; height: 24px }
.icon-32 { width: 32px; height: 32px }
.icon-48 { width: 48px; height: 48px }
.icon-64 { width: 64px; height: 64px }
.icon-96 { width: 96px; height: 96px }
.icon-128 { width: 128px; height: 128px }
.icon-192 { width: 192px; height: 192px }

.icon.text-default    { fill: var(--color-default) }
.icon.text-primary    { fill: var(--color-primary) }
.icon.text-secondary  { fill: var(--color-secondary) }
.icon.text-black-25   { opacity: .25 }
.icon.text-white      { fill: #FFF }
.icon-whatsapp        { fill: #03B35B }




/* CSS SPRITES
//////////////////////////////////////////////////////////////////////////////////////////*/
.icon-services { 
  display: inline-block;
  position: relative;
  background: url("img/icons-services.png") top left no-repeat }

.icon-s9{ width:191px; height:169px; background-position:0 0; }
.icon-s1{ width:168px; height:169px; background-position:0 -169px; }
.icon-s3{ width:198px; height:169px; background-position:0 -338px; }
.icon-s5{ width:167px; height:169px; background-position:0 -507px; }
.icon-s7{ width:212px; height:169px; background-position:0 -676px; }
.icon-s8{ width:196px; height:169px; background-position:0 -845px; }
.icon-s4{ width:198px; height:169px; background-position:0 -1014px; }
.icon-s6{ width:182px; height:169px; background-position:0 -1183px; }
.icon-s2{ width:186px; height:169px; background-position:0 -1352px; }
  
  


/* OTHERS
//////////////////////////////////////////////////////////////////////////////////////////*/
@media(min-width:992px){
  .position-md-absolute { position: absolute }
}
