:root {
	--primary: #413279;
	--white: #fff;
	--text: rgba(0, 0, 0, .9);
	--bg-gray: #F4F4F4;
	--blue: #7092FF;
	--blue-light: #7695CC;
	--purple: #9553a0;
	--gray: #E2E2E2;
	--gray-light: #eee;
	--gray-text: #626262;
}

body {
	font-family: 'Lato', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}


/* Buttons */

.btn {
	border-radius: 100px;
}

button:focus {
	outline: 1px dotted;
	outline: none;
}

.btn:active,
.btn:focus {
	outline: none;
	box-shadow: none;
}

.btn-sm {
	padding: .25rem 1rem !important;
}

.wrap-header-mobile .btn-sm {
	padding: .35rem .5rem !important;
}

.btn-gradient {
	background: var(--primary);
	background: -moz-linear-gradient(left, var(--primary) 0%, var(--blue-light) 100%);
	background: -webkit-linear-gradient(left, var(--primary) 0%, var(--blue-light) 100%);
	background: linear-gradient(to right, var(--primary) 0%, var(--blue-light) 100%);
	background-repeat: no-repeat;
	border-color: var(--primary);
	color: var(--white);
	transition: background 500ms ease-in;
}

.btn-gradient:hover {
	background: var(--primary);
	background: -moz-linear-gradient(-45deg, var(--primary) 60%, var(--blue-light) 100%);
	background: -webkit-linear-gradient(-45deg, var(--primary) 60%, var(--blue-light) 100%);
	background: linear-gradient(to right, var(--primary) 60%, var(--blue-light) 100%);
	background-repeat: no-repeat;
	color: var(--white);
	transition: background 2s ease;
}

.btn.btn-light {
	background-color: var(--gray);
	border-color: var(--gray);
	color: var(--text);
}

.btn.btn-light:hover {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

.btn.btn-white {
	background-color: var(--white);
	border-color: var(--white);
	color: var(--primary);
	font-weight: 700;
	padding: .5rem 2.5rem;
}

.btn.btn-white:hover {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--white);
	font-weight: 700;
}

.btn.btn-white-opacity {
	background-color: rgba(255,255,255,0.5);
	border-color: var(--white);
	color: var(--white);
	font-weight: 700;
	padding: .5rem 2.5rem;
}

.btn.btn-white-opacity:hover {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--white);
	font-weight: 700;
}

.btn.btn-primary {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--white);
	font-weight: 700;
	padding: .5rem 2.5rem;
	text-transform: uppercase;
}

.btn.btn-primary:hover {
	background-color: var(--blue-light);
	border-color: var(--blue-light);
	color: var(--white);
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn.btn-primary:active,
.btn.btn-primary:focus {
	background-color: var(--primary);
	border-color: var(--primary);
	color: var(--white);
}

.btn-primary-outline {
	border: 2px solid var(--primary);
	color: var(--primary);
	font-weight: 700;
	padding: 0.5rem 3rem;
}

.btn-primary-outline:hover {
	background-color: var(--primary);
	color: var(--white);
	font-weight: 700;
	padding: 0.5rem 3rem;
}

.bg-gray {
	background-color: var(--gray);
}



/* Nav */

.navbar {
	background: var(--white);
	border-bottom: 1px solid #eee;
}

.navbar-light .navbar-nav .nav-link {
	color: var(--text);
	font-size: .9rem;
	letter-spacing: -0.01rem;
	margin-right: 0.1rem;
}

.navbar-light .navbar-nav .nav-item.active .nav-link,
.navbar-light .navbar-nav .nav-link:hover {
	color: var(--primary);
}

.dropdown-toggle::after {
	/*display: none;*/
	/*color: var(--primary);*/
	border: solid var(--primary);
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	margin-left: .3rem;
	transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
}

.wrapper-navbar {
	width: 100%;
	max-width: 1110px;
	margin: 0 auto;
}

.wrap-nav {
	display: flex;
	align-items: center;
}

.wrap-actions-nav {
	margin-left: 0.5rem;
}

.wrap-actions-nav .btn-light {
	padding: 0.05rem 0.55rem;
}

.wrap-actions-nav .btn-gradient {
	font-weight: 700;
}

.dropdown.show .dropdown-toggle ~ .dropdown-menu {
	display: block;
}

.dropdown.show .dropdown-toggle ~ .dropdown-menu.dropdown-inline {
	display: flex;
	left: -180%;
}

.pln-login > a {
	background-color: var(--bg-gray);
}

@media (max-width: 767px) {

	.navbar-nav .pln-login .nav-link {
		max-width: 70px;
		padding-left: 10px;
		/*margin-bottom: 10px;*/
	}
}

@media (max-width: 991px) {

	.navbar {
		/*position: -webkit-sticky;
		position: sticky;
		top: 0;
		z-index: 1020;*/
	}
}

@media (min-width: 992px) {

	.nav-hidden {
		/*position: relative;*/
		margin-top: -100px;
		top: -100px;
		transition: all .25s;
	}

	.nav-hidden.pln-header {
		/*position: sticky;*/
		margin-top: 0;
		top: 0;
		transition: all .25s;
	}
}



/* Logos */

.logo-circle {
	display: inline-flex;
	align-items: center;
	background-color: #fff;
	border-radius: 100%;
}

.logo-circle img {
	max-width: 100%;
}



/* Boxes */

.box-50 {
	width: 40px;
	height: 40px;
}

@media (min-width: 768px) {
	.box-50 {
		width: 50px;
		height: 50px;
	}
}



.box-80 {
	width: 50px;
	height: 50px;
}

@media (min-width: 768px) {
	.box-80 {
		width: 80px;
		height: 80px;
	}
}



.box-120 {
	width: 120px;
	height: 120px;
}



.box-150 {
	width: 80px;
	height: 80px;
}

@media (min-width: 768px) {
	.box-150 {
		width: 150px;
		height: 150px;
	}
}



/* Banner */

.jumbotron-fluid {
	align-items: center;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	display: flex;
	justify-content: center;
	height: calc(100vh - 90px);
	min-height: 560px;
	/*max-height: 700px;*/
	position: relative;
	text-align: center;
	margin-bottom: 0;
}

.jumbotron-fluid.home {
	/*background-color: #333;*/
	background-image: url('../images/banner-home-v2.jpg');
	color: var(--white);
}

.jumbotron-fluid.sou-empresa {
	background-image: url('../images/banner-sou-empresa.jpg');
}

.jumbotron-fluid.causas {
	background-image: url('../images/banner-causas.jpg');
}

.jumbotron-fluid.transforme--sou-empresa {
	background-image: url('../images/banner-transforme--sou-empresa.jpg');
}

.jumbotron-fluid.formas-de-doar {
	color: var(--white);
}

.jumbotron-fluid.formas-de-doar::before {
	background-color: var(--primary);
}

.jumbotron-fluid.sou-empresa::before,
.jumbotron-fluid.transforme--sou-empresa::before {
	background-color: rgba(19, 15, 56, .8);
}

.jumbotron-fluid::before {
	content: '';
	background-color: rgba(0, 0, 0, .5);
	left: 0;
	height: 100%;
	position: absolute;
	top: 0;
	width: 100%;
}

.jumbotron-fluid .container {
	position: relative;
	z-index: 1;
}

.jumbotron-fluid .display-4 {
	color: var(--white);
	font-size: 3rem;
	font-weight: 700;
}

.jumbotron-fluid .lead {
	color: var(--white);
	font-size: 1.85rem;
	font-weight: 700;
}

.jumbotron-fluid .btn {
	/*margin-top: 3rem;*/
	text-transform: uppercase;
}

@media (min-width: 992px) {
	.jumbotron-fluid .btn {
		font-size: 1.375rem;
	}
}

.jumbotron-by {
	position: absolute;
	right: 20px;
    bottom: 20px;
}



/* Clientes */

.pln-brands img {
	width: 80%;
 	filter: grayscale(100%);
 	opacity: .5;
 	transition: all .25s;
}

.pln-brands img:hover {
 	filter: grayscale(0%);
 	opacity: 1;
 	transition: all .25s;
}

@media (min-width: 992px) {
	.pln-brands img {
		width: 100%;
	}
}




/* Descubra */

.pln-discover-btn .list-group-item {
	background-color: transparent;
	transition: color .2s ease-in-out;
	transition: background-color .2s ease-in-out;
}

.pln-discover-btn .list-group-item.active {
	transition: color .2s ease-in-out;
	transition: background-color .2s ease-in-out;
}

.pln-discover-btn .pln-discover-icon {
	width: 30px;
	height: 30px;
	background-color: var(--gray-light);
	border-radius: 100%;
	transition: all .2s ease-in-out;
}

.pln-discover-btn .pln-discover-icon img {
	width: 20px;
}

.pln-discover-btn .active .pln-discover-icon {
	background-color: var(--primary);
	border-radius: 5px;
	transition: all .2s ease-in-out;
}

.pln-discover-btn h5 {
	color: rgba(31, 31, 31, 0.2);
	border-bottom: 2px solid rgba(31, 31, 31, 0.2);
	padding-bottom: 3px;
}

.pln-discover-btn .active h5 {
	color: #1f1f1f;
	border-color: #1f1f1f;
}

.pln-discover .tab-content a {
	color: var(--primary);
	font-size: 1.2rem;
}

.pln-discover .tab-content a::after {
	content: "";
	position: relative;
	top: -1px;
	border: solid var(--primary);
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	margin-left: .3rem;
	transform: rotate(315deg);
	-webkit-transform: rotate(315deg);
}

.pln-discover .tab-content-col {
	background-color: var(--white);
	box-shadow: 0 0 30px 2px rgba(0, 0, 0, 0.05);
	border-radius: 5px;
}

.pln-discover-nav {
	position: relative;
	top: 50%;
}

.pln-discover-prev {
	float: left;
}

.pln-discover-prev::after {
	content: "";
	position: relative;
	border: solid var(--primary);
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 5px;
	transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
}

.pln-discover-next {
	float: right;
}

.pln-discover-next::after {
	content: "";
	position: relative;
	border: solid var(--primary);
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 5px;
	transform: rotate(315deg);
	-webkit-transform: rotate(315deg);
}

@media (min-width: 992px) {

	.pln-discover .tab-content-col {
		border-radius: 10px;
	}

	.pln-discover-btn .list-group-item.active {
		/*width: 380px;*/
		width: 305px;
		background-color: var(--white);
		border-top-left-radius: 10px;
		border-bottom-left-radius: 10px;
		border-top-right-radius: 0;
		border-bottom-right-radius: 0;
		/*box-shadow: 0 0 20px -2px rgba(0, 0, 0, 0.05);*/
		box-shadow: -20px 0px 20px 0px rgba(0, 0, 0, 0.025);
	}

	.pln-donate-product-right .pln-discover-btn .list-group-item.active {
		border-top-left-radius: 0;
		border-bottom-left-radius: 0;
		border-top-right-radius: 10px;
		border-bottom-right-radius: 10px;
		box-shadow: 20px 0px 20px 0px rgba(0, 0, 0, 0.025);
	}
	
	.pln-discover-btn .pln-discover-icon {
		width: 55px;
		height: 55px;
		background-color: var(--gray-light);
		border-radius: 100%; 
	}
	
	.pln-discover-btn .pln-discover-icon img {
		width: 40px;
	}

	.pln-discover-btn .active .pln-discover-icon {
		border-radius: 10px;
	}
}

@media (min-width: 1200px) {
	.pln-discover-btn .list-group-item.active {
		width: 365px;
	}
}



/* Números */

.pln-numbers {
	background-color: var(--primary);
	color: var(--white);
}

.pln-numbers span {
	line-height: 1.25rem;
}

@media (max-width: 991px) {
	.pln-numbers img {
		width: 100%;
		max-width: 50px;
	}

	.pln-numbers h3 {
		font-size: 1.25rem;
	}

	.pln-numbers span {
		font-size: .9rem;
	}
}



/* Depoimentos */

.pln-testimonials blockquote p {
	font-style: italic;
	font-size: 1.1rem;
	line-height: 1.5rem;
}

.pln-testimonials blockquote::before {
	position: relative;
	top: 15px;
	font-size: 3rem;
	color: var(--primary);
}

.pln-testimonials blockquote::after {
	position: relative;
	top: -5px;
	font-size: 3rem;
	color: var(--primary);
}

@media (min-width: 992px) {

	.pln-testimonials blockquote p {
		font-size: 1.25rem;
		line-height: 1.75rem;
	}

	.pln-testimonials blockquote::after {
		/*position: relative;*/
		top: 0px;
	}
}



/* Integrações */

.pln-integrations a {
	color: var(--primary);
}

.pln-integrations a::after {
	content: "";
	position: relative;
	border: solid var(--primary);
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 5px;
	transform: rotate(315deg);
	-webkit-transform: rotate(315deg);
}

@media (min-width: 992px) {

	.pln-integrations strong {
		font-size: 1.2rem;
	}

	.pln-integrations a {
		font-size: 1.2rem;
	}
}



/* Contato */

.pln-form .wrapper-form {
	height: inherit;
}

.pln-form-title {
	position: relative;
}

.pln-form.wrapper-section .pln-form-title .title-section,
.pln-form.wrapper-section .pln-form-title p {
	color: var(--white);
}

.pln-form.wrapper-section .pln-form-title .line-title {
	background: var(--white);
}

@media (min-width: 992px) {
	.pln-form .wrap-form {
		border-top-left-radius: 0px;
		border-top-right-radius: 0px;
	}
}



/* Formas de doar */

.embed-container {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pln-video-header {
	position: relative;
	border-radius: 10px;
}

.formas-de-doar h1 {
	font-size: 2.25rem;
}

.formas-de-doar h2 {
	font-size: 1.25rem;
	line-height: 1.5rem;
}

.pln-video-header .btn {
	position: absolute;
	z-index: 20;
	background-color: #86549d;
}

.pln-video-header .btn::after {
	content: "";
	position: relative;
	border: solid var(--white);
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 5px;
	top: -1px;
    margin-left: 6px;
	transform: rotate(315deg);
	-webkit-transform: rotate(315deg);
}

.pln-video-header img {
	border-radius: 10px;
}

.pln-video-header::before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	background-color: rgba(0, 0, 0, .1);
	border-radius: 10px;
}

@media (min-width: 992px) {

	.pln-video-header img,
	.pln-video-header::before {
		border-radius: 20px;
	}

	.formas-de-doar h1 {
		font-size: 2.75rem;
	}

	.formas-de-doar h2 {
		font-size: 1.65rem;
		line-height: 2.1rem;
	}

	.pln-video-header .btn::after {
		top: -2px;
	}
}



/* Formas de doar / Soluções */

.pln-donate-solutions {

}

.pln-donate-solutions h3 {
	font-size: 1.5rem;
}

.pln-donate-solutions p {
	font-size: 1.1rem;
}

.pln-donate-solutions .img-container {
	/*border: 1px solid red;*/
	overflow: hidden;
	position: relative;
	width: 100%;
}

.pln-donate-solutions .img-container img {
	position: absolute;
	height: 100%;
	max-width: inherit;
}

.pln-donate-solutions .img-container-01 {
	height: 257px;
}

.pln-donate-solutions .img-container-02 {
	height: 238px;
}

.pln-donate-solutions .img-container-03 {
	height: 420px;
}

.pln-donate-solutions .img-container-04 {
	height: 284px;
}

.pln-donate-solutions .img-container-05 {
	height: 226px;
}

.pln-donate-solutions .img-container-01 img,
.pln-donate-solutions .img-container-03 img,
.pln-donate-solutions .img-container-05 img {
	right: 20%;
}

.pln-donate-solutions .img-container-02 img,
.pln-donate-solutions .img-container-04 img {
	left: 20%;
}

@media (min-width: 992px) {

	.pln-donate-solutions .text-container {
		max-width: 520px;
		/*border: 1px solid red;*/
	}

	.pln-donate-solutions .row-container-04 .text-container {
		max-width: 400px;
	}

	.pln-donate-solutions h3 {
		font-size: 1.5rem;
	}

	.pln-donate-solutions p {
		font-size: 1.1rem;
	}

	.pln-donate-solutions .row-container-01 {
	}

	.pln-donate-solutions .row-container-02 {
		margin-top: -5rem;
	}

	.pln-donate-solutions .row-container-03 {
		margin-top: -5rem;
	}

	.pln-donate-solutions .row-container-04 {
		margin-top: -10rem;
	}

	.pln-donate-solutions .row-container-05 {
		margin-top: -8rem;
	}

	.pln-donate-solutions .img-container-01 {
		height: 517px;
	}

	.pln-donate-solutions .img-container-02 {
		height: 427px;
	}

	.pln-donate-solutions .img-container-03 {
		height: 763px;
	}

	.pln-donate-solutions .img-container-04 {
		height: 720px;
	}

	.pln-donate-solutions .img-container-05 {
		height: 518px;
	}

	.pln-donate-solutions .img-container-02 img {
		left: 0;
	}

	.pln-donate-solutions .img-container-04 img {
		left: 10%;
	}

	.pln-donate-solutions .img-container-01 img,
	.pln-donate-solutions .img-container-03 img{
		right: 10%;
	}

	.pln-donate-solutions .img-container-05 img {
		right: 0;
	}
}



/* Formas de doar / Links */

.pln-donate-links {
	background-color: var(--primary);
	color: var(--white);
}

.pln-donate-links h2 {
	font-size: 1.5rem;
}

.pln-donate-links .btn {
	font-size: .9rem;
	text-transform: uppercase;
}

@media (min-width: 992px) {

	.pln-donate-links .btn {
		font-size: 1.375rem;
	}

	.pln-donate-links h2 {
		font-size: 2rem;
	}
}



/* Formas de doar / Links */

/*
*/
@media (max-width: 991px) {

	.pln-donate-product-logo {
		/*max-width: 246px;*/
		height: 80%;
	}
}

.pln-donate-product-about p {
	font-size: .9rem;
}

.pln-donate-product-about a {
	color: var(--primary);
	font-size: 1.2rem;
}

.pln-donate-product-about a:hover {
	color: var(--primary);
}

.pln-donate-product-about a::after {
	content: "";
	position: relative;
	top: -1px;
	border: solid var(--primary);
	border-width: 0 2px 2px 0;
	display: inline-block;
	padding: 3px;
	margin-left: .3rem;
	transform: rotate(315deg);
	-webkit-transform: rotate(315deg);
}

@media (min-width: 992px) {

	.pln-donate-product-about p {
		font-size: 1rem;
	}
}




/* demostration */
.wrap-demonstration {
	background: var(--white);
	border-radius: 20px;
	display: flex;
	justify-content: center;
	margin: -6rem auto 5rem;
	position: relative;
	overflow: hidden;
	z-index: 9;
	width: 40%;
}

.wrap-demonstration.inside-pages {
	margin: 0 auto;
}

.wrap-demonstration img {
	max-width: 100%;
	height: auto;
}

/* Sections */
.wrapper-section {
	padding-bottom: 3rem;
	padding-top: 3rem;
}

.wrapper-section .title-section {
	color: var(--text);
	font-weight: 700;
	margin-bottom: 1rem;
	position: relative;
	text-align: center;
	/*text-transform: uppercase;*/
}

.wrapper-section .title-section.align-left {
	text-align: left;
	margin-bottom: 0.5rem;
}

.wrapper-section .line-title {
	background-color: var(--primary);
	display: block;
	border-radius: 1.5px;
	margin: 0 auto 2rem;
	height: 4px;
	width: 150px;
}

.line-title {
	background-color: var(--primary);
	display: block;
	border-radius: 1.5px;
	margin: 0 auto 2rem;
	height: 4px;
	width: 150px;
}

.wrapper-section .line-title.align-left {
	margin: 0 0 2rem;

}

.wrapper-section .description {
	width: 50%;
	text-align: center;
	margin: 0 auto;
	line-height: 1.6;
}

/* Card */
.wrapper-card {
	background: var(--bg-gray);
	border-radius: 15px;
	padding-top: 20px;
	padding-bottom: 20px;
	overflow: hidden;
	display: flex;
	width: 100%;
	justify-content: space-between;
	padding-left: 5rem;
}

.card {
	background-color: transparent;
	border: none;
	width: 30%;
}

.card-arrow {
	position: relative;
}

.card-arrow::before {
	content: '';
	position: absolute;
	background-image: url('../images/como-funciona/seta-como-funciona-58.svg');
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	height: 360px;
	width: 175px;
	top: -30px;
	right: -30px;
	z-index: 0;
}

.icon {
	width: 60px;
	margin-bottom: 1rem;
}

.card-title {
	font-size: 1.75rem;
	margin-bottom: 0.95rem;
	line-height: 1;
}

.card-title strong {
	color: var(--primary);
	display: block;
}

.card-body {
	position: relative;
}

.card-text {
	font-size: 0.9rem;
	width: 70%;
}

.wrapper-button {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
	margin-top: 50px;
}

.wrapper-button .btn {
	margin-bottom: 30px;
}



/* Vantagens */

.wrap-hexagono {
	width: 200px;
	height: 250px;
	/*background-image: url('../images/vantagens/hexagono.svg');*/
	background-image: url('../images/vantagens/v2/hexagono.svg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	display: flex;
	margin: 3px 6px;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	text-align: center;
}

.wrap-hexagono img {
	width: 65px;
	margin-bottom: 1rem;
}

.title-hexagono {
	font-size: 1rem;
	line-height: 1;
	font-weight: 700;
	/*color: var(--white);*/
	padding: 0 1rem;
}

.wrap-benefits {
	display: flex;
	align-items: center;
	justify-content: center;
}

.benefits-line-down {
	margin-top: -70px;
}

/* Nossos Números */
.wrap-number {
	display: flex;
	align-items: center;
	justify-content: center;
}

.number {
	font-size: 4rem;
	line-height: 1;
	font-weight: 700;
	padding: 1rem;
}

.number.count {
	font-size: 9rem;
	line-height: 1;
	font-weight: 700;
	background: var(--bg-gray);
	margin: 0 0.5rem;
	border-radius: 10px;
	padding: 1rem;
}

.wrap-text-number {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	text-align: center;
	padding-left: 5rem;
	font-size: 1.6rem;
	color: #666;
	font-weight: 700;
}

.impact {
	display: flex;
	justify-content: center;
	margin: 3rem auto;
	font-size: 1.5rem;
	color: #666;
}


/* Conheça as Empresas */
.list-logos {
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: center;
	margin: 1rem auto 0;
	width: 70%;
	flex-wrap: wrap;
}

.list-logos--item {
	width: 90px;
	height: 90px;
	background: var(--white);
	border-radius: 45px;
	margin: 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
}

.list-logos--item img {
	max-width: 60px;
}

.wrap-button-column {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-flow: column;
}

.wrap-button-column .btn {
	margin: 1rem auto;
}


/* Cases */
#tabs h6.section-title {
	color: #eee;
}

.nav-tabs {
	border-bottom: 1px solid #dee2e6;
	border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	background-color: #FAFAFA;
	height: 85px;
	overflow: hidden;
}

#tabs .nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	border-color: #d2d2d2 #fff #f3f3f3 transparent;
	background-repeat: no-repeat;
	background: #ededed;
	background: -moz-linear-gradient(top, #ededed 72%, #d2d2d2 100%);
	background: -webkit-linear-gradient(top, #ededed 72%, #d2d2d2 100%);
	background: linear-gradient(to bottom, #ededed 72%, #d2d2d2 100%);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#d2d2d2', GradientType=0);
}

.nav-tabs .nav-link {
	border: 1px solid transparent;
	border-top-left-radius: .25rem;
	border-top-right-radius: .25rem;
	color: #eee;
	font-size: 20px;

	align-items: center;
	display: flex;
	justify-content: center;
	border-right: 2px solid var(--white);
	position: relative;
}

.nav-tabs .nav-link::after {
	content: '';
	background: var(--primary);
	width: 0%;
	position: absolute;
	height: 7px;
	left: 0;
	bottom: 0;
}

.nav-tabs .nav-link.active::after {
	width: 100%;
	animation: animate 5s ease-out;

}

@keyframes animate {
	0% {
		width: 0%;
	}

	100% {
		width: 100%
	}
}

img.logo-tab {
	width: 40%;
}

.tab-content {
	background-color: #FAFAFA;
	border-bottom-left-radius: 30px;
	border-bottom-right-radius: 30px;
}

.wrapper-content-tab {
	display: flex;
}

.wrap-video-tab {
	padding: 2rem;
}

.wrap-content-tab {
	padding: 2rem;
}

.wrap-title h3 {
	font-size: 1.8rem;
	font-weight: 700;
	color: var(--primary);
}

.wrap-text-tab {
	display: flex;
}

.wrap-text-tab p {
	font-size: 1.1rem;
	line-height: 1.2;
	width: 50%;
}

.wrap-tab-results h6 {
	font-size: 1rem;
	font-weight: 700;
}

.wrapper-number-result {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	width: 80%;
}

.wrap-result-numbers {
	display: flex;
	flex-flow: column;
}

.number-tab {
	font-size: 1.7rem;
	font-weight: 700;
	color: #CC7B1F;
}

.number-tab.positvo {
	color: #22CD2F;
}

.text-tab {
	font-size: 0.8rem;
	line-height: 1.2;
	text-align: center;
}

ul.list-tab {
	list-style: none;
	padding: 0;
}

.list-logos-tab {
	list-style: none;
	padding: 0;
	display: flex;
}

.list-logos-tab li {
	margin: 0 5px;
}

.list-logos-tab li img {
	height: 50px;
}


/* Sistemas integrados */
.wrap-logos-sistemas {
	display: flex;
	justify-content: space-evenly;
	background: var(--white);
	padding: 1rem;
	border-radius: 15px;
	margin: 2rem auto;
	width: 80%;
	align-items: center;
}

.wrap-logos-sistemas h5 {
	text-align: center;
	margin-bottom: 1rem;
	font-size: 0.8rem;
	line-height: 1;
	font-weight: 700;
	color: var(--primary);
}

.wrap-logos-sistemas h5>small {
	font-size: 0.6rem;
}

.list-logos-sistemas {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}

.list-logos-sistemas--item {
	margin: 0 10px;
}

.list-logos-sistemas--item img {
	height: 35px;
}

.wrap-button-sistemas {
	display: flex;
	align-items: center;
	width: 100%;
}

.wrap-title-sistemas {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	width: 50%;
	padding: 1.5rem 2rem;
}

.wrap-title-sistemas::before {
	content: '';
	background-color: var(--primary);
	width: 100vw;
	height: 100%;
	position: absolute;
	top: 0;
	right: 0;
	border-top-right-radius: 60px;
	border-bottom-right-radius: 60px;
}

.title-sistemas {
	color: var(--white);
	font-size: 1.5rem;
	line-height: 1.2;
	position: relative;
}

.title-sistemas small {
	display: block;
}

.wrap-btn-sistem {
	display: flex;
	flex-flow: column;
	margin-left: 3rem;
}

.wrap-btn-sistem .btn {
	margin-bottom: 15px;
}


/* Polen na mídia */
.list-midia {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}

.list-midia li {
	margin: 10px;
	border-radius: 10px;
	display: flex;
	overflow: hidden;
}

.list-midia img {
	height: 120px;
}

.list-midia li a:hover {
	opacity: .9;
}

/* Premios */
.list-premios {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: space-between;
}

.list-premios li {
	margin: 10px;
	border-radius: 10px;
	display: flex;
	overflow: hidden;
	background-color: var(--bg-gray);
	padding: 1rem 2rem;
}

.list-premios li img {
	height: 70px;
}


/* form */
.wrapper-form {
	width: 100%;
	height: 100vh;
	background-image: url('../images/bg-form.jpg');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
}

.wrapper-form::before {
	content: '';
	background-color: rgba(19, 15, 56, 0.8);
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.wrap-form {
	background: var(--white);
	padding: 1rem;
	border-radius: 20px;
	margin-top: -7rem;;
}

.wrap-profile {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0 2rem;
}

.wrap-avatar {
	width: 40%;
	padding: 0 1rem;
}

.wrap-avatar .avatar {
	width: 110px;
	height: 110px;
	border-radius: 60px;
	object-fit: cover;
	object-position: center;
	overflow: hidden;
	position: relative;
	border: 5px solid var(--blue);
}

.wrap-avatar .avatar::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	border: 5px solid var(--white);
	top: 0;
	left: 0;
	z-index: 0;
	border-radius: 60px;
}

.wrap-avatar .avatar img {
	max-width: 100%;
}

.wrap-description-profile {
	padding: 1rem 0 0;
}

.wrap-description-profile h4 {
	color: var(--primary);
	font-size: 1.4rem;
	font-weight: 700;
	line-height: 1;
	margin: 0;
}

.wrap-description-profile span {
	color: var(--primary);
	font-size: 0.8rem;
}

.wrap-description-profile p {
	font-size: 0.8rem;
	margin-top: 0.6rem;
	padding-right: 2rem;
}

form.form {
	padding: 1rem 2rem;
}

form .form-group {
	margin-bottom: 0.4rem;
}

form label {
	display: inline-block;
	margin-bottom: .5rem;
	font-size: 0.9rem;
	color: var(--primary);
	font-weight: 700;
	margin-left: 1.5rem;
}

form .form-control {
	color: var(--text);
	background-color: var(--bg-gray);
	border: 1px solid var(--bg-gray);
	border-radius: 25px;
	padding: .375rem 1.5rem;
}

form .form-control:focus {
	color: #495057;
	background-color: var(--bg-gray);
	border-color: var(--primary);
	outline: 0;
	box-shadow: 0 0 0 0rem var(--primary);
}

form.form button.btn.btn-primary {
	margin: 2rem auto 0;
	display: block;
}

select:required:invalid {
	color: rgba(var(--text), .5);
}
option[value=""][disabled] {
	display: none;
}
option {
	color: var(--text);
}



/* Footer */

.title-nav-footer {
	text-transform: uppercase;
}

.title-social {
	font-size: .9rem;
	font-weight: 700;
	margin-top: 2rem;
}

.list-social {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
}

.list-social li{
	margin-right: 10px;
}

address {
	margin: 2rem 0;
}

address p,
address a {
	font-size: 0.8rem;
	margin: 0;
	color: var(--text);
}

.logos-premios-footer {
	list-style: none;
	padding: 0;
	margin: 0;
}

.logos-premios-footer li {
	background: var(--white);
	padding: 1rem;
	border-radius: 10px;
	margin-bottom: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.logos-premios-footer li img {
	height: 40px;
}

.title-nav-footer {
	font-size: 0.8rem;
	font-weight: 700;
}

.list-nav-footer {
	list-style: none;
	padding: 0;
	margin-bottom: 2rem;
}

.list-nav-footer li {
	height: 20px;
}

.list-nav-footer a {
	color: var(--text);
	font-size: 0.8rem;
	line-height: 1;
}

.email {
	color: var(--text);
	font-size: 0.8rem;
}

.copyright {
	display: flex;
	margin: 1.5rem auto;
	overflow: hidden;
	position: relative;
	height: 25px;
	font-size: 0.9rem;
}

footer .form-inline .form-group {
	width: 48%;
}

footer .form-inline .form-group .form-control {
	width: 100%;
}

footer form .form-control {
	color: var(--text);
	background-color: var(--white);
	border: 1px solid var(--bg-gray);
	border-radius: 5px;
	padding: .75rem;
	font-size: 0.9rem;
}

footer form.form button.btn.btn-primary {
	text-transform: inherit;
}

footer p {
	font-size: 0.9rem;
}

.pln-social li {
	background-color: transparent;
}

.pln-prizes-container {
	background-color: var(--white);
}


.list-change-text {
	margin: 0;
	width: auto;
	padding-left: 5px;
	padding-right: 5px;
	text-align: center;
	list-style: none;
	animation: change 14s linear infinite;
}

.list-change-text li {
	height: 25px;
	margin: 0;
	font-weight: 700;
}

@keyframes change {
	0% {margin-top:0;}
	7% {margin-top:-25px;}
	14% {margin-top:-25px;}
	21% {margin-top:-50px;}
	28% {margin-top:-50px;}
	34% {margin-top:-75px;}
	39% {margin-top:-75px;}
	46% {margin-top:-100px;}
	53% {margin-top:-100px;}
	60% {margin-top:-125px;}
	67% {margin-top:-125px;}
	74% {margin-top:-150px;}
	81% {margin-top:-150px;}
	88% {margin-top:0px;}
	100% {margin-top:0px;}
}


/* Sou empresa */

/* logos header */
.wrap-bar-clients.owl-carousel {
	margin: -7rem auto 0px;
	background: white;
	border-radius: 20px;
	width: 80%;
	height: 130px;
	box-shadow: 0px 0px 40px -6px rgba(0,0,0,.7);
}

/* Juntos, fazemos mais */
.wrap-together-company {
	display: flex;
	flex-flow: column;
	align-items: center;
}

.wrap-together-company img {
	height: 65px;
	margin-bottom: 1rem;
}

.wrap-together-company h3 {
	color: var(--primary);
	font-weight: 700;
	margin: 0;
	line-height: 1;
}

.wrap-together-company span {
	font-size: 0.9rem;
}


/* Responsabilidade social */
.wrap-responsibility {
	display: flex;
	width: 80%;
	background: var(--white);
	margin: 1rem auto;
	border-radius: 20px;
	overflow: hidden;
	height: 450px;
	box-shadow: 0 0 70px rgba(0,0,0,.7);
}

.wrap-image-responsibility {
	width: 50%;
	display: flex;
	height: 100%;
	position: relative;
}

.wrap-image-responsibility::before {
	content: '';
	background-color: rgba(19, 15, 56, .8);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.wrap-image-responsibility img {
	max-width: 100%;
	object-fit: cover;
	object-position: left;
}

.wrap-image-responsibility .diagonal {
	background: #fff;
	display: block;
	top: 0; bottom: 0;
	position: absolute;
	width: 140px;
	-webkit-transform: skew(-15deg) translateX(70px);
			-ms-transform: skew(-15deg) translateX(70px);
					transform: skew(-15deg) translateX(70px);
	right: 0
}

.wrap-content-responsibility {
	width: 50%;
	padding: 2rem 2rem 2rem 0;
	position: relative;
	display: flex;
	flex-flow: column;
	justify-content: center;
}

.wrap-content-responsibility h4{
	text-align: right;
	font-size: 1.8rem;
}

.wrap-content-responsibility h4 .primary{
	color: var(--primary)
}

.wrap-content-responsibility p{
	text-align: right;
	font-size: 0.8rem;
	margin-bottom: 3rem;
}

/* Mais fácil do que você imagina */
.wrap-ease-company {
	display: block;
	padding: 2rem;
	box-shadow: 0 0 15px -5px rgba(0,0,0,0.4);
	border-radius: 20px;
	min-height: 380px;
	margin-top: 2rem;
}

.wrap-ease-company img {
	height: 80px;
	margin-bottom: 1rem;
}

.wrap-ease-company h3 {
	font-weight: 700;
	font-size: 2rem;
}

.wrap-ease-company.system {
	background-color: var(--white);
	box-shadow: none;
	min-height: 300px;
}

/* Form sou empresa */
.wrap-image-form-sou-empresa {
	display: flex;
	align-items: center;
	height: 100%;
	justify-content: flex-end;
}

.wrap-image-form-sou-empresa img {
	height: 270px;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 30px;
}

.wrap-form.company {
	padding: 1rem;
	background-color: var(--primary);
	border-radius: 30px;
	margin-top: 0;
	margin-left: -2rem;
}

.wrap-form.company .title-section {
	font-size: 1.4rem;
	color: var(--white);
	margin-top: 1rem;
}

.wrap-form.company form.form {
	padding: 0rem 1rem;
}

.wrap-form.company form.form label {
	color: var(--white);
}

.wrap-form.company form.form button.btn.btn-white {
		margin: 2rem auto 1rem;
		display: block;
}




/* Causas */
.wrap-form-filter .wrap-title h3 {
	font-size: 1rem;
}

.wrap-form-filter .wrap-title .line {
	background-color: var(--primary);
	display: block;
	border-radius: 1.5px;
	margin: 1rem;
	height: 3px;
	width: 130px;
}

.btn.btn-category {
	font-size: 0.9rem;
	padding-left: 1.5rem;
	color: var(--gray);
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}


/* List Category */
.list-group-category {
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

ul.list-group-category label {
	margin: 0 10px 10px 0;
	cursor: pointer;
	position: relative;
}

.list-group-category input[type=checkbox] {
	position: absolute;
	opacity: 0;
}

.wrap-category-checkbox {
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
	border: 1px solid #A65EA0;
	width: 110px;
	height: 110px;
	border-radius: 5px;
	text-align: center;
}

.wrap-category-checkbox:hover {
	background-color: var(--bg-gray);
}

.list-group-category input[type=checkbox]:checked + .wrap-category-checkbox {
	background-color: var(--bg-gray)
}

.wrap-category-checkbox h6 {
	font-size: 0.8rem;
	padding: 0.5rem 1rem 0;
}

.wrap-selos {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
}

.btn-selos {
	background: transparent;
	border: none;
}

.btn-selos .ativo{
	display: none
}

.btn-selos.active .inativo {
	display: none
}

.btn-selos.active .ativo {
	display: block
}



button.btn.btn-popover {
	width: 20px;
	height: 20px;
	border: 1px solid var(--gray);
	padding: 0;
	line-height: 1;
	font-size: 0.8rem;
	color: var(--gray);
}

.wrapper-category.wrapper-section {
	padding-top: 0;
}

.wrap-pagination {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-bottom: 1rem;
}

.wrap-pagination .pagination {
	margin: 0
}
.wrap-pagination .pagination .page-item:first-child .page-link {
	margin-left: 5px;
	border-top-left-radius: 100%;
	border-bottom-left-radius: 100%;
}

.wrap-pagination .pagination .page-item:last-child .page-link {
	border-top-right-radius: 100%;
	border-bottom-right-radius: 100%;
}

.wrap-pagination .pagination .page-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 25px;
	height: 25px;
	line-height: 1;
	color: #999;
	background-color: #fff;
	border: 1px solid #999;
	border-radius: 100%;
	margin: 0 5px;
	font-size: 0.8rem;
	padding: 0;
}

/* List ONGs */
.wrap-thumb-category {
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0,0,0, .5);
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	position: relative;
	overflow: hidden;
	transition: 1s ease all;
	margin-bottom: 30px;
	min-height: 270px;
}

.wrap-thumb-category:hover {
	box-shadow: 0 0 0px rgba(0,0,0, .5);
	transition: 1s ease all;
}

.certificate {
	position: absolute;
	top: 10px;
	right: 10px;
}

img.logo-ong.img-fluid {
	max-height: 140px;
	margin-top: 3rem;
}

.wrap-thumb-category h3 {
	text-align: center;
	font-size: 1.1rem;
	margin-top: 1rem;
	color: var(--primary);
}

.wrap-thumb-category-hover {
	position: absolute;
	top: 0;
	left: 0;
	padding: 1rem;
	background-color: rgba(0,0,0,.8);
	display: flex;
	flex-flow: column;
	height: 100%;
	width: 100%;
	justify-content: space-between;
	transform: translateY(100%);
	transition: 500ms ease all;
}

.wrap-thumb-category:hover .wrap-thumb-category-hover{
	transform: translateY(0);
	transition: 400ms ease all;
}

.wrap-thumb-category-hover p {
	color: white;
	font-size: 0.9rem;
	line-height: 1.2;
	overflow: auto;
}

.wrap-btn-action-category {
	display: flex;
	justify-content: space-between;
	width: 100%;
}

.btn-action-category {
	background: white;
	font-size: 0.7rem;
	line-height: 0.9;
	text-align: left;
	display: flex;
	align-items: center;
	padding: 2px 0px 2px 20px;
	margin: 0 8px;
	position: relative;
}

.btn-action-category img {
	height: 30px;
	position: absolute;
	top: -3px;
	left: -10px;;
}

.wrap-pagination-footer {
	margin-top: 2rem;
}

.wrap-pagination-footer .page-link {
	border: none;
}

.wrap-pagination-footer .page-link.page-number {
	border-radius: 100%;
	border: 1px solid var(--primary);
	margin: 0 5px;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 0.9rem;
	color: var(--primary);
}

.wrap-pagination-footer .page-item:last-child .page-link {
	border-top-right-radius: 30px;
	border-bottom-right-radius: 30px;
}

.wrap-pagination-footer .page-item.disabled .page-link {
	opacity: .7;
	border: none;
}

.wrap-pagination-footer .page-link.button {
	border: 1px solid var(--primary);
	border-radius: 30px;
	height: 30px;
	padding: 4px 12px;
	margin: 0 5px;
	color: var(--primary);
}

/* Infos Causas */
.wrap-infos-causas {
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	height: 350px;
}

.wrap-title-causa {
	position: relative;
	background: white;
	border-radius: 25px;
	display: flex;
	padding-left: 80px;
	padding-top: 10px;
	padding-bottom: 10px;
	margin-bottom: 2rem;
}

.wrap-title-causa img {
	position: absolute;
	height: 95px;
	top: -12px;
	left: -20px;
}

.wrap-title-causa h2 {
	font-size: 1.6rem;
	margin: 0;
	line-height: 1;
}

.wrap-title-causa h2 strong {
	display: block;
}

.btn.btn-more {
	background-color: #3792DE;
	color: #fff;
	font-weight: 700;
	width: 100%;
}

.btn.btn-more:hover {
	background-color: #1579cd;
}

.btn.btn-install {
	background-color: #EB5F48;
	color: #fff;
	font-weight: 700;
	width: 100%;
}

.btn.btn-install:hover {
	background-color: #c44e3a;
}

.wrapper-header-ongs {
	height: calc(100vh - 320px);
	display: flex;
	align-items: flex-end;
	padding: 1rem;
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	position: relative;
	margin-bottom: 125px;
}

.wrapper-header-ongs:before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,0.8) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.8) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.8) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 );
}

.wrap-header-info-ong {
	position: relative;
	display: flex;
	align-items: center;
	bottom: -2rem;
}

.wrap-logo-ong {
	background: white;
	border: 1px solid #D7D7D7;
	border-radius: 100%;
	width: 200px;
	height: 200px;
	overflow: hidden;
	margin-bottom: -70px;
	margin-right: 2rem;
	margin-left: 2rem;
	z-index: 1;
}

.wrap-logo-ong img {
	width: 200px;
	height: 200px;
	object-position: center;
	object-fit: contain;
	padding: 1rem;
}

.wrap-info-ong .subtitle {
	color: white;
	font-size: 1rem;
	margin: 0;
	line-height: 1;
}

.wrap-info-ong .title {
	color: white;
	line-height: 1;
}

.wrap-ingos-donations-ong {
	position: absolute;
	background: #ededed;
	bottom: -140px;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	padding: 2rem 2rem 2rem 1rem;
	max-height: 140px;
}

.wrap-donations {
	display: flex;
	align-items: center;
	margin: 0 1rem;
}

.wrap-donations img {
	height: 45px;
	margin-right: 1rem;
}

.wrap-donations h3 {
	font-size: 1.2rem;
}

.wrap-donations h3 strong {
	display: block;
}

.btn.btn-apoie-consumer {
	display: flex;
	height: 48px;
	background: #C65F4B;
	color: var(--white);
	font-size: 0.9rem;
	align-items: center;
	padding-left: 0;
	padding-top: 0;
	padding-right: 1.2rem;
	box-shadow: 0px 2px 0px 1px #AE4436;
}

.btn.btn-apoie-consumer:hover {
	background: #AE4436;
	box-shadow: 0px 2px 0px 1px #C65F4B;
}

.btn.btn-apoie-consumer img {
	height: 48px;
}

.btn.btn-apoie-consumer span {
	display: flex;
	flex-flow: column;
	line-height: 1;
	align-items: center;
	margin-left: 0.5rem;
}

.btn.btn-apoie-company.direto {
	display: flex;
	height: 48px;
	background: #5d89d3;
	color: var(--white);
	font-size: 0.9rem;
	align-items: center;
	padding-left: 0;
	padding-right: 1.2rem;
	margin-left: 1rem;
	box-shadow: 0px 2px 0px 1px #295B9F;
}

.btn.btn-apoie-company {
	display: flex;
	height: 48px;
	font-size: 0.9rem;
	align-items: center;
	padding-left: 0;
	padding-right: 1.2rem;
	margin-left: 1rem;
	background: #e6e6e6;
	color: var(--text);
	box-shadow: 0px 2px 0px 1px #C7C7C7;
}

.btn.btn-apoie-company.direto img {
	filter: grayscale(0);
}

.btn.btn-apoie-company img {
	height: 55px;
	filter: grayscale(1);
}

.btn.btn-apoie-company span {
	display: flex;
	flex-flow: column;
	line-height: 1;
	align-items: center;
	margin-left: 0.5rem;
}



.wrapper-donations {
	display: flex;
	justify-content: center;
	/*width: 100%;*/
	align-items: center;
}

.wrapper-action-apoie {
	display: flex;
	margin: 1rem;
	justify-content: center;
	position: relative;
	z-index: 1010;
}

.content-donations {
	/*border: 1px solid red;*/
}



blockquote {
	margin: 9rem auto;
	text-align: center;
	font-size: 2rem;
}

blockquote::after {
	content: ' " ';
	font-size: 4rem;
	line-height: 1;
	margin: 0;
	height: 1px;
	color: #DBD7E5;
}

blockquote::before {
	content: ' " ';
	font-size: 4rem;
	line-height: 1;
	margin: 0;
	height: 1px;
	color: #DBD7E5;
}

/* Clientes */
.wrap-carousel-clients {
	margin: 0 auto;
	background: white;
	border-radius: 20px;
	width: 80%;
	height: 130px;
	box-shadow: 0px 0px 30px -6px rgba(0,0,0,.7);
}

.list-contact {
	list-style: none;
	padding: 0;
	margin: 0 0 1rem;
}

.list-contact li {
	margin-bottom: 0.5rem;
}

.list-contact li img {
	height: 25px;
}

.text-default {
	font-size: 1.2rem;
}


/* Transparecia */
.wrap-card-ong-tranparent {
	border-radius: 30px;
	background: var(--white);
	box-shadow: 0px 0px 30px -6px rgba(0,0,0,.7);
	margin: 30px;
	display: block;

	opacity:0.4;
	transition:.4s ease all;
	transform:scale(.8);
}

.wrap-card-ong-tranparent.slick-current.slick-active {
	opacity:1;
	transform:scale(1);
}

.wrap-card-ong-tranparent img.img-fluid {
	height: 450px;
	width: 100%;
	object-fit: cover;
	object-position: center;
}

.wrap-header-card-ong-transparent h3 {
	font-weight: 700;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.wrap-header-card-ong-transparent h3 {
		font-size: .8rem;
	}
}

.wrap-header-card-ong-transparent .logo-circle {
	border: 1px solid var(--gray);
}

.wrap-infos-card-ong-transparent {
	padding: 1.5rem;
}

.wrap-infos-card-ong-transparent h3 {
	font-size: 1.2rem;
	color: var(--text);
	margin: 0;
	line-height: 1;
}

.wrap-infos-card-ong-transparent span {
	font-size: 0.9rem;
	color: var(--text);
}

.wrap-infos-card-ong-transparent p {
	font-size: 0.9rem;
	margin-top: 1rem;
	color: var(--text);
}

button.slick-next.slick-arrow,
button.slick-prev.slick-arrow {
	background: var(--primary);
	width: 45px;
	height: 45px;
	border-radius: 100%;
	background-size: 20px;
	background-repeat: no-repeat;
	background-position: center;
}

.slick-prev:before,
.slick-next:before {
	display: none;
}

button.slick-prev.slick-arrow {
	background-image: url('../images/icon-left-white.svg');
}

button.slick-next.slick-arrow {
	background-image: url('../images/icon-right-white.svg')
}




/* Nosso impacto */

.container-wrap-our-impact .col-md-6:last-child:nth-child(odd) {
	flex: none;
    max-width: inherit;
}

.container-wrap-our-impact .col-md-6:last-child:nth-child(even) {
	/*border: 1px solid blue;*/
}

.wrap-our-impact {
	position: relative;
	display: block;
	max-width: 500px;
	margin-left: auto;
    margin-right: auto;
}

.wrap-our-impact figure:before {
	content: "";
	position: absolute;
	z-index: 10;
	width: 100%;
	height: 100%;
	border-radius: 25px;

	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 80%, rgba(0,0,0,0.8) 100%);
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.8) 100%);
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.8) 80%,rgba(0,0,0,0.8) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#cc000000',GradientType=0 );
}

.wrap-our-impact figure img {
	border-radius: 25px;
	max-width: 100%;
}

.wrap-our-impact .company {
	position: relative;
	z-index: 20;
	margin-top: -110px;
}

@media (min-width: 768px) {
	.wrap-our-impact .company {
		margin-top: -180px;
	}
}

.wrap-our-impact .company-info {
	display: inline-block;
	color: white;
}

.wrap-our-impact .company-info h3 {
	font-weight: 700;
	text-transform: uppercase;
}

@media (max-width: 767px) {
	.wrap-our-impact .company-info h3 {
		font-size: 1.2rem;
	}
	.wrap-our-impact .company-info h4 {
		font-size: 1rem;
	}
	.wrap-our-impact .company-info p {
		font-size: 0.9rem;
	}
}

.wrap-our-impact .info {
	position: relative;
	z-index: 20;
	display: block;
	width: 100%;
	padding: 1rem;
	text-align: center;
	background: white;
	border-radius: 25px;
	color: var(--primary);
}

.wrap-our-impact .info h3 {
	display: inline-block;
	font-size: 1.8rem;
	font-weight: 700;
}

@media (min-width: 768px) {
	.wrap-our-impact .info h3 {
		font-size: 2.2rem;
	}
}

.wrap-our-impact .info  h3 span {
	font-size: 1.2rem;
	color: var(--text);
	font-weight: 400;
	display: block;
}




/* Nossos números */
.wrap-our-numbers img {
	max-width: 100%;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}

.wrap-our-numbers h3 {
	padding: 1rem;
	display: block;
	background: white;
	border-radius: 25px;
	text-align: center;
	margin-top: -25px;
	width: 100%;
	position: relative;
	box-shadow: 0 0 10px rgba(0,0,0,0.6);
	font-size: 2rem;
	font-weight: 700;
	color: var(--primary);
}

.wrap-our-numbers h3 span {
	color: var(--text);
	font-weight: 400;
	display: block;
}

/* Equipe ONG transparência */
.wrap-equipe-ong {
	display: flex;
	background: white;
	box-shadow: 0px 0px 30px -6px rgba(0,0,0,.7);
	/*height: calc(90vh - 90px);*/
	border-radius: 25px;
	align-items: flex-start;
}

.wrap-equipe-ong img {
	width: 60%;
}

.wrap-info-equipe {
	padding: 2rem;
}

.wrap-info-equipe h2 {
	font-size: 1.4rem;
	font-weight: 700;
	margin-bottom: 1rem;
}

/* EMPRESAS QUE FAZEM ACONTECER! */
.wrap-company-partner {
	background: var(--white);
	border-radius: 20px;
	padding: 1rem;
	position: relative;
	margin-top: 5rem;
	margin-bottom: 2rem;
	text-align: center;
}

.wrap-company-partner img {
	max-width: 100%;
	width: 150px;
	height: 150px;
	object-fit: contain;
	border: 1px solid #eee;
	margin: -4rem auto 1rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: white;
	padding: 0.5rem;
	border-radius: 100%;
}

.wrap-company-partner p {
	font-size: 1.1rem;
	color: var(--text);
	min-height: 35px;
	height: 80px;
	text-overflow: ellipsis;
	overflow: hidden;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	display: -webkit-box;
	text-align: left;
}

.wrap-company-partner a {
	margin: 1rem auto;
}


/* Modal Consumer */

.modal-dialog.modal-consumer {
	max-width: 85vw;
}
.modal-consumer .modal-content {
	background: #EDEDED;
	border: none;
	border-radius: 30px;
}

.modal-consumer .modal-content .modal-header {
	border-bottom: none;
	justify-content: center;
	padding: 2rem 3rem 1rem;
	display: block;
}

.modal-consumer .modal-content .modal-header .modal-title {
	font-size: 1.8rem;
	font-weight: 700;
}

.modal-consumer .modal-content .modal-header .close {
	position: absolute;
	right: 2rem;
	top: 2rem;
	font-size: 2rem;
	color: var(--primary);
	text-shadow: none;
	opacity: 1;
}

ul.list-company-support-cause {
	list-style: none;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.list-company-support-cause li {
	margin: 1rem 1rem 2rem;
	padding: 0.5rem;
	display: flex;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	position: relative;
	height: 130px;
	width: 130px;
}

.list-company-support-cause li::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--white);
	border-radius: 20px;
	transition: height ease-out 280ms;
}


.list-company-support-cause li:hover::before {
	height: 170px;
	transition: height ease-in 280ms;
}

.list-company-support-cause li:hover a.btn {
	opacity: 1;
	transform: translateY(0);
	transition: all ease-out 400ms;
}

.list-company-support-cause li img {
	max-width: 100%;
	position: relative;
}

.list-company-support-cause li a.btn {
	position: absolute;
	bottom: -30px;
	opacity: 0;
	transform: translateY(-40px);
	transition: all ease-in 400ms;
}

.modal-consumer .modal-footer {
	border-top: 20px solid white;
	background: #B6C1DD;
	flex-flow: column;
	align-items: center;
	justify-content: center;
	border-bottom-left-radius: 20px;
	border-bottom-right-radius: 20px;
	padding: 2rem 1rem;
}

.modal-consumer .modal-footer h5 {
	font-size: 1.8rem;
	font-weight: 700;
}

.modal-consumer .modal-footer p {
	font-size: 1.4rem;
}

.modal-consumer .modal-footer .wrap-step-plugin {
	display: flex;
	margin: 1rem 3rem 2rem;
	background: white;
	padding: 0;
	border-radius: 15px;
	width: auto;
	justify-content: space-around;
	align-items: flex-start;
	position: relative;
	overflow: hidden;
	height: 200px;
}

.step-plugin {
	width: 20%;
	position: relative;
	display: flex;
	flex-flow: column;
	justify-content: center;
	height: 100%;
}

.step-plugin::after,
.step-plugin::before {
	content: " ";
	position: absolute;
	top: -50px;
	right: -35px;
	width: 0;
	height: 0;
	border-top: 150px solid transparent;
	border-bottom: 150px solid transparent;
	border-left: 55px solid #B6C1DD;
	z-index: 0;
	transition: border-color 0.2s ease;
}

.step-plugin:before {
	right: -17px;
	border-left: 55px solid #ffff;
	z-index: 2;
	top: -50px;
}

.wrap-step-plugin .step-plugin:last-child:after,
.wrap-step-plugin .step-plugin:last-child:before {
	border: none;
}


.step-plugin h6 {
	font-size: 1.2rem;
	position: relative;
	z-index: 3;
}

.step-plugin span {
	z-index: 3;
	position: relative;
}



/* Mobile */
@media (max-width: 768px) {
	.wrap-header-mobile {
		display: flex;
		justify-content: space-between;
		align-items: center;
		width: 100%;
	}

	.navbar-light .navbar-toggler {
		color: var(--primary);
		border-color: transparent;
	}

	.navbar-light .navbar-toggler img {
		height: 32px;
	}

	.wrap-nav {
		flex-flow: column;
	}

	.wrap-actions-nav {
		display: flex;
		align-items: center;
		justify-content: space-between;
		margin-left: 0;
		width: 100%;
	}

	.dropdown-toggle::after {
		display: inline-block;
	}

	.jumbotron-fluid{
		/*min-height: calc(100vh - 90px);*/
		height: inherit;
		min-height: inherit;
		max-height: 500px;
		/*padding-top: 180px;*/
	}

	.jumbotron-fluid .display-4 {
		font-size: 1.75rem;
	}

	.jumbotron-fluid .lead {
		font-size: 1.25rem;
		font-weight: 300;
	}

	.wrap-demonstration {
		width: 85%;
		margin-top: -3rem;
	}

	.wrapper-card {
		width: 320px;
		margin: 0 auto;
		flex-flow: column;
		padding: 20px;
		text-align: center;
	}

	.card-arrow::before {
		transform: rotate(90deg);
		right: 0px;
		width: 270px;
		height: 510px;
		top: -10px;
	}

	.card.card-arrow .card-body {
		z-index: 1;
		padding-bottom: 10rem;
	}

	.card {
		width: 100%;
	}

	.card-text {
		width: 100%;
	}

	.wrapper-section .title-section {
		font-size: 1.6rem;
	}

	.number {
		font-size: 1rem;
		padding: 1rem;
	}

	.number.count {
		font-size: 2rem;
		margin: 0 0.1rem;
		padding: 0.8rem;
	}

	.wrap-text-number {
		padding-left: 3rem;
		font-size: 1.2rem;
	}

	.impact {
		display: flex;
		justify-content: center;
		margin: 1rem auto;
		font-size: 0.9rem;
		color: #666;
	}

	.list-logos {
		margin: .5rem auto;
		flex-flow: wrap;
		width: 100%;
	}

	.list-logos--item {
		border-radius: 100%;
		margin: 0.4rem;
	}

	.list-logos--item img {
		max-width: 50px;
	}

	.wrap-hexagono {
		width: 107px;
		height: 160px;
		margin: 5px 4px;
	}

	.wrap-hexagono img {
		width: 30px;
		margin-bottom: 0.5rem;
	}

	.title-hexagono {
		font-size: 0.7rem;
		padding: 0;
	}

	.nav-tabs {
		height: auto;
		flex-flow: row;
		overflow: auto;
	}

	img.logo-tab {
		width: 80px;
	}

	.wrapper-content-tab {
		flex-flow: column;
	}

	.wrap-video-tab {
		padding: 0rem;
	}

	.wrap-video-tab iframe {
		width: 100%;
		height: 200px;
	}

	.wrap-content-tab {
		padding: 1rem 0;
	}

	.wrap-text-tab {
		flex-flow: column;
	}

	.wrap-text-tab p {
		width: 100%;
	}

	.wrap-result-numbers {
		margin: 0 20px;
	}

	.list-tab {
		margin: 1rem 0;
	}

	.wrapper-section .description {
		line-height: 1.6;
		width: 100%;
	}

	.wrap-logos-sistemas {
		padding: 1rem 0.8rem;
		margin: 2rem auto;
		width: 100%;
		flex-flow: column;
	}

	.list-logos-sistemas {
		margin: 0 0 2rem;
		flex-flow: wrap;
		justify-content: center;
	}

	.list-logos-sistemas--item {
		margin: 0 15px 15px;
	}

	.wrap-button-sistemas {
		flex-flow: column;
	}

	.wrap-title-sistemas {
		justify-content: flex-start;
		width: 90%;
		padding: 1.5rem 0.7rem;
	}

	.title-sistemas {
		font-size: 1.3rem;
	}

	.wrap-btn-sistem {
		margin-left: 0;
		margin-top: 2rem;
	}

	.list-midia {
		flex-flow: wrap;
		justify-content: center;
	}

	.list-midia li {
		margin: 5px;
	}

	.list-midia img {
		height: 80px;
	}

	.list-premios {
		flex-flow: wrap;
		justify-content: center;
	}

	.list-premios li {
		margin: 5px;
		padding: 1rem 1.5rem;
	}

	.list-premios li img {
		height: 50px;
	}

	.wrap-form {
		margin: 0 1rem;
		/*background: transparent;*/
	}

	.wrap-profile,
	.wrap-description-profile {
		padding: 0;
	}

	.wrap-description-profile h4,
	.wrap-description-profile span,
	.wrap-description-profile p,
	form.form label,
	.wrapper-section .wrap-form .title-section {
		/*color: var(--white)*/
	}

	form.form {
		padding: 0.5rem;
	}

	.wrapper-form {
		height: auto;
	}

	.wrap-footer {
		display: flex;
		flex-flow: column;
		align-items: center;
	}

	.logos-premios-footer {
		display: flex;
		flex-flow: wrap;
		justify-content: center;
	}

	.logos-premios-footer li {
		justify-content: center;
		width: 140px;
		margin: 5px;
	}

	.wrap-avatar {
		width: auto;
	}

	.wrapper-number-result {
		width: 90%;
	}

	.btn.btn-primary {
		padding: .5rem 1.8rem;
	}

	.btn-fixed-mobile {
		position: fixed;
		left: 0;
		bottom: 0;
		border-radius: 0;
	}


	/* Sou empresa */
	.wrap-bar-clients.owl-carousel {
		width: 100%;
		height: 100px;
	}

	.wrap-together-company {
		margin-bottom: 2rem;
	}

	.wrap-responsibility {
		width: 90%;
		margin: -8rem auto 0;
		height: auto;
		box-shadow: 0 0 30px rgba(0,0,0,.7);
		flex-flow: column;
		position: relative;
	}

	.wrap-image-responsibility {
		height: 290px;
		width: 100%;
	}

	.wrap-image-responsibility .diagonal {
		width: 360px;
		-webkit-transform: skew(-99deg) translateX(-910px);
		-ms-transform: skew(-99deg) translateX(-910px);
		transform: skew(-99deg) translateX(-910px);
	}

	.wrap-content-responsibility {
		width: 100%;
		padding: 1rem;
		align-items: center;
	}

	.wrap-content-responsibility h4 {
		text-align: center;
		font-size: 1.2rem;
	}

	.wrap-content-responsibility p {
		margin-bottom: 1rem;
	}

	.wrap-content-responsibility a.btn {
		margin-bottom: 1rem;
	}

	.wrap-ease-company {
		padding: 1rem 0.7rem;
		min-height: 300px;
		margin-top: 2rem;
		text-align: center;
	}

	.wrap-ease-company img {
		height: 50px;
	}

	.wrap-ease-company h3 {
		font-size: 1.2rem;
	}

	.wrap-ease-company p {
		font-size: 0.9rem;
	}

	.wrap-ease-company.system {
		min-height: 170px;
		display: flex;
		align-items: center;
		text-align: left;
	}

	.wrap-ease-company.system img {
		margin-right: 1rem;
	}

	.wrap-form.company {
		padding: 0.5rem;
		margin-top: -40px;
		margin-left: 0;
		margin-right: 0;
	}

	.wrap-image-form-sou-empresa img {
		height: 300px;
		border-bottom-left-radius: 0;
		border-top-right-radius: 30px;
		width: 100%;
	}

	.wrap-thumb-category {
		padding: 0.5rem;
		min-height: 190px;
	}

	.wrap-pagination-footer .page-item .page-link span {
		display: none;
	}

	img.logo-ong.img-fluid {
		max-height: 80px;
		margin-top: 1rem;
	}

	.wrap-infos-causas {
		height: auto;
		margin-bottom: 4rem;
	}

	.wrap-pagination-mobile {
		justify-content: space-between;
		align-items: center;
		margin-top: -2rem;
		margin-bottom: 1rem;
	}

	.btn-filter {
		background-color: var(--bg-gray);
		border: 1px solid #e3e3e3;
	}

	.wrap-form-filter {
		position: fixed;
		width: 100vw;
		height: 100%;
		top: 0;
		left: 0;
		background-color: var(--bg-gray);
		z-index: 9999;
		transform: translateY(-100%);
		transition: all ease 500ms;
		overflow-y: auto;
	}

	.wrap-form-filter.show {
		transform: translateY(0);
		transition: all ease 600ms;
	}

	.wrap-link-back {
		border-bottom: 1px solid #ddd;
		padding: 0.6rem;
	}

	.wrap-title {
		text-align: center;
		margin: 1rem auto;
		display: flex;
		flex-flow: column;
		justify-content: center;
		align-items: center;
	}

	.wrap-form-filter .wrap-title .line {
		margin: 1rem auto;
	}

	form.form-filter {
		padding: 0 1rem;
	}

	form.form-filter .form-control {
		background-color: white;
		border: 1px solid white;
	}

	.btn.btn-category {
		color: var(--text);
		background: white;
	}

	.wrap-category-checkbox {
		width: 100px;
		height: 90px;
	}

	.wrap-category-checkbox h6 {
		font-size: 0.7rem;
	}

	.list-group-category input[type=checkbox]:checked + .wrap-category-checkbox {
		background-color: #f5e4f4;
	}

	.list-group-category {
		margin-top: 1rem;
		height: 195px;
		overflow: auto;
	}

	.wrap-thumb-category-hover {
		padding: 0.5rem;
	}

	.wrap-thumb-category:after {
		content: '?';
		position: absolute;
		top: 10px;
		left: 10px;
		width: 20px;
		height: 20px;
		border: 1px solid #999;
		border-radius: 100%;
		display: flex;
		align-items: center;
		justify-content: center;
	}

	.wrap-thumb-category:hover:after {
		opacity: 0;
		transition: 1s ease opacity;
	}

	.wrap-btn-action-category {
		flex-flow: column;
	}

	.btn-action-category {
		font-size: 0.7rem;
		padding: 4px 0px 4px 15px;
		margin: 10px 8px 0;
	}

	.btn-action-category img {
		height: 24px;
		top: -3px;
		left: -8px;
	}

	.wrap-demonstration img {
		max-width: 100%;
		height: 320px;
	}

	.nav-tabs .nav-link::after {
		display: none;
	}

	.wrap-selos {
		justify-content: flex-start;
		margin-top: 1rem;
	}

	.wrap-pagination-footer .page-link.page-number {
		width: 40px;
		height: 40px;
	}

	.wrap-pagination-footer .page-link.button {
		border-radius: 40px;
		height: 40px;
		padding: 7px 12px;
	}

	.wrap-pagination-footer .page-item:last-child .page-link {
		border-top-right-radius: 40px;
		border-bottom-right-radius: 40px;
	}

	.wrap-title-causa {
		padding-left: 110px;
	}

	.wrap-title-causa img {
		left: 0;
	}


	.wrapper-header-ongs {
		height: calc(100vh - 350px);
		padding: 1rem;
		margin-bottom: 165px;
	}

	.wrap-header-info-ong {
		position: relative;
		display: flex;
		flex-flow: column-reverse;
		align-items: center;
		justify-content: center;
		bottom: -5rem;
	}

	.wrap-logo-ong {
		width: 150px;
		height: 150px;
		margin-bottom: 1rem;
		margin-right: auto;
		margin-left: auto;
	}

	.wrap-logo-ong img {
		width: 150px;
		height: 150px;
		padding: 0.5rem;
	}

	.wrap-info-ong {
		text-align: center;
	}

	.wrap-info-ong .title {
		color: white;
		line-height: 1.3;
		font-size: 1.7rem;
	}

	.wrap-ingos-donations-ong {
		position: absolute;
		background: #ededed;
		top: 257px;
		left: -16px;
		right: -16px;
		width: 100vw;
		display: flex;
		flex-flow: column;
		align-items: center;
		justify-content: flex-end;
		padding: 0 0;
		max-height: initial;
		height: 270px;
		bottom: 0;
	}

	.wrap-donations {
		flex-flow: column;
		align-items: flex-start;
		margin: 1rem 2rem;
		width: 50%;
		justify-content: center;
	}

	.wrapper-donations .wrap-donations img {
		height: 35px;
		margin-right: 0;
	}

	.wrapper-action-apoie button.btn.btn-apoie-consumer {
		font-size: 0.8rem;
	}

	.wrapper-action-apoie a.btn.btn-apoie-company {
		font-size: 0.8rem;
	}

	.wrapper-action-apoie .btn.btn-apoie-company img {
		height: 40px;
	}

	blockquote {
		margin: 9rem auto 2rem;
		font-size: 1.4rem;
		line-height: 1;
	}

	blockquote::after,
	blockquote::before {
		font-size: 2rem;
	}

	.wrap-equipe-ong {
		flex-flow: column;
		height: auto;
	}

	.wrap-equipe-ong img {
		width: 100%;
	}

	.wrap-company-partner {
		padding: 0.5rem;
		margin-top: 2rem;
	}

	.wrap-company-partner img {
		width: 75px;
		height: 75px;
		margin: -2.5rem auto 0.5rem;
		padding: 0.5rem;
	}

	.wrap-company-partner p {
		font-size: 1rem;
		line-height: 1.1;
		height: 70px;
	}

	.btn-primary-outline {
		padding: 0.5rem;
		font-size: 0.7rem;
		margin: 0.5rem auto;
	}

	.modal-dialog.modal-consumer {
		max-width: 100vw;
	}

	.modal-consumer .modal-content {
		border-radius: 10px;
	}

	.modal-consumer .modal-content .modal-header .modal-title {
		font-size: 1rem;
	}

	.modal-consumer .modal-content .modal-header .close {
		right: 1rem;
		top: 1rem;
	}

	.list-company-support-cause li {
		margin: 1rem 0.5rem 2rem;
		padding: 0.5rem;
		height: 90px;
		width: 90px;
	}

	.list-company-support-cause li:hover::before {
		height: 115px;
		transition: height ease-in 280ms;
	}

	.list-company-support-cause li a.btn {
		bottom: -10px;
		transform: translateY(-20px);
	}

	.btn-sm {
		padding: 0.05rem 0.6rem !important;
		font-size: .8rem;
	}

}

@media (max-width: 1200px) and (min-width: 992px) {
	.wrapper-card {
		height: 350px;
		padding-left: 50px;
	}

	.card-arrow::before {
		right: -50px;
	}

	.card-text {
		width: 100%;
	}
}


.container {
	/*border: 1px solid green;*/
}

.row {
	/*border: 1px solid blue;*/
}

.row > div {
	/*border: 1px solid red;*/
}

/* Transparência */

.jumbotron-fluid.transparencia {
	background-image: url('../images/banner-transparencia.jpg');
	height: 50vh;
	min-height: 50vh;
	margin-bottom: 10px;
}

@media (min-width: 768px) {
	.jumbotron-fluid.transparencia {
		height: calc(100vh - 90px);
		min-height: calc(100vh - 90px);
	}
}

.jumbotron-fluid.transparencia::before {
	background-color: transparent;
}

.wrap-banner-transparencia {
	height: calc(100vh - 90px);
	min-height: 560px;
}

.wrap-content-transparencia {
	display: flex;
	align-items: center;
	background-color: rgba(255,255,255,0.9);
}

.wrap-content-transparencia .content > img {
	max-width: 160px;
}

.wrap-content-logos-transparencia {
	display: flex;
}

.wrap-transparencia-sobre p {
	font-size: 1.1rem;
	color: #666;
}

.wrap-transparencia-doamos img {
	float: left;
	max-width: 50px;
}

.wrap-transparencia-doamos .doamos-valor {
	font-size: 1.1rem;
	line-height: 1.35rem;
	color: #626262;
}

.wrap-transparencia-doamos .doamos-valor strong {
	display: block;
	font-weight: 700;
	color: #000;
}

.wrap-transparencia-doamos .doamos-aguarde {
	font-size: 1.2rem;
	line-height: 1.35rem;
	color: #626262;
}

.wrap-transparencia-doamos .doamos-aguarde strong {
	
}

.wrap-transparencia-depoimento .container {
	background-color: var(--gray-light);
	border-radius: 25px;
}

.wrap-transparencia-depoimento figure {
	position: relative;
}

.wrap-transparencia-depoimento figure::before {
	content: "";
	position: absolute;
	z-index: 10;
	width: 100%;
	height: 100%;
	opacity: 0.4;
	background-color: #130F38;
	border-radius: 25px;
}

.wrap-transparencia-depoimento figure img {
	position: relative;
	border-radius: 25px;
}

.wrap-transparencia-depoimento p {
	font-size: 1.2rem;
}

.wrap-transparencia-depoimento p span {
	font-size: 1rem;
}

.wrap-transparencia-depoimento p small {
	font-size: 0.9rem;
}

@media (min-width: 768px) {
	.wrap-transparencia-depoimento p {
		font-size: 1.75rem;
	}
	.wrap-transparencia-depoimento p span {
		font-size: 1.4rem;
	}
	.wrap-transparencia-depoimento p small {
		font-size: 1.2rem;
	}
}

.wrap-transparencia-instituicoes .wrap-company-partner {
	box-shadow: 0 0 20px rgba(0,0,0, .2);
}

.wrap-transparencia-instituicoes .wrap-company-partner .logo-circle {
	border: 1px solid var(--gray);
	margin-top: -2.5rem;
	margin-bottom: .5rem;
	padding: .5rem;
}

@media (min-width: 768px) {
	.wrap-transparencia-instituicoes .wrap-company-partner .logo-circle {
		margin-top: -5rem;
		margin-bottom: 1.5rem;
		padding: 1.5rem;
	}
}

.wrap-transparencia-instituicoes .wrap-company-partner img {
	margin: 0;
    padding: 0;
    border-radius: 0;
    border: 0;
    background: none;
    width: auto;
    height: auto;
}

.wrap-transparencia-instituicoes .wrap-company-partner a {
	color: var(--primary);
}

.wrap-transparencia-instituicoes .wrap-company-partner a::after {
	content: " >";
}

@media (min-width: 768px) {
	.wrap-transparencia-instituicoes .wrap-company-partner a {
		font-size: 1.2rem;
	}
}




/* Sobre nós */

.jumbotron-fluid.sobre-nos {
	background-image: url('../images/banner-sobre-nos.jpg');
	height: 50vh;
	min-height: 50vh;
}

.jumbotron-fluid.sobre-nos::before {
	background-color: rgba(14, 13, 55, .6);
}

@media (min-width: 768px) {
	.jumbotron-fluid.sobre-nos {
		height: calc(100vh - 90px);
		min-height: calc(100vh - 90px);
	}
}

.wrap-sobre-nos-banner .wrap-content {
	background-color: var(--white);
}

.wrap-sobre-nos-banner h1 {
	text-transform: uppercase;
	font-weight: 700;
}

.wrap-sobre-nos-banner h2 {
	color: var(--primary);
	font-weight: 700;
}

@media (max-width: 767px) {
	.wrap-sobre-nos-banner h2 {
		font-size: 1.5rem;
	}
}

.wrap-sobre-nos-banner p {
	font-size: 1.2rem;
}

.wrap-sobre-nos-manifesto p {
	font-size: 1.2rem;
}

@media (min-width: 768px) {
	.wrap-sobre-nos-manifesto {
		background: url('../images/sobre-nos/bg-manifesto.svg') no-repeat;
		background-position-y: center; 
		background-position-x: 60vw;
		background-size: 50%;
	}
}

@media (min-width: 1680px) {
	.wrap-sobre-nos-manifesto {
		background-position-x: right;
		background-size: 40%;
	}
}

.wrap-sobre-nos-manifesto p {
	font-size: 1.2rem;
}

.wrap-sobre-nos-pilares h3 {
	font-weight: 700;
}

.wrap-sobre-nos-pilares p {
	font-size: 1.2rem;
}

.wrap-sobre-nos-pilares img {
	max-width: 180px;
}

.wrap-sobre-nos-nossa-jornada p {
	font-size: 1.2rem;
}

.wrap-sobre-nos-transparencia p {
	font-size: 1.2rem;
}

.wrap-sobre-nos-transparencia img {
	/*border: 1px solid red;*/
	border-radius: 10px;
	position: relative;
	z-index: 20;
}

.wrap-sobre-nos-transparencia a {
	position: relative;
	/*z-index: 10;*/
}

.wrap-sobre-nos-transparencia a::before {
	content: "";
	position: absolute;
	z-index: 30;
	display: block;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background-color: var(--primary);
	border-radius: 8px;
	opacity: 0;
	transition: .2s ease all;
}

.wrap-sobre-nos-transparencia a:hover::before {
	opacity: 0.2;
	transition: .2s ease all;
}

.wrap-sobre-nos-transparencia a + a img {
	z-index: 40;
}

.wrap-sobre-nos-transparencia a + a::before {
	z-index: 50;
}

.wrap-sobre-nos-transparencia a::after {
	content: "";
	position: absolute;
	z-index: 10;
	display: block;
	width: 100%;
	height: 100%;
	top: 8px;
	left: 8px;
	background-color: var(--primary);
	border-radius: 8px;
	border-bottom-right-radius: 14px;
}

.wrap-sobre-nos-equipe .wrap-content {
	max-width: 225px;
	margin: 0 auto;
}

.wrap-sobre-nos-equipe h3 {
	font-size: 1.2rem;
	font-weight: 700;
	text-transform: uppercase;
	color: var(--primary);
}

.wrap-sobre-nos-equipe h4 {
	font-size: 1.2rem;
	text-transform: uppercase;
}

.wrap-sobre-nos-equipe a {
	position: relative;
	display: inline-block;
	overflow: hidden;
	border-radius: 10px;
}

.wrap-sobre-nos-equipe a::before {
	position: absolute;
	content: "";
	z-index: 20;
	width: 50px;
	height: 50px;
	right: 0px;
	bottom: -4px;
	/*border: 1px solid red;*/
	transition: .2s ease all;
	background: url('../images/sobre-nos/linkedin-sobre-nos-normal.svg') no-repeat;
}

.wrap-sobre-nos-equipe a:hover::before {
	width: 60px;
	height: 60px;
	/*bottom: -3px;*/
	transition: .2s ease all;
	background: url('../images/sobre-nos/linkedin-sobre-nos-hover.svg') no-repeat;
}

.wrap-sobre-nos-equipe a img {
	position: relative;
	z-index: 10;
}

.wrap-sobre-nos-trabalhe-conosco p {
	font-size: 1.5rem;
	font-weight: 700;
	color: var(--gray-text);
}

@media (max-width: 767px) {
	.wrap-sobre-nos-trabalhe-conosco p {
		font-size: 1.2rem;
	}
}

.wrap-sobre-nos-trabalhe-conosco a {
	color: var(--primary);
}

.wrap-sobre-nos-trabalhe-conosco .table thead th {
	border-top: none;
	border-bottom-width: 1px;
	color: var(--primary);
}

.wrap-sobre-nos-fale-conosco p {
	font-size: 1.2rem;
}

@media (max-width: 767px) {
	.wrap-sobre-nos-fale-conosco p {
		color: var(--white);
	}
}

.wrap-sobre-nos-fale-conosco label {
	font-size: 1.2rem;
	font-weight: normal;
	color: var(--text);
}





/* Planos */

.jumbotron-fluid.planos {
	min-height: 720px;
	color: var(--white);
	background: #805495;
	background: -moz-linear-gradient(top,  #805495 0%, #413279 100%);
	background: -webkit-linear-gradient(top,  #805495 0%,#413279 100%);
	background: linear-gradient(to bottom,  #805495 0%,#413279 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#805495', endColorstr='#413279',GradientType=0 );
}

.jumbotron-fluid.planos::before {
	background-color: transparent;
}



.planos h1 {
	font-weight: 700;
}

@media (max-width: 767px) {
	.planos h1 {
		font-size: 2rem;
	}
	.planos p.h4 {
		font-size: 1.25rem;
	}
	.planos p.h5 {
		font-size: 1rem;
	}
}



.planos .cards-plans-nav .slick-track {
	color: var(--text);
	background-color: var(--white);
	border-radius: 50px;
	border: 1px solid #ccc;
	transform: none !important;
}

.planos .cards-plans-nav .slick-slide:hover {
	cursor: pointer;
}

.planos .cards-plans-nav .slick-current {
	color: var(--white);
	background: #b71644;
	border-radius: 50px;
	background: -moz-linear-gradient(top,  #b71644 0%, #b74248 100%);
	background: -webkit-linear-gradient(top,  #b71644 0%,#b74248 100%);
	background: linear-gradient(to bottom,  #b71644 0%,#b74248 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#b71644', endColorstr='#b74248',GradientType=0 );
}

.planos .cards-plans-nav .slick-current:hover {
	cursor: initial;
}

@media (max-width: 767px) {
	.planos .cards-plans-nav .slick-list {
		padding: 0 !important;
	}
	.planos .cards-plans-nav .slick-track {
		width: 99% !important;
	}
	.planos .cards-plans-nav .slick-slide {
		width: 33% !important;
	}
}



.wrap-planos {
	background-color: #ededed;
}

.wrap-planos .cards-plans-header {
	height: 200px;
}

.wrap-planos .cards-plans-header h2 {
	text-transform: uppercase;
	font-weight: 700;
}

.wrap-planos .cards-plans-header h3 {
	text-transform: uppercase;
	font-weight: 700;
	color: var(--primary);
}

.wrap-planos .cards-plans-header p.h1 {
	font-weight: 700;
	color: var(--primary);
}

.wrap-planos .cards-plans-header p.green {
	color: var(--green);
}

@media (max-width: 991px) {
	.wrap-planos .cards-plans-header p.h1 {
		font-size: 2rem;
	}
	.wrap-planos .cards-plans-header h3 {
		font-size: 1.5rem;
	}
}



.wrap-planos .wrap-cards-plans > .cards-plans > .slick-list > .slick-track > .slick-slide {
	border-radius: 20px;
	background-color: var(--white);
}

.wrap-planos .wrap-cards-plans > .cards-plans > .slick-list > .slick-track > .slick-current {
	opacity: 1;
	box-shadow: 0px 0px 40px -6px rgba(0,0,0,.7);
}

.wrap-planos .wrap-cards-plans > .cards-plans > .slick-list > .slick-track > .slick-current + .slick-slide {
	opacity: .25;
	margin-top: 20px;
	/*pointer-events: none;*/
}

.wrap-planos .cards-plans .slick-current + .slick-slide .cards-plans-header {
	height: 180px;
}



.wrap-planos .cards-plans-price-nav .slick-track {
	color: var(--text);
	background-color: var(--white);
	border-radius: 50px;
	border: 1px solid #eee;
	transform: translate3d(0px, 0px, 0px) !important;
}

.wrap-planos .cards-plans-price-nav .slick-slide:hover {
	cursor: pointer;
}

.wrap-planos .cards-plans-price-nav .slick-current {
	color: var(--white);
	background-color: var(--primary);
	border-radius: 50px;
}

.wrap-planos .cards-plans-price-nav .slick-current:hover {
	cursor: initial;
}

@media (max-width: 991px) {
	.wrap-planos .cards-plans-price-nav .slick-list {
		padding: 0 !important;
	}
	.wrap-planos .cards-plans-price-nav .slick-track {
		width: 99% !important;
	}
	.wrap-planos .cards-plans-price-nav .slick-slide {
		width: 33% !important;
	}
}



.wrap-planos .cards-plans-volume {
	max-width: 200px;
	height: 40px;
	margin: auto;
}

.wrap-planos .cards-plans-volume .slick-track {
	border-radius: 50px;
	border: 1px solid #eee;
}

.wrap-planos .cards-plans-volume button.slick-next.slick-arrow {
	height: 43px;
	border-radius: 0 50px 50px 0;
	border: 1px solid #eee;
	z-index: 20;
	margin-top: 1px;

}

.wrap-planos .cards-plans-volume button.slick-prev.slick-arrow {
	height: 43px;
	border-radius: 50px 0 0 50px;
	border: 1px solid #eee;
	z-index: 20;
	margin-top: 1px;
}



@media (max-width: 767px) {
	.wrap-planos .list-group-item p.d-block {
		margin-left: 10%;
		margin-right: 10%;
		text-transform: uppercase;
	}
}

@media (min-width: 768px) {
	.wrap-planos .list-group-item {
		display: flex;
		align-items: center;
		min-height: 75px;
	}
}


.wrap-planos .planos-tooltip {
	display: inline-block;
	position: relative;
	top: 5px;
	width: 15px;
	height: 15px;
	margin-left: 2px;
	color: var(--white);
	background-color: var(--text);
	text-align: center;
}

.wrap-planos .planos-tooltip:hover {
	text-decoration: none;
}

.wrap-planos .planos-tooltip small {
	position: relative;
	top: -2px;
	font-weight: 700;
}

.wrap-planos .icon-planos {
	width: 40px;
}

.wrap-planos .link-mais {
	color: var(--text);
}

.wrap-planos .icon-mais {
	width: 28px;
}

/* FAQ */

.pln-faq .accordion {
	background-color: var(--white);
}

.pln-faq .card {
	width: 100%;
	/*font-size: 1.1rem;*/
}

.pln-faq .card-header {
	background-color: var(--white);
}

.pln-faq .card-body a {
	color: var(--primary);
	text-decoration: underline;
}

.pln-faq .btn-link {
	color: var(--text);
	/*font-size: 1.1rem;*/
	/*font-weight: bold;*/
	text-decoration: none !important;
}

	.pln-faq .btn-link strong {
		display: inline-block;
		max-width: 88%;
	}

	.pln-faq .btn-link:after {
		content: "\002B";
		display: inline-block;
		float: right;
		width: 28px;
		height: 28px;
		line-height: 1.55rem;
		font-size: 1.4rem;
		text-align: center;
		font-weight: bold;
		color: var(--gray-text);
		border: 2px solid var(--gray-text);
		border-radius: 100%;
	}

	.pln-faq .btn-link[aria-expanded=true]:after {
		content: "\2212";
		color: var(--primary);
		border-color: var(--primary);
	}

	.pln-faq .btn-link:hover,
	.pln-faq .btn-link:active {
		text-decoration: none;
		color: var(--gray-text);
	}

.pln-tag-red {
	color: red;
}

.pln-tag-green {
	color: #009800;
}

.pln-tag-purple {
	color: #3902f3;
}

.pln-faq .btn-link[aria-expanded=true],
.pln-faq .btn-link[aria-expanded=true] .pln-tag-red,
.pln-faq .btn-link[aria-expanded=true] .pln-tag-green,
.pln-faq .btn-link[aria-expanded=true] .pln-tag-purple {
	color: var(--primary);
}

@media (min-width: 992px) {

	.pln-faq .card,
	.pln-faq .btn-link {
		font-size: 1.1rem;
	}
}

/* FAQ / Contato */

.pln-faq-contact .card {
	width: 100%;
	background-color: var(--white);
	font-size: 1.1rem;
}

	.pln-faq-contact .card h3 {
		text-transform: uppercase;
	}

	.pln-faq-contact .card a {
		color: var(--text);
	}

		.pln-faq-contact .card a:hover {
			color: var(--primary);
		}

/* Transparência do Polen / Juntos doamos */

.pln-transparencia-doamos {
	color: var(--white);
	background-color: var(--primary);
}

	.pln-transparencia-doamos.wrapper-section .title-section {
		color: var(--white);
	}

	.pln-transparencia-doamos.wrapper-section .line-title {
		background-color: var(--white);
	}

	.pln-transparencia-doamos .count {
		color: var(--text);
	}

	.pln-transparencia-doamos .wrap-text-number {
		color: var(--white);
	}

	.pln-transparencia-doamos .impact {
		color: var(--white);
	}

/* Transparência do Polen / E para onde foi */

.pln-transparencia-onde a {
	color: var(--primary);
}

	.pln-transparencia-onde a::after {
		content: "";
		position: relative;
		border: solid var(--primary);
		border-width: 0 2px 2px 0;
		display: inline-block;
		padding: 5px;
		transform: rotate(315deg);
		-webkit-transform: rotate(315deg);
	}

.pln-transparencia-onde .wrap-company-partner h3 {
	color: var(--primary);
}

.pln-transparencia-onde .wrap-company-partner h4 strong {
	font-size: 1.25rem;
}

.pln-transparencia-onde .wrap-company-partner h4 small {
	display: block;
}

.pln-transparencia-onde .wrap-our-numbers h3 span {
	font-size: 1.4rem;
}

.pln-transparencia-onde .slick-prev {
	z-index: 10;
	top: 35px;
	left: 60px;
}

.pln-transparencia-onde .slick-next {
	z-index: 10;
	top: 35px;
	right: 60px;
}

@media (min-width: 992px) {

	.pln-transparencia-onde a {
		font-size: 1.2rem;
	}
}

/* Transparência do Polen / Barra */

.pln-transparencia-numbers h3 span {
	font-size: 1rem;
}

@media (min-width: 992px) {

	.pln-transparencia-numbers h3 span {
		font-size: 1.3rem;
	}
}