/*
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. Formulário
    03. 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: #fff!important;
  background-color: #327BBF;
  border-color: #327BBF;
  font-family: 'OpenSans-ExtraBold';
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 20px;
  margin: -10px 0px 0 20px;
  border-radius: 10px;
}
.btn-primary:hover{
  color: #fff!important;
  background-color: #327BBF;
  border-color: #327BBF;
  font-family: 'OpenSans-ExtraBold';
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  padding: 10px 20px;
  margin: -10px 0px 0 20px;
  border-radius: 10px;
}
.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                        */
/* ========================================================== */
/*Begin Section 01*/
.allCorSec01 {
  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;
}
.allCorSec01block {
  margin: 16px 0 0 0;
}
.allCorSec01h1{
  font-family: 'OpenSans-ExtraBold';
  font-size: 53px;
  line-height: 65px;
  color: #fff;
  margin: 22px 14px 12px 0;
  padding: 0;
  font-weight: 400;
  text-align: left;
}
.allCorSec01h2{
  font-family: 'OpenSans-Light';
  font-size: 48px;
  line-height: 56px;
  color: #fff;
  padding: 0 58px 0 0;
  margin: 0 0 10px 0;
  text-align: left;
}
.allCorSec01h3{
  font-family: 'OpenSans-ExtraBold';
  font-size: 24px;
  color: #fff;
  line-height: 28px;
  margin: 0 156px 0 0;
  padding: 0 0 0 0;
  font-weight: 800;
  text-align: left;
}
.allblockbut2{
  text-align: left;
  margin: 48px 0 0;  
}
/*End Section 01*/

/*Begin Section 02*/
.allCorSec02 {
  position: relative;
  padding-top: 64px;
  padding-bottom: 50px;
  background: url(../images/AllSec02Back.jpg) top center no-repeat;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
}
.allsec02title{
  font-family: 'OpenSans-ExtraBold';
  color: #0A2E4C;
  font-size: 54px;
  line-height: 58px;
  margin: 0 0 56px 0;
  padding: 0;
  font-weight: 400;
  text-align: left;
}
.allsec02ph{
  font-family: 'OpenSans-Light';
  color: #0A2E4C;
  font-size: 28px;
  line-height: 36px;
  margin: 24px 0 20px 0;
  padding: 0;
  font-weight: 100;
  text-align: left;
}
.allsec02ph2{
  font-family: 'OpenSans-ExtraBold';
  color: #0A2E4C;
  font-size: 28px;
  line-height: 36px;
  margin: 52px 0 0px 0;
  padding: 0;
  font-weight: 100;
  text-align: left;
}
.bold{
  font-family: 'OpenSans-ExtraBold';
}
.allcorimgseguradoras{

}
/*End Section 02*/

/*Begin Section 03*/
.allCorSec03 {
  position: relative;
  padding-top: 22px;
  padding-bottom: 66px;
  background: #fff;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
}
.allsec03title{
  font-family: 'OpenSans-Regular';
  color: #0A2E4C;
  font-size: 30px;
  line-height: 38px;
  margin: 0;
  padding: 0 48px 0 0;
  font-weight: 100;
  text-align: center;
}
.allsec03ph{
  font-family: 'OpenSans-Light';
  color: #707070;
  font-size: 22px;
  line-height: 18px;
  padding: 18px 0 44px 0;
  margin: 0;
  font-weight: 100;
  text-align: center;
}
/*End Section 03*/

/*Begin Section 05*/
.allCorSec05 {
  position: relative;
  padding-top: 66px;
  padding-bottom: 53px;
  background: #0088FF;
  background-size: cover;
  z-index: 10;
  overflow: hidden;
}
.btn-allbut2{
  color: #0A2E4C;
  background-color: #00FD43;
  border-color: #00FD43;
  font-family: 'OpenSans-ExtraBold';
  font-size: 22px;
  text-align: center;
  text-transform: uppercase;
  padding: 14px 30px;
  margin: 0px 0px 0 0px;
  border-radius: 12px;
}
.btn-allbut2:hover{
  color: #0A2E4C;
  background-color: #00FD43;
  border-color: #00FD43;
  font-family: 'OpenSans-ExtraBold';
  font-size: 22px;
  text-align: center;
  text-transform: uppercase;
  padding: 14px 30px;
  margin: 0px 0px 0 0px;
  border-radius: 12px;
}
.allsec05subph{
  font-family: 'OpenSans-Light';
  color: #fff;
  font-size: 23px;
  line-height: 33px;
  margin: 0px 64px 0 0;
  padding: 0;
  font-weight: 100;
}
.Extrabold{
  font-family: 'OpenSans-ExtraBold';
  font-size: 28px;
}
/*End Section 05*/

/*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: #0A2E4C;
  width: 100%;
  font-family: 'OpenSans-ExtraBold';
  font-weight: 100;
  font-size: 28px;
  border-radius: 10px;
  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*/

/*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: 74px 0 0 0;
}
.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*/
/* ========================================================== */
/*                    03. END CONTEÚDO                        */
/* ========================================================== */

/* ========================================================== */
/* 			             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;
  }
  .btn-primary {
    color: #fff!important;
    background-color: #327BBF;
    border-color: #327BBF;
    font-family: 'OpenSans-ExtraBold';
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 20px;
    margin: 20px 0px 0 20px;
    border-radius: 10px;
  }
  .btn-primary:hover {
    color: #fff!important;
    background-color: #327BBF;
    border-color: #327BBF;
    font-family: 'OpenSans-ExtraBold';
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    padding: 10px 20px;
    margin: 20px 0px 0 20px;
    border-radius: 10px;
  }
  /*03. BEGIN CONTEÚDO*/
  /*Begin Section 01*/
  .allCorSec01 {
    position: relative;
    padding-top: 130px;
    padding-bottom: 0px;
    background: #0A2E4C;
    background-size: cover;
    z-index: 10;
    overflow: hidden;
  }
  .allCorSec01block {
    margin: 20px 0 0 0;
  }
  .allCorSec01h1{
    font-family: 'OpenSans-ExtraBold';
    font-size: 32px;
    line-height: 43px;
    color: #fff;
    margin: 22px 110px 12px 0;
    padding: 0;
    font-weight: 400;
  }
  .allCorSec01h2{
    font-family: 'OpenSans-Light';
    font-size: 28px;
    line-height: 40px;
    color: #fff;
    padding: 0;
    margin: 0px 80px 28px 0;
    text-align: left;
  }
  .allCorSec01h3{
    font-family: 'OpenSans-ExtraBold';
    font-size: 20px;
    color: #fff;
    line-height: 28px;
    margin: 0 42px 0 0;
    padding: 0 0 0 0;
    font-weight: 800;
    text-align: left; 
  }
  .allblockbut2{
    text-align: left;
    margin: 22px 0 46px; 
  }
  /*End Section 01*/
  /*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: #0A2E4C;
    width: 100%;
    font-family: 'OpenSans-ExtraBold';
    font-weight: 100;
    font-size: 19px;
    border-radius: 10px;
    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 Section 02*/
  .allCorSec02 {
    position: relative;
    padding-top: 48px;
    padding-bottom: 0px;
    background: #ffffff;
    background-size: cover;
    z-index: 10;
    overflow: hidden;
  }
  .allsec02title{
    font-family: 'OpenSans-ExtraBold';
    color: #0A2E4C;
    font-size: 32px;
    line-height: 37px;
    margin: 0 0 32px 0;
    padding: 0;
    font-weight: 400;
    text-align: center;
  }
  .allsec02ph{
    font-family: 'OpenSans-Light';
    color: #0A2E4C;
    font-size: 20px;
    line-height: 28px;
    margin: 8px 0 20px 0;
    padding: 0;
    font-weight: 100;
    text-align: center;
  }
  .bold{
    font-family: 'OpenSans-ExtraBold';
  }
  .allsec02ph2 {
    font-family: 'OpenSans-ExtraBold';
    color: #0A2E4C;
    font-size: 20px;
    line-height: 24px;
    margin: 52px 0 -14px 0;
    padding: 0;
    font-weight: 100;
    text-align: center;
  }
  .allcorimgseguradorasdesktop{
    display: none;
  }
  .allcorimgseguradorasmobile{
    text-align: center;
    visibility: visible;
  }
  /*End Section 02*/

  /*Begin Section 03*/
  .allCorSec03 {
    position: relative;
    padding-top: 18px;
    padding-bottom: 40px;
    background: #fff;
    background-size: cover;
    z-index: 10;
    overflow: hidden;
  }
  .AllfooterblockIMG{
    text-align: center;
    margin: 0 0 26px 0;
  }
  .allsec03title{
    font-family: 'OpenSans-ExtraBold';
    color: #0A2E4C;
    font-size: 26px;
    line-height: 35px;
    margin: 0;
    text-align: center;
    padding: 0 0px 0 0;
    font-weight: 100;
  }
  .allsec03ph{
    font-family: 'OpenSans-Light';
    color: #0A2E4C;
    font-size: 18px;
    line-height: 26px;
    padding: 9px 0 32px 0;
    margin: 0;
    font-weight: 100;
    text-align: center;
  }
  .allsec03imgMob{
    text-align: center;
    visibility: visible;
  }
  .apback01{
    text-align: center;
    margin: 0 0 40px 0;
  }
  .apback02{
    text-align: center;
    margin: 0 0 40px 0;
  }
  .apback03{
    text-align: center;
    margin: 0 0 40px 0;
  }
  /*End Section 03*/

  /*Begin Section 05*/
  .allCorSec05 {
    position: relative;
    padding-top: 66px;
    padding-bottom: 66px;
    background: #0088FF;
    background-size: cover;
    z-index: 10;
    overflow: hidden;
  }
  .btn-allbut2{
    color: #0A2E4C;
    background-color: #00FD43;
    border-color: #00FD43;
    font-family: 'OpenSans-ExtraBold';
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    padding: 14px 41px;
    margin: 0;
    border-radius: 12px;
  }
  .btn-allbut2:hover{
    color: #0A2E4C;
    background-color: #00FD43;
    border-color: #00FD43;
    font-family: 'OpenSans-ExtraBold';
    font-size: 18px;
    text-align: center;
    text-transform: uppercase;
    padding: 14px 41px;
    margin: 0;
    border-radius: 12px;
  }
  .allsec05subph{
    font-family: 'OpenSans-Light';
    color: #fff;
    font-size: 18px;
    line-height: 30px;
    margin: 0 0 20px 0;
    padding: 0;
    font-weight: 100;
    text-align: center;
  }

  .Extrabold {
    font-family: 'OpenSans-ExtraBold';
    font-size: 20px;
  }
  
  /*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: 24px 0 51px 0px;
  }
  .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: 80%;
  }
  /*End Page Obrigado*/

  /* 03. END CONTEÚDO*/

  /* 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: 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) {
  .allsec03imgMob{
    display: none;
  }
  .allcorimgseguradorasdesktop{
    visibility: visible;
  }
  .allcorimgseguradorasmobile{
    display: none;    
  }
}
/* ========================================================== */
/*                 05. END MEDIA QUERIES                      */
/* ========================================================== */