/**
* Template Name: Moderna - v4.8.0
* Template URL: https://bootstrapmade.com/free-bootstrap-template-corporate-moderna/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# GERAL
--------------------------------------------------------------*/
body {
	font-family: 'Roboto', sans-serif;
	color: #444;
	background-color: #F7F3EE;
	font-weight: 400;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  color: #cac7c7;
  text-decoration: none;
}
/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  left: 15px;
  bottom: 15px;
  z-index: 99999;
  background: #000;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}
.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}
.back-to-top:hover {
  background: #000;
  color: #fff;
}
.back-to-top.active {
  visibility: visible;
  opacity: 1;
}
/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  height: 80px;
  transition: all 0.5s;
  z-index: 997;
  background: #1e4356;
}.header.header-transparent {
  background: none;
}.header.header-scrolled {
  background: rgba(244,238,231,.95);
}.header .logo h1 {
  font-size: 14px;
  margin: 0;
  padding: 4px 0;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 1px;
}.header .logo h1 a,
.header .logo h1 a:hover {
  color: #fff;
  text-decoration: none;
}.header .logo img {
  margin-top: 0;
}.main {
  margin-top: 80px;
}
/*--------------------------------------------------------------
# Navigation Menu - Mobile First
--------------------------------------------------------------*/
.navbar{
    padding:0;
}
.navbar ul{
    margin:0;
    padding:0;
    display:none;
    list-style:none;
    align-items:center;
}
.navbar li{
    position:relative;
}
.navbar a,
.navbar a:focus{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:10px 0 10px 30px;
    
    font-size:14px;
    font-weight:700;
    color:#000;
    white-space:nowrap;
    transition:.3s;
}
.navbar a i,
.navbar a:focus i{
    font-size:12px;
    line-height:0;
    margin-left:5px;
}
.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover > a{
    color:#716f70;
}
/* Mobile Navigation Toggle */
.mobile-nav-toggle{
    display:block;
    font-size:28px;
    line-height:0;
    cursor:pointer;
    transition:.5s;
}
/* Menu hamburguer */
.mobile-nav-toggle.bi-list{
    color:#000;
}

/* X de fechar */
.mobile-nav-toggle.bi-x{
    color:#fff;
}
/* Mobile Navigation */
.navbar-mobile{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    overflow:hidden;
    background:rgba(17,38,48,.9);
    transition:.3s;
}
.navbar-mobile .mobile-nav-toggle{
    position:absolute;
    top:15px;
    right:15px;
}
.navbar-mobile ul{
    display:block;
    position:absolute;
    top:55px;
    right:15px;
    bottom:15px;
    left:15px;
    padding:10px 0;
    background:#fff;
    overflow-y:auto;
    transition:.3s;
}
.navbar-mobile a,
.navbar-mobile a:focus{
    padding:10px 20px;
    font-size:15px;
    color:#000;
}
.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover > a{
    color:#000;
}
.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus{
    margin:15px;
}
.navbar-mobile .dropdown ul{
    position:static;
    display:none;
    margin:10px 20px;
    padding:10px 0;
    z-index:99;
    opacity:1;
    visibility:visible;
    background:#fff;
    box-shadow:0 0 30px rgba(127,137,161,.25);
}
.navbar-mobile .dropdown ul li{
    min-width:200px;
}
.navbar-mobile .dropdown ul a{
    padding:10px 20px;
}
.navbar-mobile .dropdown ul a i{
    font-size:12px;
}
.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover > a{
    color:#68A4C4;
}
.navbar-mobile .dropdown > .dropdown-active{
    display:block;
}
/* Desktop Navigation */
@media (min-width:992px){
    .navbar ul{
        display:flex;
    }
    .mobile-nav-toggle{
        display:none;
    }
    .navbar .dropdown ul{
        display:block;
        position:absolute;
        left:14px;
        top:calc(100% + 30px);
        margin:0;
        padding:10px 0;
        z-index:99;
        opacity:0;
        visibility:hidden;
        background:#fff;
        box-shadow:0 0 30px rgba(127,137,161,.25);
        transition:.3s;
    }
    .navbar .dropdown ul li{
        min-width:200px;
    }
    .navbar .dropdown ul a{
        padding:10px 20px;
        font-size:14px;
        text-transform:none;
        color:#1c3745;
    }
    .navbar .dropdown ul a i{
        font-size:12px;
    }
    .navbar .dropdown ul a:hover,
    .navbar .dropdown ul .active:hover,
    .navbar .dropdown ul li:hover > a{
        color:#68A4C4;
    }
    .navbar .dropdown:hover > ul{
        opacity:1;
        top:100%;
        visibility:visible;
    }
    .navbar .dropdown .dropdown ul{
        top:0;
        left:-90%;
        visibility:hidden;
    }
    .navbar .dropdown .dropdown:hover > ul{
        opacity:1;
        top:0;
        left:-100%;
        visibility:visible;
    }
}
@media (min-width:1367px){
    .navbar .dropdown .dropdown ul{
        left:calc(100% - 30px);
    }
    .navbar .dropdown .dropdown:hover > ul{
        left:100%;
    }
}
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero{
    position:relative;
    min-height:100svh;
    padding:100px 0 60px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background:#f8f5f1;
}
.hero .hero-bg{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:80% 90%;
    z-index:0;
}
.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(248,245,241,.85);
    z-index:1;
}
.hero .container{
    position:relative;
    z-index:2;
}
.hero-content{
    max-width:100%;
    text-align:center;
}
.hero-tag{
    display:inline-block;
    padding:8px 18px;
    border:1px solid #000;
    border-radius:50px;
    color:#000;
    font-size:11px;
    letter-spacing:1px;
    margin-bottom:20px;
    text-transform:uppercase;
}
.hero-content h1{
    font-family: 'Cormorant Garamond', serif;
    font-size:clamp(2rem,8vw,2.6rem);
    line-height:1.1;
    font-weight:500;
    margin-bottom:20px;
    color:#000;
}
.hero-content h1 span{
    color:#000;
}
.hero-line{
    width:80px;
    height:2px;
    background:#000;
    margin:0 auto 25px;
}
.hero-content p{
    font-size:1rem;
    line-height:1.7;
    color:#555;
    margin-bottom:30px;
}
.hero-btn{
    display:inline-block;
    padding:14px 30px;
    border-radius:50px;
    background:#000;
    color:#fff;
    text-decoration:none;
    font-weight:600;
    transition:background .3s ease,color .3s ease;
}
.hero-btn:hover{
    background:#716f70;
    color:#fff;
}
/* TABLET */
@media (min-width:768px){
    .hero-content{
        max-width:600px;
        text-align:left;
    }
    .hero-line{
        margin:0 0 30px;
    }
    .hero-content h1{
        font-size:4rem;
    }
    .hero::before{
        background:linear-gradient(
            90deg,
            rgba(248,245,241,.92) 0%,
            rgba(248,245,241,.88) 35%,
            rgba(248,245,241,.35) 60%,
            rgba(248,245,241,0) 100%
        );
    }
}
/* DESKTOP */
@media (min-width:1200px){
    .hero-content{
        max-width:650px;
    }
    .hero-content h1{
        font-size:5rem;
    }
    .hero-content p{
        font-size:1.2rem;
    }
    .hero-tag{
        font-size:14px;
    }
}
/*--------------------------------------------------------------
# Sections GERAL
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 30px;
}
.section-title h2 {
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}
.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 1px;
  background: #ddd;
  bottom: 1px;
  left: calc(50% - 60px);
}
.section-title h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 40px;
  height: 3px;
  background: #000;
  bottom: 0;
  left: calc(50% - 20px);
}
.section-title p {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# CARDS NUMEROS
--------------------------------------------------------------*/
.contador-card{
    border-radius:15px;
    transition:all .3s ease;
}
.contador-card .card-body{
    padding:20px;
}
.contador-card .purecounter{
	display:block;
	font-size:32px;
	font-weight:700;
	color:#000;
	line-height:1;
	margin-bottom:0;
}
.contador-card p{
    margin:0;
    font-size:18px;
    font-weight:600;
    color:#555;
}
.contador-card:hover{
    transform:translateY(-5px);
    box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important;
}
.contador-numero{
	display:flex;
	align-items:center;
	justify-content:center;
	margin-bottom:10px;
}

.contador-prefixo{
	font-size:32px;
	font-weight:700;
	color:#000;
	margin-right:5px;
	line-height:1;
}
/* Tablet */
@media (min-width:768px){

    .contador-card .card-body{
        padding:25px;
    }
    .contador-card .purecounter,
	.contador-card .contador-prefixo{
		font-size:38px;
	}
    .contador-card p{
        font-size:15px;
    }}
/* Desktop */
@media (min-width:992px){

    .contador-card .card-body{
        padding:30px;
    }
    .contador-card .purecounter,
	.contador-card .contador-prefixo{
		font-size:46px;
	}
    .contador-card p{
        font-size:20px;
    }
}
/*--------------------------------------------------------------
# Servicos
--------------------------------------------------------------*/
.services .icon-box {
  padding: 30px;
  position: relative;
  overflow: hidden;
  margin: 0 0 40px 0;
  background: #fff;
  box-shadow: 0 5px 26px 0 rgba(68, 88, 144, 0.14);
  transition: all 0.3s ease-in-out;
  text-align: center;
  border: 1px solid #fff;
}
.services .icon {
  margin: 0 auto 20px auto;
  padding-top: 17px;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  width: 72px;
  height: 72px;
}
.services .icon i {
  font-size: 36px;
  line-height: 1;
}
.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-pink .icon {
  background: #fceef3;
}
.services .icon-box-pink .icon i {
  color: #ff689b;
}
.services .icon-box-pink:hover {
  border-color: #ff689b;
}
.services .icon-box-cyan .icon {
  background: #e6fdfc;
}
.services .icon-box-cyan .icon i {
  color: #3fcdc7;
}
.services .icon-box-cyan:hover {
  border-color: #3fcdc7;
}
.services .icon-box-green .icon {
  background: #eafde7;
}
.services .icon-box-green .icon i {
  color: #41cf2e;
}
.services .icon-box-green:hover {
  border-color: #41cf2e;
}
.services .icon-box-blue .icon {
  background: #e1eeff;
}
.services .icon-box-blue .icon i {
  color: #2282ff;
}
.services .icon-box-blue:hover {
  border-color: #2282ff;
}
/*--------------------------------------------------------------
# WHY US
--------------------------------------------------------------*/
.why-us .container {
  box-shadow: 0 5px 25px 0 rgba(214, 215, 216, 0.6);
  background: #fff;
}
.why-us .section-title{
    padding-top:60px;
}
.why-us .icon-box + .icon-box {
  margin-top: 50px;
}
.why-us .icon-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.why-us .icon-box .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: #f3f8fa;
    border-radius: 6px;
    margin-bottom: 15px;
}
.why-us .icon-box .icon i {
  color: #000;
  font-size: 32px;
}
.why-us .icon-box:hover .icon {
  background: #000;
}
.why-us .icon-box:hover .icon i {
  color: #fff;
}
.why-us .icon-box .title {
    margin-left: 0;
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
	color: #000;
}
.why-us .icon-box .title a {
  color: #000;
  transition: 0.3s;
}
.why-us .icon-box .title a:hover {
  color: #000;
}
.why-us .icon-box .description {
    margin-left: 0;
    line-height: 24px;
    font-size: 14px;
}@media (min-width: 992px) {

    .why-us .icon-box {
        display: block;
        text-align: left;
    }
    .why-us .icon-box .icon {
        float: left;
        margin-bottom: 0;
    }
    .why-us .icon-box .title,
    .why-us .icon-box .description {
        margin-left: 95px;
    }
}
.why-us .video-box {
  position: relative;
}
.why-us .video-media {
    width: 100%;
    display: block;
    padding: 15px 0;
}.why-us .video-box video {
    height: 600px;
    object-fit: cover;
}.why-us .video-box {
    position: relative;
    aspect-ratio: 16 / 9;
}
.why-us .video-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 15px 0;
}
.why-us .play-btn {
  width: 94px;
  height: 94px;
  background: radial-gradient(#000 50%, rgba(104, 164, 196, 0.4) 52%);
  border-radius: 50%;
  display: block;
  position: absolute;
  left: calc(50% - 47px);
  top: calc(50% - 47px);
  overflow: hidden;

  border: none;
  padding: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.why-us .play-btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 100;
  transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.why-us .play-btn::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
  -webkit-animation: pulsate-btn 2s;
  animation: pulsate-btn 2s;
  -webkit-animation-direction: forwards;
  animation-direction: forwards;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: steps;
  animation-timing-function: steps;
  opacity: 1;
  border-radius: 50%;
  border: 5px solid rgba(192, 7, 67, 0.7);
  top: -15%;
  left: -15%;
  background: rgba(198, 16, 0, 0);
}
.why-us .play-btn:hover::after {
  border-left: 15px solid #000;
  transform: scale(20);
}
.why-us .play-btn:hover::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-40%) translateY(-50%);
  width: 0;
  height: 0;
  border: none;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 15px solid #fff;
  z-index: 200;
  -webkit-animation: none;
  animation: none;
  border-radius: 0;
}
@-webkit-keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
@keyframes pulsate-btn {
  0% {
    transform: scale(0.6, 0.6);
    opacity: 1;
  }
  100% {
    transform: scale(1, 1);
    opacity: 0;
  }
}
/*--------------------------------------------------------------
# FEATURES
--------------------------------------------------------------*/
.features .row + .row {
  margin-top: 100px;
}
.features h3 {
  font-weight: 500;
  font-size: 24px;
  color: #000;
}
.features ul {
  list-style: none;
  padding: 0;
}
.features ul li {
  padding-bottom: 10px;
}
.features ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #68A4C4;
}
.features p:last-child {
  margin-bottom: 0;
}.feature-image {
    position: relative;
    display: inline-block;
}
.feature-image img {
	padding: 10px;
    background: #fff;
    border: 1px solid #e9ddcf;
    box-shadow: 0 20px 40px rgba(0,0,0,.10);
    width: 100%;
    display: block;
    position: relative;
    z-index: 2;
}
.feature-image::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -5px;
    width: 200px;
    height: 120px;
    border-top: 3px solid #000;
    border-left: 3px solid #000;
    z-index: 1;
}
.feature-image::after {
    content: "";
    position: absolute;
    right: 4px;
    bottom: 40px;
    width: 200px;
    height: 120px;
    border-right: 3px solid #000;
    border-bottom: 3px solid #000;
    z-index: 1;
}
/*--------------------------------------------------------------
# QUEM SOMOS
--------------------------------------------------------------*/
.about h3 {
  font-weight: 400;
  font-size: 26px;
}
.about ul {
  list-style: none;
  padding: 0;
}
.about ul li {
  padding-bottom: 10px;
}
.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: #68A4C4;
}
.about p:last-child {
  margin-bottom: 0;
}
/*--------------------------------------------------------------
# DEPOIMENTOS
--------------------------------------------------------------*/
.testimonials {
  padding: 40px 0;
}
.testimonials .section-header {
  margin-bottom: 40px;
}
.testimonials .testimonials-carousel {
  overflow: hidden;
}
.testimonials .testimonial-item {
  text-align: center;
}
.testimonials .testimonial-item .testimonial-img {
  width: 120px;
  border-radius: 50%;
  border: 4px solid #fff;
  margin: 0 auto;
}
.testimonials .testimonial-item h3 {
  font-size: 20px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: #111;
}
.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: #999;
  margin: 0 0 15px 0;
}
.testimonials .testimonial-item .quote-icon-left, .testimonials .testimonial-item .quote-icon-right {
  color: #fbfcfd;
  font-size: 26px;
}
.testimonials .testimonial-item .quote-icon-left {
  display: inline-block;
  left: -5px;
  position: relative;
}
.testimonials .testimonial-item .quote-icon-right {
  display: inline-block;
  right: -5px;
  position: relative;
  top: 10px;
}
.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}
.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #68A4C4;
}
.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #68A4C4;
}
/*--------------------------------------------------------------
# PORTFOLIO
--------------------------------------------------------------*/
.portfolio #portfolio-flters {
  padding: 0;
  margin: 0 0 35px 0;
  list-style: none;
  text-align: center;
}
.portfolio #portfolio-flters li {
  cursor: pointer;
  margin: 0 12px 5px 12px;
  display: inline-block;
  padding: 0 4px 6px 4px;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #444;
  transition: all 0.3s ease-in-out;
  border-bottom: 2px solid #fff;
}
.portfolio #portfolio-flters li:hover, .portfolio #portfolio-flters li.filter-active {
  border-color: #716f70;
  color: #000;
}
.portfolio .portfolio-item {
  background: #1e4356;
  overflow: hidden;
  min-height: 200px;
  position: relative;
  border-radius: 4px;
  margin: 0 0 30px 0;
}
.portfolio .portfolio-item img {
  width:100%;  
  height:300px;
  aspect-ratio:4/5;
  object-fit:cover;
  transition: all 0.3s ease-in-out;
}
/* DESKTOP */
@media (min-width:992px){
    .portfolio-item img{
        height:420px;
    }
}
.portfolio .portfolio-item .portfolio-info {
  opacity: 0;
  position: absolute;
  transition: all 0.3s linear;
  text-align: center;
  top: 10%;
  left: 0;
  right: 0;
}
.portfolio .portfolio-item .portfolio-info h3 {
  font-size: 22px;
  color: #000;
  font-weight: bold;
}
.portfolio .portfolio-item .portfolio-info p {  
  color: #fff;
}
.portfolio .portfolio-item .portfolio-info a i {
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  transition: 0.3s;
}
.portfolio .portfolio-item .portfolio-info a i:hover {
  color: white;
}
.portfolio .portfolio-item:hover img {
  opacity: 0.4;
  transform: scale(1.1);
}
.portfolio .portfolio-item:hover .portfolio-info {
  opacity: 1;
  top: calc(50% - 30px);
}
/*--------------------------------------------------------------
# PORTFOLIO DETAILS
--------------------------------------------------------------*/
.portfolio-details {
  padding-top: 40px;
}
.portfolio-details .portfolio-details-slider img {
  width: 100%;
}
.portfolio-details .portfolio-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #68A4C4;
}
.portfolio-details .portfolio-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #68A4C4;
}
.portfolio-details .portfolio-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(30, 67, 86, 0.08);
}
.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: 30px;
}
.portfolio-details .portfolio-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}
.portfolio-details .portfolio-description p {
  padding: 0;
}
/*--------------------------------------------------------------
# EQUIPE
--------------------------------------------------------------*/
.team {
  background: #fff;
  padding-bottom: 30px;
}
.team .member {
  margin-bottom: 20px;
  overflow: hidden;
}
.team .member .member-img {
  position: relative;
  overflow: hidden;
}
.team .member .social {
  position: absolute;
  left: 0;
  bottom: -40px;
  right: 0;
  height: 40px;
  opacity: 0;
  transition: bottom ease-in-out 0.4s;
  text-align: center;
  background: rgba(30, 67, 86, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}
.team .member .social a {
  transition: color 0.3s;
  color: #fff;
  margin: 0 12px;
  display: inline-block;
}
.team .member .social a:hover {
  color: #68A4C4;
}
.team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}
.team .member .member-info .title {
  font-weight: 700;
  margin: 15px 0 5px 0;
  font-size: 18px;
  color: #000;
}
.team .member .member-info span {
  display: block;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 15px;
  color: #000;
}
.team .member .member-info p {
  font-style: italic;
  font-size: 14px;
  line-height: 26px;
  color: #666;
}
.team .member .member-info small {
  font-style: italic;
  font-size: 12px;
  line-height: 26px;  
  font-weight: 700;
  color: #666;
}
.team .member:hover .social {
  bottom: 0;
  opacity: 1;
  transition: bottom ease-in-out 0.4s;
}
.team .member:hover .social a, .team .member:hover .social i {
  line-height: 0;
  font-size: 18px;
}
.pill-preta{
	display:inline-block;
	background:#000;
	color:#fff;
	padding:.7rem 1.8rem;
	border-radius:50rem;
	margin-bottom:0;
	font-weight:500;
	box-shadow:0 4px 15px rgba(0,0,0,.15);
}
/*--------------------------------------------------------------
# CONTATO
--------------------------------------------------------------*/
.contact {
  padding-bottom: 0;
}
.contact .info-box {
  color: #444;
  text-align: center;
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 20px 0 47px 0;
  margin-bottom: 30px;
}
.contact .info-box i {
  font-size: 28px;
  color: #000;
  border-radius: 50%;
  padding: 8px;
  border: 2px dotted #000;
}
.contact .info-box h3 {
  font-size: 20px;
  color: #666;
  font-weight: 700;
  margin: 10px 0;
}
.contact .info-box p {
  padding: 0;
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}
.contact .php-email-form {
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
  margin-bottom: 30px;
}
.contact .php-email-form input, .contact .php-email-form textarea {
  border-radius: 0;
  box-shadow: none;
  font-size: 14px;
}
.contact .php-email-form input::focus, .contact .php-email-form textarea::focus {
  background-color: #68A4C4;
}
.contact .php-email-form input {
  padding: 10px 15px;
}
.contact .php-email-form textarea {
  padding: 12px 15px;
}
.contact .php-email-form button[type=submit] {
  background: #000;
  border: 0;
  padding: 10px 24px;
  border-radius: 999px;
  color: #fff;
  transition: 0.4s;
}
.contact .php-email-form button[type=submit]:hover {
  background: #000;
}
/*--------------------------------------------------------------
# MAP
--------------------------------------------------------------*/
.map{
  box-shadow: 0 0 30px rgba(214, 215, 216, 0.6);
  padding: 30px;
}
.map iframe{
    width:100%;
    height:300px;
    border:0;
}
@media (min-width:992px){
    .map iframe{
        height:380px;
    }
}
/* Botão centralizado */
.map .map-button{
    text-align:center;
    margin:20px 0;
}
/* Botão pill */
.map .map-button .btn{
    display:inline-block;
    background:#000;
    color:#fff;
    padding:12px 30px;
    border:0;
    border-radius:999px;
    text-decoration:none;
    font-weight:600;
    line-height:1;
    transition:all .3s ease;
}
.map .map-button .btn:hover{
    background:#716f70;
    color:#fff;
    text-decoration:none;
}
/*--------------------------------------------------------------
# FOOTER
--------------------------------------------------------------*/
.footer {
  background: #0b212d;
  padding: 0 0 30px 0;
  color: #fff;
  font-size: 14px;
}.footer .footer-newsletter {
  padding: 50px 0;
  background: #0d2735;
}.footer .footer-newsletter h4 {
  font-size: 24px;
  margin: 0 0 20px 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}.footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
}.footer .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px;
  width: calc(100% - 100px);
}.footer .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  margin: 3px;
  background: #000;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
}.footer .footer-newsletter form input[type=submit]:hover {
  background: #000;
}.footer .footer-top {
  background: #0d2735;
  border-top: 1px solid #17455e;
  border-bottom: 1px solid #123649;
  padding: 60px 0 30px 0;
}.footer .footer-top .footer-info {
  margin-bottom: 30px;
}.footer .footer-top .footer-info h3 {
  font-size: 18px;
  margin: 0 0 20px 0;
  padding: 2px 0;
  line-height: 1;
  color: #000;
  font-weight: 600;
}.footer .footer-top .footer-info p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  color: #fff;
}.footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #1e4356;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}.footer .footer-top .social-links a:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}.footer .footer-top h4 {
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  position: relative;
  padding-bottom: 12px;
}.footer .footer-top .footer-links {
  margin-bottom: 30px;
}.footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}.footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #fff;
  font-size: 12px;
  line-height: 1;
}.footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}.footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}.footer .footer-top .footer-links ul a {
  color: #fff;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}.footer .footer-top .footer-links ul a:hover {
  color: #000;
}.footer .footer-top .footer-contact {
  margin-bottom: 30px;
}.footer .footer-top .footer-contact p {
  line-height: 26px;
}.footer .copyright {
  text-align: center;
  padding-top: 30px;
}.footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #fff;
}.footer .credits a {
  color: #fff;
}