/**
* Template Name: Regna - v4.2.0
* Template URL: https://bootstrapmade.com/regna-bootstrap-onepage-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/

body {
  background: #fff;
  color: #666666;
  font-family: "Open Sans", sans-serif;
}

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

a:hover,
a:active,
a:focus {
  color: #df1f31;
  outline: none;
  text-decoration: none;
}

p {
  padding: 0;
  margin: 0 0 30px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  margin: 0 0 0px 0;
  padding: 0;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/

.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #df1f30;
  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: #df1f30;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Disable AOS delay on mobile
--------------------------------------------------------------*/

@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

#header {
  height: 90px;
  transition: all 0.5s;
  z-index: 997;
  background: rgba(52, 59, 64, 0.9);
}

#header #logo h1 {
  font-size: 32px;
  margin: 0;
  line-height: 1;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

#header #logo h1 a,
#header #logo h1 a:hover {
  color: #fff;
}

#header #logo img {
  padding: 0;
  margin: 0;
}

#header.header-transparent {
  background: white;
}

#header.header-scrolled {
  background: white;
  height: 70px;
  transition: all 0.5s;
}

.scrolled-offset {
  margin-top: 70px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/

/**
* Desktop Navigation 
*/

.navbar {
  padding: 0;
}

.nav-link:focus,
.nav-link:hover {
  color: red !important;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar>ul>li {
  white-space: nowrap;
  padding: 10px 0 10px 24px;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "Poppins", sans-serif;
  color: red !important;
  font-size: 14px;
  padding: 0 4px;
  white-space: nowrap;
  transition: 0.3s;
  letter-spacing: 0.4px;
  position: relative;
  text-transform: uppercase;
}

.navbar a i {
  color: red;
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar>ul>li>a:before {
  color: #fff;
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: -6px;
  left: 0;
  background-color: #df1f30;
  visibility: hidden;
  transform: scaleX(0);
  transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
  color: #fff;
  visibility: visible;
  transform: scaleX(1);
}

.navbar a:hover,
.navbar .active,
.navbar li:hover>a {
  color: #fff;
}

.navbar .dropdown ul {
  color: #fff;
  display: block;
  position: absolute;
  left: 24px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
}

.navbar .dropdown ul li {
  color: #fff;
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  color: #333;
}

.navbar .dropdown ul a i {
  color: #333;
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #df1f30;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/

.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(77, 77, 77, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.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-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile>ul>li {
  padding: 0;
}

.navbar-mobile a:hover:before,
.navbar-mobile li:hover>a:before,
.navbar-mobile .active:before {
  visibility: hidden;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #666666;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #df1f30;
}

.navbar-mobile .getstarted {
  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: 0px 0px 30px rgba(127, 137, 161, 0.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: #df1f30;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# inicio Section
--------------------------------------------------------------*/

#inicio {
  width: 100%;
  height: 100vh;
  background: url(../img/hero-bg.jpg) top center;
  background-size: cover;
  position: relative;
}

@media (min-width: 1024px) {
  #inicio {
    background-attachment: fixed;
  }
}

#inicio:before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
}

#inicio .inicio-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;
}

#inicio h1 {
  margin: 30px 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  text-transform: uppercase;
  color: #fff;
}

@media (max-width: 768px) {
  #inicio h1 {
    font-size: 28px;
    line-height: 36px;
  }
}

#inicio h2 {
  color: #eee;
  margin-bottom: 50px;
  font-size: 24px;
}

@media (max-width: 768px) {
  #inicio h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
}

#inicio .btn-get-started {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#inicio .btn-get-started:hover {
  background: #df1f30;
  border: 2px solid #df1f30;
}

/*--------------------------------------------------------------
# Sections
--------------------------------------------------------------*/

section {
  overflow: hidden;
}

/* Sections Header
--------------------------------*/

.section-header .section-title {
  font-size: 32px;
  color: #111;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 5px;
}

.section-header .section-description {
  text-align: center;
  padding-bottom: 40px;
  color: #999;
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/

.breadcrumbs {
  padding: 30px 0;
  background-color: white;
}

.breadcrumbs h2 {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

@media (max-width: 992px) {
  .breadcrumbs h2 {
    margin: 0 0 10px 0;
  }
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.breadcrumbs ol li+li {
  padding-left: 10px;
}

.breadcrumbs ol li+li::before {
  display: inline-block;
  padding-right: 10px;
  color: #6c757d;
  content: "/";
}

@media (max-width: 768px) {
  .breadcrumbs .d-flex {
    display: block !important;
  }
  .breadcrumbs ol {
    display: block;
  }
  .breadcrumbs ol li {
    display: inline-block;
  }
}

/* About Us Section
--------------------------------*/

#about {
  background: #fff;
  padding: 80px 0;
}

#about titulo {
  color: #df1f30;
  }

#about .member {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 20px;
}

#about .member .pic {
  margin-bottom: 10px;
  overflow: hidden;
  height: 80%;
}

#about .member .pic img {
  heigh: 80%;
  width: 80%;
  border-radius: 200px;
}

#about .member .piccertificado img {
  heigh: 80%;
  width: 80%;
}

#about .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#about .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

#about .member .social {
  margin-top: 15px;
}

#about .member .social a {
  color: #b3b3b3;
}

#about .member .social a:hover {
  color: #df1f30;
}

#about .member .social i {
  font-size: 18px;
  margin: 0 2px;
}

#about .about-container .background {
  background: url(../img/about-img.jpg) center top no-repeat;
}

#about .about-container .content {
  background: #fff;
}

#about .about-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 768px) {
  #about .about-container .title {
    padding-top: 15px;
  }
}

#about .about-container p {
  line-height: 26px;
}

#about .about-container p:last-child {
  margin-bottom: 0;
}

#about .about-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#about .about-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #df1f30;
}

#about .about-container .icon-box .icon i {
  color: #df1f30;
  font-size: 24px;
  line-height: 0;
}

#about .about-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#about .about-container .icon-box .title a {
  color: #111;
}

#about .about-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/* Sinistros Section
--------------------------------*/

#sinistros {
  background: #fff;
}

#sinistros h1 {
  background: #fff;
  padding: 50px 0;
  text-transform: none;
  font-size: 36px;
  color: #333;
}

#sinistros h2 {
  background: #fff;
  padding: 20px 0;
  text-transform: none;
  font-size: 32px;
  color: #333;
  margin-left: 10px;
}

#sinistros h3 {
  background: #fff;
  padding: 10px 0;
  text-transform: none;
  font-size: 28px;
  color: #df1f30;
  margin-left: 10px;
}

#sinistros span {
  color: #df1f30;
}


#sinistros h4 {
  background: #fff;
  padding: 0px 0;
  font-size: 20px;
  text-transform: none;
}

#sinistros p .box1{
  background: #fff;
  padding: 0px 0;
  text-transform: none;
}

#sinistros .box1 {
  padding: 5px 5px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 60px;
  position: relative;
  background: #ffffff;
}

#sinistros .sinistros-container .content {
  background: #fff;
}

#sinistros .sinistros-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 768px) {
  #sinistros .sinistros-container .title {
    padding-top: 15px;
  }
}

#sinistros p {
  line-height: 26px;
  font-weight: normal;
}

#sinistros p:last-child {
  margin-bottom: 0;
}

#sinistros .sinistros-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#sinistros .sinistros-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #df1f30;
}

#sinistros .sinistros-container .icon-box .icon i {
  color: #df1f30;
  font-size: 24px;
  line-height: 0;
}

#sinistros .sinistros-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#sinistros .sinistros-container .icon-box .title a {
  color: #111;
}

#sinistros .sinistros-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/* reclamacoes Section
--------------------------------*/

#reclamacoes {
  background: #fff;
}

#reclamacoes h1 {
  background: #fff;
  padding: 50px 0;
  text-transform: none;
  font-size: 36px;
  color: #333;
}

#reclamacoes h2 {
  background: #fff;
  padding: 20px 0;
  text-transform: none;
  font-size: 32px;
  color: #333;
  margin-left: 10px;
}

#reclamacoes h3 {
  background: #fff;
  padding: 10px 0;
  text-transform: none;
  font-size: 28px;
  color: #df1f30;
  margin-left: 10px;
}

#reclamacoes span {
  color: #df1f30;
}


#reclamacoes h4 {
  background: #fff;
  padding: 0px 0;
  font-size: 20px;
  text-transform: none;
}

#reclamacoes p .box1{
  background: #fff;
  padding: 0px 0;
  text-transform: none;
}

#reclamacoes .box1 {
  padding: 5px 5px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 80px;
  position: relative;
  background: #ffffff;
}

#reclamacoes .reclamacoes-container .content {
  background: #fff;
}

#reclamacoes .reclamacoes-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 768px) {
  #reclamacoes .reclamacoes-container .title {
    padding-top: 15px;
  }
}

#reclamacoes p {
  line-height: 26px;
  font-weight: normal;
}

#reclamacoes p:last-child {
  margin-bottom: 0;
}

#reclamacoes .reclamacoes-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#reclamacoes .reclamacoes-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #df1f30;
}

#reclamacoes .reclamacoes-container .icon-box .icon i {
  color: #df1f30;
  font-size: 24px;
  line-height: 0;
}

#reclamacoes .reclamacoes-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#reclamacoes .reclamacoes-container .icon-box .title a {
  color: #111;
}

#reclamacoes .reclamacoes-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}



/* associados Section
--------------------------------*/

#associados {
  background: #fff;
}

#associados h1 {
  background: #fff;
  padding: 50px 0;
  text-transform: none;
  font-size: 36px;
  color: #333;
}

#associados h2 {
  background: #fff;
  padding: 20px 0;
  text-transform: none;
  font-size: 32px;
  color: #333;
  margin-left: 10px;
}

#associados .associados-container .content {
  background: #fff;
}

#associados .associados-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 768px) {
  #associados .associados-container .title {
    padding-top: 15px;
  }
}

#associados .associados-container p {
  line-height: 26px;
}

#associados .associados-container p:last-child {
  margin-bottom: 0;
}

#associados .associados-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#associados .associados-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #df1f30;
}

#associados .associados-container .icon-box .icon i {
  color: #df1f30;
  font-size: 24px;
  line-height: 0;
}

#associados .associados-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#associados .associados-container .icon-box .title a {
  color: #111;
}

#associados .associados-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}


/* privacidade Section
--------------------------------*/

#privacidade {
  background: #fff;
  padding: 80px 0;
}

#privacidade h1 {
  background: #fff;
  padding: 50px 0;
  text-transform: none;
  font-size: 36px;
  color: #333;
}

#privacidade h2 {
  background: #fff;
  padding: 20px 0;
  text-transform: none;
  font-size: 32px;
  color: #333;
  margin-left: 10px;
}

#privacidade .privacidade-container .content {
  background: #fff;
}

#privacidade .privacidade-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 768px) {
  #privacidade .privacidade-container .title {
    padding-top: 15px;
  }
}

#privacidade .privacidade-container p {
  line-height: 26px;
}

#privacidade .privacidade-container p:last-child {
  margin-bottom: 0;
}

#privacidade .privacidade-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#privacidade .privacidade-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #df1f30;
}

#privacidade .privacidade-container .icon-box .icon i {
  color: #df1f30;
  font-size: 24px;
  line-height: 0;
}

#privacidade .privacidade-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#privacidade .privacidade-container .icon-box .title a {
  color: #111;
}

#privacidade .privacidade-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/* Atualidade Section
--------------------------------*/

#atualidade {
  background: #fff;
}

#atualidade h1 {
  background: #fff;
  padding: 50px 0;
  bold;
  font-size: 36px;
  color: #333;
}

#atualidade h2 {
  background: #fff;
  padding: 20px 0;
  bold;
  font-size: 28px;
  color: #333;
}

#atualidade .atualidade-container .content {
  background: #fff;
}

#atualidade .atualidade-container .title {
  color: #333;
  font-weight: 700;
  font-size: 32px;
}

@media (max-width: 768px) {
  #atualidade .atualidade-container .title {
    padding-top: 15px;
  }
}

#atualidade .atualidade-container p {
  line-height: 26px;
}
#atualidade p {
  font-weight: normal;
}

#atualidade .atualidade-container p:last-child {
  margin-bottom: 0;
}

#atualidade .atualidade-container .icon-box {
  background: #fff;
  background-size: cover;
  padding: 0 0 30px 0;
}

#atualidade .atualidade-container .icon-box .icon {
  float: left;
  background: #fff;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #df1f30;
}

#atualidade .atualidade-container .icon-box .icon i {
  color: #df1f30;
  font-size: 24px;
  line-height: 0;
}

#atualidade .atualidade-container .icon-box .title {
  margin-left: 80px;
  font-weight: 500;
  margin-bottom: 5px;
  font-size: 18px;
  text-transform: uppercase;
}

#atualidade .atualidade-container .icon-box .title a {
  color: #111;
}

#atualidade .atualidade-container .icon-box .description {
  margin-left: 80px;
  line-height: 24px;
  font-size: 14px;
}

/* Facts Section
--------------------------------*/

#facts {
  background: #f7f7f7;
  padding: 80px 0 60px 0;
}

#facts .counters span {
  font-size: 48px;
  display: block;
  color: #df1f30;
}

#facts .counters p {
  padding: 0;
  margin: 0 0 20px 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
}

/* particulares Section
--------------------------------*/

#particulares h1 {
  background: #fff;
  padding: 50px 0;
  text-transform: none;
  font-size: 36px;
  color: #333;
}

#particulares h4 {
  background: #fff;
  text-transform: none;
  color: #333;
}

#particulares .box {
  padding: 10px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 90%;
  position: relative;
  background: #ffffff;
}

#particulares .box1 {
  padding: 10px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 80px;
  position: relative;
  background: #ffffff;
}

#particulares .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  right: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background: #df1f30;
}

#particulares .icon a {
  display: inline-block;
}

#particulares .icon i {
  color: #fff;
  font-size: 24px;
  line-height: 0;
}

#particulares .pic {
  position: flex;
  top: 190px;
  left: calc(50% - 36px);
  right: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#particulares .box:hover .icon {
  background: #fff;
  border: 2px solid #df1f30;
}

#particulares .box:hover .icon i {
  color: #df1f30;
}

#particulares .box:hover .icon a {
  color: #df1f30;
}

#particulares .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

#particulares .title a {
  color: #111;
}

#particulares .description {
  font-size: 14px;
  line-height: 24px;
}

/* empresas Section
--------------------------------*/

#empresas h1 {
  background: #fff;
  padding: 50px 0;
  text-transform: none;
  font-size: 36px;
  color: #333;
}

#empresas h4 {
  background: #fff;
  text-transform: none;
  color: #333;
}

#empresas .box {
  padding: 10px 20px;
  margin-bottom: 50px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 90%;
  position: relative;
  background: #ffffff;
}

#empresas .box1 {
  padding: 10px 20px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 80px;
  position: relative;
  background: #ffffff;
}

#empresas .icon {
  position: absolute;
  top: -36px;
  left: calc(50% - 36px);
  right: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  border: 6px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  width: 72px;
  height: 72px;
  background: #df1f30;
}

#empresas .icon a {
  display: inline-block;
}

#empresas .icon i {
  color: #fff;
  font-size: 24px;
  line-height: 0;
}

#empresas .pic {
  position: flex;
  top: 190px;
  left: calc(50% - 36px);
  right: calc(50% - 36px);
  transition: 0.2s;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

#empresas .box:hover .icon {
  background: #fff;
  border: 2px solid #df1f30;
}

#empresas .box:hover .icon i {
  color: #df1f30;
}

#empresas .box:hover .icon a {
  color: #df1f30;
}

#empresas .title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 15px;
}

#empresas .title a {
  color: #111;
}

#empresas .description {
  font-size: 14px;
  line-height: 24px;
}

/* Call To Action Section
--------------------------------*/

#call-to-action {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url(../img/call-to-action-bg.jpg) fixed center center;
  background-size: cover;
  padding: 80px 0;
}

@media (max-width: 1024px) {
  #call-to-action {
    background-attachment: scroll;
  }
}

#call-to-action .cta-title {
  color: #fff;
  font-size: 28px;
  font-weight: 700;
}

#call-to-action .cta-text {
  color: #fff;
}

@media (min-width: 769px) {
  #call-to-action .cta-btn-container {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}

#call-to-action .cta-btn {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 8px 30px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px;
  border: 2px solid #fff;
  color: #fff;
}

#call-to-action .cta-btn:hover {
  background: #df1f30;
  border: 2px solid #df1f30;
}

/*--------------------------------------------------------------
# seguro Details
--------------------------------------------------------------*/

.seguro-details {
  padding-top: 40px;
}

.seguro-details .seguro-details-slider img {
  width: 100%;
}

#seguro-details p {
  padding: 0px 0px;
  margin-bottom: 0px;
}

#seguro-details h4 {
  padding: 0px 0px;
  margin-bottom: 0px;
  background: #fff;
  text-transform: none;
  color: #333;
}

#seguro-details .box {
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 90%;
  position: relative;
  background: #ffffff;
}

#seguro-details .box1 {
  padding: 10px 20px;
  text-align: center;
  border: 1px solid #e6e6e6;
  height: 80px;
  position: relative;
  background: #ffffff;
}

.seguro-details .seguro-details-slider .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.seguro-details .seguro-details-slider .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #fff;
  opacity: 1;
  border: 1px solid #df1f30;
}

.seguro-details .seguro-details-slider .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #df1f30;
}

.seguro-details .seguro-info {
  padding: 30px;
  box-shadow: 0px 0 30px rgba(102, 102, 102, 0.08);
}

.seguro-details .seguro-info h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.seguro-details .seguro-info ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.seguro-details .seguro-info ul li+li {
  margin-top: 10px;
}

.seguro-details .seguro-description {
  padding-top: 30px;
}

.seguro-details .seguro-description h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 20px;
}

.seguro-details .seguro-description p {
  padding: 0;
}

/* Team Section
--------------------------------*/

#team {
  background: #fff;
  padding: 80px 0 60px 0;
  color: #333
}

#team .member {
  text-align: center;
  margin-bottom: 20px;
}

#team .member .pic {
  margin-bottom: 15px;
  overflow: hidden;
  height: 260px;
}

#team .member .pic img {
  max-width: 100%;
}

#team .member h4 {
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 18px;
}

#team .member span {
  font-style: italic;
  display: block;
  font-size: 13px;
}

#team .member .social {
  margin-top: 15px;
}

#team .member .social a {
  color: #b3b3b3;
}

#team .member .social a:hover {
  color: #df1f30;
}

#team .member .social i {
  font-size: 18px;
  margin: 0 2px;
}


/* contactosuteis Section
--------------------------------*/

#contactosuteis {
  background: #fff;
}

#contactosuteis h1 {
  text-transform: none;
  padding: 50px 0;
  color: #333;
  font-size: 36px;
}

#contactosuteis h2 {
  padding: 20px;
  font-size: 28px;
}

#contactosuteis h3 {
  padding: 20px;
  font-size: 28px;
}

#contactosuteis li {
  text-transform: normal !important;
}

.contactosuteis-area {
  padding: 60px 0px
}

#contactosuteis .info {
  color: #333333;
}

#contactosuteis .info i {
  font-size: 32px;
  color: #df1f30;
  float: left;
  line-height: 0;
}

#contactosuteis .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

#contactosuteis .info .email p {
  padding-top: 5px;
}

#contactosuteis .social-links {
  padding: 20px 0;
}

#contactosuteis .social-links a {
  font-size: 18px;
  background: #333;
  color: #fff;
  line-height: 1;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#contactosuteis .social-links a i {
  line-height: 0;
}

#contactosuteis .social-links a:hover {
  background: #df1f30;
  color: #fff;
}


/* Contact Section
--------------------------------*/

#contact {
  background: #fff;
}

#contact h1 {
  padding: 50px 0;
  text-transform: none;
  color: #333;
  font-size: 36px;
}

#contactosuteis h2 {
  padding: 20px;
  font-size: 32px;
}

#contactosuteis h3 {
  padding: 20px;
  font-size: 28px;
}

#contact #google-map {
  height: 100%;
  align: center;
  margin-bottom: 100%;
}

#contact .info {
  color: #333333;
}

#contact img {
  height: 200px;
    width: 200px;
  border-radius: 500px;
}

#contact .info i {
  font-size: 32px;
  color: #df1f30;
  float: left;
  line-height: 0;
}

#contact .info p {
  padding: 0 0 10px 50px;
  margin-bottom: 20px;
  line-height: 22px;
  font-size: 14px;
}

#contact .info .email p {
  padding-top: 5px;
}

#contact .social-links {
  padding: 20px 0;
}

#contact .social-links a {
  font-size: 18px;
  background: #333;
  color: #fff;
  line-height: 1;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#contact .social-links a i {
  line-height: 0;
}

#contact .social-links a:hover {
  background: #df1f30;
  color: #fff;
}

#contact .php-email-form .error-message {
  display: none;
  color: #fff;
  background: #ed3c0d;
  text-align: left;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .error-message br+br {
  margin-top: 25px;
}

#contact .php-email-form .sent-message {
  display: none;
  color: #fff;
  background: #18d26e;
  text-align: center;
  padding: 15px;
  font-weight: 600;
}

#contact .php-email-form .loading {
  display: none;
  background: #fff;
  text-align: center;
  padding: 15px;
}

#contact .php-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 .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: #df1f30;
}

#contact .php-email-form button[type="submit"] {
  background: #df1f30;
  border: 0;
  padding: 10px 24px;
  color: #fff;
  transition: 0.4s;
}

#contact .php-email-form button[type="submit"]:hover {
  background: #51d8ad;
}

@-webkit-keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# parceiros
--------------------------------------------------------------*/

#parceiros {
  background: #fff;
}

#parceiros h1 {
  text-transform: none;
  padding: 50px 0;
  padding-bottom: 20px 0;
  color: #333;
  font-size: 36px;
  margin-bottom: 0px 0;
}

#parceiros p {
  text-transform: none;
  padding: 0px 0;
  margin-bottom: 5px 0;
}

.parceiros-area {
  padding: 60px 0px
}

.parceiros-area .parceiros-wrap {
  padding: 40px 0
}

.parceiros-area .parceiros-wrap .owl-carousel .owl-item img {
  width: auto !important
}

.parceiros .parceiros-wrap .single-parceiros {
  text-align: center;
  filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -webkit-filter: grayscale(100%);
  opacity: .3;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s
}

.parceiros .parceiros-wrap .single-parceiros:hover {
  filter: grayscale(0%);
  -o-filter: grayscale(0%);
  -ms-filter: grayscale(0%);
  -moz-filter: grayscale(0%);
  -webkit-filter: grayscale(0%);
  opacity: 1
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/

#footer {
  background: #343b40;
  padding: 30px 0;
  color: #fff;
  font-size: 14px;
  bottom:0;
  width:100%;
}

#footer .copyright {
  text-align: center;
}

#footer .credits {
  padding-top: 10px;
  text-align: center;
  font-size: 13px;
  color: #ccc;
}