/* --------------------------
:: Site Author: Letícia Gonçalves
:: Description: Site desenvolvido exclusivamente para Odora Minerals
-------------------------- */

/* --- [Master Stylesheet] ----
:: 0.0 Base CSS Start
:: 1.0 Header Area CSS
:: 2.0 Hero Area CSS
:: 3.0 About Area CSS
:: 4.0 Sustainability Area CSS
:: 5.0 Business Model Area CSS
:: 6.0 Mining Area CSS
:: 7.0 Our Goal Area CSS
:: 8.0 Our Commitment Area CSS
:: 9.0 Our Strategy Area CSS
:: 10.0 Area Locations Area CSS
:: 11.0 Mines Projects Area CSS
:: 12.0 Partnership Area CSS
:: 13.0 Footer Area CSS Start Area CSS
-------------------------- */

/* --------------------------
:: Fonts and Coolor
-------------------------- */

/* Fonts */
:root {
	--font-default: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
	--font-primary: "Lato", sans-serif;
	--font-secondary: "Didot", serif;
}

/* Colors */
:root {
	--color-default: #777;
	--color-primary: #000;
	--color-secondary: #D3B47C;
}

/* Smooth scroll behavior */
:root {
	scroll-behavior: smooth;
}


/*--------------------------------------------------------------
# 0.0 Base CSS Start
--------------------------------------------------------------*/

body {
	background-color:#FFF;
	font-family: "Lato", sans-serif;
	font-weight: 300;
	font-size:15px;
	line-height:28px;
	color:#000;
	margin-top: 0;
}

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

a:hover {
	color: #CFA35B;
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Playfair Display", times, serif;
	text-decoration: none;
}

h1 { font-size: 50px; color: #000;}
h2 { font-size: 45px; color: #000;}
h3 { font-size: 20px; color: #000;}
h3 { font-size: 18px; color: #000;}
h5 { font-size: 16px; color: #000;}
h6 { font-size: 14px; color: #000;}

strong {
	letter-spacing: 1px;
}


/* --------------------------
:: 0.1 Preloader
-------------------------- */


/* --------------------------
:: 0.2 Buttons
-------------------------- */

/*Back to Top Button*/

.back-to-top {
	position: fixed;
	visibility: hidden;
	opacity: 0;
	right: 15px;
	bottom: 15px;
	z-index: 996;
	background: #D3B47C;
	width: 40px;
	height: 40px;
	border-radius: 50px;
	transition: all 0.4s;
}

.back-to-top i {
	font-size: 28px;
	color: #fff;
	line-height: 0;
}

.back-to-top:hover {
	background: #CFA35B;
	color: #fff;
}

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


/*Button General*/

.btn-get-started {
	font-weight: 400;
	font-size: 14px;
	letter-spacing: 1px;
	display: inline-block;
	padding: 12px 32px;
	border-radius: 50px;
	transition: 0.5s;
	line-height: 1;
	margin: 10px;
	color: #000;
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
	border: 1px solid #000;
}

.btn-get-started:hover {
	background: #000;
	color: #fff;
	text-decoration: none;
}



/* --------------------------
:: 0.3 Sections General
-------------------------- */

.section {
	padding: 80px 0;
	overflow: hidden;
}

.section-bg {
	background-color: #f9f9f9;
}

.section-title {
	padding-bottom: 30px;
}

.section-title h2 {
	font-size: 32px;
	font-weight: bold;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
}

.section-title h2::after {
	content: "";
	position: absolute;
	display: block;
	width: 50px;
	height: 3px;
	background: #CFA35B;
	bottom: 0;
	left: 0;
}

.section-title p {
	margin-bottom: 0;
	color: #777777;
	font-size: 15px;
}


/* --------------------------
:: 0.4 Navigation Menu
-------------------------- */

/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}

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

.navbar li {
	position: relative;
}

.navbar>ul>li {
	position: relative;
	white-space: nowrap;
	margin: 0 12px;
}

.navbar a,
.navbar a:focus {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 25px 3px;
	font-size: 14px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	white-space: nowrap;
	transition: 0.3s;
	position: relative;
}

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

.navbar>ul>li>a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: -2px;
	left: 0;
	background: linear-gradient(90deg, rgba(239,220,172,1) 0%, rgba(211,180,124,1) 35%, rgba(149,108,51,1) 100%);
	visibility: hidden;
	width: 0px;
	transition: all 0.3s ease-in-out 0s;
}

.navbar a:hover:before,
.navbar li:hover>a:before,
.navbar .active:before {
	visibility: visible;
	width: 100%;
}

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

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

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

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

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

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

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

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

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

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

	.navbar .dropdown .dropdown:hover>ul {
		left: -100%;
	}
}

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

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

	.navbar ul {
		display: none;
	}
}

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

.navbar-mobile .mobile-nav-toggle {
	position: absolute;
	top: 15px;
	right: 15px;
}

.navbar-mobile ul {
	display: block;
	position: absolute;
	top: 55px;
	right: 15px;
	bottom: 15px;
	left: 15px;
	padding: 10px 0;
	background-color: #fff;
	overflow-y: auto;
	transition: 0.3s;
}

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

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

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

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
	margin: 15px;
}

.navbar-mobile .dropdown ul {
	position: static;
	display: none;
	margin: 10px 20px;
	padding: 10px 0;
	z-index: 99;
	opacity: 1;
	visibility: visible;
	background: #fff;
	box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
	min-width: 200px;
}

.navbar-mobile .dropdown ul a {
	padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
	font-size: 12px;
}

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

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


/* --------------------------
:: 0.5 Title Odora
-------------------------- */
.title-odora h1 {
	font-size: 50px;
	margin-bottom: 60px;
}

.title-odora h2 {
	font-size: 50px;
	margin-bottom: 60px;
}

.title-odora h3 {
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .1em;
	color: #ccc;
	font-family: "Rubik", arial, sans-serif;
}

@media (max-width: 767px) {
	.title-odora h2 {
		font-size: 30px;
	}

}

/* --------------------------
:: 1.0 Header Area CSS
-------------------------- */

#header {
	transition: all 0.5s;
	z-index: 997;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#header.header-scrolled,
#header.header-inner-pages {
	background: #000;
}


#header .logo img {
	max-height: 40px;
}

@media (max-width: 992px) {
	#header {
		border: 0;
		padding: 15px 0;
	}
}


/* --------------------------
:: 0.6 Breadcrumbs Area CSS
-------------------------- */

@media (max-width: 480px) {
	.breadcrumbs {
		padding: 0 !important;
	}
}


@media (max-width: 767px) {
	.breadcrumbs .page-header {
		background-position: center;
	}
}



.breadcrumbs {
	padding: 0;
}

.breadcrumbs .page-header {
	padding: 190px 0 150px 0;
	min-height: 20vh;
	position: relative;
}

.breadcrumbs .page-header h2 {
	font-size: 60px;
	font-weight: 400;
	color: #fff;
	font-family: 'Didot', serif;
	line-height: 5rem;
	position: relative;
	z-index: 2;
}

@media (max-width: 480px) {
	.breadcrumbs .page-header h2 {
		font-size: 34px;
		line-height: 50px;
	}
}

.breadcrumbs .page-header p {
	color: rgba(255, 255, 255, 0.8);
	font-size: 15px;
	line-height: 24px;
}

.breadcrumbs nav {
	background-color: #f6f6f6;
	padding: 20px 0;
}

.breadcrumbs nav ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 16px;
	font-weight: 600;
	color: var(--color-default);
}

.breadcrumbs nav ol a {
	color: var(--color-primary);
	transition: 0.3s;
}

.breadcrumbs nav ol a:hover {
	text-decoration: underline;
}

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

.breadcrumbs nav ol li+li::before {
	display: inline-block;
	padding-right: 10px;
	color: var(--color-secondary);
	content: "/";
}


/* --------------------------
:: 2.0 Hero Area CSS
-------------------------- */

#hero {
	width: 100%;
	height: 100vh;
	background-color: #000;
	background-size: cover;
	position: relative;
}

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

#hero .container {
	position: relative;
	text-align: center;
}

#hero h1 {
	margin: 0 0 10px 0;
	font-size: 48px;
	font-weight: 700;
	line-height: 56px;
	color: #fff;
}

#hero h2 {
	color: #eee;
	margin-bottom: 40px;
	font-size: 24px;
}

#hero .play-btn {
	width: 94px;
	height: 94px;
	margin: 0 auto;
	background: radial-gradient(#CFA35B 50%, rgba(0, 153, 97, 0.4) 52%);
	border-radius: 50%;
	display: block;
	overflow: hidden;
	position: relative;
}

#hero .play-btn::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 100;
	transition: all 400ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

#hero .play-btn::before {
	content: "";
	position: absolute;
	width: 120px;
	height: 120px;
	-webkit-animation-delay: 0s;
	animation-delay: 0s;
	-webkit-animation: pulsate-btn 3s;
	animation: pulsate-btn 3s;
	-webkit-animation-direction: forwards;
	animation-direction: forwards;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
	-webkit-animation-timing-function: steps;
	animation-timing-function: steps;
	opacity: 1;
	border-radius: 50%;
	border: 5px solid rgba(0, 153, 97, 0.7);
	top: -15%;
	left: -15%;
	background: rgba(198, 16, 0, 0);
}

#hero .play-btn:hover::after {
	border-left: 15px solid #CFA35B;
	transform: scale(20);
}

#hero .play-btn:hover::before {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translateX(-40%) translateY(-50%);
	width: 0;
	height: 0;
	border: none;
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	border-left: 15px solid #fff;
	z-index: 200;
	-webkit-animation: none;
	animation: none;
	border-radius: 0;
}

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

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

	#hero h2 {
		font-size: 18px;
		line-height: 24px;
		margin-bottom: 30px;
	}
}

@-webkit-keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

@keyframes pulsate-btn {
	0% {
		transform: scale(0.6, 0.6);
		opacity: 1;
	}

	100% {
		transform: scale(1, 1);
		opacity: 0;
	}
}

/*--------------------------------------------------------------
:: 2.1 Home Brand
--------------------------------------------------------------*/

.home-brand {
	margin: 0;
	padding: 0;
	height: 300px;
	width: 300px;
	display: inline-block;
	background: url("../img/icone.png") no-repeat;
	background-size: contain;
	color: transparent;
	vertical-align: center;
	align-content: center;
}


/* --------------------------
:: 3.0 About Area CSS
-------------------------- */

.about {
	padding: 20px;
	margin-top: 60px;
}

.about img {
	border-radius: 10px;
	width: 100%;
	margin-top: 60px;
	margin-bottom: 60px;
}

/* --------------------------
:: 3.1 Mission and Vision
-------------------------- */

.mission_vision {
	padding: 60px 0; 
	position: relative;
	z-index: 2;
	margin-bottom: 100px;
}


.mission_vision h2{
	color: #000;
	font-size: 35px;
	margin-bottom: 20px;
}

.mission_vision p {
	font-size: 14px;
}


.mission_vision .icon-box {
	padding: 10px 20px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
	border-radius: 10px;
	background: #fff;
	transition: all ease-in-out 0.3s;
	height: 100%;
	align-items: center;
	border: 1px solid #BA975F;
	text-align: center;
	margin-top: 60px;
}

.mission_vision .icon-box i {
	color: #000;
	font-size: 30px;
	margin-top: 30px;
	margin-bottom: 20px;
	display: block;
	line-height: 0;
}

.mission_vision .icon-box:hover {
	box-shadow: none;
}

.mission_vision .icon-box:hover i,
.mission_vision .icon-box:hover h2,
.mission_vision .icon-box:hover h3 a{
	color: #BA975F;
}

/* --------------------------
:: 4.0 Sustainability Area CSS
-------------------------- */

.sustainability {
	padding-top: 100px;
	padding-bottom: 100px;
}

.sustainability .sustainability_thumb img {
	width: 100%;
	border-radius: 8px;
	margin-top: 40px;
}


.sustainability .sustainability_thumb .img_2 {
	margin-top: 100px;
	margin-left: 20px;
	border-radius: 8px;
}


@media (max-width: 768px) {
	.sustainability .sustainability_thumb .img_2 {
		margin-left: -40px;
	}
}

.sustainability .sustainability_thumb {
	/* -webkit-justify-content: flex-end; */
	-moz-justify-content: flex-end;
	-ms-justify-content: flex-end;
	justify-content: flex-end;
	-ms-flex-pack: flex-end;
}


.sustainability_info {
	border: 1px solid #BA975F;
	padding: 60px 40px;
	margin: 0;
	box-shadow: 0 0 29px;
	background-color: #fff;
	border-radius: 8px;
}

.sustainability .selo img {
	width: 50%;
	    display: inline-block;
}

/* --------------------------
:: 5.0 Business Model Area CSS
-------------------------- */

.steps {
	padding: 50px 0 40px 0;
	background-color: #000;
	padding-bottom: 380px;
	margin-bottom: -480px;
}

@media (max-width: 767px) {
	.steps {
		padding-left: 20px;
		padding-right: 20px;
		text-align: center;
	}
}

.steps .row {
	overflow: hidden;
}

.steps .content-item {
	padding: 40px;
	border-left: 1px solid #aaaaaa;
	border-bottom: 1px solid #aaaaaa;
	margin: -1px;
}

.steps .content-item span {
	display: block;
	font-size: 24px;
	font-weight: 400;
	color: #000;

}

.steps h2 {
	color: #fff;
}


.steps .content-item h4 {
	font-size: 28px;
	font-weight: 400;
	padding: 0;
	margin: 20px 0;
	color: #fff;
}

.steps .content-item p {
	color: #aaaaaa;
	font-size: 15px;
	margin: 0;
	padding: 0;
}

@media (max-width: 767px) {
	.steps .content-item {
		padding: 40px 0;
	}
}

.steps i {
	color: #fff;
	font-size: 20px;
	display: block;
	line-height: 0;
}

/* --------------------------
:: 6.0 Mining Area CSS
-------------------------- */

.mining {
	padding: 20px;
	background-color: #000;
	padding-top: 100px;
	padding-bottom: 160px;
	margin-bottom: -190px;

}

.mining h2 {
	color: #fff;
}

.mining p {
	color: #868686;
}

.mining img {
	border-radius: 10px;
	width: 50%;
}


/* --------------------------
:: 7.0 Our Goal Area CSS
-------------------------- */

/* --------------------------
:: 8.0 Our Commitment Area CSS
-------------------------- */

.commitment {
	background: #000;
	padding-top: 100px;
	padding-bottom: 160px;
	margin-bottom: -190px;
}

@media (max-width: 767px) {
	.commitment {
		padding: 100px 20px;
	}
}

.commitment .counts .count-box {
	background: linear-gradient(90deg, rgba(211,180,124,1) 15%, rgba(149,108,51,1) 100%);
	box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
}

.commitment .counts .count-box i {
	background: #b9965e;
}

.commitment h2 {
	color: #fff;
}

.commitment p {
	color: #868686;
}


.commitment .count-box {
	border: 1px solid #fff;
	border-radius: 10px;
}

@media (max-width: 480px) {
	.commitment .curriculo .count-box {
		height: 420px;
		padding-right: 0;
		padding-left: 0;
	}
}


.commitment .commitment-wrap {
	padding-left: 10px;
}

.commitment .commitment-item {
	box-sizing: content-box;
	padding: 30px;
	margin: 0 10px 30px 10px;
	box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
	position: relative;
	background: #fff;
	border-radius: 4px;
}

.commitment .commitment-item .commitment-img {
	width: 90px;
	border-radius: 50px;
	margin-right: 15px;
}

.commitment .commitment-item h3 {
	font-size: 20px;
	font-weight: bold;
	margin: 10px 0 5px 0;
	color: #000;
}

.commitment .commitment-item h4 {
	font-size: 14px;
	color: #999;
	margin: 0;
}

.commitment .commitment-item .stars {
	margin: 10px 0;
}

.commitment .commitment-item .stars i {
	color: #ffc107;
	margin: 0 1px;
}

.commitment .commitment-item .quote-icon-left,
.commitment .commitment-item .quote-icon-right {
	color: #009d8b;
	font-size: 26px;
	line-height: 0;
}

.commitment .commitment-item .quote-icon-left {
	display: inline-block;
	left: -5px;
	position: relative;
}

.commitment.commitment-item .quote-icon-right {
	display: inline-block;
	right: -5px;
	position: relative;
	top: 10px;
	transform: scale(-1, -1);
}

.commitment .commitment-item p {
	font-style: italic;
	margin: 15px auto 15px auto;
}

.commitment .swiper-pagination {
	margin-top: 20px;
	position: relative;
}

.commitment .swiper-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background-color: rgba(0, 0, 0, 0.2);
	opacity: 1;
}

.commitment .swiper-pagination .swiper-pagination-bullet-active {
	background-color: var(--color-primary);
}

@media (max-width: 767px) {
	.commitment .commitment-wrap {
		padding-left: 0;
	}

	.commitment .commitment-item {
		padding: 30px;
		margin: 15px;
	}

	.commitment .commitment-item .commitment-img {
		position: static;
		left: auto;
	}
}


/* --------------------------
:: 9.0 Our Strategy Area CSS
-------------------------- */

.strategy {
	position: relative;
	z-index: 2;
}


.strategy img {
	border-radius: 10px;
	width: 100%;
	margin-top: 100px;
}


.strategy h2{
	color: #BA975F;
	font-size: 35px;
	margin-bottom: 20px;
}

.strategy p {
	color: #000;
}


.strategy .icon-box {
	padding: 0 60px 40px 60px;
	background: #fff;
	transition: all ease-in-out 0.3s;
	height: 100%;
	align-items: center;
	text-align: center;
	color: #BA975F;
/*
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
	border: 1px solid #BA975F;
	border-radius: 10px;
*/	
}

@media (max-width: 767px) {
	.strategy .icon-box {
		padding: 0 10px;
	}
} 

.strategy .icon-box i {
	color: #BA975F;
	font-size: 30px;
	margin-top: 30px;
	margin-bottom: 20px;
	display: block;
	line-height: 0;
}

/*
.strategy .icon-box:hover {
	background: #000;
	border: 1px solid #000;
}


.strategy .icon-box:hover i,
.strategy .icon-box:hover h2,
.strategy .icon-box:hover h3,
.strategy .icon-box:hover p, a{
	color: #fff;
}
*/	

/* --------------------------
:: 10.0 Location Count Area CSS
-------------------------- */

.counts {
	padding: 70px 0 60px;
}

.counts .count-box {
	padding: 60px 30px 40px 30px;
	width: 100%;
	position: relative;
	text-align: center;
	background: #000;
	box-shadow: 0px 2px 35px rgba(0, 0, 0, 0.06);
	margin-bottom: 30px;
}

.counts .count-box i {
	position: absolute;
	top: -28px;
	left: 50%;
	transform: translateX(-50%);
	font-size: 24px;
	background: #000;
	color: #fff;
	width: 56px;
	height: 56px;
	line-height: 0;
	border-radius: 50px;
	border: 2px solid #fff;
	display: inline-flex;
	align-items: center;
	justify-content: center;
}

.counts .count-box span {
	font-size: 36px;
	display: block;
	font-weight: 600;
	color: #fff;
}

.counts .count-box p {
	padding: 0;
	margin: 0;
	font-family: "Roboto", sans-serif;
	font-size: 14px;
	color: #fff;
}



/*--------------------------------------------------------------
# Pricing
--------------------------------------------------------------*/

.pricing {
	padding: 60px 0;
}

.pricing .title-odora {
	margin-top: 150px;
}


.pricing h2 {
	color: #fff;
}

.pricing .box {
	padding: 40px 20px;
	background: #fff;
	text-align: center;
	box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
	border-radius: 4px;
	position: relative;
	overflow: hidden;
	transition: 0.3s;
	border: 1px solid #BA975F;
	margin-bottom: 60px;
	height: 380px;
}

.pricing .box:hover {
	transform: scale(1.1);
	box-shadow: 0px 0 30px rgba(1, 41, 112, 0.1);
}

.pricing .mines {
	font-size: 36px;
	color: #000;
	font-weight: 600;
	font-family: "Poppins", sans-serif;
}

.pricing .mines sup {
	font-size: 20px;
	top: -15px;
	left: -3px;
}

.pricing .mines span {
	color: #bababa;
	font-size: 16px;
	font-weight: 300;
}

.pricing img {
	padding: 10px 20px;
}


@media (max-width: 767px) {
	.pricing .box {
		height: 500px;
	}

}

@media (max-width: 767px) {
	.pricing img {
		padding: 20px 80px;
	}
}

.pricing ul {
	padding: 0;
	list-style: none;
	color: #444444;
	text-align: center;
	line-height: 26px;
	font-size: 16px;
	margin-bottom: 25px;
}

.pricing ul li {
	padding-bottom: 10px;
}

.pricing ul .na {
	color: #ccc;
	text-decoration: line-through;
}


/* --------------------------
:: 11.0 Mines Projects Area CSS
-------------------------- */

/* --------------------------
:: 12.0 Partnership Area CSS
-------------------------- */
.parcerias {
	padding-bottom: 10px;
	margin-bottom: 80px;
}

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

.parcerias img {
	border-radius: 10px;
	width: 100%;
}

.parcerias .icon-box img {
	width: 80px;
	height: 80px;
	margin: 20px;
}

.parcerias .icon-box {
	padding: 30px;
	position: relative;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
	transition: all 0.8s ease-in-out;
	border-radius: 8px;
	z-index: 1;
	border: 1px solid #BA975F;
}

@media (max-width: 767px) {
	.parcerias .icon-box {
		margin: 10px 0;
	}
} 

.parcerias .icon-box:hover {
	border-color: #fff;
}

.parcerias .icon-box:hover h3 {
	color: #fff;
}

.parcerias .icon-box::before {
	content: "";
	position: absolute;
	background: #fff;
	right: -60px;
	top: -40px;
	width: 100px;
	height: 100px;
	border-radius: 50px;
	z-index: -1;
}

.parcerias .icon-box:hover::before {
	background: #000;
	right: 0;
	top: 0;
	width: 100%;
	height: 100%;
	border-radius: 0px;
}

.parcerias .icon {
	margin: 0 auto 20px auto;
	padding-top: 10px;
	display: inline-block;
	text-align: center;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	background: linear-gradient(90deg, rgba(239,220,172,1) 0%, rgba(211,180,124,1) 35%, rgba(149,108,51,1) 100%);
	transition: all 0.3s ease-in-out;

}

.parcerias .icon i {
	font-size: 36px;
	line-height: 1;
	color: #fff;
}

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


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

.parcerias .description {
	font-size: 15px;
	line-height: 28px;
	margin-bottom: 0;
}

.parcerias .icon-box:hover .title a,
.parcerias .icon-box:hover .description {
	color: #fff;
}

.parcerias .icon-box:hover .icon {
	background: linear-gradient(90deg, rgba(239,220,172,1) 0%, rgba(211,180,124,1) 35%, rgba(149,108,51,1) 100%);
}

.parcerias .icon-box:hover .icon i {
	color: #fff;
}

.parcerias .titulo-odora h2 {
	font-size: 45px;
	margin-bottom: 50px;
	color: #000;
}


/* --------------------------
:: 12.1 Info
-------------------------- */

.info .counts .count-box {
	border-radius: 8px;
	margin-bottom: 0 !important;
	background: linear-gradient(90deg, rgba(211,180,124,1) 15%, rgba(149,108,51,1) 100%);
	box-shadow: 0px 0 15px rgba(0, 0, 0, 0.1);
}

.info .counts .count-box i {
	background: linear-gradient(90deg, rgba(211,180,124,1) 15%, rgba(149,108,51,1) 100%);
}



/* --------------------------
:: 13.0 Footer Area CSS Start Area CSS
-------------------------- */
#footer {
	background: #0f0f0f;
	color: #fff;
	font-size: 14px;
	text-align: center;
	padding: 30px 0;
}

#footer h3 {
	font-size: 36px;
	font-weight: 700;
	color: #fff;
	position: relative;
	font-family: "Poppins", sans-serif;
	padding: 0;
	margin: 0 0 15px 0;
}

#footer p {
	font-size: 15;
	font-style: italic;
	padding: 0;
	margin: 0 0 40px 0;
}

#footer .social-links {
	margin: 0 0 40px 0;
}

#footer .social-links a {
	font-size: 18px;
	display: inline-block;
	background: #009961;
	color: #fff;
	line-height: 1;
	padding: 8px 0;
	margin-right: 4px;
	border-radius: 50%;
	text-align: center;
	width: 36px;
	height: 36px;
	transition: 0.3s;
}

#footer .social-links a:hover {
	background: #00b371;
	color: #fff;
	text-decoration: none;
}

#footer .copyright {
	margin: 0 0 5px 0;
}

#footer .credits {
	font-size: 13px;
}

#footer .credits a {
	color: #00b371;
	transition: 0.3s;
}

#footer .credits a:hover {
	color: #009961;
}


