
/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/


@font-face {
    font-family: 'interfacethin';
    src: url('../fonts/if_std_th-webfont.woff2') format('woff2'),
         url('../fonts/if_std_th-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'interfacebold';
    src: url('../fonts/if_std_bd-webfont.woff2') format('woff2'),
         url('../fonts/if_std_bd-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'interfaceblack';
    src: url('../fonts/if_std_blk-webfont.woff2') format('woff2'),
         url('../fonts/if_std_blk-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'interfacelight';
    src: url('../fonts/if_std_lt-webfont.woff2') format('woff2'),
         url('../fonts/if_std_lt-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'interfaceregular';
    src: url('../fonts/if_std_rg-webfont.woff2') format('woff2'),
         url('../fonts/if_std_rg-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'kings_caslonregular';
    src: url('../fonts/kingscaslon_std_rg_4-webfont.woff2') format('woff2'),
         url('../fonts/kingscaslon_std_rg_4-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'kings_caslonbold';
    src: url('../fonts/kingscaslon_std_bd_3-webfont.woff2') format('woff2'),
         url('../fonts/kingscaslon_std_bd_3-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

@font-face {
    font-family: 'kings_caslonitalic';
    src: url('../fonts/kingscaslon_std_it_4-webfont.woff2') format('woff2'),
         url('../fonts/kingscaslon_std_it_4-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'interfaceregular';
  color: #444444;
}

a {
  color: #67b0d1;
}

a:hover {
  color: #8ec4dd;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
}

#main {
  margin-top: 90px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  transition: all 0.5s;
  padding: 0;
}

#header.header-transparent {
  background: transparent;
}

#header.header-scrolled {
  background: rgba(250, 250, 250, 0.9);
  padding: 0;
}

#header h2 {font-family: 'interfaceblack'; color: #000; font-size: 22px; display: flex; text-transform: uppercase; 
padding-left: 65px; padding-top: 10px; letter-spacing: 2px; }
#header h2 span {  font-family: 'interfaceregular'; padding-left: 5px;
    font-size: 23px; }


#page-historias #header h2 { display: none; } 

#header .top { height: 30px; background-color: #e8203f; margin-bottom: 15px; }

#header .logo { margin-bottom: 20px; }

@media (max-width: 768px) {
  #header.header-scrolled {
    padding: 15px 0;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
.nav-menu, .nav-menu * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-menu > ul > li {
  position: relative;
  white-space: nowrap;
  float: left;
  background: rgba(255, 255, 255, 0.2);
}

.nav-menu a {
  display: block;
  position: relative;
  color: #2f4d5a;
  padding: 20px 15px;
  transition: 0.3s;
  font-size: 13px;
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
}

.nav-menu a:hover, .nav-menu .active > a, .nav-menu li:hover > a {
  background: rgba(255, 255, 255, 0.2);
  text-decoration: none;
}

.header-scrolled .nav-menu > ul > li {
  background: none;
}

.header-scrolled .nav-menu a {
  color: #fff;
}

.header-scrolled .nav-menu a:hover, .header-scrolled .nav-menu .active > a, .header-scrolled .nav-menu li:hover > a {
  background: rgba(255, 255, 255, 0.2);
}

.nav-menu .drop-down ul {
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% + 30px);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  padding: 10px 0;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: ease all 0.3s;
}

.nav-menu .drop-down:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.nav-menu .drop-down li {
  min-width: 180px;
  position: relative;
}

.nav-menu .drop-down ul a {
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  color: #25607a;
}

.nav-menu .drop-down ul a:hover, .nav-menu .drop-down ul .active > a, .nav-menu .drop-down ul li:hover > a {
  color: #67b0d1;
}

.nav-menu .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 5px;
}

.nav-menu .drop-down .drop-down ul {
  top: 0;
  left: calc(100% - 30px);
}

.nav-menu .drop-down .drop-down:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
}

.nav-menu .drop-down .drop-down > a {
  padding-right: 35px;
}

.nav-menu .drop-down .drop-down > a:after {
  content: "\eaa0";
  font-family: IcoFont;
  position: absolute;
  right: 15px;
}

@media (max-width: 1366px) {
  .nav-menu .drop-down .drop-down ul {
    left: -90%;
  }
  .nav-menu .drop-down .drop-down:hover > ul {
    left: -100%;
  }
  .nav-menu .drop-down .drop-down > a:after {
    content: "\ea9d";
  }
}

/* Mobile Navigation */
.mobile-nav-toggle {
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
}

.mobile-nav-toggle i {
  color: #fff;
}

.mobile-nav {
  position: fixed;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  z-index: 9999;
  overflow-y: auto;
  background: #fff;
  transition: ease-in-out 0.2s;
  opacity: 0;
  visibility: hidden;
  border-radius: 10px;
  padding: 10px 0;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #2f4d5a;
  padding: 10px 20px;
  font-weight: 500;
  outline: none;
}

.mobile-nav a:hover, .mobile-nav .active > a, .mobile-nav li:hover > a {
  color: #67b0d1;
  text-decoration: none;
}

.mobile-nav .drop-down > a:after {
  content: "\ea99";
  font-family: IcoFont;
  padding-left: 10px;
  position: absolute;
  right: 15px;
}

.mobile-nav .active.drop-down > a:after {
  content: "\eaa1";
}

.mobile-nav .drop-down > a {
  padding-right: 35px;
}

.mobile-nav .drop-down ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .drop-down li {
  padding-left: 20px;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(30, 48, 56, 0.6);
  overflow: hidden;
  display: none;
  transition: ease-in-out 0.2s;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: url("../img/hero-bg.jpg") #e8203f top center no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: -90px;
}

#hero .hero-container {
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;

}


#hero .hero-container img.logo-claro-branco { margin-bottom: 90px; width: 250px; }


#hero h1 {
  margin: 0 0 10px 0;
  font-size: 50px;
  text-transform: uppercase;
  color: #fff;
  font-family: 'interfaceblack';
  letter-spacing: 2px;
}

#hero h2 {
  color: #fff;
  text-transform: uppercase;
  font-family: 'interfacelight'; font-size: 24px; 
}

#hero h3 {
  color: #fff;
  font-family: 'interfacelight'; font-size: 22px; 
  margin-top: 20px;
  margin-bottom: 20px;
	padding: 0 20px;
}

#hero .btn-get-started {
  font-size: 36px;
  display: inline-block;
  padding: 4px 0;
  border-radius: 50px;
  transition: 0.3s ease-in-out;
  margin: 10px;
  width: 64px;
  height: 64px;
  text-align: center;
  color: #fff;
}

#hero .btn-get-started:hover {
  padding-top: 8px;

}



@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
}

.section-bg {
  background-color: #f4f9fc;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  position: relative;
  margin-bottom: 30px;
  color: #2f4d5a;
  z-index: 2;
}

.section-title h2::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 122px;
  height: 66px;
  background: url(../img/section-title-bg.png) no-repeat;
  z-index: -1;
}

.section-title p {
  margin-bottom: 0;
}


/*--------------------------------------------------------------
# about
--------------------------------------------------------------*/
#about { background-color: #e8203f; padding: 90px 0;     text-align: justify; }
#about p { color: #fff; font-family: 'interfacelight'; font-size: 20px;  }
#about p span {  font-family: 'interfacebold';  }
#about p a img {  margin: 40px auto 0; display: block;}

/*--------------------------------------------------------------
# menu-projetos
--------------------------------------------------------------*/
.projetos { display: block; padding: 90px 0; }
.projetos h2 { color: #000; font-family: 'interfaceblack';  text-transform: uppercase; font-size: 34px; margin-bottom: 50px; }
.box-menu { display: block; }
.box-menu label { 
  color: #000; text-transform: uppercase; font-family: 'interfaceregular'; 
font-size: 20px; letter-spacing: 2px; margin: 0; 
}


.box-menu label a { 
  color: #000; text-transform: uppercase; font-family: 'interfaceregular'; 
font-size: 19px;line-height: 22px; letter-spacing: 2px; margin: 0 0 0; display: block; 
}

/*.box-menu label a::before {
    content: "";
    position: absolute;
    left: 15px;
    top: 0;
    width: 40px;
    height: 8px;
    background: #e8203f;
    z-index: -1;
}*/

.box-menu label a:hover { 
text-transform: uppercase; font-family: 'interfacebold';  
}


.box-menu .btn { 
  border-radius: 0; width: 100%; display: block; text-align: left;
  background-color: #dcddde; border: 0; border-top: 8px solid #000;
  color: #000; font-family: 'interfacebold';  text-transform: uppercase; font-size: 14px;
}
.box-menu .dropdown-menu { background-color: #dcddde; width: 100%; }
.box-menu .dropdown-item { font-family: 'interfacebold';  text-transform: uppercase; font-size: 11px; padding: .25rem 1rem; }
.box-menu .dropdown-item:hover { color: #fff; background-color: #e8203f; }

.box-menu .dropdown-toggle::after { float: right; margin-top: 5px; color: #f4565b; }

.show>.btn-secondary.dropdown-toggle { background-color: #e8203f; color: #fff; border-color: #000; }
/*--------------------------------------------------------------
# backgrounds
--------------------------------------------------------------*/

#dupla, #educonexao, #trajetoria, #mobile { 
background-size: cover !important; background-position: center !important; padding: 50px 0;  }

#dupla { background: url(../img/back/dupla.jpg) no-repeat;  }
#educonexao { background: url(../img/back/educonexao.jpg) no-repeat;  }
#trajetoria {background: url(../img/back/trajetoria.jpg) no-repeat; }
#mobile { background: url(../img/back/mobile.jpg) no-repeat;  }


#asume, #bem-estar, #conexao, #teleton, #exposicao, #asmb { 
background-size: cover !important; background-position: center !important; padding: 50px 0;  }

#asume { background: url(../img/back/asume.jpg) no-repeat;  }
#bem-estar { background: url(../img/back/bem-estar.jpg) no-repeat;  }
#conexao { background: url(../img/back/conexao.jpg) no-repeat;  }
#teleton { background: url(../img/back/teleton.jpg) no-repeat;  }
#exposicao { background: url(../img/back/exposicao.jpg) no-repeat;  }
#asmb { background: url(../img/back/asmb.jpg) no-repeat;  }

#pincha, #recicla, #fatura-paper, #meio, #bike, #energia { 
background-size: cover !important; background-position: center !important; padding: 50px 0;  }

#pincha { background: url(../img/back/pincha.jpg) no-repeat;  }
#recicla { background: url(../img/back/recicla.jpg) no-repeat;  }
#fatura-paper { background: url(../img/back/fatura-paper.jpg) no-repeat;  }
#meio { background: url(../img/back/meio.jpg) no-repeat;  }
#bike { background: url(../img/back/bike.jpg) no-repeat;  }
#energia { background: url(../img/back/energia.jpg) no-repeat;  }


#preparadao, cultura-claro { 
background-size: cover !important; background-position: center !important; padding: 50px 0;  }

#preparadao { background: url(../img/back/preparadao.jpg) no-repeat; } 
#cultura-claro { background: url(../img/back/cultura-claro.jpg) no-repeat; } 



#dialogo-gigantes { 
  background: url(../img/back/dialogo-gigantes.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding: 50px 0;  }

.projetos { width: 100%;  }
.projetos .titulo { background: #e8203f; height: 50px; padding: 5px 15px; }
.projetos .titulo h1 {  color: #fff; font-family: 'interfaceblack'; font-size: 28px; }

.projetos .descricao { background: #fff; margin: 10px 0; padding: 35px;}
.projetos .descricao p { font-family: 'interfaceregular'; font-size: 14px; color: #000;  }
.projetos .descricao p span {font-family: 'interfacebold';  }

.projetos .rodape { background: #e8203f; padding: 25px; }
.projetos .rodape p { font-family: 'interfacebold';  font-size: 14px; color: #fff; margin: 0;  }
.projetos .rodape p span { font-family: 'interfacelight';    }

/*.legenda { margin-top: 100px; }
.legenda p { font-family: 'interfaceregular'; font-weight: bold; font-size: 18px; color: #000; text-align: right; }*/


/*--------------------------------------------------------------
# Icon Box
--------------------------------------------------------------*/

 .icon-box {
  margin-top: 30px;

}

.icon-box h1 {
  font-size: 36px;
  color: #e8203f;
  font-family: 'interfaceblack';
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 5px;
  margin: 0 0 15px 0;
  line-height: 1;
}

.icon-box h2 {
  font-size: 16px;
  color: #000000;
  font-family: 'interfaceregular';
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: .9px;
  margin: 0;
}

.icon-box h3 {
  font-size: 16px;
  color: #000000;
  font-family: 'interfacelight';
  text-transform: uppercase;
  margin: 45px 0;
}


.icon-box h4 {
  font-size: 20px;
  color: #000000;
   font-family: 'kings_caslonbold';
  font-weight: bold;
  margin: 0;
}


.icon-box p {
  font-size: 14px;
  color: #000000;
  font-family: 'kings_caslonregular';
}

@media (max-width: 768px) {

.icon-box h1, .icon-box h2, .icon-box h3, .icon-box h4 { text-align: center;}
.icon-box p { text-align: justify; }
}

/*--------------------------------------------------------------
# Historias
--------------------------------------------------------------*/

.historia { background: #ecece9; border-top: 10px solid  #e8203f; padding: 0 0 60px;  }


.historia .titulo h2 {
  font-family: 'interfacelight';
  font-size: 20px;
  color: #000;
  text-align: left;
  text-transform: uppercase;
  margin-top: 80px;
  margin-bottom: 50px;
  padding-left: 20px;
}

.historia .titulo h2 span {
  font-family: 'interfacebold';
}


.historia .titulo h2::before {
    content: "";
    position: absolute;
    left: 0;
    top: 30px;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 8px;
    background: #e8203f;
    z-index: -1;
}

.historia .item-box, .projetos .item-box {
  width: 20%;
  padding: 0 10px;
}

.historia .member .pic {
  overflow: hidden;
  transition: transform .2s;
}


.historia .member .pic:hover {
transform: scale(.9);
}


.historia .member .member-info {
  color: #000;
  text-align: center;
  text-transform: uppercase;

}


.historia .member h3 {
  margin-bottom: 30px;
  font-size: 28px;
  font-family: 'interfaceblack';
  
}

.historia .member span {
  display: block;
  font-size: 14px;
  font-family: 'interfaceregular';
  
}

.historia .member h4 {
  font-size: 14px;
  font-family: 'interfacebold';

  
}

@media (max-width: 1200px) {
.historia .member h3 {font-size: 20px;}
.historia .member span {font-size: 12px;
}
}
@media (max-width: 992px) {
  .historia .titulo h2 { text-align: center; font-size: 40px; padding-left: 0; }
  .historia .titulo h2 span { display: block; font-size: 20px; }
  .historia .titulo h2::before { display: block; margin: auto; top: 0;  width: 100px; position: relative; transform: translate(0, -50%); }
  .historia .item-box, .projetos .item-box { width: 100%; margin-bottom: 30px; }
  .historia .member .pic { text-align: center; }
  .historia .member h3 {font-size: 26px; margin-bottom: 10px; padding: 0 15px;}
  .historia .member span, .historia .member h4 { font-size: 18px;}
  .historia .member h4 br { display: none; }
  
	#about {  padding: 50px 0; }
	
	.projetos  {  padding: 50px 20px 30px; }
	
	.titulo-cartas h2 { text-align: center;}
	.titulo-cartas h2 span { display: block;}
}
/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  z-index: 1;
}

.services .icon-box::before {
  content: '';
  position: absolute;
  background: white;
  right: 0;
  left: 0;
  bottom: 0;
  top: 100%;
  transition: all 0.3s;
  z-index: -1;
}

.services .icon-box:hover::before {
  background: #67b0d1;
  top: 0;
  border-radius: 0px;
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 48px;
  line-height: 1;
  color: #67b0d1;
  transition: all 0.3s ease-in-out;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
}

.services .title a {
  color: #111;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .icon-box:hover .title a, .services .icon-box:hover .description {
  color: #fff;
}

.services .icon-box:hover .icon i {
  color: #fff;
}

/*--------------------------------------------------------------
# Counts
--------------------------------------------------------------*/
.counts {
  padding-bottom: 30px;
}

.counts .count-box {
  padding: 30px;
  width: 100%;
}

.counts .count-box i {
  display: block;
  font-size: 44px;
  color: #67b0d1;
  float: left;
}

.counts .count-box span {
  font-size: 48px;
  line-height: 40px;
  display: block;
  font-weight: 700;
  color: #2f4d5a;
  margin-left: 60px;
}

.counts .count-box p {
  padding: 15px 0 0 0;
  margin: 0 0 0 60px;
  font-family: "Raleway", sans-serif;
  font-size: 14px;
  color: #49788c;
}

.counts .count-box a {
  font-weight: 600;
  display: block;
  margin-top: 20px;
  color: #49788c;
  font-size: 15px;
  font-family: "Poppins", sans-serif;
  transition: ease-in-out 0.3s;
}

.counts .count-box a:hover {
  color: #6e9fb4;
}

/*--------------------------------------------------------------
# Cta
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(rgba(103, 176, 209, 0.8), rgba(103, 176, 209, 0.8)), url("../img/cta-bg.jpg") fixed center center;
  background-size: cover;
  padding: 60px 0;
}

.cta h3 {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

.cta p {
  color: #fff;
}

.cta .cta-btn {
  font-family: "Raleway", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 25px;
  transition: 0.5s;
  margin-top: 10px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
}

.cta .cta-btn:hover {
  border-color: #fff;
}

/*--------------------------------------------------------------
# Portfolio
--------------------------------------------------------------*/
.portfolio .portfolio-item {
  margin-bottom: 30px;
}

.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 auto 35px auto;
  list-style: none;
  text-align: center;
  background: #ecf5f9;
  border-radius: 50px;
  padding: 2px 15px;
}

.portfolio #portfolio-flters li {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px 8px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
  color: #2f4d5a;
  margin-bottom: 5px;
  transition: all 0.3s ease-in-out;
}

.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  color: #67b0d1;
}

.portfolio #portfolio-flters li:last-child {
  margin-right: 0;
}

.portfolio .portfolio-wrap {
  transition: 0.3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.portfolio .portfolio-wrap::before {
  content: "";
  background: rgba(255, 255, 255, 0.5);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  transition: all ease-in-out 0.3s;
  z-index: 2;
  opacity: 0;
}

.portfolio .portfolio-wrap .portfolio-links {
  opacity: 1;
  left: 0;
  right: 0;
  bottom: -60px;
  z-index: 3;
  position: absolute;
  transition: all ease-in-out 0.3s;
  display: flex;
  justify-content: center;
}

.portfolio .portfolio-wrap .portfolio-links a {
  color: #fff;
  font-size: 28px;
  text-align: center;
  background: rgba(103, 176, 209, 0.75);
  transition: 0.3s;
  width: 50%;
}

.portfolio .portfolio-wrap .portfolio-links a:hover {
  background: rgba(103, 176, 209, 0.95);
}

.portfolio .portfolio-wrap .portfolio-links a + a {
  border-left: 1px solid #8ec4dd;
}

.portfolio .portfolio-wrap:hover::before {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
}

.portfolio .portfolio-wrap:hover .portfolio-links {
  opacity: 1;
  bottom: 0;
}

/*--------------------------------------------------------------
# Portfolio Details
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 30px;
}

.portfolio-details .portfolio-details-container {
  position: relative;
}

.portfolio-details .portfolio-details-carousel {
  position: relative;
  z-index: 1;
}

.portfolio-details .portfolio-details-carousel .owl-nav, .portfolio-details .portfolio-details-carousel .owl-dots {
  margin-top: 5px;
  text-align: left;
}


.portfolio-details .portfolio-details-carousel .owl-dot {
  display: inline-block;
  margin: 0 10px 0 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.portfolio-details .portfolio-details-carousel .owl-dot.active {
  background-color: #67b0d1 !important;
}

.portfolio-details .portfolio-info {
  padding: 30px;
  position: absolute;
  right: 0;
  bottom: -70px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.portfolio-details .portfolio-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.portfolio-details .portfolio-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.portfolio-details .portfolio-info ul li + li {
  margin-top: 10px;
}

.portfolio-details .portfolio-description {
  padding-top: 50px;
}

.portfolio-details .portfolio-description h2 {
  width: 50%;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-details .portfolio-description p {
  padding: 0 0 0 0;
}

@media (max-width: 768px) {
  .portfolio-details .portfolio-description h2 {
    width: 100%;
  }
  .portfolio-details .portfolio-info {
    position: static;
    margin-top: 30px;
  }
}

/*--------------------------------------------------------------
# Testimonials
--------------------------------------------------------------*/

.titulo-cartas { background-color: #e8203f; padding: 45px 0 10px; }

.titulo-cartas h2 { color: #fff; font-family: 'interfaceblack'; font-size: 35px; letter-spacing: 1px;}
.titulo-cartas h2 span { padding-left: 10px; font-family: 'interfaceregular'; font-size: 18px; text-transform: uppercase; letter-spacing: 1px;}

.testimonials { background-color: #ecece9; border: 20px solid #e8203f; padding:30px 0 0; }


.testimonials .testimonial-item {
  box-sizing: content-box;
  width: 100%;
  /*min-height: 320px;*/
}

.testimonials .testimonial-item .testimonial-img {
  margin: 0;
  width: 100%;

}

.testimonials .testimonial-item h3 {
  font-size: 42px;
  margin: 0 0 20px;
  color: #000;
  font-family: 'interfaceblack';
  line-height: 40px;
}

.testimonials .testimonial-item h4 {
  font-size: 20px;
  color: #000;
  margin: 0 0 30px;
  font-family: 'interfacebold';
}

.testimonials .testimonial-item h4 span {
  font-family: 'interfacelight';
  font-style: italic;
}

.testimonials .testimonial-item p {
  font-size: 14px;
  color: #000;
  margin: 0 0 20px;
  font-family: 'interfaceregular';
  letter-spacing: 0;
}

.testimonials .testimonial-item p span { font-family: 'interfacebold';  }

.testimonials .owl-nav, .testimonials .owl-dots {
 margin-top: -56px;
  margin-bottom: 20px;
  text-align: center; 
	position: relative;
	z-index: 99999;
}

.testimonials .owl-nav, .testimonials .owl-dots:after {
  color: #000000;
  font-family: 'interfacethin';
  text-transform: uppercase;	
  content: "clique para ver mais";
	font-size: 16px;
	padding-left: 10px;
  }

.testimonials .owl-dot {
  display: inline-block;
  margin: 0 5px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd !important;
}

.testimonials .owl-dot.active {
  background-color: #e8203f !important;
}

@media (max-width: 767px) {
  .testimonials {margin: 0 ;}
	.testimonials .testimonial-item h3, .testimonials .testimonial-item h4 {text-align: center; margin-top: 30px; padding: 0 30px;}
	
	.testimonials .testimonial-item p {text-align: justify; padding: 0 30px;}
	
	#footer.footer-home {padding:  0 !important; text-align: center;}
	#footer .footer-info .pdf {margin-left: 0;}
}


/*--------------------------------------------------------------
# Contact
--------------------------------------------------------------*/
.contact {
  padding-bottom: 80px;
}

.contact .info-box {
  color: #444444;
  background: #fff;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 30px 0;
}

.contact .info-box i {
  font-size: 32px;
  color: #67b0d1;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #f0f7fa;
}

.contact .info-box h3 {
  font-size: 20px;
  color: #777777;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

.contact .html-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  background: #fff;
}

.contact .html-email-form .validate {
  display: none;
  color: red;
  margin: 0 0 15px 0;
  font-weight: 400;
  font-size: 13px;
}

.contact .html-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

.contact .html-email-form .error-message br + br {
  margin-top: 25px;
}

.contact .html-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

.contact .html-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

.contact .html-email-form .loading:before {
  content: "";
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid #18d26e;
  border-top-color: #eee;
  -webkit-animation: animate-loading 1s linear infinite;
  animation: animate-loading 1s linear infinite;
}

.contact .html-email-form input, .contact .html-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}

.contact .html-email-form input::focus, .contact .html-email-form textarea::focus {
  background-color: #67b0d1;
}

.contact .html-email-form input {
  padding: 20px 15px;
}

.contact .html-email-form textarea {
  padding: 12px 15px;
}

.contact .html-email-form button[type="submit"] {
  background: #67b0d1;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

.contact .html-email-form button[type="submit"]:hover {
  background: #8ec4dd;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  background: #e8203f;
  padding: 0 0 30px 0;
  color: #000;
  font-size: 14px;
}

#footer .footer-info { margin-top: 100px; margin-bottom: 30px; }
#footer .footer-info .pdf { margin-left: 30px; }
#footer .footer-info a h3 { color: #000; font-size: 20px; font-family: 'interfaceblack'; text-transform: uppercase; margin-top: 20px;}

#footer .footer-info a:hover h3 {color: #e8203f;}

.footer-home { background: #fff !important; padding: 100px 0 !important; }

#footer .copyright p  {
  font-size: 14px;
  font-family: 'interfaceregular';
}


#footer .copyright p span  {font-family: 'interfacebold';}

#footer .copyright p span a { color: #000;}
#footer .copyright p span a:hover {color: #e8203f;}

#footer .social-links a i { font-size: 25px; background: #000;
    border-radius: 100%; color: #fff; padding: 5px; margin: 0 5px 0 0; }

#footer .social-links a:hover i {background: #e8203f;} 
