:root {
  --cieb-green: #85c440;
  --cieb-yellow: #f7e40a;
  --cieb-cyan: #008bbc;
  --cieb-blue: #141e3d;
  --cieb-gray: #bbbbbb;
  --cieb-pink: #ea276f;
  --cieb-light-green: #97cc55;
  --cieb-light-yellow: #f7e487;
  --cieb-light-cyan: #269cc6;
  --cieb-light-blue: #1c2a55;
  --cieb-light-gray: #aaaaaa;
  --cieb-light-pink: #f23a83;
  --cieb-light: #eeeeee;
  --cieb-ultra-light: #f4f4f4;
  --cieb-dark: var(--cieb-blue); /* bs4 compatibility */
  --primary: var(--cieb-green);
  --primary-hover: var(--cieb-light-green);
  --secondary: var(--cieb-gray);
  --secondary-hover: var(--cieb-light-gray);
  --dark: var(--cieb-blue);
  --light: var(--cieb-light);
  --white: #fff;
  --danger: #dc3545;
  --warning: var(--cieb-yellow);
  --success: var(--cieb-green);
  --info: var(--cieb-cyan);
  --font-family-sans-serif: Calibri, Candara, Segoe, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --default-session-padding: 5rem;
  --default-transactions: all ease-in-out 0.3s;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
}

/* all size-relative variables */
@media (min-width: 0px) {
  :root {
  }
}

@media (min-width: 576px) {
  :root {
  }
}

@media (min-width: 768px) {
  :root {
  }
}

@media (min-width: 992px) {
  :root {
  }
}

@media (min-width: 1200px) {
  :root {
  }
}

/*-- General: Base configuration --*/
body {
  color: var(--cieb-blue);
}

p {
  line-height: 1.75;
}

strong {
  font-weight: 700;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-weight: 700;
  text-transform: uppercase;
}

h1,
.h1 {
  margin-bottom: 2rem;
}

h2,
.h2 {
  margin-bottom: 1.9rem;
}

h3,
.h3 {
  margin-bottom: 1.8rem;
}

h4,
.h4 {
  margin-bottom: 1.7rem;
}

h5,
.h5 {
  margin-bottom: 1.6rem;
}

h6,
.h6 {
  margin-bottom: 1.5rem;
}

section {
  padding: 100px 0;
}

section h2.section-heading {
  font-size: 40px;
  margin-top: 0;
  margin-bottom: 15px;
}

section h3.section-subheading {
  font-size: 16px;
  font-weight: 400;
  font-style: italic;
  margin-bottom: 75px;
  text-transform: none;
}

@media (min-width: 768px) {
  section {
    padding: 150px 0;
  }
}
.wpcf7 input[type="submit"],
.btn {
  font-weight: 300;
  text-transform: uppercase;
}

.btn-xl {
  font-size: 18px;
  padding: 20px 40px;
}

.wpcf7 input[type="submit"],
.btn-primary {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}

.wpcf7 input[type="submit"]:active,
.wpcf7 input[type="submit"]:focus,
.wpcf7 input[type="submit"]:hover,
.btn-primary:active,
.btn-primary:focus,
.btn-primary:hover {
  background-color: var(--primary-hover) !important;
  border-color: var(--primary-hover) !important;
  color: var(--white);
}

.wpcf7 input[type="submit"]:active,
.wpcf7 input[type="submit"]:focus,
.btn-primary:active,
.btn-primary:focus {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

::selection {
  background: var(--cieb-yellow);
  text-shadow: none;
}

img::selection {
  background: transparent;
}

img::-moz-selection {
  background: transparent;
}

/*-- END --*/
/*-- General: Extra configuration --*/
h1:not(.sem-sublinhado):after,
.h1:not(.sem-sublinhado):after,
h2:not(.sem-sublinhado):not(.sem-sublinhado):after,
.h2:not(.sem-sublinhado):after,
h3:not(.sem-sublinhado):after,
.h3:not(.sem-sublinhado):after,
h4:not(.sem-sublinhado):after,
.h4:not(.sem-sublinhado):after,
h5:not(.sem-sublinhado):after,
.h5:not(.sem-sublinhado):after,
h6:not(.sem-sublinhado):after,
.h6:not(.sem-sublinhado):after {
  content: "";
  display: block;
  background-color: var(--primary);
  -webkit-transition: var(--default-transactions);
  -moz-transition: var(--default-transactions);
  -ms-transition: var(--default-transactions);
  -o-transition: var(--default-transactions);
  transition: var(--default-transactions);
  /* reset */
  margin-left: 0;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: none;
}

h1:not(.sem-sublinhado):after,
.h1:not(.sem-sublinhado):after {
  width: 9rem;
  height: 0.8rem;
}

h2:not(.sem-sublinhado):after,
.h2:not(.sem-sublinhado):after {
  width: 8rem;
  height: 0.75rem;
}

h3:not(.sem-sublinhado):after,
.h3:not(.sem-sublinhado):after {
  width: 7rem;
  height: 0.7rem;
}

h4:not(.sem-sublinhado):after,
.h4:not(.sem-sublinhado):after {
  width: 6rem;
  height: 0.65rem;
}

h5:not(.sem-sublinhado):after,
.h5:not(.sem-sublinhado):after {
  width: 5rem;
  height: 0.6rem;
}

h6:not(.sem-sublinhado):after,
.h6:not(.sem-sublinhado):after {
  width: 4rem;
  height: 0.55rem;
}

.sem-sublinhado h1:after,
.sem-sublinhado h2:after,
.sem-sublinhado h3:after,
.sem-sublinhado h4:after,
.sem-sublinhado h5:after,
.sem-sublinhado h6:after,
.sem-sublinhado .h1:after,
.sem-sublinhado .h2:after,
.sem-sublinhado .h3:after,
.sem-sublinhado .h4:after,
.sem-sublinhado .h5:after,
.sem-sublinhado .h6:after {
  display: none;
}

.sublinhado-centralizado h1:after,
.sublinhado-centralizado h2:after,
.sublinhado-centralizado h3:after,
.sublinhado-centralizado h4:after,
.sublinhado-centralizado h5:after,
.sublinhado-centralizado h6:after,
.sublinhado-centralizado .h1:after,
.sublinhado-centralizado .h2:after,
.sublinhado-centralizado .h3:after,
.sublinhado-centralizado .h4:after,
.sublinhado-centralizado .h5:after,
.sublinhado-centralizado .h6:after,
h1.text-center:after,
h2.text-center:after,
h3.text-center:after,
h4.text-center:after,
h5.text-center:after,
h6.text-center:after,
.h1.text-center:after,
.h2.text-center:after,
.h3.text-center:after,
.h4.text-center:after,
.h5.text-center:after,
.h6.text-center:after {
  margin: 0 auto;
}

.sublinhado-esquerda h1:after,
.sublinhado-esquerda h2:after,
.sublinhado-esquerda h3:after,
.sublinhado-esquerda h4:after,
.sublinhado-esquerda h5:after,
.sublinhado-esquerda h6:after,
.sublinhado-esquerda .h1:after,
.sublinhado-esquerda .h2:after,
.sublinhado-esquerda .h3:after,
.sublinhado-esquerda .h4:after,
.sublinhado-esquerda .h5:after,
.sublinhado-esquerda .h6:after,
h1.text-left:after,
h2.text-left:after,
h3.text-left:after,
h4.text-left:after,
h5.text-left:after,
h6.text-left:after,
.h1.text-left:after,
.h2.text-left:after,
.h3.text-left:after,
.h4.text-left:after,
.h5.text-left:after,
.h6.text-left:after {
  margin-left: 0;
}

.bg-cieb-green {
  background-color: var(--cieb-green) !important;
}

.bg-cieb-cyan {
  background-color: var(--cieb-cyan) !important;
}

.bg-cieb-yellow {
  background-color: var(--cieb-yellow) !important;
}

.bg-cieb-pink {
  background-color: var(--cieb-pink) !important;
}

.bg-cieb-blue {
  background-color: var(--cieb-blue) !important;
}

.bg-cieb-gray {
  background-color: var(--cieb-gray) !important;
}

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

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

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

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

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

.cieb-gray {
  color: var(--cieb-gray) !important;
}
.sublinhado-pink h1:after,
.sublinhado-pink h2:after,
.sublinhado-pink h3:after,
.sublinhado-pink h4:after,
.sublinhado-pink h5:after,
.sublinhado-pink h6:after,
.sublinhado-pink .h1:after,
.sublinhado-pink .h2:after,
.sublinhado-pink .h3:after,
.sublinhado-pink .h4:after,
.sublinhado-pink .h5:after,
.sublinhado-pink .h6:after {
  background-color: var(--cieb-pink) !important;
}

.sublinhado-blue h1:after,
.sublinhado-blue h2:after,
.sublinhado-blue h3:after,
.sublinhado-blue h4:after,
.sublinhado-blue h5:after,
.sublinhado-blue h6:after,
.sublinhado-blue .h1:after,
.sublinhado-blue .h2:after,
.sublinhado-blue .h3:after,
.sublinhado-blue .h4:after,
.sublinhado-blue .h5:after,
.sublinhado-blue .h6:after {
  background-color: var(--cieb-blue) !important;
}

.sublinhado-green h1:after,
.sublinhado-green h2:after,
.sublinhado-green h3:after,
.sublinhado-green h4:after,
.sublinhado-green h5:after,
.sublinhado-green h6:after,
.sublinhado-green .h1:after,
.sublinhado-green .h2:after,
.sublinhado-green .h3:after,
.sublinhado-green .h4:after,
.sublinhado-green .h5:after,
.sublinhado-green .h6:after {
  background-color: var(--cieb-green) !important;
}

.sublinhado-cyan h1:after,
.sublinhado-cyan h2:after,
.sublinhado-cyan h3:after,
.sublinhado-cyan h4:after,
.sublinhado-cyan h5:after,
.sublinhado-cyan h6:after,
.sublinhado-cyan .h1:after,
.sublinhado-cyan .h2:after,
.sublinhado-cyan .h3:after,
.sublinhado-cyan .h4:after,
.sublinhado-cyan .h5:after,
.sublinhado-cyan .h6:after {
  background-color: var(--cieb-cyan) !important;
}

.sublinhado-yellow h1:after,
.sublinhado-yellow h2:after,
.sublinhado-yellow h3:after,
.sublinhado-yellow h4:after,
.sublinhado-yellow h5:after,
.sublinhado-yellow h6:after,
.sublinhado-yellow .h1:after,
.sublinhado-yellow .h2:after,
.sublinhado-yellow .h3:after,
.sublinhado-yellow .h4:after,
.sublinhado-yellow .h5:after,
.sublinhado-yellow .h6:after {
  background-color: var(--cieb-yellow) !important;
}

.sublinhado-gray h1:after,
.sublinhado-gray h2:after,
.sublinhado-gray h3:after,
.sublinhado-gray h4:after,
.sublinhado-gray h5:after,
.sublinhado-gray h6:after,
.sublinhado-gray .h1:after,
.sublinhado-gray .h2:after,
.sublinhado-gray .h3:after,
.sublinhado-gray .h4:after,
.sublinhado-gray .h5:after,
.sublinhado-gray .h6:after {
  background-color: var(--cieb-gray) !important;
}

/* hack of half-fluid */
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.left-half {
  left: 0;
  right: 50%;
}

.no-border {
  border: none;
}

.lower {
  text-transform: lowercase !important;
}

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

.capitalize {
  text-transform: capitalize !important;
}
/*-- END --*/
/*-- General: Main Nav --*/
#mainNav {
  min-height: 6rem;
  background-color: var(--cieb-blue);
}
#mainNav:not(.navbar-shrink){
	background: linear-gradient(to bottom, rgb(0 0 0 / 30%) 0%,rgb(0 0 0 / 0%) 100%);	
}

#mainNav .navbar-toggler {
  font-size: 12px;
  right: 0;
  padding: 13px;
  text-transform: uppercase;
  color: var(--cieb-blue);
  border: 0;
  background-color: var(--white);
  outline: none;
}

#mainNav .navbar-toggler img {
  width: 1rem;
  height: 1rem;
}

#mainNav .navbar-brand {
  color: var(--white);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

#mainNav .navbar-brand .logo {
  height: 3rem;
}

#mainNav .navbar-brand.active,
#mainNav .navbar-brand:active,
#mainNav .navbar-brand:focus,
#mainNav .navbar-brand:hover {
  color: var(--primary);
}

#mainNav .navbar-nav .nav-item .nav-link {
  font-size: 0.875rem;
  /* 14px */
  font-weight: 700;
  padding: 0.75em 0;
  letter-spacing: 1px;
  color: var(--white);
}

#mainNav .navbar-nav .nav-item .nav-link.active,
#mainNav .navbar-nav .nav-item .nav-link:hover {
  color: var(--white);
}

@media (min-width: 992px) {
  #mainNav {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border: none;
    background-color: transparent;
    -webkit-transition: all 0.1s;
    transition: all 0.1s;
  }

  #mainNav .navbar-brand {
    opacity: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }

  /* hack to show on internal pages */
  .interna .navbar-brand {
    opacity: 1 !important;
  }

  #mainNav .navbar-nav .nav-item:not(.lang-item) .nav-link {
    padding: 1.1em 1em !important;
  }

  #mainNav.navbar-shrink {
    -webkit-transition: padding-top 0.5s;
    -webkit-transition: padding-bottom 0.5s;
    transition: padding-top 0.5s;
    transition: padding-bottom 0.5s;
    padding-top: 0;
    padding-bottom: 0;
    background-color: var(--cieb-blue);
  }

  #mainNav.navbar-shrink .navbar-brand {
    opacity: 1;
  }
}

/*-- END --*/
/*-- Hack: Main Nav - lang flags --*/

#mainNav .lang-item a {
  padding: 0 !important;
}

#mainNav .lang-item a {
  padding-top: 1em !important;
  padding-left: 0.5em !important;
}

#mainNav .lang-item a img {
  width: 25px;
  height: 25px;
}

@media (min-width: 992px) {
  #mainNav .lang-item a {
    padding: 0 !important;
  }

  #mainNav .lang-item a {
    padding-top: 1em !important;
    padding-left: 0.5em !important;
  }

  #mainNav .lang-item a img {
    width: 25px;
    height: 25px;
  }
}

/*-- END --*/

/*-- Home Header: Masthead --*/
header.masthead {
  background: var(--cieb-blue);
  margin-top: 6rem;
  color: var(--white);
  position: relative;
  width: 100%;
}

header.masthead > .container {
  max-width: 100%;
}

header.masthead .green-sidebar {
  padding-top: 3rem;
  padding-bottom: 3rem;
  flex: 1;
  background: var(--cieb-green) url(../imgs/grafismo_branco_cieb_conections.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: -30px 300px;
}

header.masthead .logo img {
  display: none;
}

header.masthead .green-sidebar .main-text {
  margin-bottom: 2rem;
  color: black;
}

header.masthead .green-sidebar .main-text h2 {
  line-height: 2rem;
  font-size: 1.5rem;
}

header.masthead .green-sidebar .main-text h2:after {
  background-color: black;
  margin-top: 0.5rem;
}

header.masthead .green-sidebar .second-text .lead {
  font-size: 1.1rem;
  line-height: 1.7rem;
  margin-bottom: 0;
}

header.masthead .banner {
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 550px;
}

header.masthead .banner .main-text h2 {
  color: #191e37;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

header.masthead .banner .main-text h2:after {
  display: none;
}

header.masthead .banner .second-text p.lead {
  line-height: 1.7rem;
  font-size: 1.2rem;
}

header.masthead .banner .link a.btn {
  background-color: #ffffff;
  color: #191e37;
  font-weight: bold;
}

header.masthead .banner .link a.btn:hover,
header.masthead .banner .link a.btn:focus{
  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.3);
}

header.masthead .banner .link a.btn .arrow {
  background-color: #ffffff;
  border-radius: 50%;
  padding: 0 9px 0 8px;
  display: inline-block;
}

header.masthead .banner .link a.btn .arrow .right {
  border: solid #191e37;
  border-width: 0 2px 2px 0;
  display: inline-block;
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  width: 9px;
  height: 9px;
  margin-left: -2px;
}

@media (min-width: 576px) {
  header.masthead .green-sidebar .main-text {
    padding-right: 3rem;
  }

  header.masthead .green-sidebar .second-text {
    padding-right: 3rem;
  }
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
  header.masthead > .container {
    max-width: 960px;
  }

  header.masthead .bg-left {
    left: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    width: 40%;
    background: var(--cieb-green);
  }

  header.masthead .bg-right {
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    width: 60%;
    background: var(--cieb-blue) url(../imgs/foto_verde_cieb_home.jpg) top right/cover fixed;
  }

  header.masthead {
    margin-top: 0;
  }

  header.masthead .logo img {
    display: block;
    width: 200px;
    padding-top: 50px;
    margin-bottom: 2rem;
  }

  header.masthead .green-sidebar .main-text h2 {
    line-height: 2rem;
    font-size: 1.2rem;
  }

  header.masthead .green-sidebar .second-text {
    margin-bottom: 2rem;
  }
}

@media (min-width: 1200px) {
  header.masthead > .container {
    max-width: 1140px;
  }
}

/*-- END --*/
/*-- Home Section: o-que-fazemos --*/
section.o-que-fazemos {
  padding: 0;
  margin: 0;
  padding-top: var(--default-session-padding);
  padding-bottom: var(--default-session-padding);
  color: var(--white);
  background-color: var(--cieb-cyan);
  position: relative;
  width: 100%;
}

section.o-que-fazemos .side-text {
  background: var(--cieb-cyan) url(../imgs/grafismo_branco_cieb_conections.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: -220px 100px;
}

section.o-que-fazemos .side-text .h4 {
  line-height: 2rem;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

section.o-que-fazemos .side-text .h4:after {
  background-color: var(--cieb-green);
}

section.o-que-fazemos .side-text .lead {
  font-size: 1.3rem;
  line-height: 2.3rem;
}

section.o-que-fazemos .side-text .select {
  font-size: 1.3rem;
  line-height: 2.3rem;
  font-weight: bold;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

section.o-que-fazemos .side-text .select li {
  padding: 0.3rem;
  color: #fff;
  border-radius: 0.8rem;
  line-height: 3rem;
}
section.o-que-fazemos .side-text .select li:hover {
  cursor: pointer;
  background-color: #ffffff30;
}

section.o-que-fazemos .side-text .select li.selected {
  background-color: #ffffff50;
}
section.o-que-fazemos .side-text .select li span {
  padding: 1rem;
  font-size: 3rem;
  margin-top: -40px;
  position: relative;
  top: 6px;
}

section.o-que-fazemos .projects {
  padding: 0;
  padding-top: 2rem;
}

section.o-que-fazemos .projects > .row {
  margin: 0 !important;
  padding: 0 !important;
}

section.o-que-fazemos .projects .project::before {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-size: cover;
  -webkit-transition: var(--default-transactions);
  -moz-transition: var(--default-transactions);
  -ms-transition: var(--default-transactions);
  -o-transition: var(--default-transactions);
  transition: var(--default-transactions);
  opacity: 0.5;
  filter: contrast(1.5) brightness(0.5);
  background-blend-mode: multiply;
}

.project-blue-fix::before {
  opacity: 0.6 !important;
  filter: contrast(1) brightness(3) !important;
}

section.o-que-fazemos .projects .project {
  min-height: 20rem;
  place-items: center;
  background-color: var(--cieb-gray);
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
  -webkit-transition: var(--default-transactions);
  -moz-transition: var(--default-transactions);
  -ms-transition: var(--default-transactions);
  -o-transition: var(--default-transactions);
  transition: var(--default-transactions);
  cursor: pointer;
  display: grid;
}

/* inside each project */
section.o-que-fazemos .projects .project .project-inside {
  position: relative;
  padding: 1.4rem;
}

section.o-que-fazemos .projects .project .project-inside .title::after {
  display: none;
}

section.o-que-fazemos .projects .project .project-inside .title,
section.o-que-fazemos .projects .project .project-inside .title a {
  color: var(--white);
  font-size: 2rem;
}

section.o-que-fazemos .projects .project .project-inside .sub-text,
section.o-que-fazemos .projects .project .project-inside .sub-text a {
  color: var(--white);
  font-size: 1.2rem;
  font-weight: 300;
}

.project-blue-fix:hover::before,
section.o-que-fazemos .projects .project:hover::before {
  opacity: 0 !important;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
  section.o-que-fazemos .projects {
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 2rem;
  }

  section.o-que-fazemos .projects .project {
    min-height: 18rem;
    border: 2px solid #fff;
  }
}

@media (min-width: 992px) {
  section.o-que-fazemos {
    padding-top: 0;
    padding-bottom: 0;
  }

  section.o-que-fazemos .projects .project {
    min-height: 10rem;
  }

  section.o-que-fazemos .projects {
    padding: 0 !important;
    margin: 0 !important;
    flex: 1;
  }

  section.o-que-fazemos .projects .project .project-inside .title,
  section.o-que-fazemos .projects .project .project-inside .title a {
    font-size: 1.4rem;
  }

  section.o-que-fazemos .projects .project .project-inside .sub-text,
  section.o-que-fazemos .projects .project .project-inside .sub-text a {
    font-size: 0.8rem;
  }

  section.o-que-fazemos .side-text {
    padding-top: var(--default-session-padding);
    padding-bottom: var(--default-session-padding);
    flex: 1;
  }
}

@media (min-width: 1200px) {
  section.o-que-fazemos .projects .project {
    min-height: 12rem;
  }
}

/*-- END --*/
/*-- Home Section: news-destaque --*/
section.news-destaque {
  display: none;
  width: 100%;
  padding: 0;
  margin: 0;
}

section.news-destaque .container {
  width: 100%;
  max-width: 100%;
}

section.news-destaque.show {
  display: flex;
}

section.news-destaque .card-img {
  max-height: 250px;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
  section.news-destaque .news .news-button a {
    display: inline-block;
  }
}

@media (min-width: 992px) {
  section.news-destaque .card-img {
    max-height: 100%;
  }
  section.news-destaque .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  section.news-destaque .container {
    max-width: 1140px;
  }
}

/*-- END --*/
/*-- Home Section: timeline --*/
section.timeline {
  background-color: var(--cieb-light);
  width: 100%;
  padding: 0;
  margin: 0;
  min-height: 220px;
}

section.timeline .row {
  width: 100%;
}

section.timeline .btn {
  margin-top: 2rem;
}

section.timeline .btn {
  display: block;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
  section.timeline .btn {
    display: inline-block;
  }
}

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

@media (min-width: 1200px) {
}

/*-- END --*/
/*-- Home Section: news --*/
section.news {
  background-color: var(--cieb-white);
  width: 100%;
  padding: 0;
  padding-top: var(--default-session-padding);
  margin: 0;
}

section.news .container {
  max-width: 100%;
  padding: 0;
}

section.news .row {
  margin: 0;
}

section.news .card {
  -webkit-transition: var(--default-transactions);
  -moz-transition: var(--default-transactions);
  -ms-transition: var(--default-transactions);
  -o-transition: var(--default-transactions);
  transition: var(--default-transactions);
}

section.news .card .title,
section.news .card .title a {
  color: var(--cieb-blue);
  margin-bottom: 0.8rem;
}

section.news .date {
  color: var(--cieb-green);
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

section.news .expert {
  color: var(--cieb-blue);
  line-height: 1.4rem;
}

section.news .card-img {
  background-color: var(--cieb-light);
  max-height: 250px;
}

section.news .card-img img {
  filter: grayscale(100%);
  opacity: 0.5;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--cieb-gray);
  -webkit-transition: var(--default-transactions);
  -moz-transition: var(--default-transactions);
  -ms-transition: var(--default-transactions);
  -o-transition: var(--default-transactions);
  transition: var(--default-transactions);
}

section.news .card:hover .card-img img {
  filter: grayscale(0);
  opacity: 1;
}

section.news .card:hover {
  background-color: var(--cieb-ultra-light);
}

section.news .card:hover .btn-secondary {
  color: var(--white);
  background-color: var(--primary);
  border-color: var(--primary);
}

section.news .card:hover .btn-secondary:hover {
  color: var(--white);
  background-color: var(--primary-hover);
  border-color: var(--primary-hover);
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
  section.news .card:nth-child(4n) .card-img,
  section.news .card:nth-child(4n-3) .card-img {
    -ms-flex-order: 1;
    order: 1;
  }

  section.news .card:nth-child(4n) .card-content,
  section.news .card:nth-child(4n-3) .card-content {
    -ms-flex-order: 1;
    order: 1;
  }

  section.news .card:nth-child(4n-1) .card-img,
  section.news .card:nth-child(4n-2) .card-img {
    -ms-flex-order: 1;
    order: 1;
  }

  section.news .card:nth-child(4n-1) .card-content,
  section.news .card:nth-child(4n-2) .card-content {
    -ms-flex-order: 1;
    order: 1;
  }
}

@media (min-width: 992px) {
  section.news .container {
    max-width: 960px;
    padding-right: 15px;
    padding-left: 15px;
  }
  section.news .card-img {
    max-height: 100%;
  }

  section.news .card:nth-child(4n) .card-img,
  section.news .card:nth-child(4n-3) .card-img {
    -ms-flex-order: 1;
    order: 1;
  }

  section.news .card:nth-child(4n) .card-content,
  section.news .card:nth-child(4n-3) .card-content {
    -ms-flex-order: 2;
    order: 2;
  }

  section.news .card:nth-child(4n-1) .card-img,
  section.news .card:nth-child(4n-2) .card-img {
    -ms-flex-order: 2;
    order: 2;
  }

  section.news .card:nth-child(4n-1) .card-content,
  section.news .card:nth-child(4n-2) .card-content {
    -ms-flex-order: 1;
    order: 1;
  }
}

@media (min-width: 1200px) {
  section.news .container {
    max-width: 1140px;
  }
}

/*-- END --*/
/*-- Home Section: more-news --*/
section.more-news {
  background: var(--cieb-blue);
  margin-top: 0;
  color: var(--white);
  min-height: 160px;
  position: relative;
  width: 100%;
  padding: 0;
}

section.more-news a {
  color: var(--white);
}

section.more-news > .container {
  max-width: 100%;
  margin: 0;
  padding: 0;
  -ms-flex-align: start !important;
}

section.more-news .bg-left,
section.more-news .bg-right {
  display: none;
}

section.more-news .left {
  background: var(--cieb-green);
  padding: 1rem;
  line-height: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: right;
  padding: 2rem;
}

section.more-news .right {
  background: var(--cieb-blue);
  padding: 1rem;
  line-height: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: right;
  padding: 2rem;
}

section.more-news .left {
  text-align: left;
}

section.more-news .left a:after {
  display: none;
}

section.more-news .left a:before {
  content: "";
  background: url(../imgs/ico_left-arrow.svg) no-repeat left;
  width: 104px;
  height: 14px;
  display: inline-block;
  margin-right: 1rem;
}

section.more-news .right a:after {
  content: "";
  background: url(../imgs/ico_right-arrow.svg) no-repeat left;
  width: 104px;
  height: 14px;
  display: inline-block;
  margin-left: 1rem;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
  section.more-news > .container {
    max-width: 960px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
  }

  section.more-news .bg-left {
    left: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    width: 50%;
    background: var(--cieb-green);
    display: block;
  }

  section.more-news .bg-right {
    right: 0;
    top: 0;
    bottom: 0;
    position: absolute;
    width: 50%;
    background: var(--cieb-blue);
    display: block;
  }

  section.more-news .left {
    text-align: left;
  }

  section.more-news .left a:after {
    display: none;
  }

  section.more-news .left a:before {
    content: "";
    background: url(../imgs/ico_left-arrow.svg) no-repeat left;
    width: 104px;
    height: 14px;
    display: inline-block;
    margin-right: 1rem;
  }

  section.more-news .right a:after {
    content: "";
    background: url(../imgs/ico_right-arrow.svg) no-repeat left;
    width: 104px;
    height: 14px;
    display: inline-block;
    margin-left: 1rem;
  }
}

@media (min-width: 1200px) {
  section.more-news > .container {
    max-width: 1140px;
  }
}

/*-- END --*/
/*-- Home Section: quem-somos --*/
section.quem-somos {
  padding: 0;
  margin: 0;
  padding-top: var(--default-session-padding);
  padding-bottom: var(--default-session-padding);
  background-color: var(--cieb-light);
  position: relative;
  width: 100%;
}

section.quem-somos .left-side {
  background: var(--cieb-light) url(../imgs/grafismo_branco_cieb_conections.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

section.quem-somos .left-side {
  margin-bottom: var(--default-session-padding);
}

section.quem-somos .left-side .h4 {
  line-height: 2rem;
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

section.quem-somos .left-side .h4:after {
  background-color: var(--cieb-pink);
}

section.quem-somos .left-side .lead {
  font-size: 1rem;
  line-height: 1.7rem;
  margin-bottom: 2rem;
}

section.quem-somos .left-side .btn {
  background: var(--cieb-blue);
  padding: 1rem;
  line-height: 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: right;
  padding: 2rem;
  color: var(--white);
  background-color: var(--cieb-pink);
  border-color: var(--cieb-pink);
  width: 100%;
  text-align: center;
}

section.quem-somos .left-side .btn:active,
section.quem-somos .left-side .btn:focus,
section.quem-somos .left-side .btn:hover {
  background-color: var(--cieb-light-pink) !important;
  border-color: var(--cieb-light-pink) !important;
  color: var(--white);
}

section.quem-somos .left-side .btn:after {
  content: "";
  background: url(../imgs/ico_right-arrow.svg) no-repeat left;
  width: 104px;
  height: 14px;
  display: inline-block;
  margin-left: 1rem;
}

.profiles-grid {
}

.profiles-grid .profile {
  width: 100%;
  height: 100%;
  text-align: center;
  cursor: pointer;
  -webkit-transition: var(--default-transactions);
  -moz-transition: var(--default-transactions);
  -ms-transition: var(--default-transactions);
  -o-transition: var(--default-transactions);
  transition: var(--default-transactions);
}

.profiles-grid .profile .name {
  color: #666;
  font-size: 1rem;
  font-weight: 100;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-pack: center;
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-line-pack: center;
  -ms-flex-line-pack: center;
  -webkit-align-content: center;
  align-content: center;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.profiles-grid .profile .photo {
  filter: grayscale(1);
  opacity: 0.7;
  -webkit-transition: var(--default-transactions);
  -moz-transition: var(--default-transactions);
  -ms-transition: var(--default-transactions);
  -o-transition: var(--default-transactions);
  transition: var(--default-transactions);
  overflow: hidden;
}

.profiles-grid .profile .photo img {
  height: 100%;
  width: 100%;
  vertical-align: top;
}

.profiles-grid .profile:hover {
  background-color: var(--cieb-pink);
  color: var(--white);
}

.profiles-grid .profile:hover .photo {
  filter: grayscale(0);
  opacity: 1;
}

.profiles-grid .profile:hover .name {
  color: var(--white);
}

.profiles-grid .profile:nth-child(n + 1) .name {
  -ms-flex-order: 1;
  order: 1;
}

.profiles-grid .profile:nth-child(n + 1) .photo {
  -ms-flex-order: 2;
  order: 2;
}

.profiles-grid .profile:nth-child(4n + 1) .name {
  -ms-flex-order: 2;
  order: 2;
}

.profiles-grid .profile:nth-child(4n + 1) .photo {
  -ms-flex-order: 1;
  order: 1;
}

.profiles-grid .profile:nth-child(4n + 2) .name {
  -ms-flex-order: 1;
  order: 1;
}

.profiles-grid .profile:nth-child(4n + 2) .photo {
  -ms-flex-order: 2;
  order: 2;
}

.profiles-grid .profile:nth-child(4n + 3) .name {
  -ms-flex-order: 2;
  order: 2;
}

.profiles-grid .profile:nth-child(4n + 3) .photo {
  -ms-flex-order: 1;
  order: 1;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
  .profiles-grid .profile {
    width: 50%;
    height: 100%;
  }

  .profiles-grid .profile:nth-child(n + 1) .name {
    -ms-flex-order: 2;
    order: 2;
  }

  .profiles-grid .profile:nth-child(n + 1) .photo {
    -ms-flex-order: 1;
    order: 1;
  }

  .profiles-grid .profile:nth-child(4n + 1) .name {
    -ms-flex-order: 1;
    order: 1;
  }

  .profiles-grid .profile:nth-child(4n + 1) .photo {
    -ms-flex-order: 2;
    order: 2;
  }

  .profiles-grid .profile:nth-child(4n + 2) .name {
    -ms-flex-order: 1;
    order: 1;
  }

  .profiles-grid .profile:nth-child(4n + 2) .photo {
    -ms-flex-order: 2;
    order: 2;
  }

  .profiles-grid .profile:nth-child(4n + 3) .name {
    -ms-flex-order: 2;
    order: 2;
  }

  .profiles-grid .profile:nth-child(4n + 3) .photo {
    -ms-flex-order: 1;
    order: 1;
  }
}

@media (min-width: 992px) {
  section.quem-somos {
    padding-top: 0;
    padding-bottom: 0;
  }

  section.quem-somos .left-side {
    align-self: center !important;
    margin-bottom: var(--default-session-padding);
    margin-top: var(--default-session-padding);
  }
}

@media (min-width: 1200px) {
  section.quem-somos .projects .project {
    min-height: 12rem;
  }

  .profiles-grid .profile {
    width: 33.333333%;
    height: 100%;
  }

  section.quem-somos .left-side {
    margin-bottom: var(--default-session-padding);
    margin-top: var(--default-session-padding);
  }

  .profiles-grid .profile:nth-child(n + 1) .name {
    -ms-flex-order: 1;
    order: 1;
  }

  .profiles-grid .profile:nth-child(n + 1) .photo {
    -ms-flex-order: 2;
    order: 2;
  }

  .profiles-grid .profile:nth-child(6n + 1) .name {
    -ms-flex-order: 2;
    order: 2;
  }

  .profiles-grid .profile:nth-child(6n + 1) .photo {
    -ms-flex-order: 1;
    order: 1;
  }

  .profiles-grid .profile:nth-child(6n + 2) .name {
    -ms-flex-order: 2;
    order: 2;
  }

  .profiles-grid .profile:nth-child(6n + 2) .photo {
    -ms-flex-order: 1;
    order: 1;
  }

  .profiles-grid .profile:nth-child(6n + 3) .name {
    -ms-flex-order: 2;
    order: 2;
  }

  .profiles-grid .profile:nth-child(6n + 3) .photo {
    -ms-flex-order: 1;
    order: 1;
  }
}

/*-- END --*/
/*-- Global: footer --*/
footer {
  background-color: var(--cieb-blue);
  color: var(--white);
  width: 100%;
  padding: 0;
  margin: 0;
  min-height: 300px;
}

footer a {
  color: var(--white);
  font-weight: 300;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: var(--default-transactions);
  -moz-transition: var(--default-transactions);
  -ms-transition: var(--default-transactions);
  -o-transition: var(--default-transactions);
  transition: var(--default-transactions);
}

footer a:hover {
  color: var(--cieb-green) !important;
  text-decoration: none;
}

footer .logo {
  width: 100%;
  margin-top: var(--default-session-padding);
}

footer .logo img {
  width: 100%;
  min-height: 100%;
}

footer .menu ul {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}

footer .menu .menu-item,
footer .menu .list-group-item {
  position: relative;
  display: block;
  margin-bottom: -1px;
  background-color: var(--cieb-blue);
  border: none;
  text-transform: uppercase;
  padding: 0.75rem 1.25rem;
}

footer .menu a {
  font-weight: 300;
}

footer .end-social {
  text-transform: uppercase;
  font-weight: 700;
  margin-top: var(--default-session-padding);
}

footer .end-social .end .icon,
footer .end-social .tel .icon {
  display: block;
  float: left;
  width: 24px;
  margin-right: 1rem;
}

footer .end-social .social-icon .icon {
  width: 32px;
}

footer .end-social .tel,
footer .end-social .end,
footer .end-social .social-icon {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

footer .cc {
  margin-top: 4rem;
  margin-bottom: var(--default-session-padding);
  text-align: center;
}

footer .cc .cc-disclamer {
  font-size: 0.74rem;
}

footer .cc .cc-disclamer h6 {
  margin-bottom: 0.1rem;
  color: var(--cieb-green);
}

footer .cc .cc-icon {
}

footer .cc .cc-icon .icon {
  width: 32px;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
  footer .cc {
    text-align: left;
  }
}

@media (min-width: 992px) {
  footer .logo,
  footer .cc,
  footer .end-social {
    margin-top: 0;
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
}

/*-- END --*/
/*-- Others: Menu Underline Border --*/
#mainNav .navbar-nav .nav-item:not(.lang-item) .nav-link:after {
  content: "";
  display: block;
  width: 2rem;
  height: 3px;
  background-color: var(--primary);
  -webkit-transition: var(--default-transactions);
  -moz-transition: var(--default-transactions);
  -ms-transition: var(--default-transactions);
  -o-transition: var(--default-transactions);
  transition: var(--default-transactions);
  /* reset */
  margin-left: 0;
  vertical-align: 0;
  border-top: none;
  border-right: none;
  border-bottom: none;
  border-left: none;
}

@media (min-width: 992px) {
  #mainNav .navbar-nav .nav-item .nav-link.active:after,
  #mainNav .navbar-nav .nav-item .nav-link:hover:after {
    width: 100%;
  }
}

/*-- END --*/
/*-- Others: DropDown Menu - Open on Hover --*/
.dropdown .dropdown-menu {
  -webkit-transition: var(--default-transactions);
  -moz-transition: var(--default-transactions);
  -ms-transition: var(--default-transactions);
  -o-transition: var(--default-transactions);
  transition: var(--default-transactions);
  max-height: 0;
  display: block;
  overflow: hidden;
  opacity: 0;
  padding: 0;
  margin: 0;
}

.dropdown.show .dropdown-menu,
.dropdown:hover > .dropdown-menu {
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  max-height: 1000px;
  opacity: 1;
}

/*-- END --*/
.row-flex {
  display: flex;
  flex-wrap: wrap;
}

/*-- Interna Header --*/
.interna header {
  position: relative;
  width: 100%;
  margin-top: 6rem;
  background: var(--cieb-blue) url(../imgs/foto_verde_cieb_home.jpg) center center/cover fixed;
  color: var(--white);
  min-height: 250px;
}

.interna header::after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: url(../imgs/grafismo_branco_cieb_conections.svg) no-repeat -100% 60%/80%;
}

.interna header > .container {
  width: 100%;
}

.interna header h1,
.interna header .header-title {
  line-height: 2rem;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0;
  letter-spacing: 0.05rem;
}

.interna header h1:after,
.blog header .header-title:after {
  width: 7rem;
  height: 0.5rem;
  margin: 0 auto;
  margin-top: 0.2rem;
}

.interna header p {
  padding-top: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--cieb-light-gray);
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
  .interna header > .container {
    max-width: 960px;
  }

  .interna header {
    margin-top: 0;
  }

  .interna header h1 {
    margin-top: 3rem;
  }
}

@media (min-width: 1200px) {
  .interna header > .container {
    max-width: 1140px;
  }
}

/*-- END --*/
/*-- Interna main --*/
.interna main {
  padding-top: var(--default-session-padding);
  padding-bottom: var(--default-session-padding);
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

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

@media (min-width: 1200px) {
}

/*-- END --*/
/*-- Interna main --*/
.interna .related-posts {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background: var(--cieb-light);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
  margin-bottom: 20px;
}

.video-container iframe,  
.video-container object,  
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.entry-content img, 
.entry-content iframe, 
.entry-content object, 
.entry-content embed {
        max-width: 100%;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

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

@media (min-width: 1200px) {
}

/*-- END --*/
/*-- Blog Header --*/
.blog .entry-feature-img {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/*-- END --*/
/*-- Blog main --*/
.blog main {
  padding-top: 0;
  padding-bottom: 0;
}

/*-- END --*/

/*-- Search Header --*/
.search header {
  min-height: 250px;
}

.search header .header-title {
  line-height: 2rem;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0;
  letter-spacing: 0.05rem;
}

.search header .header-title:after {
  width: 7rem;
  height: 0.5rem;
  margin: 0 auto;
  margin-top: 0.2rem;
}

.search header p {
  padding-top: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--cieb-light-gray);
}

.search .entry-feature-img {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/*-- END --*/

/*-- archive Header --*/
.archive header {
  min-height: 250px;
}

.archive header .header-title {
  line-height: 2rem;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0;
  letter-spacing: 0.05rem;
}

.archive header .header-title:after {
  width: 7rem;
  height: 0.5rem;
  margin: 0 auto;
  margin-top: 0.2rem;
}

.archive header p {
  padding-top: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--cieb-light-gray);
}

.archive .entry-feature-img {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/*-- END --*/
/*-- archive main --*/
.archive main {
  padding-top: var(--default-session-padding);
  padding-bottom: 0;
}

.archive main .taxonomy-description p {
  font-size: 1.2rem;
  line-height: 1.7rem;
  margin-bottom: 1rem;
}

@media (min-width: 576px) {
}

@media (min-width: 768px) {
}

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

@media (min-width: 1200px) {
}

/*-- END --*/

/*-- Single Header --*/
.single header {
  min-height: 250px;
}

.single header .header-title {
  line-height: 2rem;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0;
  letter-spacing: 0.05rem;
}

.single header .header-title:after {
  width: 7rem;
  height: 0.5rem;
  margin: 0 auto;
  margin-top: 0.2rem;
}

.single header p {
  padding-top: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--cieb-light-gray);
}

.single .entry-feature-img {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 2rem;
  height: 400px;
}

.single .entry-feature-img .img-rodape {
  text-align: right;
  display: block;
  font-style: italic;
  color: var(--secondary-hover);
}

/*-- END --*/
/*-- error404 Header --*/
.error404 header {
  min-height: 250px;
}

.error404 header .header-title {
  line-height: 2rem;
  font-size: 1.5rem;
  font-weight: 300;
  margin-bottom: 0;
  letter-spacing: 0.05rem;
}

.error404 header .header-title:after {
  width: 7rem;
  height: 0.5rem;
  margin: 0 auto;
  margin-top: 0.2rem;
}

.error404 header p {
  padding-top: 1rem;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--cieb-light-gray);
}

.error404 .entry-feature-img {
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}

/*-- END --*/
/*-- wordpress admin bar hack --*/
.admin-bar #mainNav {
  margin-top: 32px;
}

#wpadminbar {
  position: fixed !important;
}

@media only screen and (max-width: 782px) {
  .admin-bar #mainNav {
    margin-top: 46px;
  }
}

/*-- END --*/
/*-- BootStrap 4 dropdown menu hack --*/
ul.nav li.dropdown:hover ul.dropdown-menu {
  display: block;
}
/*-- BootStrap 4 dropdown menu hack --*/
.card {
}
.card .card-image {
  background-color: var(--cieb-blue);
}
/*-- END --*/
/*-- wordpress template hacks --*/
.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/*-- END --*/

/*-- efex --*/

.efex-slider::before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: url(../imgs/efex-slider-lines.svg) top left;
}
.efex-slider::after {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  background: url(../imgs/efex-slider-lines.svg) top left;
}

.efex-boxes {
  display: flex;
  flex-wrap: wrap;
}
.efex-boxes .panel-grid-cell {
  display: flex;
  flex-wrap: wrap;
}
.efex-boxes .panel-grid-cell div {
  width: 100%;
}
.efex-boxes .widget {
  display: flex;
  flex-wrap: wrap;
}
.efex-boxes .efex-box {
  background: var(--cieb-pink);
  display: flex;
  flex: inherit;
  height: 100%;
  text-align: center !important;
  color: var(--white);
  border-radius: 0.25rem;
}
.efex-boxes .efex-box h3 {
  text-align: center !important;
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}
.efex-boxes .efex-box p {
  text-align: center !important;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.6rem;
}
.efex-boxes .efex-box h1:after,
.efex-boxes .efex-box h2:after,
.efex-boxes .efex-box h3:after,
.efex-boxes .efex-box h4:after,
.efex-boxes .efex-box h5:after,
.efex-boxes .efex-box h6:after,
.efex-boxes .efex-box .h1:after,
.efex-boxes .efex-box .h2:after,
.efex-boxes .efex-box .h3:after,
.efex-boxes .efex-box .h4:after,
.efex-boxes .efex-box .h5:after,
.efex-boxes .efex-box .h6:after {
  display: none;
}

.efex-dots-image {
  padding-top: 10px;
}
.efex-dots-image img {
  display: none;
}
.efex-dots-image h3 {
  color: var(--cieb-blue);
}

.efex-dots-text {
  margin-top: -30px;
}

.efex-dots .efex-dots-text h1:after,
.efex-dots .efex-dots-text h2:after,
.efex-dots .efex-dots-text h3:after,
.efex-dots .efex-dots-text h4:after,
.efex-dots .efex-dots-text h5:after,
.efex-dots .efex-dots-text h6:after,
.efex-dots .efex-dots-text .h1:after,
.efex-dots .efex-dots-text .h2:after,
.efex-dots .efex-dots-text .h3:after,
.efex-dots .efex-dots-text .h4:after,
.efex-dots .efex-dots-text .h5:after,
.efex-dots .efex-dots-text .h6:after {
  display: none;
}
.efex-dots .efex-dots-text li {
  position: relative;
  top: 30px;
  color: var(--white);
  font-size: 1.6rem;
}
.efex-dots .efex-dots-text li::after {
  content: " ";
  z-index: -1;
  top: -22px;
  left: -58px;
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50% !important;
  display: block;
  background-color: var(--cieb-cyan);
}
.efex-dots .efex-dots-text li h4 {
  color: var(--cieb-cyan);
  margin-left: 40px;
  font-size: 1.2rem;
  line-height: 1.6rem;
}
.efex-dots .efex-dots-text li h4 span {
  color: var(--cieb-blue);
  text-transform: none;
  font-size: 1rem;
  display: block;
  width: 100%;
}

.efex-general-row h3 {
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}

.efex-general-row h4 {
  color: var(--cieb-pink);
  font-size: 1.2rem;
  line-height: 1.6rem;
}

.efex-general-row h4:after {
  display: none;
}

@media (min-width: 576px) {
  .efex-dots {
    margin-top: 40px;
    position: relative;
  }
  .efex-dots-image {
    padding-top: 0;
    position: absolute;
  }
  .efex-dots-image img {
    width: 470px;
    border-radius: 50% !important;
    position: relative;
    top: -400px;
    right: 40px;
    z-index: -2;
    display: block;
  }
  .efex-dots-image::before {
    content: url(../imgs/efex-dots-bg.svg);
    display: block;
    width: 250px;
    position: absolute;
    right: -95px;
    top: -100px;
    z-index: -1;
  }
  .efex-dots-image h3 {
    color: var(--white);
    font-size: 1.2rem;
    padding-left: 15px;
    padding-top: 30px;
  }

  .efex-dots-text {
    margin-top: 0;
    padding-top: 150px;
  }

  .efex-dots .efex-dots-text li h4 span {
    width: 90%;
  }
}

@media (min-width: 768px) {
}

@media (min-width: 992px) {
  .efex-boxes .efex-box h3 {
    text-align: center !important;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
  }
  .efex-boxes .efex-box p {
    text-align: center !important;
    color: var(--white);
    font-size: 0.85rem;
    line-height: 1.2rem;
  }
  .efex-dots-image img {
    width: 470px;
    border-radius: 50% !important;
    position: relative;
    top: -200px;
    right: 20px;
    z-index: -2;
  }
  .efex-dots-image::before {
    content: url(../imgs/efex-dots-bg.svg);
    display: block;
    width: 250px;
    position: absolute;
    right: 25px;
    top: 40px;
  }
  .efex-dots-image h3 {
    color: var(--white);
    font-size: 1.2rem;
    padding-left: 25px;
    padding-top: 0px;
  }

  .efex-dots-text {
    padding-top: 0;
  }
}

@media (min-width: 1200px) {
  .efex-dots-image img {
    width: 520px;
    border-radius: 50% !important;
    position: relative;
    top: -220px;
    right: 10px;
    z-index: -2;
  }
  .efex-dots-image::before {
    content: url(../imgs/efex-dots-bg.svg);
    display: block;
    width: 320px;
    position: absolute;
    right: 15px;
    top: 40px;
  }
  .efex-dots-image h3 {
    color: var(--white);
    font-size: 1.2rem;
    padding-left: 55px;
    padding-top: 10px;
  }
  .efex-dots .efex-dots-text li h4 span {
    width: 60%;
  }
}

/*-- end --*/
/*-- quem-somos --*/
.quem-somos {
}
.quem-somos-principios {
  padding: 3rem;
}
.quem-somos-principios h3 {
  text-align: center;
}
.quem-somos-principios h3::after {
  background-color: var(--white);
  margin: 0 auto;
}
.quem-somos-principios-interno {
  border-radius: 0.3rem;
  padding: 2rem;
}
.quem-somos-principios-item {
  padding: 1rem;
}
.quem-somos-principios-item h3 {
  font-size: 1.1rem;
  color: var(--cieb-green);
  text-align: left;
}
.quem-somos-principios-item h3::after {
  display: none;
}
.manifesto-boxes {
  display: flex;
  flex-wrap: wrap;
}
.manifesto-boxes .panel-grid-cell {
  display: flex;
  flex-wrap: wrap;
}
.manifesto-boxes .widget {
  display: flex;
  flex-wrap: wrap;
}
.manifesto-boxes .manifesto-box {
  background: var(--cieb-green);
  display: flex;
  flex: inherit;
  height: 100%;
  text-align: left !important;
  color: var(--cieb-blue);
  border-radius: 0.25rem;
  background-repeat: no-repeat !important;
}
.manifesto-boxes .manifesto-box h3 {
  text-align: center !important;
  color: var(--cieb-blue);
  font-size: 1.4rem;
  margin-top: 5rem;
  margin-bottom: 9rem;
  text-transform: none;
  font-weight: 300;
}
.manifesto-boxes .manifesto-box p {
  text-align: left !important;
  color: var(--cieb-blue);
  font-size: 1.1rem;
  line-height: 1.6rem;
}
.manifesto-boxes .manifesto-box h1:after,
.manifesto-boxes .manifesto-box h2:after,
.manifesto-boxes .manifesto-box h3:after,
.manifesto-boxes .manifesto-box h4:after,
.manifesto-boxes .manifesto-box h5:after,
.manifesto-boxes .manifesto-box h6:after,
.manifesto-boxes .manifesto-box .h1:after,
.manifesto-boxes .manifesto-box .h2:after,
.manifesto-boxes .manifesto-box .h3:after,
.manifesto-boxes .manifesto-box .h4:after,
.manifesto-boxes .manifesto-box .h5:after,
.manifesto-boxes .manifesto-box .h6:after {
  display: none;
}

.quem-somos-parceiros {
  padding: 3rem;
}
.quem-somos-parceiros h3 {
  text-align: center;
}
.quem-somos-parceiros h3::after {
  margin: 0 auto;
}
.quem-somos-parceiros-interno {
  padding: 2rem;
}
.quem-somos-parceiros-item h3 {
  font-size: 1.1rem;
  color: var(--cieb-blue);
}
.quem-somos-parceiros-item h3::after {
  height: 0.5rem;
  background-color: var(--cieb-pink);
}

.sow-accordion-panel-header {
  border-radius: 0.3rem;
}
.sow-accordion-panel-content {
  border-radius: 0.3rem;
}
.sow-accordion-panel-border {
  padding: 2rem !important;
  background-color: #f1f1f1!important;
}
.sow-accordion-panel-title {
  font-weight: 700 !important;
}
.sow-accordion-panel-border a{
  font-weight: 700!important;
  color: var(--cieb-cyan)!important;
}
/*-- end --*/

/*-- contato --*/
contato-boxes {
  display: flex;
  flex-wrap: wrap;
}
.contato-boxes .panel-grid-cell {
  display: flex;
  flex-wrap: wrap;
}
.contato-boxes .contato-box > div,
.contato-boxes .panel-grid-cell > div {
  width: 100%;
}
.contato-boxes .widget {
  display: flex;
  flex-wrap: wrap;
}
.contato-boxes .contato-box {
  background: var(--cieb-light);
  display: flex;
  flex: inherit;
  height: 100%;
  text-align: center !important;
  color: var(--cieb-blue);
  border-radius: 0.25rem;
  width: 100%;
}
.contato-boxes .contato-box h3 {
  text-align: center !important;
  color: var(--cieb-blue);
  font-size: 1.4rem;
  margin-bottom: 1.6rem;
}
.contato-boxes .contato-box p {
  text-align: center !important;
  color: var(--cieb-blue);
  font-size: 1rem;
  line-height: 1.6rem;
}

.contato-boxes .contato-box.contato-box-form,
.contato-boxes .contato-box.contato-box-form p {
  text-align: left !important;
}

.contato-boxes .contato-box h1:after,
.contato-boxes .contato-box h2:after,
.contato-boxes .contato-box h3:after,
.contato-boxes .contato-box h4:after,
.contato-boxes .contato-box h5:after,
.contato-boxes .contato-box h6:after,
.contato-boxes .contato-box .h1:after,
.contato-boxes .contato-box .h2:after,
.contato-boxes .contato-box .h3:after,
.contato-boxes .contato-box .h4:after,
.contato-boxes .contato-box .h5:after,
.contato-boxes .contato-box .h6:after {
  display: none;
}

/*-- end --*/

/*-- timeline --*/
.strapline h1:after,
.strapline h2:after,
.strapline h3:after,
.strapline h4:after,
.strapline h5:after,
.strapline h6:after,
.strapline .h1:after,
.strapline .h2:after,
.strapline .h3:after,
.strapline .h4:after,
.strapline .h5:after,
.strapline .h6:after {
  display: none !important;
}

/*-- end --*/

/*-- cieb-na-midia --*/
.cieb-na-midia ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.cieb-na-midia ul h6 {
  margin-bottom: 0.2rem;
  margin-top: 1.6rem;
}
.cieb-na-midia p {
  font-size: 0.9rem;
}
/*-- end --*/

.bg-linear-gradient {
  background : -moz-linear-gradient(50% 0% -90deg,rgba(62, 199, 243, 1) 10.8%,rgba(63, 195, 240, 1) 26.39%,rgba(65, 184, 232, 1) 41.02%,rgba(68, 165, 218, 1) 55.28%,rgba(73, 138, 199, 1) 69.29%,rgba(79, 104, 174, 1) 83.14%,rgba(87, 62, 143, 1) 96.68%,rgba(89, 51, 135, 1) 100%);
  background : -webkit-linear-gradient(-90deg, rgba(62, 199, 243, 1) 10.8%, rgba(63, 195, 240, 1) 26.39%, rgba(65, 184, 232, 1) 41.02%, rgba(68, 165, 218, 1) 55.28%, rgba(73, 138, 199, 1) 69.29%, rgba(79, 104, 174, 1) 83.14%, rgba(87, 62, 143, 1) 96.68%, rgba(89, 51, 135, 1) 100%);
  background : -webkit-gradient(linear,50% 0% ,50% 100% ,color-stop(0.108,rgba(62, 199, 243, 1) ),color-stop(0.2639,rgba(63, 195, 240, 1) ),color-stop(0.4102,rgba(65, 184, 232, 1) ),color-stop(0.5528,rgba(68, 165, 218, 1) ),color-stop(0.6929,rgba(73, 138, 199, 1) ),color-stop(0.8314,rgba(79, 104, 174, 1) ),color-stop(0.9668,rgba(87, 62, 143, 1) ),color-stop(1,rgba(89, 51, 135, 1) ));
  background : -o-linear-gradient(-90deg, rgba(62, 199, 243, 1) 10.8%, rgba(63, 195, 240, 1) 26.39%, rgba(65, 184, 232, 1) 41.02%, rgba(68, 165, 218, 1) 55.28%, rgba(73, 138, 199, 1) 69.29%, rgba(79, 104, 174, 1) 83.14%, rgba(87, 62, 143, 1) 96.68%, rgba(89, 51, 135, 1) 100%);
  background : -ms-linear-gradient(-90deg, rgba(62, 199, 243, 1) 10.8%, rgba(63, 195, 240, 1) 26.39%, rgba(65, 184, 232, 1) 41.02%, rgba(68, 165, 218, 1) 55.28%, rgba(73, 138, 199, 1) 69.29%, rgba(79, 104, 174, 1) 83.14%, rgba(87, 62, 143, 1) 96.68%, rgba(89, 51, 135, 1) 100%);
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#3EC7F3', endColorstr='#593387' ,GradientType=0)";
  background : linear-gradient(180deg, rgba(62, 199, 243, 1) 10.8%, rgba(63, 195, 240, 1) 26.39%, rgba(65, 184, 232, 1) 41.02%, rgba(68, 165, 218, 1) 55.28%, rgba(73, 138, 199, 1) 69.29%, rgba(79, 104, 174, 1) 83.14%, rgba(87, 62, 143, 1) 96.68%, rgba(89, 51, 135, 1) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3EC7F3',endColorstr='#593387' , GradientType=0);
}

