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

/* --------------------------
# 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;
}

/* --------------------------
# 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;
}

/* --------------------------
# 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;
}

/* --------------------------
# Breadcrumbs
-------------------------- */

@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;
}

/* --------------------------
# Header
-------------------------- */

#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: #01493A;
}

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

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

/* --------------------------
# Hero
-------------------------- */

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

#hero:before {
	content: "";
	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;
}

@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;
	}
}

/* --------------------------
# 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;
}

/* --------------------------
# 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;
	}

}

/* --------------------------
#btn-get-started
-------------------------- */

.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-color: #01493A;
	color: #fff;
	border: none;
}

/* --------------------------
# About
-------------------------- */

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

.about h2 {
	color: #01493A;
	font-size: 35px;
	margin-bottom: 40px;
}

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

@media (max-width: 768px) {
	
	.about img {
		margin-bottom: 0;
	}
}

/* --------------------------
# Mission and Vision
-------------------------- */

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

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

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

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

.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 {
	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 #01493A;
	text-align: center;
	margin-top: 60px;
}

.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: #01493A;
}

@media (max-width: 768px) {
	
	.mission_vision {
		margin: 20px;
	}
}

/* --------------------------
# Values
-------------------------- */

.values {
	text-align: center;
	margin-bottom: 60px;
}

.values .icon-box {
	text-align: center;
	padding: 80px 20px;
	transition: all ease-in-out 0.3s;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}

.values .icon-box .icon {
	margin: 0 auto;
	width: 64px;
	height: 64px;
	background: #002E24;
	transition: all 0.3s ease-out 0s;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	transform-style: preserve-3d;
	border: 1px solid #01493A;
	border-radius: 10px;
}

.values .icon-box .icon i {
	color: #fff;
	font-size: 28px;
}

.values .icon-box h4 {
	font-weight: 500;
	margin-bottom: 15px;
	font-size: 24px;
}

.values .icon-box p {
	line-height: 24px;
	font-size: 14px;
	margin-bottom: 0;
}

.values .icon-box:hover {
	background: #002E24;
	border-color: #cc1616;
	padding: 70px 20px 90px 20px;
	color: #fff;
}

.values .icon-box:hover .icon {
	background: #fff;
}

.values .icon-box:hover .icon i {
	color: #002E24;
}

.values .icon-box:hover .icon::before {
	background: #002E24;
}

.values .icon-box:hover h4 a,
.values .icon-box:hover p {
	color: #fff;
}

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

@media (max-width: 768px) {
	
	.values {
		margin: 60px 20px;
	}
	.values .title-odora h2 {
		margin-bottom: 10px;
	}
}

/* --------------------------
# Sustainability
-------------------------- */

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

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

/* --------------------------
# Recycling
-------------------------- */

.recycling {
	padding: 20px;
	background-color: #002E24;
	padding-top: 100px;
	padding-bottom: 160px;
	margin-bottom: -150px;
}

.recycling h2 {
	color: #fff;
}

.recycling p {
	color: #868686;
}

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

/* --------------------------
# Commitment
-------------------------- */

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

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

.commitment h2 {
	color: #fff;
}

.commitment p {
	color: #868686;
}

/* --------------------------
# sustainable
-------------------------- */

.sustainable h2 {
	margin-bottom: 0px;
}

.sustainable .icon-box {
	flex-grow: 1;
	padding: 30px;
	position: relative;
	overflow: hidden;
	background: #fff;
	transition: all 0.8s ease-in-out;
	border-radius: 8px;
	z-index: 1;
	border: 1px solid #01493A;
	margin: 40px, 0;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
}

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

.sustainable img {
	border-radius: 100px;
	border: 1px solid #01493A;
	box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
	transition: transform 2s ease-in-out;
	margin-left: 30px;
}

.sustainable img:hover {
	transform: rotate(360deg);
}

.sustainable {
	margin: 30px 0;
	align-items: center;
}

@media (max-width: 768px) {
	
	.sustainable {
		margin: 20px;
	}
	.sustainable img {
		width: 150px;
		margin: 0;
	}
	.sustainable h2 {
		margin: 25px;
	}

}

/* --------------------------
# Operations
-------------------------- */

.operations h2 {
	margin-bottom: 0px;
}

.operations .icon-box {
	flex-grow: 1;
	padding: 30px;
	position: relative;
	overflow: hidden;
	background: #fff;
	transition: all 0.8s ease-in-out;
	border-radius: 8px;
	z-index: 1;
	border: 1px solid #01493A;
	margin-bottom: 40px;
	box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.15);
}

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

.operations img {
	padding: 20px;
	border-radius: 100px;
	border: 1px solid #01493A;
	box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
	width: 150px;
}

.operations {
	margin: 60px 0;
	align-items: center;
}

@media (max-width: 768px) {
	.operations {
		margin: 60px 20px;
	}
	.operations .title-odora h2 {
		margin: 25px;
	}
}

/* --------------------------
# Odora Features
-------------------------- */

.odora-features {
	padding-bottom: 20px;
	margin-bottom: 60px;
	margin-top: 60px;
}

.odora-features img {
	padding: 6px;
}

.odora-features .section-title h3{
	text-align: center;
}

.odora-features .feature-box {
	padding: 20px;
	box-shadow: 0px 0 30px rgba(1, 41, 112, 0.08);
	transition: 0.3s;
	height: 100%;
}

.odora-features .feature-box h3 {
	font-size: 18px;
	font-weight: 500;
	margin: 0;
}

.odora-features .feature-box i {
	line-height: 0;
	background: #dff3e9;
	padding: 4px;
	margin-right: 10px;
	font-size: 24px;
	border-radius: 3px;
	transition: 0.3s;
}

.odora-features .feature-box:hover i {
	background: #01493A;
	color: #fff;
}

.odora-features .feture-tabs {
	margin-top: 120px;
}

.odora-features .feture-tabs h3 {
	color: #012970;
	font-weight: 700;
	font-size: 32px;
	margin-bottom: 10px;
}

.odora-features .feture-tabs .nav-pills {
	border-bottom: 1px solid #eee;
}

.odora-features .feture-tabs .nav-link {
	background: none;
	text-transform: uppercase;
	font-size: 15px;
	font-weight: 600;
	color: #012970;
	padding: 12px 0;
	margin-right: 25px;
	margin-bottom: -2px;
	border-radius: 0;
}

.odora-features .feture-tabs .nav-link.active {
	color: #4154f1;
	border-bottom: 3px solid #4154f1;
}

.odora-features .feture-tabs .tab-content h4 {
	font-size: 18px;
	margin: 0;
	font-weight: 700;
	color: #012970;
}

.odora-features .feture-tabs .tab-content i {
	font-size: 24px;
	line-height: 0;
	margin-right: 8px;
	color: #4154f1;
}

.odora-features .feature-icons {
	margin-top: 120px;
}

.odora-features .feature-icons h3 {
	color: #012970;
	font-weight: 700;
	font-size: 32px;
	margin-bottom: 20px;
	text-align: center;
}


.odora-features .feature-icons .content .icon-box {
	display: flex;
}

.odora-features .feature-icons .content .icon-box h4 {
	font-size: 20px;
	font-weight: 700;
	margin: 0 0 10px 0;
	color: #012970;
}

.odora-features .feature-icons .content .icon-box i {
	font-size: 44px;
	line-height: 44px;
	color: #0245bc;
	margin-right: 15px;
}

.odora-features .feature-icons .content .icon-box p {
	font-size: 15px;
	color: #848484;
}

@media (max-width: 768px) {
	
	.odora-features {
		margin: 20px;
	}

	.odora-features .feture-tabs h3 {
		font-size: 28px;
	}

	.odora-features .feature-icons h3 {
		font-size: 28px;
	}
}

/* --------------------------
# waste
-------------------------- */

.waste {
	background-color: #f5f6f7;
	padding: 80px;
}

.waste i {
	margin: 20px;
}

.waste h2 {
	color: #01493A;
	font-size: 35px;
	margin-bottom: 20px;
	font-weight: normal;
}

.waste .accordion-button:focus {
	outline: none;
	box-shadow: none;
}

.waste .nav a.accordion-link {
	width: 100%;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: var(--bs-white);
	transition: 0.5s;
	box-shadow: 0 0 29px 0 rgba(68, 88, 144, 0.12);
	margin-bottom: 10px;
	padding: 20px;
}

.waste .nav a.accordion-link.active {
	color: var(--bs-white);
	background: #002E24;
}

.waste .nav a.accordion-link h5 {
	transition: 0.5s;
	font-size: 16px;
}

.waste .nav a.accordion-link.active h5 {
	color: var(--bs-white);
}

.waste .accordion-arrow {
	transition: transform 0.5s;
	font-size: 30px;
	padding: 0, 10px;
}

.waste .accordion-link.active .accordion-arrow {
	transform: rotate(90deg);
}

.waste .accordion-arrow {
	content: '\203A';
}

.waste .tab-content {
	padding: 30px;
	transition: all 0.8s ease-in-out;
	border-radius: 8px;
	border: 1px solid #01493A;
	margin: 15px 0;
}

@media (max-width: 768px) {
	.waste {
		margin: 60px 0;
		padding: 50px 20px;
	}
	.waste .icon-box {
		margin-top: 60px;
	}
}

/* --------------------------
# Footer
-------------------------- */

#footer {
	background: #002E24;
	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;
}