/*
Start Allcor 22
*/

/* --- 
Sequência do CSS Da Página: (use esses nomes a pesquisa rápida no código.)

01. Geral
02. Nav-Bar
03. Conteúdo 
    01. Section 01
    02. Section 02
    04. Section 03
    05. Section 04
    06. Section 05
    07. Page Obrigado
04. Footer
05. Media Queries

--- */

/* ========================================================== */
/* 			                01 BEGIN GERAL                        */
/* ========================================================== */

/*FONTS EMBEDADAS*/
@font-face {
  font-family:OpenSans-Bold;
  src: url("../webfonts/OpenSans-Bold.ttf");
}
@font-face {
  font-family:OpenSans-Semibold;
  src: url("../webfonts/OpenSans-Semibold.ttf");
}
@font-face {
  font-family:OpenSans-ExtraBold;
  src: url("../webfonts/OpenSans-ExtraBold.ttf");
}

@font-face {
  font-family:OpenSans-Regular;
  src: url("../webfonts/OpenSans-Regular.ttf");
}

@font-face {
   font-family:OpenSans-Black;
   src: url("../webfonts/OpenSans-Black.ttf");
}

@font-face {
   font-family:OpenSans-Light;
   src: url("../webfonts/OpenSans-Light.ttf");
}

@font-face {
   font-family:OpenSans-Italic;
   src: url("../webfonts/OpenSans-Italic.ttf");
}

a,
a:hover,
a:focus,
a:active,
a:visited {
	text-decoration: none;
	outline: 0;
}

a:hover{
	color: #017df7;
}
/* ========================================================== */
/*                       01 END GERAL                         */
/* ========================================================== */


/* ========================================================== */
/* 			            02. BEGIN NAV-BAR                         */
/* ========================================================== */
.navbar {
	width: 100%;
	z-index: 9999;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 0;
	padding-right: 0;
}
.navbar-brand{
  font-family:'OpenSans-Semibold';
  font-size: 28px;
  font-weight: 100;
  color: #000!important;
}
.navbar-toggler {
  padding: 5px 10px 5px 10px;
  font-size: 24px;
  line-height: 1;
  background-color: transparent;
  border-radius: 6px;
  border: 3px solid #0073c0;
}
.navbar-toggler-icon {
	width: 1.3em;
  height: 1.3em;
}
.navbar-toggler-icon i {
  color: #0073c0;
  vertical-align: middle;
}
.navbar-fixed-top {
  position: absolute!important;
  background-color: #fff!important;
  box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.04)!important;
  border-bottom: none;
  transition: background-color 0.25s ease 0s;
}
.navbar-fixed-top.opaque {
	position: fixed!important;
	background-color: #fff!important;
	border-bottom: 0px solid #fff;
	transition: all 0.25s ease-in-out 0s;
}
.navbar-fixed-top .navbar-nav > li > a, .navbar-fixed-top .navbar-nav > li > a:hover{
  color: #0072BC!important;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.navbar-fixed-top .navbar-nav > li > a{
  color: #003A70 !important;
  font-size: 18px !important;
  line-height: 10px !important;
  padding: 10px 22px!important;
  font-family: 'OpenSans-Semibold';
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.navbar-fixed-top .navbar-nav .current a {
  color:#0072BC!important;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.navbar-fixed-top.opaque .navbar-nav .current a {
  color:#0072BC!important;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.navbar-fixed-top .navbar-nav > li > a.discover-btn {
	border: 1px solid #dd0d44;
	color: #dd0d44!important;
	background: transparent;
	border-radius: 8px 8px;
	padding: 12px 18px!important;
	margin-left: 10px;
	margin-right: 15px;
	font-family: 'OpenSans-Semibold';
}
.navbar-fixed-top .navbar-nav > li > a.discover-btn:hover {
	color: #fff!important;
	background: #f6a206;
	border: 1px solid #f6a206;
}
.left-menu{
  margin-left: 70px !important;
  margin-top: 14px;
}
.btn-primary{
  color: #0A2E4C!important;
  background-color: #00FD43;
  border-color: #00FD43;
  font-family: 'OpenSans-ExtraBold';
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 32px;
  border-radius: 60px;
}
.btn-primary:hover{
  color: #0A2E4C!important;
  background-color: #00FD43;
  border-color: #00FD43;
  font-family: 'OpenSans-ExtraBold';
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 32px;
  border-radius: 60px;
}
.logoprin{
  width: 78%;
}
.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #0a2e4c;
  background-clip: padding-box;
  border: 1px solidrgba(0,0,0,.2);
  border-radius: 0.3rem;
  outline: 0;
}
.modal {
  position: fixed;
  top: 100px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0;
}
/* ========================================================== */
/*                   02. END NAV-BAR                          */
/* ========================================================== */

/* ========================================================== */
/* 			            03. BEGIN CONTEÚDO                        */
/* ========================================================== */
.bold{
  font-family: 'OpenSans-ExtraBold';
}
.bolditalic{
  font-family: 'OpenSans-ExtraBold';
  font-style: italic;
}
/*Begin Section 01*/
.section01 {
  position: relative;
  padding-top: 152px;
  padding-bottom: 100px;
  background: url(../images/AllSec01Back.jpg) top center no-repeat;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
}
.sec01titleh1{
  font-family: 'OpenSans-Regular';
  color: #fff;
  font-size: 42px;
  line-height: 54px;
  text-align: left;
  margin: 0;
  padding: 20px 0 44px 0;
  font-weight: 200;
}
.sec01titleh2{
  font-family: 'OpenSans-Regular';
  color: #fff;
  font-size: 26px;
  line-height: 32px;
  text-align: left;
  margin: 0;
  padding: 0px 0 32px 0;
  font-weight: 200;
}
.sec01titleh3{
  font-family: 'OpenSans-Italic';
  color: #fff;
  font-size: 20px;
  line-height: 32px;
  text-align: left;
  margin: 0;
  padding: 0px 0 32px 0;
  font-weight: 200;
}
.sec01blockbut{
  text-align: left;
}
/*End Section 01*/

/*Begin Section 02*/
.section02 {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background:#fff;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
}
.sec02block01 {
  background: #0088FF;
  padding: 32px 10px 25px;
  border-radius: 34px;
  text-align: center;
  box-shadow: 13px 13px 24px #9b9b9b;
}
.sec02blockh2 {
  font-family: 'OpenSans-Bold';
  color: #fff;
  font-size: 30px;
  line-height: 36px;
  padding: 36px 0 4px 0;
}
.sec02blockph1 {
  font-family: 'OpenSans-Regular';
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  padding: 0 20px;
}
.sec02block02{
  background: #0088FF;
  padding: 32px 10px 51px;
  border-radius: 34px;
  text-align: center;
  box-shadow: 13px 13px 24px #9b9b9b;
}
.sec02blockh22 {
  font-family: 'OpenSans-Bold';
  color: #fff;
  font-size: 30px;
  line-height: 36px;
  padding: 37px 0 8px 0;
}
.sec02blockph12 {
  font-family: 'OpenSans-Regular';
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  padding: 0 20px;
}
.sec02block03 {
  background: #0088FF;
  padding: 32px 10px;
  border-radius: 34px;
  text-align: center;
  box-shadow: 13px 13px 24px #9b9b9b;
}
.sec02blockh23 {
  font-family: 'OpenSans-Bold';
  color: #fff;
  font-size: 30px;
  line-height: 36px;
  padding: 20px 0 4px 0;
}
.sec02blockph13 {
  font-family: 'OpenSans-Regular';
  color: #fff;
  font-size: 18px;
  line-height: 22px;
  padding: 0 20px;
}
/*End Section 02*/

/*Begin Section 03*/
.section03 {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../images/allsec03back.jpg) top center no-repeat;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
}
.sec03titleh2{
  font-family: 'OpenSans-ExtraBold';
  color: #0A2E4C;
  font-size: 38px;
  line-height: 48px;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 32px 0;
  padding: 0;
  text-align: left;
}
.sec03titleh3{
  font-family: 'OpenSans-ExtraBold';
  color: #fff;
  font-size: 26px;
  line-height: 32px;
  margin: 0;
  padding: 0 0 8px 0;
  text-align: left;
}
.sec03phs{
  font-family: 'OpenSans-Regular';
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  padding: 0;
  margin: 0 0 34px 0;
  text-align: left;
}
.sec03blockbut{
  text-align: left;
}
/*End Section 03*/

/*Begin Section 04*/
.section04 {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../images/allsec04back.jpg) top center no-repeat;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
}
.sec04titleh2{
  font-family: 'OpenSans-ExtraBold';
  color: #0088ff;
  font-size: 38px;
  line-height: 48px;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 32px 0;
  padding: 0;
  text-align: left;
}
.sec04titleh3{
  font-family: 'OpenSans-ExtraBold';
  color: #fff;
  font-size: 26px;
  line-height: 32px;
  margin: 0;
  padding: 0 0 8px 0;
  text-align: left;
}
.sec04phs{
  font-family: 'OpenSans-Regular';
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  padding: 0;
  margin: 0 0 34px 0;
  text-align: left;
}
.sec04blockbut{
  text-align: left;
}
/*End Section 04*/

/*Begin Section 05*/
.section05 {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../images/allsec05back.jpg) top center no-repeat;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
}
.sec05titleh2{
  font-family: 'OpenSans-ExtraBold';
  color: #0A2E4C;
  font-size: 38px;
  line-height: 48px;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 32px 0;
  padding: 0;
  text-align: left;
}
.sec05titleh3{
  font-family: 'OpenSans-ExtraBold';
  color: #fff;
  font-size: 26px;
  line-height: 32px;
  margin: 0;
  padding: 0 0 8px 0;
  text-align: left;
}
.sec05phs{
  font-family: 'OpenSans-Regular';
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  padding: 0;
  margin: 0 0 34px 0;
  text-align: left;
}
.sec05blockbut{
  text-align: left;
}
/*End Section 05*/

/*Begin Section 06*/
.section06 {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../images/allsec06back.jpg) top center no-repeat;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
}
.sec06titleh2{
  font-family: 'OpenSans-ExtraBold';
  color: #0088ff;
  font-size: 38px;
  line-height: 48px;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 32px 0;
  padding: 0;
  text-align: left;
}
.sec06titleh3{
  font-family: 'OpenSans-ExtraBold';
  color: #fff;
  font-size: 26px;
  line-height: 32px;
  margin: 0;
  padding: 0 0 8px 0;
  text-align: left;
}
.sec06phs{
  font-family: 'OpenSans-Regular';
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  padding: 0;
  margin: 0 0 34px 0;
  text-align: left;
}
.sec06blockbut{
  text-align: left;
}
/*End Section 06*/

/*Begin Section 07*/
.section07 {
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../images/allsec07back.jpg) top center no-repeat;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
}
.sec07titleh2{
  font-family: 'OpenSans-ExtraBold';
  color: #0A2E4C;
  font-size: 38px;
  line-height: 48px;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 32px 0;
  padding: 0;
  text-align: left;
}
.sec07titleh3{
  font-family: 'OpenSans-ExtraBold';
  color: #fff;
  font-size: 26px;
  line-height: 32px;
  margin: 0;
  padding: 0 0 8px 0;
  text-align: left;
}
.sec07phs{
  font-family: 'OpenSans-Regular';
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  padding: 0;
  margin: 0 0 34px 0;
  text-align: left;
}
.sec07blockbut{
  text-align: left;
}
/*End Section 07*/

/*Begin Section 08*/
.section08{
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../images/allsec08back.jpg) top center no-repeat;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
}
.sec08titleh2{
  font-family: 'OpenSans-ExtraBold';
  color: #0088ff;
  font-size: 38px;
  line-height: 48px;
  text-transform: uppercase;
  font-weight: 900;
  margin: 0 0 32px 0;
  padding: 0;
  text-align: left;
}
.sec08titleh3{
  font-family: 'OpenSans-ExtraBold';
  color: #fff;
  font-size: 26px;
  line-height: 32px;
  margin: 0;
  padding: 0 0 8px 0;
  text-align: left;
}
.sec08phs{
  font-family: 'OpenSans-Regular';
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  padding: 0;
  margin: 0 0 34px 0;
  text-align: left;
}
.sec08blockbut{
  text-align: left;
}
/*End Section 08*/

/*Begin Section 09*/
.section09{
  position: relative;
  padding-top: 100px;
  padding-bottom: 100px;
  background: url(../images/allsec09back.jpg) top center no-repeat;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
}
.sec09titleh2{
  font-family: 'OpenSans-ExtraBold';
  color: #fff;
  font-size: 40px;
  line-height: 46px;
  text-align: center;
  margin: 0;
  padding: 0 0 42px 0;
}
.sec09blockbut{
  text-align: center;
  margin: 35px 0 0 0;
}
/*Begin Carousel*/
.bg-left-half {
  position: relative; 
}
.bg-left-half:before {
  position: absolute;
  width: 50%;
  height: 100%;
  z-index: -1;
  content: "";
  left: 0;
  top: 0;
  background-color: #0000; 
}
.media-29101 img {
  margin-bottom: 0px; 
}
.media-29101 h3 {
  font-size: 18px;
  font-weight: 900 !important; 
}
.owl-2-style .owl-nav {
  display: none; 
}
.owl-2-style .owl-dots {
  text-align: center;
  position: relative;
  bottom: -30px; 
}
.owl-2-style .owl-dots .owl-dot {
  display: inline-block; 
}
.owl-2-style .owl-dots .owl-dot span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 60px;
  background: #ffffff;
  -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  margin: 3px;
}
.owl-2-style .owl-dots .owl-dot.active span {
  background: #164783;
}
.owl-2-style .owl-dots .owl-dot:active, .owl-2-style .owl-dots .owl-dot:focus {
  outline: none; 
}
/*End Carousel*/
/*End Section 09*/

/*Begin Section 10*/
.section10{
  position: relative;
  padding-top: 72px;
  padding-bottom: 30px;
  background: url(../images/allsec10back.jpg) top center no-repeat;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
}
.sec010titleh21{
  font-family: 'OpenSans-Regular';
  color: #0A2E4C;
  font-size: 46px;
  line-height: 56px;
  text-align: left;
  margin: 0;
  padding: 0 0 42px 0;
}
.sec010blockimg1{
  text-align: left;
}
.sec010blockslide{
  text-align: center;
}
.sec010titleh22{
  font-family: 'OpenSans-Regular';
  color: #0A2E4C;
  font-size: 46px;
  line-height: 56px;
  text-align: center;
  margin: 0;
  padding: 130px 0 4px 0;
}
.sec010titleh31{
  font-family: 'OpenSans-ExtraBold';
  color: #0A2E4C;
  font-size: 42px;
  line-height: 56px;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  padding: 0 0 24px 0;
}
.sec010blockimgseguradoras{
  text-align: center;
}
/*Begin Carousel*/
.bg-left-half {
  position: relative; 
}
.bg-left-half:before {
  position: absolute;
  width: 50%;
  height: 100%;
  z-index: -1;
  content: "";
  left: 0;
  top: 0;
  background-color: #0000; 
}
.media-29101 img {
  margin-bottom: 0px; 
}
.media-29101 h3 {
  font-size: 18px;
  font-weight: 900 !important; 
}
.owl-3-style .owl-nav {
  display: none; 
}
.owl-3-style .owl-dots {
  text-align: center;
  position: relative;
  bottom: -30px; 
}
.owl-3-style .owl-dots .owl-dot {
  display: inline-block; 
}
.owl-3-style .owl-dots .owl-dot span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 60px;
  background: #0089ff;
  -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
  margin: 3px;
}
.owl-3-style .owl-dots .owl-dot.active span {
  background: #164783;
}
.owl-3-style .owl-dots .owl-dot:active, .owl-3-style .owl-dots .owl-dot:focus {
  outline: none; 
}
/*End Carousel*/
/*End Section 10*/

/*Begin Section 11*/
.section11{
  position: relative;
  padding-top: 72px;
  padding-bottom: 60px;
  background: url(../images/allsec11back.jpg) top center no-repeat;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
}
.sec11titleh2{
  font-family: 'OpenSans-Regular';
  color: #fff;
  font-size: 38px;
  line-height: 54px;
  text-align: left;
  margin: 0;
  padding: 0px 0 44px 0;
  text-transform: uppercase;
}

.sec11titleph2{
  font-family: 'OpenSans-Regular';
  font-size: 18px;
  line-height: 28px;
  color: #fff;
  padding: 0;
  margin: 0 23px 34px 0;
  text-align: left;
}
.sec11blockforms{
  background: #01274f;
  margin: 0 38px 0;
  border-radius: 12px;
  padding: 21px 25px 34px;
}
.sec11txtform{
  font-family: 'OpenSans-Regular';
  font-size: 16px;
  line-height: 26px;
  color: #fff;
  padding: 0;
  margin: 0 0px 12px;
  text-align: center;
}
/*End Section 11*/

/*formulario*/
.form{
  display: flex;
  flex-direction: column;
}
.field {
  background: #ffffff;
  padding: 10px;
  color: #000 !important;
  margin: 0 0 12px 0;
  border-radius: 5px;
  border: 2px solid #ffffff;
  font-family: 'OpenSans-Semibold';
  font-size: 16px;
  line-height: 1px;
}
[type=reset], [type=submit]{
  -webkit-appearance: media-volume-slider;
  cursor: pointer;
  background: #000;
  color: #fff;
  padding-top: 10px;
  padding-bottom: 16px;
  font-size: 25px;
  width: 74%;
  line-height: 26px;
  font-family: 'OpenSans-Semibold';
  letter-spacing: 0px;
  border-radius: 6px;
  box-shadow: 5px 6px 5px #0000003d;
}
input:-internal-autofill-selected {
  appearance: menulist-button;
  background-image: none !important;
  background-color: -internal-light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important;
  color: -internal-light-dark(black, white) !important;
}
::-webkit-input-placeholder{
  color: #000;
  font-weight: bold;
}
.bot_form {
  background-color: #00fd43!important;
  border: 1px solid #00fd43;
  padding: 15px 10px 16px 10px !important;
  color: #01274f;
  width: 100%;
  font-family: 'OpenSans-ExtraBold';
  font-weight: 100;
  font-size: 28px;
  border-radius: 60px;
  letter-spacing: 0px;
  text-transform: uppercase;
  cursor: pointer;
  margin: 6px 0 0 0;
}
.form-control {
  display: block;
  width: 100%;
  height: calc(44px + 2px);
  font-size: 16px;
  line-height: 23px;
  font-family: 'OpenSans-Semibold';
  color: #000 !important;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ffffff;
  border-radius: 0.25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
label {
  display: inline-block;
  margin: 0;
  color: #fff;
  font-family: 'OpenSans-Semibold';
  font-size: 14px;
  letter-spacing: 0px;
}
.colrequired{
  color: #f00;
}
.close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 0 #fff;
  opacity: 2.5;
}
.modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 0rem 1rem 1rem 1rem;
}
.modal-header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 0;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.allblockform{
  margin: 0px 0 0 0;
}
/*formulario*/
/* ========================================================== */
/*                    03. END CONTEÚDO                        */
/* ========================================================== */

/*Begin Page Obrigado*/
.allCorSec0bg {
  position: relative;
  padding-top: 66px;
  padding-bottom: 80px;
  background: #fff;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
}
.allcorimgobg{
    text-align: center;
    margin: 0 0 0 -233px;
}
.allCorSec0bgTitle{
  font-family: 'OpenSans-ExtraBold';
  font-size: 38px;
  line-height: 46px;
  margin: 0 0 0 0;
  text-align: left;
  color: #0A2E4C;
  padding: 0;
}
.allCorSec0bgTitle2{
  font-family: 'OpenSans-Regular';
  font-size: 25px;
  line-height: 32px;
  margin: 10px 168px 0 0;
  text-align: left;
  color: #0A2E4C;
  padding: 0;
}
.allCorSec0bglOG{
  margin: 114px 0 33px 0;
  text-align: left;
}
.allExtrabold{
  font-family: 'OpenSans-ExtraBold';  
}
/*End Page Obrigado*/

/* ========================================================== */
/* 			             04. BEGIN FOOTER                         */
/* ========================================================== */
.AllVfooter{
  padding: 40px 0 28px 0;
  background-color: #fff;
  border-top: 1px solid #fff;
}
.AllVfooterblockIMG{
  text-align: left;
}
.AllVfooterP1{
  margin-bottom: 0px;
  line-height: 13px;
  color: #0A2E4C;
  font-size: 12px;
  font-weight: unset;
  letter-spacing: 0px;
  text-align: right;
  text-transform: none;
  margin-top: 6px;
  font-family: 'OpenSans-Semibold';
}
.AllVfooterP2{
  margin-bottom: 5px;
  line-height: 24px;
  color: #0A2E4C;
  font-size: 12px;
  letter-spacing: 1px;
  text-align: right;
  margin-top: -2px;
  font-family: 'OpenSans-Semibold';
}
/* Footer Social Icons */
ul.footer_social{
	width: 100%;
  max-width: 1140px;
  display: block;
  margin: 0 auto;
  padding-top: 15px;
  text-align: right;
}

ul.footer_social li{
	display:inline-block;
  margin:0 ;
	line-height:100%!important;
}

ul.footer_social li a i {
  display: inline-block;
  margin: 0 5px;
  padding: 0;
  font-size: 29px!important;
  line-height: 24px!important;
  transition: all .5s ease-in-out;
  -moz-transition: all .25s ease-in-out;
  -webkit-transition: all .25s ease-in-out;
}

ul.footer_social li a i.fa-facebook,
ul.footer_social li a i.fa-instagram,
ul.footer_social li a i.fa-linkedin{
  color: #0A2E4C;
}

ul.footer_social li a i:hover {
	color:#0A2E4C!important;
}
/* ========================================================== */
/*                     04. END FOOTER                         */
/* ========================================================== */

/* ========================================================== */
/* 			         05. BEGIN MEDIA QUERIES                      */
/* ========================================================== */

/*Dispositivos small*/
@media screen and (max-width: 600px) {
  /*Begin Nav-Bar*/
  .navbar-fixed-top {
    background-color: #fff!important;
    border-bottom: 0px solid #fff;
  }
  .left-menu {
    margin-left: 0px !important;
    margin-top: 32px;
  }

  /*Begin Section 01*/
  .section01 {
    position: relative;
    padding-top: 152px;
    padding-bottom:66px;
    background: url(../images/AllSec01Back.jpg) top center no-repeat;
    background-size: cover;
    z-index: 10;
    overflow: hidden;
  }
  .sec01titleh1{
    font-family: 'OpenSans-Regular';
    color: #fff;
    font-size: 24px;
    line-height: 36px;
    text-align: left;
    margin: 0;
    padding: 20px 0 30px 0;
    font-weight: 200;
  }
  .sec01titleh2{
    font-family: 'OpenSans-Regular';
    color: #fff;
    font-size: 18px;
    line-height: 32px;
    text-align: left;
    margin: 0;
    padding: 0px 0 22px 0;
    font-weight: 200;
  }
  .sec01titleh3{
    font-family: 'OpenSans-Italic';
    color: #fff;
    font-size: 18px;
    line-height: 32px;
    text-align: left;
    margin: 0;
    padding: 4px 0 36px 0;
    font-weight: 200;
  }
  .sec01blockbut{
    text-align: left;
  }
  /*End Section 01*/

  /*Begin Section 02*/
  .section02 {
    position: relative;
    padding-top: 68px;
    padding-bottom: 68px;
    background:#fff;
    background-size: cover;
    z-index: 10;
    overflow: hidden;
  }
  .sec02block01 {
    background: #0088FF;
    padding: 32px 10px 25px;
    border-radius: 34px;
    text-align: center;
    box-shadow: 13px 13px 24px #9b9b9b;
    margin: 0 0 38px;
  }
  .sec02blockh2 {
    font-family: 'OpenSans-Bold';
    color: #fff;
    font-size: 30px;
    line-height: 36px;
    padding: 36px 0 4px 0;
  }
  .sec02blockph1 {
    font-family: 'OpenSans-Regular';
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    padding: 0 20px;
  }
  .sec02block02{
    background: #0088FF;
    padding: 32px 10px 51px;
    border-radius: 34px;
    text-align: center;
    box-shadow: 13px 13px 24px #9b9b9b;
    margin: 0 0 38px;
  }
  .sec02blockh22 {
    font-family: 'OpenSans-Bold';
    color: #fff;
    font-size: 30px;
    line-height: 36px;
    padding: 37px 0 8px 0;
  }
  .sec02blockph12 {
    font-family: 'OpenSans-Regular';
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    padding: 0 20px;
  }
  .sec02block03 {
    background: #0088FF;
    padding: 32px 10px;
    border-radius: 34px;
    text-align: center;
    box-shadow: 13px 13px 24px #9b9b9b;
    margin: 0 0 38px;
  }
  .sec02blockh23 {
    font-family: 'OpenSans-Bold';
    color: #fff;
    font-size: 30px;
    line-height: 36px;
    padding: 20px 0 4px 0;
  }
  .sec02blockph13 {
    font-family: 'OpenSans-Regular';
    color: #fff;
    font-size: 18px;
    line-height: 22px;
    padding: 0 20px;
  }
  /*End Section 02*/

  /*Begin Section 03*/
  .section03 {
    position: relative;
    padding-top: 66px;
    padding-bottom: 60px;
    background: url(../images/allsec03back.jpg) top center no-repeat;
    background-size: cover;
    z-index: 10;
    overflow: hidden;
  }
  .sec03titleh2{
    font-family: 'OpenSans-ExtraBold';
    color: #0A2E4C;
    font-size: 30px;
    line-height: 38px;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 22px 0;
    padding: 0;
    text-align: left;
  }
  .sec03titleh3{
    font-family: 'OpenSans-ExtraBold';
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    padding: 0 0 8px 0;
    text-align: left;
  }
  .sec03phs{
    font-family: 'OpenSans-Regular';
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    padding: 0;
    margin: 0px 0 40px 0;
    text-align: left;
  }
  .sec03blockbut{
    text-align: left;
  }
  /*End Section 03*/

  /*Begin Section 04*/
  .section04 {
    position: relative;
    padding-top: 66px;
    padding-bottom: 60px;
    background: url(../images/allsec04back.jpg) top center no-repeat;
    background-size: cover;
    z-index: 10;
    overflow: hidden;
  }
  .sec04titleh2{
    font-family: 'OpenSans-ExtraBold';
    color: #0088ff;
    font-size: 30px;
    line-height: 38px;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 22px 0;
    padding: 0;
    text-align: left;
  }
  .sec04titleh3{
    font-family: 'OpenSans-ExtraBold';
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    padding: 0 0 8px 0;
    text-align: left;
  }
  .sec04phs{
    font-family: 'OpenSans-Regular';
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    padding: 0;
    margin: 0px 0 40px 0;
    text-align: left;
  }
  .sec04blockbut{
    text-align: left;
  }
  /*End Section 04*/

  /*Begin Section 05*/
  .section05 {
    position: relative;
    padding-top: 66px;
    padding-bottom: 60px;
    background: url(../images/allsec05back.jpg) top left no-repeat;
    background-size: cover;
    z-index: 10;
    overflow: hidden;
  }
  .sec05titleh2{
    font-family: 'OpenSans-ExtraBold';
    color: #0A2E4C;
    font-size: 30px;
    line-height: 38px;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 22px 0;
    padding: 0;
    text-align: left;
  }
  .sec05titleh3{
    font-family: 'OpenSans-ExtraBold';
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    padding: 0 0 8px 0;
    text-align: left;
  }
  .sec05phs{
    font-family: 'OpenSans-Regular';
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    padding: 0;
    margin: 0px 0 40px 0;
    text-align: left;
  }
  .sec05blockbut{
    text-align: left;
  }
  /*End Section 05*/

  /*Begin Section 06*/
  .section06 {
    position: relative;
    padding-top: 66px;
    padding-bottom: 60px;
    background: url(../images/allsec06back.jpg) top center no-repeat;
    background-size: cover;
    z-index: 10;
    overflow: hidden;
  }
  .sec06titleh2{
    font-family: 'OpenSans-ExtraBold';
    color: #0088ff;
    font-size: 30px;
    line-height: 38px;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 22px 0;
    padding: 0;
    text-align: left;
  }
  .sec06titleh3{
    font-family: 'OpenSans-ExtraBold';
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    padding: 0 0 8px 0;
    text-align: left;
  }
  .sec06phs{
    font-family: 'OpenSans-Regular';
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    padding: 0;
    margin: 0px 0 40px 0;
    text-align: left;
  }
  .sec06blockbut{
    text-align: left;
  }
  /*End Section 06*/

  /*Begin Section 07*/
  .section07 {
    position: relative;
    padding-top: 66px;
    padding-bottom: 60px;
    background: url(../images/allsec07back.jpg) top center no-repeat;
    background-size: cover;
    z-index: 10;
    overflow: hidden;
  }
  .sec07titleh2{
    font-family: 'OpenSans-ExtraBold';
    color: #0A2E4C;
    font-size: 30px;
    line-height: 38px;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 22px 0;
    padding: 0;
    text-align: left;
  }
  .sec07titleh3{
    font-family: 'OpenSans-ExtraBold';
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    padding: 0 0 8px 0;
    text-align: left;
  }
  .sec07phs{
    font-family: 'OpenSans-Regular';
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    padding: 0;
    margin: 0px 0 40px 0;
    text-align: left;
  }
  .sec07blockbut{
    text-align: left;
  }
  /*End Section 07*/

  /*Begin Section 08*/
  .section08{
    position: relative;
    padding-top: 66px;
    padding-bottom: 60px;
    background: url(../images/allsec08back.jpg) top center no-repeat;
    background-size: cover;
    z-index: 10;
    overflow: hidden;
  }
  .sec08titleh2{
    font-family: 'OpenSans-ExtraBold';
    color: #0088ff;
    font-size: 30px;
    line-height: 38px;
    text-transform: uppercase;
    font-weight: 900;
    margin: 0 0 22px 0;
    padding: 0;
    text-align: left;
  }
  .sec08titleh3{
    font-family: 'OpenSans-ExtraBold';
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    margin: 0;
    padding: 0 0 8px 0;
    text-align: left;
  }
  .sec08phs{
    font-family: 'OpenSans-Regular';
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    padding: 0;
    margin: 0px 0 40px 0;
    text-align: left;
  }
  .sec08blockbut{
    text-align: left;
  }
  /*End Section 08*/

  /*Begin Section 09*/
  .section09{
    position: relative;
    padding-top: 66px;
    padding-bottom: 60px;
    background: url(../images/allsec09back.jpg) top center no-repeat;
    background-size: cover;
    z-index: 10;
    overflow: hidden;
  }
  .sec09titleh2{
    font-family: 'OpenSans-ExtraBold';
    color: #fff;
    font-size: 30px;
    line-height: 38px;
    text-align: center;
    margin: 0;
    padding: 0 36px 42px;
  }
  .sec09blockbut{
    text-align: center;
    margin: 35px 0 0 0;
  }
 /*Begin Carousel*/
  .tasec02products{
    padding: 0px 15px;
  }
  .bg-left-half {
    position: relative; 
  }
  .bg-left-half:before {
    position: absolute;
    width: 50%;
    height: 100%;
    z-index: -1;
    content: "";
    left: 0;
    top: 0;
    background-color: #0000; 
  }
  .media-29101 img {
    margin-bottom: 0px;
  }
  .media-29101 h3 {
    font-size: 18px;
    font-weight: 900 !important; 
  }
  .owl-2-style .owl-nav {
    display: none; 
  }
  .owl-2-style .owl-dots {
    text-align: center;
    position: relative;
    bottom: -30px; 
  }
  .owl-2-style .owl-dots .owl-dot {
    display: inline-block; 
  }
  .owl-2-style .owl-dots .owl-dot span {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 60px;
    background: #ffffff;
    -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    margin: 0 14px 10px;
  }
  .owl-2-style .owl-dots .owl-dot.active span {
    background: #000;
  }
  .owl-2-style .owl-dots .owl-dot:active, .owl-2-style .owl-dots .owl-dot:focus {
    outline: none; 
  }
  /*Begin Carousel*/
  /*End Section 09*/

  /*Begin Section 10*/
  .section10{
    position: relative;
    padding-top: 72px;
    padding-bottom: 30px;
    background: url(../images/allsec10back.jpg) top center no-repeat;
    background-size: cover;
    z-index: 10;
    overflow: hidden;
  }
  .sec010titleh21{
    font-family: 'OpenSans-Regular';
    color: #0A2E4C;
    font-size: 38px;
    line-height: 40px;
    text-align: center;
    margin: 0;
    padding: 0 0 42px 0;
  }
  .sec010blockimg1{
    text-align: center;
    margin: 0 0 42px 0;
  }
  .imgwidth{
    width: 65%;
  }
  .sec010blockslide{
    text-align: center;
  }
  .sec010titleh22{
    font-family: 'OpenSans-Regular';
    color: #0A2E4C;
    font-size: 22px;
    line-height: 34px;
    text-align: center;
    margin: 0;
    padding: 26px 0 4px 0;
  }
  .sec010titleh31{
    font-family: 'OpenSans-ExtraBold';
    color: #0A2E4C;
    font-size: 24px;
    line-height: 28px;
    text-transform: uppercase;
    text-align: center;
    margin: 0;
    padding: 0 0 24px 0;
  }
  .sec010blockimgseguradoras{
    text-align: center;
  }
  /*Begin Carousel*/
  .bg-left-half {
    position: relative; 
  }
  .bg-left-half:before {
    position: absolute;
    width: 50%;
    height: 100%;
    z-index: -1;
    content: "";
    left: 0;
    top: 0;
    background-color: #0000; 
  }
  .media-29101 img {
    margin-bottom: 0px; 
  }
  .media-29101 h3 {
    font-size: 18px;
    font-weight: 900 !important; 
  }
  .owl-3-style .owl-nav {
    display: none; 
  }
  .owl-3-style .owl-dots {
    text-align: center;
    position: relative;
    bottom: -30px; 
  }
  .owl-3-style .owl-dots .owl-dot {
    display: inline-block; 
  }
  .owl-3-style .owl-dots .owl-dot span {
    display: inline-block;
    width: 15px;
    height: 15px;
    border-radius: 60px;
    background: #0089ff;
    -webkit-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    -o-transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    transition: 0.3s all cubic-bezier(0.32, 0.71, 0.53, 0.53);
    margin: 3px;
  }
  .owl-3-style .owl-dots .owl-dot.active span {
    background: #164783;
  }
  .owl-3-style .owl-dots .owl-dot:active, .owl-3-style .owl-dots .owl-dot:focus {
    outline: none; 
  }
  /*End Carousel*/
  /*End Section 10*/

  /*Begin Section 11*/
  .section11{
    position: relative;
    padding-top: 72px;
    padding-bottom: 30px;
    background: url(../images/allsec11back.jpg) top center no-repeat;
    background-size: cover;
    z-index: 10;
    overflow: hidden;
  }
  .sec11titleh2{
    font-family: 'OpenSans-Regular';
    color: #fff;
    font-size: 24px;
    line-height: 38px;
    text-align: left;
    margin: 0;
    padding: 0px 0 22px 0;
    text-transform: uppercase;
  }
  .sec11titleph2{
    font-family: 'OpenSans-Regular';
    font-size: 18px;
    line-height: 28px;
    color: #fff;
    padding: 0;
    margin: 0 0px 33px 0;
    text-align: left;
  }
  .sec11blockforms{
    background: #01274f;
    margin: 0 0px 0;
    border-radius: 12px;
    padding: 15px 10px 20px;
  }
  .sec11txtform{
    font-family: 'OpenSans-Regular';
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    padding: 0;
    margin: 0 0px 8px;
    text-align: center;
  }
  /*End Section 11*/

 /*formulario*/
  .allblockform{
    margin: 0 18px;
  }
  .form{
    display: flex;
    flex-direction: column;
  }
  .field {
    background: #ffffff;
    padding: 10px;
    color: #000 !important;
    margin: 0 0 12px 0;
    border-radius: 5px;
    border: 2px solid #ffffff;
    font-family: 'OpenSans-Semibold';
    font-size: 16px;
    line-height: 1px;
  }
  [type=reset], [type=submit]{
    -webkit-appearance: media-volume-slider;
    cursor: pointer;
    background: #000;
    color: #fff;
    padding-top: 10px;
    padding-bottom: 16px;
    font-size: 25px;
    width: 74%;
    line-height: 26px;
    font-family: 'OpenSans-Semibold';
    letter-spacing: 0px;
    border-radius: 6px;
    box-shadow: 5px 6px 5px #0000003d;
  }
  input:-internal-autofill-selected {
    appearance: menulist-button;
    background-image: none !important;
    background-color: -internal-light-dark(rgb(232, 240, 254), rgba(70, 90, 126, 0.4)) !important;
    color: -internal-light-dark(black, white) !important;
  }
  ::-webkit-input-placeholder{
    color: #000;
    font-weight: bold;
  }
  .bot_form {
    background-color: #00fd43!important;
    border: 1px solid #00fd43;
    padding: 15px 10px 14px 10px !important;
    color: #01274f;
    width: 100%;
    font-family: 'OpenSans-ExtraBold';
    font-weight: 100;
    font-size: 19px;
    border-radius: 60px;
    letter-spacing: 0px;
    text-transform: uppercase;
    cursor: pointer;
    margin: 6px 0 0 0;
  }
  .form-control {
    display: block;
    width: 100%;
    height: calc(44px + 2px);
    font-size: 16px;
    line-height: 23px;
    font-family: 'OpenSans-Semibold';
    color: #000 !important;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ffffff;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
  }
  label {
    display: inline-block;
    margin: 0;
    color: #fff;
    font-family: 'OpenSans-Semibold';
    font-size: 14px;
    letter-spacing: 0px;
  }
  .colrequired{
    color: #f00;
  }
  /*formulario*/

  /*Begin Page Obrigado*/
  .allCorSec0bg {
    position: relative;
    padding-top: 0px;
    padding-bottom: 80px;
    background: #fff;
    background-size: cover;
    z-index: 10;
    overflow: hidden;
  }
  .allcorimgobg{
    text-align: center;
    margin: 0 0 0 -128px;
  }
  .allCorSec0bgTitle{
    font-family: 'OpenSans-ExtraBold';
    font-size: 38px;
    line-height: 46px;
    margin: 0 0 0 0;
    text-align: center;
    color: #0A2E4C;
    padding: 0;
  }
  .allCorSec0bgTitle2{
    font-family: 'OpenSans-Regular';
    font-size: 25px;
    line-height: 32px;
    margin: 14px 0 0 0;
    text-align: center;
    color: #0A2E4C;
    padding: 0;
  }
  .allCorSec0bglOG{
    margin: -47px 0 33px 0;
    text-align: center;;
  }
  .allExtrabold{
    font-family: 'OpenSans-ExtraBold';  
  }
  .imgobgmobile{
    width: 100%;
  }

  .imgwidth2{
    width: 100%;
  }
  /*End Page Obrigado*/

  /* 03. END CONTEÚDO*/

  /* 04. BEGIN FOOTER */
  .AllVfooter{
    padding: 40px 0 28px 0;
    background-color: #fff;
    border-top: 1px solid #fff;
  }

  .Allfooterblockimg{
    text-align: center;
    margin: 0 0 18px 0;
  }

  .AllVfooterP1{
    margin-bottom: 0px;
    line-height: 13px;
    color: #0A2E4C;
    font-size: 12px;
    font-weight: unset;
    letter-spacing: 0px;
    text-align: center;
    text-transform: none;
    margin-top: 14px;
    font-family: 'OpenSans-Semibold';
  }
  .AllVfooterP2{
    margin-bottom: 5px;
    line-height: 24px;
    color: #0A2E4C;
    font-size: 12px;
    letter-spacing: 0px;
    text-align: center;
    margin-top: 0px;
    font-family: 'OpenSans-Semibold';
  }
  /* Footer Social Icons */
  ul.footer_social{
    width: 100%;
    max-width: 1140px;
    display: block;
    margin: 0 auto;
    text-align: center;
    padding: 0;
  }

  ul.footer_social li{
    display:inline-block;
    margin:0 ;
    line-height:100%!important;
  }

  ul.footer_social li a i {
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    font-size: 30px!important;
    line-height: 26px!important;
    transition: all .5s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -webkit-transition: all .25s ease-in-out;
  }

  ul.footer_social li a i.fa-facebook,
  ul.footer_social li a i.fa-instagram,
  ul.footer_social li a i.fa-linkedin{
    color: #0A2E4C;
  }

  ul.footer_social li a i:hover {
    color:#0A2E4C!important;
  }
  /* 04. END FOOTER */

}
@media screen and  (min-width: 992px) {


}
/* ========================================================== */
/*                 05. END MEDIA QUERIES                      */
/* ========================================================== */