:root {
  --color-default: #31313F;
  --color-primary: #2E00AA;
  --color-secondary: #8400AA;
  --color-dark: #000;
  --color-light: #F7F7FD;
  --header-height: 130px }

a,
a:hover { color: var(--color-primary) }

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

.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 }
.bg-default             { background: var(--color-default) !important }

.bg-gradient-secondary {
  background: rgb(190,164,119);
  background: linear-gradient(90deg, rgba(190,164,119,1) 25%, rgba(0,0,0,1) 100%) }

html, body { height: 100% }

body { 
  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,
.inner main { padding: clamp(5rem, 10vw, 10rem) 0 }

.wrapper-sm { padding: clamp(2.5rem, 10vw, 5rem) 0 }

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

@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(200%, 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, 
.fs-5 { 
  font-size: clamp(87.5%, 2vw, 100%) !important;
  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 {
  position: relative;
  z-index: 4;
}

.home header { 
  background: #FFF;
  position: absolute !important;
  width: 100% }

.inner header { box-shadow: 0 0 5rem rgba(0,0,0,0.15) }

header .navbar-brand img { max-width: clamp(70%, 70% + 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) 1px 
    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-dark) }

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

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

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

@media(max-width:991.98px){

  header { height: 100px }

  header .navbar-brand { width: 75% }

  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 }

}





/* hero
//////////////////////////////////////////////////*/
#hero,
#hero .carousel-inner,
#hero .carousel-item,
#hero .carousel-cover,
#hero .carousel-cover img { height: 100% }

#hero .carousel-cover img {
  height: 100%;
  width: 100%;
  object-fit: cover }

#hero .carousel-inner {
  background: var(--color-dark);
  position: relative }

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

#hero .carousel-caption p { font-size: clamp(100%, 2vw, 180%) }

#hero .carousel-indicators {
  justify-content: start;
  align-items: flex-start;
  margin: 0;
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translate(-50%, 0);
  z-index: 1 }  

#hero .carousel-indicators li {
  border: 0;
  width: 15px;
  height: 15px;
  margin: 0 5px 0 0;
  border-radius: 5px;
  background: var(--color-primary) } 

@media(max-width:1650px){
  /* next/prev distance 
  .hero-caption { width: 75% }*/
}

@media(max-width:1280px){
  #hero .carousel-indicators { padding: 0 15px }
}

@media(max-width:767.68px){
  #hero .carousel-caption { 
    left: auto;
    right: auto;
    padding: 0 3rem }

  #hero .carousel-indicators { padding: 0 30px }
}



/* services 
//////////////////////////////////////////////////*/
.home #services i { 
  transition: all 300ms;
  position: relative;
  top: 0 }

.home #services a:hover i { top: -.5rem }

.home #services a { text-decoration: none !important }

.inner #services .col > a {
  text-decoration: none;
  overflow: hidden;
  border-radius: .5rem;
  font-size: 140%;
  font-weight: bold;
  color: #FFF;
  position: relative;
  display: block }

.inner  #services a img { 
  position: absolute;
  z-index: 1;
  object-fit: cover }

.inner  #services a .title { 
  z-index: 3;
  line-height: 1.25;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  height: auto;
  width: 100% }

.inner  #services a .mask { 
  top: 0;
  left: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(255,255,255,0) 40%, rgba(0,0,0,1) 100%); 
  width: 100%;
  height: 100%;
  position: absolute }

.inner  #services a:hover .mask {
  background: linear-gradient(180deg, rgba(255,255,255,0) 30%, rgba(0,160,198,1) 100%) } 





  
/* feedbacks 
//////////////////////////////////////////////////*/
#feedbacks {
  background: url(img/bg-feedbacks.jpg) no-repeat center;
  background-size: cover }



  
/* contact 
//////////////////////////////////////////////////*/
#contact .position-absolute {
  top: 0;
  transform: translate(0,-75%)
}

@media(max-width:991.98px){
  #contact .position-relative.rounded-pill {
    border-radius: 1rem !important
  }
}


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

footer .brand-flexpoint {
  display: inline-block;
  text-indent: -1000000px;
  background: url(https://www.flexpoint.com.br/addons/flexpoint-site-sign.png);
  width: 25px;
  height: 27px } 

footer .brand-flexpoint.brand-black { background-position: bottom }
footer .brand-flexpoint.brand-white { background-position: top }





/* form elements
//////////////////////////////////////////////////*/
.form-control { padding: 1rem 1.5rem }

.btn { 
  transition: 0s;
  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-primary) }  

.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-outline-white {
  box-shadow: inset 0 0 0 1px #FFF;
  color: #FFF }  

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

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

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

.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-5 { border-radius: 1rem }

.gap-10 { gap: 6rem }

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

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

@media(min-width:992px){

  .scroll-x { overflow-x: scroll }

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

}



/* 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-sprites { 
  display: inline-block;
  position: relative;
  background: url("img/icons.png") top left no-repeat }

.icon-t8{ width:64px; height:54px; background-position:0 0; }
.icon-t7{ width:62px; height:64px; background-position:0 -54px; }
.icon-t5{ width:64px; height:64px; background-position:0 -118px; }
.icon-t6{ width:64px; height:64px; background-position:0 -182px; }
.icon-t4{ width:52px; height:64px; background-position:0 -246px; }
.icon-t2{ width:64px; height:54px; background-position:0 -310px; }
.icon-t3{ width:56px; height:64px; background-position:0 -364px; }
.icon-t1{ width:52px; height:64px; background-position:0 -428px; }
  
  
  


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