:root {
  --color-default: #333;
  --color-primary: #4F77BA;
  --color-secondary: #FCB324;
  --color-light: #f9f9f9;
  --header-height: 150px }

.text-primary          { color: var(--color-primary) !important }
.text-secondary        { color: var(--color-secondary) !important }
.text-default          { color: var(--color-default) }

.bg-primary,
.dropdown-item.active, 
.dropdown-item:active   { background: var(--color-primary) !important }
.bg-secondary           { background: var(--color-secondary) !important }
.bg-light               { background: var(--color-light) !important }

.bg-gradient-primary {
  background: rgb(84,123,188);
  background: linear-gradient(-135deg, rgba(84,123,188,1) 25%, rgba(46,88,152,1) 85%);
}

.bg-gradient-secondary {
  background: rgb(252,191,67);
  background: linear-gradient(165deg, rgba(252,191,67,1) 25%, rgba(241,164,3,1) 85%);
}

html, body { height: 100% }

body { 
  background: #f9f9f9;
  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: clamp(4rem, 10vw, 8rem) 0 }

section > * { overflow: hidden }

.inner .wrapper,
.inner main,
.inner section:not(footer section) { padding: clamp(4rem, 10vw, 8rem) 0 }


@media(max-width:1320px){
  .container-xxl { padding: 0 1.5rem }
}

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




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

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

h3, .h3 { 
  font-weight: bold;
  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(87.5%, 1vw, 100%);
  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: 0;
  margin: 0 }

.home header { 
  z-index: 5;
  position: absolute !important;
  width: 100% }

header .navbar-brand img { max-width: clamp(50%, 50% + 10vw, 100%) }

/* 
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 .nav-link {
  background: 
      linear-gradient(currentColor 0 0) 
      0 100% /var(--d, 0) 3px 
    no-repeat;
  transition:0.5s;

  font-size: clamp(80%, 1.25vw, 100%);
  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-primary) }

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

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

@media(min-width:992px){
  header { height: var(--header-height) }
}

@media(max-width:991.98px){
  header { padding: 1rem 0 !important }

  header .navbar-brand { width: 50% }

  header .navbar-collapse { 
    background: var(--color-light);
    width: 100%;
    height: 100%;
    position: fixed;
    overflow-y: hidden;
    z-index: 5;
    top: 0;
    left: 0  }

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

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

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

  .header-social a { opacity: 1 }

}




  

/* hero
//////////////////////////////////////////////////*/
#hero { 
  position: relative;
  height: 100% }

#hero .hero-cover img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  right: 0;
  bottom: 0;
  top: 0 }

#hero .hero-caption { 
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  /* transform: translate(-50%,-50%); */
  transform: translate(-50%,calc(-50% + var(--header-height)/2)) 
} 

.inner #hero {
  height: calc(100% - var(--header-height))
}

.inner #hero .hero-caption { 
  transform: translate(-50%,-50%);
} 

#hero .hero-caption h1  { font-size: clamp(150%, 7vw, 320%) }
#hero .hero-caption h1.h1-sm  { font-size: clamp(150%, 7vw, 250%) }
#hero .hero-caption div   { font-size: clamp(100%, 2vw, 120%) }


@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){

  .home #hero .hero-caption { transform: translate(-50%,-75%) }
  .inner #hero {
    height: 100%
  }
}

@media(max-height: 666px){
  .inner #hero .hero-caption { 
    top: 1rem;
    transform: translate(-50%,0);
  } 
}

@media(max-width:767.98px) and (min-height:667px){
  .inner #hero .hero-caption { transform: translate(-50%,-80%) }

}


@media(max-height:639.98px){
  .inner #hero { height: calc(100% + 200px)}

}

/* benefits 
//////////////////////////////////////////////////*/
#benefits .brand {
  top: -100px;
  right: -10vw;
  -webkit-animation: move 80s ease-in infinite;
  animation: move 80s ease-in infinite }


@keyframes move {
  0%    { transform: translatey(0) }
  50%   { transform: translatey(15vw) }
  100%  { transform: translatey(0) }
}


/* products 
//////////////////////////////////////////////////*/
#products .col > div { 
  height: 100%;
  transition: all 300ms }

.home #products .col > div:hover { 
  box-shadow: 0 .25rem .75rem rgba(0,0,0,0.05);
  background: #FFF }

#products .col > div i { 
  transition: all 300ms;
  position: relative;
  top: 0 }

#products .col > div:hover i { top: -.75rem }

.inner #products ul { 
  padding-left: 1rem;
  font-size: 87.5% }

@media(max-width:767.98px){
  .inner #products img {
    max-width: 50%
  }
}




/* partners 
//////////////////////////////////////////////////*/
#partners a { 
  padding: 1rem 2rem;
  width: 10% }

#partners img { 
  transition: all 300ms;
  filter:grayscale(1) }

#partners a:hover img { filter:grayscale(0) }
  
@media(max-width:600px){
  #partners a { padding: 1rem; width: 96px }
  
}




/* 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 { padding: 1rem 1.5rem }

.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-primary) }  

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

@media(max-width:767.98px) {
  .animated {
    animation: 0s !important;
    -webkit-animation: 0s !important }
}

.inner ul li::marker { color: var(--color-secondary) }



/* 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) }

  


/* 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.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 }
}