html {
  overflow-x: initial;
  background-color: #fff;
}


body {
    color: #000 !important; 
    font-family: 'Lato', sans-serif !important;
   font-size: 16px !important;
font-weight: 300 !important;
line-height: 1.6em !important;
letter-spacing: 0;
  
}



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

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


b, strong {
    font-weight: 500 !important;
}



.grayscale {
  filter: grayscale(50%);
}



.row {
  margin:0 !important;
}

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



a {
  color: #6d276a !important;
text-decoration: none !important;

   -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
a:hover {
    color: #000 !important;
    text-decoration: none !important;
}

a.arrowlink {
    padding: 1px;
    color: #6d276a !important;
    font-size: 1em;
    font-weight: 600;
    opacity: 1;
text-decoration: none !important;
  display: inline-flex;
  margin-top: 20px;
  position:relative;
   
}
a.arrowlink::before {
    content: "";
    width: 100%;
    height: 1px;
    background-color: #6d276a  !important;
    position: absolute;
    bottom: 0;
  -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
a.arrowlink.white::before {
    background-color: #fff  !important;
}
.arrowlink:hover::before {
    width:0;
}








.arrowlink a {
  color: #6d276a !important;
}

a.arrowlink:hover {
    opacity:0.7;
  text-decoration:none !important;
}




/*
a.arrowlink::after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f30b";
    margin-left: 10px;
    font-size: 10px;
  margin-top: 1px;
  display:none;
}
*/
a.arrowlink.white {
    color: #fff !important;
}



/*******  FOOTER *********/
a.footerlink {
    font-size: 11px;
    font-weight: 300 !important;
}
.footerwrapper {
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
}
.footerlink.zed {
    color: #000 !important;
    font-weight: 900 !important;
    letter-spacing: -0.05em;
}

/******* BULLETS *****/

.bullets .bullet::before {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f111";
    margin-right: 10px;
    font-size: 4px;
    margin-top: 1px !important;
}

.bullets {
    margin-bottom: 30px;
    padding: 0 20px;
}
.bullet {
    display: flex;
    align-content: center;
}


/********** ACCORDION *************/

.areasPratica .card-header {
    padding: 10px 20px;
    margin-bottom: 0;
    background-color: transparent !important;
    border-bottom: 0 !important;
}
.areasPratica .card {
    border: 0 !important;
    background-color: transparent;
}
.areasPratica .card-link {
  font-size: 1.8em;
  font-weight: 400;
  font-family: 'Playfair Display', serif !important;
  color: #000 !important;
  display: flex;
  align-items: center;
  line-height: 100%;
}

.areasPratica .collapsed.card-link {
  color:#cbced1 !important;
}
.areasPratica .collapsed.card-link:hover {
  color:#000 !important;
}

.areasPratica .card-link::before {
    content: "+";
    font-size: 15px;
    line-height: 100%;
    font-weight: 900 !important;
    font-family: 'Lato', sans-serif !important;
    margin-top: 7px;
    margin-right: 10px;
}

.areasPratica .card-body {
    background-color: #fafafa;
    padding: 20px 30px 15px 40px !important;
    margin-top: 0;
    border-top: 1px solid;
    border-bottom: 1px solid;
    margin-top: 20px;
    margin-bottom: 25px;
}



/**** BG ***/

.darkbg {
  background-color: #112435 !important;
}

.purplebg {
  background-color: #412649 !important;
}

.greybg {
  background-color: #fafafa !important;
}




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

.leftpadding {
  padding-left:6vw !important;
}

.leftsmallpadding {
  padding-left:3vw !important;
}
.leftextrapadding {
  padding-left:12vw !important;
}

.rightpadding {
  padding-right:6vw !important;
}

.rightsmallpadding {
  padding-right:3vw !important;
}
.rightextrapadding {
  padding-right:12vw !important;
}

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


.topsmallpadding {
  padding-top:3vh;
}
.toppadding {
  padding-top:10vh;
}
.topextrapadding {
  padding-top:15vh;
}
.bottomsmallpadding {
  padding-bottom:3vh;
}
.bottompadding {
  padding-bottom:10vh;
}
.bottomextrapadding {
  padding-bottom:15vh;
}




/*************************** GET STICKY SIDE AND CONTINUE SCROLL ***********************/

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




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


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

.flexbox.centered {
    justify-content: center;
}

.flexbox.right {
    justify-content: flex-end;
  -webkit-justify-content: flex-end;
}

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


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



/********************************* WIDTH & HEIGHT ****************************/


.fullwidth {
  width:100%;
}

.fullheight {
  min-height:100vh;
}

.twothirdsheight {
  height:75vh;
}

.halfheight {
  height:50vh;
}

.onethirdheight {
  height:35vh;
}

.quarterheight {
  height:25vh;
}

.height60 {
  height:60vh;
}




/**** ESTRUTURA *****/

#wrap_all {
    background-color: #fff;
    position: relative;
    height: 100vh;
    width: 100vw;
  float:left;
}



#logo {
    position: fixed;
    width: 100%;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
  z-index: 9;
 background-color: #412649 !important;
 /* background-color: #fff !important;*/
}
#topnav {
    position: fixed;
    right: 0;
    padding: 15px 40px;

  z-index: 99999999;
}

/*** MENUS *******/
.topnavmenu a {
    margin-left: 20px;
font-weight: 300;
letter-spacing: 0px;
font-size: 1em;
color: #fff !important;
opacity: 0.8;
   /* text-transform: uppercase;
    letter-spacing: 0.07em;*/
}
.topnavmenu a:hover {
    color: #6d276a !important;
  opacity:1 !important;;
    text-decoration: none !important;
}
.logowrapper {
    display: inline-block;
    max-width: 440px;
}







/**** VIDEO HTML 5 ********/

.videoWrapper {
    height: 0;
    padding-bottom: 56.5% !important;
    padding-top: 0;
    position: relative;
   /* float: left;*/
    width: 100%;
}

.videoWrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}






/******************************************** FOR FORMS *************************************************/

#bfSubmitButton {
    background-color: #412649;
    border: 2px solid #412649 !important;
    color: #fff !important;
    border-radius: 0 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    font-weight: 500 !important;
    font-size: 10px !important;
    padding: 15px 30px !important;
  margin-top: 30px;
}

#bfSubmitButton:hover {
    background-color: #fff;
    border: 2px solid #412649 !important;
    color: #412649 !important;
}

.bfElemWrap .form-group {
    width: 100%;
}
/** take out padding from button ***/
.form-group .col-sm-12 {
    padding: 0 !important;
}

.bfQuickMode .bfbs3-form-inline .bfbs3-form-control, .bfQuickMode .form-inline .form-control {
   border-radius: 0 !important;
font-size: 1em;
font-weight: 300 !important;
border-left: 0 !important;
border-top: 0 !important;
border-right: 0 !important;
border-bottom: 0px solid #ddd;
  padding: 25px;
}

.inputbox::placeholder {
    color: #aaa !important;
    font-style: oblique;
  font-size:1em;
}

.bfQuickMode .bfElemWrap {
    margin-bottom: 5px !important;
}

.nonform-control {
    width: 100% !important;
}

/** height of text area container **/
#ff_elem41 {
    min-height: 120px !important;
    max-height: 320px !important;
}

/****** RADIO BUTTONS **********/
#bfElemWrap23 .radio-inline {
    display: inline-table;
    margin-right: 15px;
}
#bfElemWrap23 {
    padding: 10px 0 0 25px;
}
#bfElemWrap23 .control-label {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 0.75em;
}

/****** CHECK BOXES **********/
#bfElemWrap32 .checkbox-inline {
    display: inline-table;
    margin-right: 15px;
    color: #555;
  text-decoration: underline;
} 
#bfElemWrap32 .checkbox-inline:hover {
    color: #412649 !important;
}
#bfElemWrap32 {
    padding: 20px 0 40px 25px;
    background-color: #fff;
}
#bfElemWrap32 .control-label {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px;
    font-weight: 400;
    font-size: 0.75em;
}



/** for legal terms checkbox **/
#bfElemWrap33 {
    margin-top: 15px;
    margin-bottom: 30px !important;
  display: inline-block;
position: relative;
}
#bfElemWrap33 a {
    position: relative;
    z-index: 9;
}
#bfLabel33.control-label {
    margin-left: 25px;
    width: 100% !important;
    display: block !important;
    float: left !important;
}
#bfElemWrap33 .nonform-control {
    float: left !important;
    /*left: 0;*/
    position: absolute;
}


/*** error pop up ****/
.swal-button {
   background-color: #412649;
    border: 1px solid #fff !important;
  	color: #fff !important;
    border-radius: 0 !important;
    letter-spacing: 2px !important;
    text-transform: uppercase;
    font-weight: 500 !important;
    font-size: 10px !important;
    padding: 10px 20px !important;
}
.swal-text {
    font-size: 14px;
    line-height: 150%;
    font-family: inherit !important;
}
.swal-overlay--show-modal .swal-modal {
    border-radius: 0 !important;
}


