html {
    scroll-behavior: unset !important;
}  




:root {  

  /** text ***/
 /* --blacktext: #2b2d2f;*/
  --blacktext: #0e2c4a;
  --greytext: #888;
  --whitetext: #fff;
 
  /** bg **/
  --blackbg: #0c121c;
  --greybg:  #f4f3ef;
    --whitebg: #FFFFFF;
  
  /**** colors ***/
  /*--yellow: #fbbc04;*/
  --yellow: #ffe084;
  /*--blue: #4285f4;*/
  --blue: #3384d9;
 /* --green: #34a853;*/
  --green: #3d9fa4;
  --red: #ea4335;
  --orange: #e37400;
  

  /** sizes ***/
  	--smallsize: 12px;
	--basesize: 16px;
  --smallmediumsize: max(1.2vw, 16px);
  --mediumsize: max(2vw, 20px);
  --bigsize: max(3vw, 28px);
  --extrabigsize: max(5vw, 50px);
  
 /** weights ***/ 
  --extralight: 200; 
  --light: 300; 
  --regular: 400; 
  --semibold: 500; 
  --bold: 600; 

  /** paddings ***/
  --sidesmallpadding: 2vw;
  --sidepadding: 6vw;
  --sideextrapadding: 12vw;
  --verticalsmallpadding: 4vh;
  --verticalpadding: 8vh;
  --verticalextrapadding : 12vh;
  
  
    /*** font ***/

  --primaryfont: "Kumbh Sans", sans-serif;
  --secondaryfont: "...";
  
  
  

}


/**
-------------------------------------------------------------------------
::::::::  BODY & MAIN STUFF
-------------------------------------------------------------------------
**/

body {
    color: var(--blacktext) !important;
    font-family: var(--primaryfont) !important;
	font-weight: var(--light) !important;
    font-size: var(--basesize) !important;
    letter-spacing: 0;
    text-rendering: optimizelegibility;
    line-height: 1.4em !important;
  
  
}

/*
------------------------------------------------------------------------------------------------------
:::::::: splash - delete when online
------------------------------------------------------------------------------------------------------
*/

.splashpage {
  background-color: #fff;
  width: 100vw;
  min-height: 100vh;
  position: fixed;
  top: 0;
  z-index: 999 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-image: url("/images/brand/background.png");
  background-size: cover;
  background-position: center;
}

.front.splash #head, .front.splash #top, .front.splash #bottom, .front.splash #footer {
  display: none;
}

.splashpage .logowrapper {
  width: max(25vw, 250px);
}

.splashpage .logoicons {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  margin-top: 40px;
}

.splashpage .icon {
  height: max(3.5vw, 35px);
  margin: 4px;
}



/**
-------------------------------------------------------------------------
::::::::  COOKIE YES
-------------------------------------------------------------------------
**/

.cky-btn-revisit-wrapper {
  background-color: var(--blue);
  width: 50px !important;
  height: 50px !important;
  background: var(--blue) !important;
}
.cky-revisit-bottom-left {
  bottom: 60px !important;
  left: calc(2vw - 25px) !important;
  width: 50px !important;
  height: 50px !important;
}

/**
-------------------------------------------------------------------------
::::::::  GENERAL
-------------------------------------------------------------------------
**/


.row {
  margin: 0 !important;
}


.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding:0 !important;
  margin-top: 0;
  
  position: relative;
}

.centered {
  margin-left: auto !important;
  margin-right: auto !important;
}



.roundborder {
  border-radius: 7px;
  overflow: hidden;
}



/***** BGS ******/

.blackbg {
  background-color: var(--blackbg) !important;
}
.greybg {
  background-color: var(--greybg) !important;
}
.whitebg {
  background-color: var(--whitebg) !important;
}


.yellowbg {
  background-color: var(--yellow) !important;
}
.bluebg {
  background-color: var(--blue) !important;
}
.greenbg {
  background-color: var(--green) !important;
}
.redbg {
  background-color: var(--red) !important;
}
.orangebg {
  background-color: var(--orange) !important;
}






/****** flexbox ***/

.flexbox {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.flexbox.horizontalcentered {
    justify-content: center;
  align-items: center;
}

.flexbox.verticalcentered {
    flex-flow: column;
    justify-content: center;
}
.flexbox.row.verticalcentered {
    align-items: center;
}
.flexbox.right {
    justify-content: flex-end;
  -webkit-justify-content: flex-end;
}

.flexbox.left {
    justify-content: flex-start;
  -webkit-justify-content: flex-start;
}

.flexbox.justify {
    justify-content: space-between;
  -webkit-justify-content: space-between;
}


.flexbox.bottom {
    flex-direction: column;
    justify-content: flex-end;
}
.flexbox.top {
    flex-direction: column;
    justify-content: flex-start;
}

.flexbox.column {
    flex-direction: column;
}
.flexbox.row {
    flex-direction: row;
}
.flexbox.row.centered {
    justify-content: center;
}


/*****  HEIGHTS ********/

.fullwidth {
  width:100%;
}

.fullheight {
  height:100vh !important;
}

.twothirdsheight {
  height:75vh !important;
}

.halfheight {
  height: 50vh !important;
  min-height: 400px;
}
.onethirdheight {
  height: 30vh !important;
  min-height: 250px;
}

.quarterheight {
  height: 25vh !important;
  min-height: 220px;
}




/******* PADDINGS **********/

.leftsmallpadding {
  padding-left: var(--sidesmallpadding) !important;
}

.leftpadding {
  padding-left: var(--sidepadding) !important;
}

.leftextrapadding {
  padding-left: var(--sideextrapadding) !important;
}

.rightsmallpadding {
  padding-right: var(--sidesmallpadding) !important;
}

.rightpadding {
  padding-right: var(--sidepadding) !important;
}

.rightextrapadding {
  padding-right: var(--sideextrapadding) !important;
}

.noleftpadding {
  padding-left:0 !important;
}
.norightpadding {
  padding-right:0 !important;
}


.topsmallpadding {
  padding-top: var(--verticalsmallpadding) !important;
}
.toppadding {
  padding-top: var(--verticalpadding) !important;
}
.topextrapadding {
  padding-top: var(--verticalextrapadding) !important;
}

.bottomsmallpadding {
  padding-bottom: var(--verticalsmallpadding) !important;
}
.bottompadding {
  padding-bottom: var(--verticalpadding) !important;
}
.bottomextrapadding {
  padding-bottom: var(--verticalextrapadding) !important;
}



/****** STICKY *******/

.sticky{
  position: sticky !important;
  position: -webkit-sticky !important;
}
.sticky.top {
    top: 0px;
}
.sticky.top0 {
    top: 0;
}
.sticky.middle{
  top:50vh;
}




/****** VIDEO ****/

.videoWrapper {
  height: 100%;
  position: relative;
  width: 100%;
  overflow: hidden !important;
}

.videoWrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/** when it is fullheight ***/
.videoWrapper.fullheight video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}



/**
-------------------------------------------------------------------------
::::::::  TEXT
-------------------------------------------------------------------------
**/


p {
  margin-bottom: 15px !important;
}

h1, h2 {
 margin-bottom: 25px !important;
}
h3 {
 margin-bottom: 15px !important;
}


/** headings ***/

h1 {
  color: inherit;
  font-weight: inherit !important;
  line-height: inherit !important;
  font-size: inherit !important;
}


h2 {
  color: inherit;
  font-weight: inherit !important;
  line-height: inherit !important;
  font-size: inherit !important;
}


h3 {
  color: inherit;
  font-weight: inherit !important;
  line-height: inherit !important;
  font-size: inherit !important;
}


/** for section titles ****/
.sectiontitle::after {
  content: "";
  width: 1px;
  height: 50px;
  background-color: var(--blue);
  display: block;
  text-align: match-parent;
  margin: 10px auto 0;
}


.sectiontitle {
  position:relative;
}


/**** SIZES ***/

.smallsize {
  font-size:var(--smallsize) !important;
  line-height: 140% !important;
}
.basesize {
  font-size:var(--basesize) !important;
}

.smallmediumsize {
  font-size:var(--smallmediumsize) !important;
  line-height: 130% !important;
}

.mediumsize {
  font-size:var(--mediumsize) !important;
  line-height: 130% !important;
}

.bigsize {
  font-size:var(--bigsize) !important;
  line-height: 120% !important;
}

.extrabigsize {
  font-size: var(--extrabigsize) !important;
  line-height: 110% !important;
}


/***** colors *****/

.blacktext {
  color:var(--blacktext) !important;
}

.greytext {
  color:var(--greytext) !important;
}
.whitetext {
 color:var(--whitetext) !important;
}



.yellowtext {
  color: var(--yellow) !important;
}
.bluetext{
  color: var(--blue) !important;
}
.greentext {
  color: var(--green) !important;
}
.redtext {
  color: var(--red) !important;
}
.orangetext {
  color: var(--orange) !important;
}






/******* weight ******/

.extralight {
  font-weight: var(--extralight) !important;
}

.light {
  font-weight: var(--light) !important;
}

.regular{
  font-weight: var(--regular) !important;
}

.semibold {
   font-weight: var(--semibold) !important;
}
.bold {
  font-weight: var(--bold) !important;
}


/***** letterspacing  ***/
.letterspacing {
  letter-spacing: 0.2em;
}



/***** position ***/

.centertext {
  text-align:center !important;
}

.righttext {
  text-align:right !important;
}

.oblique {
  font-style: italic;
}

.uppercase {
  text-transform:uppercase !important;
}

.justifytext {
  text-align:justify !important;
}

.justifytext p {
  text-align:justify !important;
}





/**
-------------------------------------------------------------------------
::::::::  STRUCTURE
-------------------------------------------------------------------------
**/


#wrap_all {
  background-color: #fff;
  position: relative;
  width: 100%;
  float: left;
  z-index: 3;
  opacity: 1;
}

#wrap_body {
  position: relative;
  width: 100%;
  float: left;
  z-index: 3;
}

#stage {
  float: left;
  position: relative;
  width: 100%;
  z-index: 2;
}

#top {
    float: left;
    width: 100%;
    position: relative;
    z-index: 4;
}

#bottom {
  float: left;
  width: 100%;
  position: relative;
  z-index: 3;
  background-color: #fff;
}

#footer {
  float: left;
  width: 100% !important;
  position: relative;
  z-index: 9; 
}

#head {
  width: 100%;
  float: left;
  z-index: 99;
  position: fixed;
  max-width: 100vw !important;
}




/**
-------------------------------------------------------------------------
::::::::  IMAGES AND BANNERS
-------------------------------------------------------------------------
**/


.img-responsive {
  max-width: 100%;
  max-height: 100%;
  position: relative;
  width: auto;
  height: auto;
}



/**** simple image banner ***/

.imagewrapper {
  position: relative;
  height: auto;
  overflow: hidden;
  width: auto;
}
.imagewrapper.roundcorner img {
  border-radius: 7px;
}
.imagewrapper img {
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
  
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;

}

/** fixed ****/
.imagewrapper.fixed, .videoWrapper.fixed {
  position: relative;
  height: 100%;
  clip-path: inset(0);
}

.imagewrapper.fixed img, .videoWrapper.fixed video {
  object-fit: cover;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}


/**** for banners with layers ***/

.bannerwrapper {
  position: relative;
  width: 100%;
  height: 100%;
  flex-direction: column;
  
  	-webkit-transition: all .1s;
  	-moz-transition: all .1s;
  	-o-transition: all .1s;
  	transition: all .1s;
}

.bannerover {
  position: absolute !important;
  z-index: 2;
  width: 100%;
  height: auto;
  min-height: 100% !important;
  left: 0;
  top: 0;
}

.bannerunder {
  position: relative !important;
  z-index: 1;
  width: 100% !important;
  height: auto;
  overflow: hidden;
 background-color: var(--blackbg);
}

.bannerunder img {
  object-fit: cover !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0.6;
  filter: saturate(70%);
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;

}



/**
-------------------------------------------------------------------------
::::::::  LINKS & BOTS
-------------------------------------------------------------------------
**/


::selection {
  background: #111;/* WebKit/Blink Browsers */
  color:#fff;
}
::-moz-selection {
  background: #111; /* Gecko Browsers */
   color:#fff;
}

input::-moz-focus-inner { 
  border: 0; 
}
a:hover, a:active, a:focus {
 outline: 0;
}
button:hover, button:active, button:focus {
   outline: 0;
}


a {
 color: inherit !important;
  text-decoration: none !important;
  opacity: 1;
  position: relative;
  -webkit-transition: all .1s;
  -moz-transition: all .1s;
  -o-transition: all .1s;
  transition: all .1s;
}

a:hover {
	text-decoration: underline !important;

}

/***** BOT ****/
.bot {
  background-color: var(--blue);
  color: #fff !important;
  padding: 14px 25px;
  font-size: 15px;
  font-weight: var(--regular);
  letter-spacing: 0.02em;
  border-radius: 3px !important;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  line-height: 100%;
  
  -webkit-transition: all .1s;
  -moz-transition: all .1s;
  -o-transition: all .1s;
  transition: all .1s;
}

.bot:hover {
  text-decoration: none !important;
  filter: brightness(0.9);
}

.bot::after {
  content: "\F135";
  font-family: 'bootstrap-icons';
  font-size: 20px;
  margin-left: 6px;
  margin-top: 2px;
}


.botwrapper {
  display: inline-flex;
  margin-top: 30px;
}


/*** white version ***/
.bot.white {
  background-color: #fff;
  color: var(--blacktext) !important;
}


/**
-------------------------------------------------------------------------
:::::::: HEAD DESIGN
-------------------------------------------------------------------------
**/

/** background ***/
#head .headwrapper::after {
  content: "";
  width: 100%;
  height: 70px;
  background-color: #fff;
  position: fixed;
  top: -70px;
  left: 0;
  z-index: -1;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

#head.active .headwrapper::after {
  top: 0px;

}

/*** head ***/
#head .headwrapper {
  height: 70px;
  display: flex;
  align-items: center;
  position: relative;
}
.headwrapper .logo {
  position: absolute;
  left: 0 !important;
}

.headwrapper .langswitch {
  right: 0;
  top: 0;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 20px;
  position: absolute;
  width: 120px;
  justify-content: flex-end;
}

.headwrapper .menunav {
  position: absolute;
  right: 120px;
}



#head .headwrapper .logo img {
  height: 70px;
  padding: 12px var(--sidesmallpadding);
  position: relative;
  filter: invert();
  
   -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}


/* burguer nav ***/
#head .headwrapper .burgernav a {
  padding: 10px 30px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

#head .headwrapper .burgernav a span {
  font-size: 0px;
  width: 30px;
  background-color: #fff;
  display: inline-block;
  height: 1px;
  margin-bottom: 7px;
}


/** head content when active ***/

#head.active .headwrapper .logo img {
  filter: none !important;;
}
#head.active .headwrapper .burgernav a  span {
  background-color: #111;
}


/** SHOW HIDE MENU BURGUER OR LIST ****/
.burgernav {
  display: none;
}
.menunav {
  display: block;
}



/**
-------------------------------------------------------------------------
:::::::: MENU - engage box version
-------------------------------------------------------------------------
**/

.eb-inst.topmenu .eb-close.placement-inside {
  width: 60px;
  padding: 5px;
  right: 15px;
}

.eb-inst.topmenu .menuwrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.eb-inst.topmenu .menuwrapper .menulink {
  margin-bottom: 15px;
  font-size: var(--smallmediumsize);
  font-weight: var(--regular);
  letter-spacing: 0;
}
.eb-inst.topmenu .menuwrapper .menulink :hover {
  text-decoration: none !important;
  opacity: 0.3;
}
.eb-inst.topmenu .menuwrapper .menulink .active {
  color: var(--blue) !important;
  opacity: 1 !important;
}


/**
-------------------------------------------------------------------------
:::::::: MENU - simple version
-------------------------------------------------------------------------
**/


.menunav .custom {
  display: flex;
  align-items: center;
}

.menunav .menuwrapper .menulink{
  font-size: 15px;
  font-weight: 400;
  color: var(--greytext) !important;
  margin: 0 7px;
  text-decoration: none !important;
}

#head .menunav .menuwrapper .menulink:hover, #head .menunav .menuwrapper .menulink.active{
  color: var(--whitetext) !important;
}
#head.active .menunav .menuwrapper .menulink:hover, #head.active .menunav .menuwrapper .menulink.active{
  color: var(--blacktext) !important;
}


.menunav .ctabot {
  margin-left: 30px;
}


/**
-------------------------------------------------------------------------
:::::::: MOD LANGUAGES
-------------------------------------------------------------------------
**/


div.mod-languages ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
div.mod-languages a {
 text-decoration: none !important;
  background-color: #fff;
  font-size: 10px;
  width: 30px;
  height: 30px;
  display: flex;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border: 1px solid #ddd;
}





/**
-------------------------------------------------------------------------
::::::::  GRID
-------------------------------------------------------------------------
**/

.grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.grid.col4 .item{
  width: calc(25% - 1px);
   overflow:hidden;
  margin-bottom: 50px;
  position: relative;
    padding: 0 30px;
}

.grid.col3 .item{
  width: calc(33.33% - 1px);
  overflow: hidden;
  margin-bottom: 50px;
  position: relative;
    padding: 0 30px;
}

.grid.col2 .item{
  width: calc(50% - 1px);
   overflow:hidden;
  margin-bottom: 50px;
  position: relative;
    padding: 0 30px;
}

/************** ITEM DESIGN *****************/

.grid .item h2 {
  font-size: var(--smallmediumsize) !important;
  font-weight: var(--semibold) !important;
  margin-bottom: 7px !important;
}
.grid .item .image.icon {
  font-size: 50px;
  background-color: #fff;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 20px;
  border-radius: 50%;
  color: var(--blue);
  border: 0px solid #e6eaec;
}
.grid .item .image.blueicon{
  background-color: var(--blue) !important;
  color: #fff !important;
}

/** when the icon is an image - eg. certificados ***/
.grid .item .image.icon img {
  width: 70px !important;
  height: auto !important;
}

/**** item image ***/
.item .image {
  height: 350px;
  margin-bottom: 20px;
}
.item .image img {
  object-fit: cover;
  height: 100% !important;
  width: 100% !important;
}


/** content **/
.grid .item .content p {
  color: inherit;
  font-size: inherit;
}


/**
-------------------------------------------------------------------------
::::::::  SCROLER
-------------------------------------------------------------------------
**/



.scroller {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  flex-direction: row;
  padding-bottom: 15px;
}

.scroller .item {
  width: 80vw;
  min-width: 80vw;
  margin-right: 1px;
}



/**
-------------------------------------------------------------------------
::::::::  FORMS
-------------------------------------------------------------------------
**/



.formwrapper {
  background-color: #fff;
  padding: 50px;
  border-radius: 7px;
}



.convertforms {
  font-family: var(--primaryfont) !important;
}

.convertforms .cf-content-wrap, .convertforms .cf-form-wrap {
  padding: 0 !important;
}

.cf-control-group {
  padding: 0 !important;
  margin-bottom: 1px;
}

.convertforms .cf-input {
  font-size: 1em !important;
  color: var(--blacktext) !important;
  background-color: transparent !important;
  padding: 20px 0 20px 0 !important;
  border-bottom: 0 !important;
  border-radius: 0 !important;
  text-align: left;
  font-family: var(--primaryfont) !important;
  font-size: var(--smallmediumsize) !important;
  letter-spacing: 0 !important;
  font-weight: var(--extralight) !important;
  border-top: 0 !important;
  border-right: 0 !important;
  border-left: 0 !important;
  margin-bottom: 0px !important;
  box-shadow: 0 0.5px 0 #777 !important;
}

.convertforms ::placeholder {
  color: var(--blacktext) !important;
  letter-spacing: -0.04em;
  font-weight: var(--extralight);
}

.convertforms .cf-fields {
  margin: 0 !important;
}

.convertforms .cf-btn {
  margin-top:40px;
  padding: 14px 25px !important;
  background-color: var(--blue) !important;
}

.convertforms .smallsize .cf-label {
  font-size: var(--smallsize) !important;
  font-weight: 500 !important;
}

.convertforms .cf-checkbox-group input {
  margin: 0 10px 0 0 !important;
}

.convertforms .legal {
    margin-top: 20px;
}
.cf-control-group.recaptcha {
  margin-top: 20px;
}

.convertforms .legal .cf-control-input-desc {
  color: var(--blacktext) !important;
  font-size: var(--smallsize ) !important;
}

.convertforms.cf-success .cf-response {
  background-color: transparent !important;
  display: block !important;
  border-radius: 0 !important;
  padding: 30px 0 !important;
  color: var(--blue) !important;
  font-weight: var(--light);
  text-align: center !important;
  font-size: var(--smallmediumsize);
}


.tf-phone-control img {
  width: 20px;
  max-width: 20px !important;
}
.convertforms .cf-phone-number-wrapper > .tf-phone-control {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: 0 0.5px 0 #777 !important;
}
.convertforms .cf-recaptcha-v3-text-badge {
  margin: 10px;
  font-size: 11px;
  color: #999;
  text-align: center;
}

/**
-------------------------------------------------------------------------
::::::::  ACCORDION v2 -- using jQuery UI -- loaded in head
-------------------------------------------------------------------------
**/


/** tab ***/
.ui-accordion .tab {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  margin-bottom: 1px;
  box-shadow: 0 .5px 0 #777;
  padding: 20px 0 !important;
}

/** title ***/
.ui-accordion .tab h2 {
  font-size: var(--smallmediumsize) !important;
  color: var(--blacktext) !important;
  line-height: 120% !important;
  max-width: 85%;
  -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
  margin-bottom: 0 !important;
  font-weight: var(--semibold) !important;
}
.ui-accordion .tab:hover h2 {
color: var(--blue) !important;
}
.ui-accordion .tab.ui-state-active h2 {
color: var(--blue) !important;
}


/** icon **/
.ui-accordion .panelicon {
  width: 15px;
  position: relative;
  height: 15px;
  margin-right: 20px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
}

.ui-accordion .panelicon::after {
  content: "";
  width: 1px;
  height: 100%;
  box-shadow: 1px 1px 0 var(--blackbg);
  display: block;
  left: 0;
  right: 0;
  margin-left: auto;
  position: absolute;
  margin-right: auto;
  
    -webkit-transition: all .2s;
  -moz-transition: all .2s;
  -o-transition: all .2s;
  transition: all .2s;
}

.ui-accordion .panelicon::before {
  width: 100%;
  height: 1px;
  content: "";
  position: absolute;
  box-shadow: 1px 1px 0 var(--blackbg);
  left: 0;
}

.ui-accordion .tab.ui-state-active .panelicon::after {
  height: 1px !important;
}


/** content **/
.ui-accordion .content {
  padding: 20px 0px;
}

#accordion .content .row > * {
  margin-bottom: 0 !important;
}


/**
-------------------------------------------------------------------------
::::::::  TABS - jqueri ui
-------------------------------------------------------------------------
**/

.tabswrapper ul {
  display: flex;
  justify-content: center;
   border-bottom: 1px solid #ddd;
  padding: 0 0 10px;
  list-style: none;
  margin-bottom: 30px;
}
.tabswrapper li {
  padding: 0 20px;
  position:relative;
  margin: 0 10px;
}


.tabswrapper li::after {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #000;
  display: block;
  bottom: -11px !important;
  position: absolute;
  left: 0;
  
  transform: scale(0);
  transform-origin: center;
  transition: opacity 300ms, transform 300ms;
}


.tabswrapper li.ui-tabs-active::after {
  content: "";
  width: 100%;
  height: 1px;
  border-bottom: 1px solid #000;
  display: block;
  bottom: -11px !important;
  position: absolute;
  left: 0;
  
  transform: scale(1);
  
}
.tabswrapper li a {
  text-decoration: none !important;
  color: var(--greytext) !important;
  font-size: var(--smallmediumsize);
}

.tabswrapper li.ui-tabs-active a{
  color: var(--blacktext) !important;
}

.tabswrapper li a:hover {
  color: var(--blacktext) !important;
}


/**
-------------------------------------------------------------------------
::::::::  BOOTSTRAP CAROUSEL
-------------------------------------------------------------------------
**/


.carousel-control-next:focus, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-prev:hover {
  color: inherit;
  text-decoration: none;
  outline: 0;
  opacity: 1 !important;
}

.carousel-control-next, .carousel-control-prev {
  color: var(--blacktext) !important;
  text-align: center !important;
  opacity: 1 !important;
  font-size: var(--mediumsize) !important;
  width: 10% !important;
}
.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}



.testemunho {
  width: 70%;
  text-align: center;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0 !important;
}
.testemunho .text {
  font-size: max(1.6vw, 20px) !important;
  line-height: 120% !important;
  color: var(--blacktext);
  font-weight: var(--semibold) !important;
}

.testemunho .client {
 color:var(--greytext);
}




/**
-------------------------------------------------------------------------
::::::::  copyright
-------------------------------------------------------------------------
**/




#copyright {
  display: flex;
  justify-content: space-between;
  font-size: var(--smallsize ) !important;
}

.copyrightwrapper {
  display: flex;
  align-items: self-end;
}

.copyrightinfo .symbol {  
  font-size: 17px;
}


.zed a {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: -1px;
}


.legallinks a {
  font-weight: var(--semibold);
  margin-left: 25px;
  text-decoration: none !important;
}




/**
-------------------------------------------------------------------------
::::::::  SIDE CTA
-------------------------------------------------------------------------
**/


.roundimage.small {
  width: 140px;
  height: 140px;
  border-radius: 50% !important;
  overflow: hidden;
}


.roundimage img {
  object-fit: cover !important;
  width: 100%;
  height: 100%;
}


.socialBot {
  background-color: var(--blue);
  color: #fff !important;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 5px;
}


.eb-close.placement-inside {
  left: 0 !important;
  right: auto !important;
  z-index: 9999 !important;
}

.eb-floating-button div {
  font-size: 0;
  background-color: var(--green);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  right: calc(2vw - 25px);
  position: absolute;
  border-radius: 50%;
  bottom: 60px;
}
.eb-floating-button div::after {
  content: "\F257";
  font-size: 18px;
  font-family: 'bootstrap-icons';
}