/*
------------------------------------
COntent table
------------------------------------
-Global styles
-keyframes Animation
-Preloader
-Header
-Home
-About and features
-Services
-Achievement
-Contact
-Footer
-Media Quaries
------------------------------------*/

body {
	font-family: 'Roboto', sans-serif;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 400;
	color: #333333;
	overflow-x: hidden;
	text-rendering: optimizelegibility;
	background: url('../images/bg/bg-texture-grey.png');
}

ul,ol {
	margin: 0;
	padding: 0;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

a:focus {
	text-decoration: none;
}

input:focus, textarea:focus {
	outline: 0;
}

img {
	max-width: 100%;
}

p {
	margin: 0 0 10px;
	color: #888888;
}

h1,h2,h3,h4 {
	font-family: 'Roboto slab',  serif;
	font-weight: 400;
	text-transform: uppercase;
}

h1 {
	font-size: 48px;
}

h2 {
	font-size: 28px
}

h3 {
	font-size: 24px;
}

h4 {
	font-size: 18px;
	line-height: 1.4;
	font-weight: 700;
	letter-spacing: 2px;
	margin: 0 0 10px;
}

h5 {
	font-family: 'Roboto slab',  serif;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: 1px;
	margin: 0 0 10px;
}

h6 {
	font-size: 14px;
}

.text-lowercase {
	text-transform: lowercase;
}

.text-blue-bold {
	color: rgb(50,153,187);	
	text-transform: uppercase;
	font-weight: bold;
}

.text-center {
	text-align: center;
}

.text-left {
	text-align: left;
}

.text-right {
	text-align: right;
}

.section-title {
	text-align: center;
	margin-bottom: 80px;
}

.section-title h3 {
	display: inline-block;
	font-size: 36px;
	line-height: 46px;
	font-weight: 300;
	margin: 0 0 20px;
	text-transform: uppercase;
	letter-spacing: 2px;
}

.section-title .blue-bold {
	color: rgb(50,153,187);
	font-weight: 700;
	text-shadow: 1px 1px 1px rgba(0,0,0, .15);
}

.black-border, .white-border {
	position: relative;
}

.black-border:before, .white-border:before {
	position: absolute;
	content: "";
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 2px;
}

.black-border:before {
	background-color: #262522;
}

.white-border:before {
	background-color: #ffffff;
}


.blue-border {
	position: relative;
	height: 100%;
  	display: inline-block;
}

.blue-border:before {
	position: absolute;
	content: "";
	bottom: 0px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: rgb(50,153,187)  ; /* #a12d23 vermelho */;
}

.white-border .blue-border {
	color: #ffffff;
}

.error {
	color: #FB2E1C;
}

.obs {
    color: rgb(252,208,54) !important;
}

.container {
/*	max-width: 1000px; */
}

.home-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0, .5);
	z-index: 1;
}

/*--------------- keyframes Animation ----------------*/

@-webkit-keyframes toRight {
	0% { 
		-webkit-transform: translateX(0px) skew(-21deg);
	 }
	50% { 
		-webkit-transform: translateX(45px) skew(-21deg);
	 }
	51% { 
		-webkit-transform: translateX(-45px) skew(-21deg);
	 }
	 100% { 
		-webkit-transform: translateX(0px) skew(-21deg);
	 }
}

@-moz-keyframes toRight {
	0% { 
		-moz-transform: translateX(0px) skew(-21deg);
	 }
	50% { 
		-moz-transform: translateX(45px) skew(-21deg);
	 }
	51% { 
		-moz-transform: translateX(-45px) skew(-21deg);
	 }
	 100% { 
		-moz-transform: translateX(0px) skew(-21deg);
	 }
}

@-o-keyframes toRight {
	0% { 
		-o-transform: translateX(0px) skew(-21deg);
	 }
	50% { 
		-o-transform: translateX(45px) skew(-21deg);
	 }
	51% { 
		-o-transform: translateX(-45px) skew(-21deg);
	 }
	 100% { 
		-o-transform: translateX(0px) skew(-21deg);
	 }
}

@keyframes toRight {
	0% { 
		transform: translateX(0px) skew(-21deg);
	 }
	50% { 
		transform: translateX(45px) skew(-21deg);
	 }
	51% { 
		transform: translateX(-45px) skew(-21deg);
	 }
	 100% { 
		transform: translateX(0px) skew(-21deg);
	 }
}


@-webkit-keyframes fly {
	0% { 
		-webkit-transform: translateX(0px) translateY(0px);
	 }
	50% { 
		-webkit-transform: translateX(35px) translateY(-35px);
	 }
	51% { 
		-webkit-transform: translateX(-35px) translateY(35px);
	 }
	 100% { 
		-webkit-transform: translateX(0px) translateY(0px);
	 }
}

@-moz-keyframes fly {
	0% { 
		-moz-transform: translateX(0px) translateY(0px);
	 }
	50% { 
		-moz-transform: translateX(35px) translateY(-35px);
	 }
	51% { 
		-moz-transform: translateX(-35px) translateY(35px);
	 }
	 100% { 
		-moz-transform: translateX(0px) translateY(0px);
	 }
}

@-o-keyframes fly {
	0% { 
		-o-transform: translateX(0px) translateY(0px);
	 }
	50% { 
		-o-transform: translateX(35px) translateY(-35px);
	 }
	51% { 
		-o-transform: translateX(-35px) translateY(35px);
	 }
	 100% { 
		-o-transform: translateX(0px) translateY(0px);
	 }
}

@keyframes fly {
	0% { 
		transform: translateX(0px) translateY(0px);
	 }
	50% { 
		transform: translateX(35px) translateY(-35px);
	 }
	51% { 
		transform: translateX(-35px) translateY(35px);
	 }
	 100% { 
		transform: translateX(0px) translateY(0px);
	 }
}

@-webkit-keyframes frombottom {
	0% { 
		-webkit-transform: translateY(0px);
	 }
	 100% { 
		-webkit-transform: translateY(-80px);
	 }
}

@-moz-keyframes frombottom {
	0% { 
		-moz-transform: translateY(0px);
	 }
	 100% { 
		-moz-transform: translateY(-80px);
	 }
}

@-o-keyframes frombottom {
	0% { 
		-o-transform: translateY(0px);
	 }
	 100% { 
		-o-transform: translateY(-80px);
	 }
}

@keyframes frombottom {
	0% { 
		transform: translateY(0px);
	 }
	 100% { 
		transform: translateY(-80px);
	 }
}

/*--------------- End keyframes Animation ----------------*/

/*--------------- Preloader ----------------*/
.preloader {
	position: fixed;
	width: 100%;
	height: 100%;
	z-index: 1010;
	background: #888888;
}

.loading-icon {
	position: absolute;
	top: calc(50% - 27px);
	left: 0;
	right: 0;
	margin: auto;
	width: 54px;
	height: 54px;
	border-radius: 50%;
	box-shadow: inset 0px 0px 0px 4px #eee;
}
.loading-icon:before {
	position: absolute;
	content: "";
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	border-top: 4px solid rgb(50,153,187)  ; /* #a12d23 vermelho */;
	border-bottom: 4px solid transparent;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;

	-webkit-animation: fa-spin 1s infinite linear;
	-moz-animation: fa-spin 1s infinite linear;
	-o-animation: fa-spin 1s infinite linear;
  	animation: fa-spin 1s infinite linear;
}
/*--------------- End Preloader ----------------*/

/*--------------- Header ----------------*/
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 70px;
	background: url('../images/header-bg.png') left top/cover no-repeat;
	box-shadow: 0px 10px 0px rgba(0, 0, 0, 0.3);
	z-index: 999;
}

.site-logo img {
	height: 42px;
	width: auto;
	margin: 14px 0;
}

.nav-container {
	padding-right: 0;
}

.navigation {
	list-style: none;
	height: 70px;	
}

.navigation li {
	display: inline-block;
}

.navigation li a {
	font-family: 'Roboto Slab', serif;
	padding: 24.5px 13px;
	line-height: 70px;
	color: #fff;

	-webkit-transition: all .3s ease-in;
	-moz-transition: all .3s ease-in;
	-ms-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	transition: all .3s ease-in;
}

.navigation li a:hover {
	color: #f6f6f6;
	background-color: rgba(0, 0, 0, .3);
}

.socials {
	list-style: none;
	float: right;
}

.socials li {
	display: inline-block;
  	padding: 23px 0px;
}

.socials li a {
	text-align: center;
	display: inline-block;
	margin: 0px 5px;
	color: #fff;
	font-size: 14px;
	line-height: 25px;
	height: 25px;
	width: 25px;
	background-color: transparent;
	border-radius: 50%;

	-webkit-transition: all .3s ease-in;
	-moz-transition: all .3s ease-in;
	-ms-transition: all .3s ease-in;
	-o-transition: all .3s ease-in;
	transition: all .3s ease-in;
}

.socials li a:hover {
	background-color: #fff;
	color: #333;
}
/*--------------- End Header ----------------*/

/*--------------- Home ----------------*/
.home-wrap {
	position: relative;
	background: url('../images/home-wrap-bg.jpg') center center no-repeat;
	min-height: 300px;
}

.counter-wrap {
	position: relative;
	z-index: 10;
}

.counter {
/*	max-width: 450px; */
	color: rgb(233,233,233);
	margin: 100px auto 50px;
	overflow: hidden;
}

.countdown .count-int {
	font-family: 'Roboto slab',  serif;
	display: block;
	font-size: 48px;
	font-weight: 300;
}

.countdown .count-text {
	font-size: 16px;
}

.banner-wrap {
	background: url('../images/banner-bg.png') center center/cover no-repeat;
	position: relative;
	width: 100%;
	height: 240px;
/*	margin-top: 140px; */
	overflow: hidden;
	box-shadow: 0px 10px 0px rgba(0, 0, 0, 0.3);
	z-index: 10;
}

.banner-left {
	color: #fff;
	padding: 80px 60px 0 0;
}

.welcome {
	font-size: 55px;
	line-height: 55px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 1px 1px 1px rgba(0,0,0, .6);
	margin: 0;
}

.welcome h1 small {
	font-size: 30px;
	color: rgb(233,233,233);
}

.welcome-text {
	font-size: 55px;
	line-height: 55px;
	font-weight: 300;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 1px 1px 1px rgba(0,0,0, .6);
	margin: 0;
}

.welcome-text span {
	color: rgb(252,208,54); /* #747474;cinza rgb(0,180,255) azul   #a12d23; vermelho */
	font-weight: 700;
}     

.subtitle {
	font-size: 18px;
	margin: 0;
	font-weight: 300;
}

.banner-right{
	padding: 80px 0 0 90px;
}

.newsletter-title {
	font-size: 24px;
	color: #494849;
	margin: 0;
	text-transform: uppercase;
	text-shadow: 1px 1px 1px rgba(0,0,0, .1);
}

.newsletter-title span {
	color: rgb(50,153,187); /* #a12d23 vermelho 252,208,54 laranja */;
	font-weight: 700;
}


.cpf-input, .telefone-input {
	position: relative;
	display: inline-block;
	text-align: left;
/*	width: 330px;  */
	height: 44px;
	border: 1px solid rgb(50,153,187)  ; /* #a12d23 vermelho */;
	padding-left: 20px;

	-webkit-transform: skew(21deg);
	-moz-transform: skew(21deg);
	-ms-transform: skew(21deg);
	-o-transform: skew(21deg);
	transform: skew(21deg);
}

.login-input {
	display: inline-block;
	height: 100%;
	width: 230px;
	border: 0;
	border-radius: 0;
	background-color: transparent;

	-webkit-transform: skew(-21deg);
	-moz-transform: skew(-21deg);
	-ms-transform: skew(-21deg);
	-o-transform: skew(-21deg);
	transform: skew(-21deg);
}

.login-input:focus {
	outline: 0;
}

.login-submit {
	overflow: hidden;
	position: absolute;
	top: 0;
	right: 0;
	display: inline-block;
	background: rgb(50,153,187)  ; /* #a12d23 vermelho */;
	border: 0;
	border-radius: 0;
	height: 43px;
	width: 60px;
	color: #fff;
}

.login-submit i {
	-webkit-transform: skew(-21deg);
	-moz-transform: skew(-21deg);
	-ms-transform: skew(-21deg);
	-o-transform: skew(-21deg);
	transform: skew(-21deg);
}

.login-submit:hover i {
	-webkit-animation: toRight 1s forwards;
	-moz-animation: toRight 1s forwards;
	-o-animation: toRight 1s forwards;
	animation: toRight 1s forwards;
}

.subscription-success, .subscription-failed {
	padding-top: 10px;
	display: none;
}
/*--------------- End Home ----------------*/

/*--------------- About and features ----------------*/
.about-wrap {
	padding: 100px 0;
}

.tab-container {}

.tab-nav {
	list-style: none;
	border-bottom: 2px solid rgb(50,153,187)  ; /* #a12d23 vermelho */;
	margin-bottom: 20px;
}
.tab-nav li {
	display: inline-block;
}

.tab-nav li a {
	display: inline-block;
	padding: 10px 20px;
	color: #333;
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 1px;

	-webkit-transition: all .15s ease;
	-moz-transition: all .15s ease;
	-ms-transition: all .15s ease;
	-o-transition: all .15s ease;
	transition: all .15s ease;
}

.tab-selected a {
	display: inline-block;
	background-color: rgb(50,153,187)  ; /* #a12d23 vermelho */;
	color: #fff !important;
}

.tab {
	display: none;
	padding-left: 20px;

}

.tab h4 {
	letter-spacing: 1px;
}

.one {
	display: block;
}

.list-items {
	padding: 10px 0px 10px 15px;
	list-style: none;
	color: #888888;
}

.list-items li {
	font-size: 15px;
	margin-bottom: 5px;
  	font-weight: 400;
  	color: #666;
}

.list-items li span {
	color: rgb(50,153,187)  ; /* #a12d23 vermelho */;
	margin-right: 7px;
}

.feature {
	overflow: hidden;
	padding: 10px 0;
}

.feature-icon {
	display: inline-block;
	float: left;
	text-align: center;
	height: 64px;
	width: 64px;
	background-color: rgb(50,153,187)  ; /* #a12d23 vermelho */;
}

.feature-icon i {
	font-size: 32px;
	line-height: 64px;
	color: #fff;
}

.feature-desc {
	max-width: 386px;
	width: 85%;
  	float: left;
  	padding-left: 15px;
}

.feature h5 {
	text-transform: uppercase;
	line-height: 1.1;
	margin-bottom: 8px;
}

.feature p {
	margin: 0;
}
/*--------------- End About and features ----------------*/

/*--------------- Services ----------------*/
.services-wrap {
	padding: 100px 0 300px;
	border-top: 1px solid #eee;
	background-color: #f8fafb;
}


.service {
	padding-bottom: 60px;
}

.service .icon {
	margin-bottom: 13px;
}

.service .icon i {
	font-size: 36px;
	color: rgb(50,153,187)  ; /* #a12d23 vermelho */;
}
/*--------------- End Services ----------------*/

/*--------------- Achievement ----------------*/
.point-care-wrap {
	position: relative;
	padding: 50px 0 100px;
	background: url('../images/point-care-bg.jpg') center center no-repeat;
}

.point-care-overlay {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background-color: rgba(0, 0, 0, .80);
	z-index: 1;
}

.point-care-wrap .container {
	position: relative;
	z-index: 10;
}

.point-care-wrap h2 {
	text-align: center;
}


.point-care-wrap .address-item {
	width: 100%;
  	overflow: hidden;
  	margin-bottom: 10px;
}

.point-care-wrap .address-icon {
	display: inline-block;
	text-align: center;
	float: left;
	height: 22px;
	width: 22px;
	background-color: rgb(50,153,187);
}

.point-care-wrap .address-icon i {
	font-size: 16px;
	line-height: 22px;
	color: #ffffff;
}



.achievement {
	font-family: 'Roboto slab',  serif;
	font-size: 42px;
	font-weight: 700;
	color: #ffffff;
}

.achievement span {
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
/*--------------- End Achievement ----------------*/

/*--------------- Contact ----------------*/
.contact-wrap {
	padding: 100px 0 200px;
}

.form-item {
	position: relative;
	border-bottom: 2px solid rgb(50,153,187)  ; /* #a12d23 vermelho */;
	padding: 14px 0px 6px 30px;
	margin-bottom: 10px;
}

.input-icon {
	position: absolute;
	top: 16px;
	left: 0;
}

.input-icon i {
	font-size: 16px;
	color: rgb(50,153,187)  ; /* #a12d23 vermelho */;
}

.form-input {
	border: 0;
	border-radius: 0;
	background: transparent;
	width: 100%;
}

.form-submit, .form-submit_q {
	overflow: hidden;
	font-size: 16px;
	color: #ffffff;
	background-color: rgb(50,153,187)  ; /* #a12d23 vermelho */;
	border: 0;
	border-radius: 2px;
	height: 44px;
	padding: 10px 20px;
	margin: 10px 0;
	letter-spacing: 1px;
	text-transform: uppercase;

	-webkit-transition: all .5s ease;
	-moz-transition: all .5s ease;
	-ms-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.form-submit span, .form-submit_q span {
	margin-right: 10px;
}

.form-submit:hover span, .form-submit_q:hover span {
	-webkit-animation: fly 1s forwards;
}

.sending {
	position: relative;
	background-color: #fff;
	border: 1px solid #ccc;
}

.sending:before {
	position: absolute;
	top: 10px;
	left: calc(50% - 9px);
	content: "\f110";
	color: #000;
	font: normal normal normal 16px/1 FontAwesome;
	text-rendering: auto;
	font-size: 21px;
	-webkit-font-smoothing: antialiased;

	-webkit-animation: fa-spin 1s infinite linear;
	-moz-animation: fa-spin 1s infinite linear;
	-o-animation: fa-spin 1s infinite linear;
  	animation: fa-spin 1s infinite linear;
}

.success-msg p {
	color: rgb(252,208,54) !important;
}
.success-msg {
	display: none;
}

.success-msg_q p {
	color: rgb(252,208,54) !important;
}
.success-msg_q {
	display: none;
}

.address-wrap {
	padding-top: 15px;
}

.address-item {
	width: 100%;
  	overflow: hidden;
  	margin-bottom: 40px;
}

.address-icon {
	display: inline-block;
	text-align: center;
	float: left;
	height: 44px;
	width: 44px;
	background-color: rgb(50,153,187);
}

.address-icon i {
	font-size: 24px;
	line-height: 44px;
	color: #ffffff;
}

.address-desc {
	max-width: 426px;
	float: left;
	padding-left: 15px;
}

.address-desc h4 {
	line-height: 1.1;
	margin-bottom: 8px;
}

.address-desc p {
	margin: 0;
	line-height: 1.1;
}
/*--------------- End Contact ----------------*/

/*--------------- Footer ----------------*/
.footer-wrap {
	padding: 40px 0;
}

.copyright-text span {
	font-weight: 500;
    color: rgb(252,208,54);
}
/*--------------- End Footer ----------------*/




/* ======= PERSONALIZAÇÕES PAGE PRINCIPAL ====== */

.home-principal .link a {
	font-size: 55px;
	line-height: 55px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 2px;
	text-shadow: 1px 1px 1px rgba(0,0,0, .6);
	margin: 0;
	color: rgb(252,208,54); /* #747474;cinza rgb(0,180,255) azul   #a12d23; vermelho */

}

.home-principal .link a:hover {
	font-size: 65px;
	color: rgb(50,153,187);
}

.pg-principal {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 800px;

}

.bg-logo {
	background: url('../images/bg-logo-principal.png') center center no-repeat;
	position: relative;
	width: 100%;
	height: 100%;	
}

.welcome-principal {
	color: rgb(233,233,233);
	margin: 50px auto 50px;
	overflow: hidden;
}

.banner-principal {
	background: url('../images/banner-principal.png') center center/cover no-repeat;
	width: 100%;
	height: 240px;
	z-index: 10;
}


#btn-login-home a  {
	padding: 15px;
	color: #525559;
	font-size: 16px;
}

#btn-login-home a:hover {
	background: #424242;
	color: #fff;

}


/* ======= FIM PERSONALIZAÇÕES PAGE PRINCIPAL ====== */


/* ============= PERSONALIZAÇÕES -AREA DO CLIENTE  ======== */

.section-content p {
	font-size: 1.3em;
}

.section-content i, .section-content-xl i {
	color: rgb(252,208,54); 
}

.section-content-xl p {
	font-size: 1.5em;
}

.section-content-xl ul {
	font-size: 1.5em;
	padding-left: 40px;
	color: #888888;
}

.image-slider .img-news {
	
}

.image-slider a, .home-last-news a {
	color: rgb(50,153,187);
}


.image-slider a:hover, .home-last-news a:hover {
	color: rgb(50,153,187);
}

.home-last-news ul {
	list-style: none;
	padding-top: 20px; 
}
.all-news {
	color: rgb(252,208,54);
	font-size: 22px;
	margin-top: 20px;
}

.all-news a {
	color: rgb(252,208,54);
}

.all-news a:hover {
	color: rgb(50,153,187);
	
}

.address-box {
	margin-bottom: 40px;
	margin-right: 20px;
}

.address-box .address-desc {
	font-family: 'Roboto slab',  serif;
	color: #ffffff;
}

.address-box .address-desc span {
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;

}

.address-box .address-desc .phone {
	font-size: 16px;
}

.city-box {
	margin-bottom: 40px;
	font-family: 'Roboto slab',  serif;
	color: #ffffff;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.city-box h4 {
	text-align: center;
}

.city-box ul {
	list-style: none;
	font-size: 12px;
}

.city-box .row {
	margin-bottom: 20px;
	background-color: rgba(255, 255, 255, .2);
	padding: 5px 0;
}

.navigation li i {
	color: rgb(252,208,54);
	margin-right: 5px; 
}


.special-customer {
	padding: 100px 0 150px;
}

.special-customer p {
	color: rgba(233,233,233, .60);  
}

.special-customer .panel {
	background-color: rgba(255, 255, 255, .2);
	box-shadow: 4px 4px 1px rgba(0, 0, 0, 0.3);
	min-height: 550px;
}

.special-customer .panel-body p {
	color: rgba(233,233,233, .60);
	font-size: 1.3em;

}

.special-customer .panel-heading {
	color: rgb(252,208,54);
	font-weight: bold;
	text-align: center;
	border-top: 5px solid;
	border-bottom: 1px solid; 
}

.special-customer .panel-heading img {
	height: 100px; 
	margin: auto;
}

.special-customer .msg {
	margin-top: 100px;
	margin-bottom: -100px;
}

		/*=== NOTÍCIA ===*/
.news-wrap {
	padding: 150px 0 300px;
	border-top: 1px solid #eee;
	background-color: #f8fafb;
}

.news-wrap .news {
	padding-bottom: 60px;
}

.news-wrap .news img {
	padding: 0 15px 15px 0;
}

.news-wrap .list-news ul {
	list-style: none;
}

.news-wrap .list-news ul li {
	padding-bottom: 10px; 
}

.news-wrap .list-all-news h3 {
	margin: 0;
	padding: 0;
}

.news-wrap .list-news a:hover {
	color: rgb(252,208,54);
}

.news-wrap .all-news a:hover {
	color: rgb(50,153,187);	
}


/* ============= FIM PERSONALIZAÇÕES -AREA DO CLIENTE  ======== */




/* ============= PERSONALIZAÇÕES AREA DO ADVOGADO ========== */

.proposal-wrap, .know-more-wrap, .know-more-wrap, .how-the-partnership, .cause-wrap {
	padding: 150px 0 150px;
}

.proposal-wrap p, .know-more-wrap p, .know-more-wrap p, .how-the-partnership p, .cause-wrap p {
	color: rgba(233,233,233, .60);  
/*	text-shadow: 1px 1px 2px rgba(0,0,0, .60); */
}

.know-more-wrap ul, .how-the-partnership ul {
	font-size: 18px;
	font-weight: bold;
	color: rgba(252,208,54, .60);
}

.know-more-wrap ul li , .how-the-partnership ul li {
	margin-left: 15px;
}

/*
.how-the-partnership .demo-video {
	background: url('../images/laptop.png') left top no-repeat;
	min-height: 400px;
	width: auto;
	padding: 30px 0 0 160px;
}
*/

.how-the-partnership .demo-video {
}

.how-the-partnership .demo-video iframe {
	width: 560px;
	height: 315px;
	background-color: rgba(255, 255, 255, .2);
	box-shadow: 4px 4px 1px rgba(0, 0, 0, 0.3);
	padding: 10px;	
}


.contact-bg-white{
	border-top: 1px solid #eee;
	background-color: #f8fafb;	
}


.link-page {
	padding-top: 50px;
}

.link-page a {
	color: rgb(252,208,54);
	font-size: 22px;	

}

.bg-box-shadow {
	background-color: rgba(255, 255, 255, .2);
	box-shadow: 4px 4px 1px rgba(0, 0, 0, 0.3);
	padding: 10px 10px 0 10px;	
	margin-top: 15px;
	margin-bottom: 15px;
}

.cause-wrap dl {
	padding-bottom: 30px;
}

.cause-wrap dl dd {
	padding-left: 50px;	
}

/* ============= FIM PERSONALIZAÇÕES AREA DO ADVOGADO ========== */







/*=============================================*/
/*============================================*/
/*===========================================*/
/*-------====== Media Quaries ======--------*/
@media (max-width: 992px) {
	/*---------- Header ------------*/
	.header {
		height: auto;
		background: transparent;
	}

	.header-container {
		width: 100%;

	}

	.scrolling  {
		-webkit-animation: frombottom .3s forwards;
		-moz-animation: frombottom .3s forwards;
		-o-animation: frombottom .3s forwards;
		animation: frombottom .3s forwards;
	}

	.site-logo {
		text-align: center;
		background-color: #f3f4f2  ; /* #a12d23 vermelho */;
	}

	.nav-container {
		background-color: #262522;
	}

	.navigation {
		float: none;
		height: auto;
	}

	.navigation li a {
		padding: 19.5px 20px;
  		line-height: 60px;
	}

	.navigation li a:hover {
		color: rgb(50,153,187)  ; /* #a12d23 vermelho */;
		background-color: transparent;
	}

	.social-container {
		background-color: #262522;
	}

	.socials {
		float: none;
	}

	.socials li {
		padding: 8px 0px 23px;
	}

	/*---------- home ------------*/
	.counter {
		margin: 310px auto 0;
	}

	.banner-wrap {
		height: auto;
		background: transparent;
	}

	.banner-principal {
		height: auto;
		background: transparent;
	}


	.banner-container {
		width: 100%;
	}

	.banner-left {
		background-color: #262522;
		padding: 60px 0;
	}

	.banner-right {
		background-color: #F3F4F2;
		padding: 60px 0;
	}

	/*---------- About and Features ------------*/
	.image-slider {
/*		margin-bottom: 60px; */
	}


	/*---------- Achievement ------------*/
	.point-care-box {
		margin-bottom: 40px;
	}

	/*---------- Contact ------------*/
	.address-wrap {
		padding-bottom: 20px;
	}

	.welcome-principal {
	margin: 0;
	padding: 0;
	}

	.know-more-wrap, .how-the-partnership {
		padding-top: 250px
	}

.how-the-partnership .demo-video iframe {
	width: 100%;
	height: 315px;
}


}

@media (max-width: 767px) {
	.countdown {
		margin-bottom: 40px;
	}

}


}

@media (max-width: 480px) {
	.section-title h3 {
		font-size: 28px;
	}

	.feature-icon {
		margin-bottom: 10px;
	}

	.feature-desc {
		padding-left: 0px;
	}

}

@media (max-width: 360px) {
	.email-input {
		width: 280px;
	}

	.login-input {
		width: 190px;
	}
	
	.tab-nav li a {
		padding: 10px;
		font-size: 12px;
	}
}
