/*PROPERTIES*/
:root {
	--color-primary: #00AEE9;
	--color-secondary: #011627;
	--color-body: #2F2F2F;
	--extra-bold: 900;
	--regular: 400;
	--opacity: .7;
}

/*MAIN*/
body {
	font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-size: 16px;
	font-weight: 400;
	color: var(--color-body);
	line-height: 1.5;
	margin: 0px;
	overflow-x: hidden;
}

body,
html {
	display: flex;
	min-height: 100vh;
	flex-direction: column;
}

h2 {
	font-size: 1.6em;
	font-weight: var(--regular);
	margin-bottom: 1rem;
}

h3 {
	font-size: 1.3em;
}

h3 a {
	font-weight: inherit;
	text-transform: none;
}

.intro {
	font-size: 1.1em;
}

img {
	max-width: 100%;
}

a,
.btn {
	text-transform: uppercase;
	color: var(--color-body);
	font-weight: var(--extra-bold);
	text-decoration: none;
	-moz-transition: all .3s linear;
	-webkit-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

a:hover {
	color: var(--color-primary);
	text-decoration: none;
}

a.underline {
	border-bottom: 2px solid var(--color-primary);
	height: 23px;
}

button {
	cursor: pointer;
}

.btn {
	font-size: .9em;
	font-weight: var(--extra-bold);
	text-transform: uppercase;
	color: #565656;
	background-color: #f2f2f2;
	line-height: 1.3;
}

.btn:hover {
	color: #ffffff;
	background-color: var(--color-primary);
}

button:focus {
	outline: none;
}

ul.bullets {
	list-style: disc;
	margin-left: .5em;
	padding-left: .6em;
}

ul.bullets li {
	padding: 2px 0px;
}

.border-left {
	border-left: none !important;
}

.fa {
	font-size: .6em;
	color: var(--color-primary);
}

/*NAV MOBILE*/
.nav {
	line-height: 1.4;
}

.hamburger {
	opacity: var(--opacity);
	height: 100%;
	padding: 0px;
}

.hamburger:hover {
	opacity: 1;
}

.index .hamburger-inner,
.index .hamburger-inner::before,
.index .hamburger-inner::after,
.index .hamburger.is-active .hamburger-inner,
.index .hamburger.is-active .hamburger-inner::after {
	background-color: #ffffff;
	width: 30px;
	height: 4px;
}

.nav-mobile {
	border-bottom: 1px solid #dee2e6;
	list-style: none;
}

.nav-mobile li a {
	display: inline-block;
}

.nav-mobile li a:hover {
	color: inherit;
}

.index .nav-mobile {
	border-bottom: 1px solid #FFFFFF4D;
}

/*NAV DESKTOP*/
.nav li:not(:first-child) {
	padding-left: 20px;
}

.nav li a::after,
.nav-mobile li a::after {
	content: '';
	display: block;
	width: 0;
	height: 2px;
	background: var(--color-primary);
	transition: width .3s;
}

.nav li a:hover,
.index .nav-mobile li a:hover {
	color: inherit;
}

.nav li a:hover::after,
.nav-mobile li a:hover::after {
	width: 100%;
	transition: width .3s;
}

/*HEADER*/
header {
	background-image: linear-gradient(#FFF, #F2F2F2);
}

header.index {
	color: #ffffff;
	background-color: var(--color-secondary);
	background-image: none;
}

header.index a {
	color: #ffffff;
}

h1 {
	font-size: 2.4em;
	font-weight: var(--regular);
	line-height: 1.2em;
}

header p {
	font-size: 1.5em;
	font-weight: var(--extra-bold);
	opacity: var(--opacity);
}

.language {
	font-size: .8em;
	position: absolute;
	top: 0;
	right: 0;
	margin: 2em;
}

.language a,
.language-mobile a {
	color: inherit;
	opacity: var(--opacity);
}

.language a:hover {
	color: inherit;
	opacity: 1;
}

a.language-active {
	opacity: 1;
}

.index .language a:hover {
	color: #ffffff;
	opacity: 1;
}

/*CIRCLES*/
.circle {
	position: absolute;
	pointer-events: none;
}

.circle.one {
	width: 6%;
	opacity: .8;
	left: -2em;
	bottom: 6em;
}

.circle.two {
	width: 15%;
	opacity: .2;
	left: -1em;
	bottom: -11em;
}

.circle.three {
	width: 20%;
	opacity: .2;
	right: 1em;
	bottom: 10em;
}

.circle.four {
	width: 12%;
	opacity: .4;
	right: -8em;
	bottom: 5em;
}

.circle.five {
	width: 3%;
	opacity: .9;
	right: 20em;
	bottom: 10em;
}

.circle.six {
	width: 1%;
	opacity: .6;
	right: -5em;
	bottom: 10em;
}

.circle.seven {
	width: 1%;
	opacity: .5;
	left: 15em;
	bottom: 14em;
}

.circle.eight {
	width: 1%;
	opacity: .6;
	right: 10em;
	bottom: 12em;
}

.circle.nine {
	width: .5%;
	opacity: .6;
	left: -5em;
	bottom: 4em;
}

.circle.ten {
	width: .5%;
	opacity: .6;
	right: 2em;
	bottom: 12em;
}

/*GALLERY*/
.row.grid {
	display: grid;
	grid-template-columns: 4fr 1.5fr;
}

.grid img {
	height: 210px;
	object-fit: cover;
	width: 100%;
}

.overlay {
	position: relative;
}

.overlay::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(1, 22, 39, .8);
	-moz-transition: all .3s linear;
	-webkit-transition: all .3s linear;
	-ms-transition: all .3s linear;
	-o-transition: all .3s linear;
	transition: all .3s linear;
}

.overlay:hover:before {
	background: none;
}

/*STATS*/
.stats {
	color: #ffffff;
	text-align: center;
	background-image: linear-gradient(#00AEE9, #002756);
}

.stats-number {
	font-size: 4.2em;
	font-weight: var(--extra-bold);
	line-height: 1em;
}

.stats-description {
	text-transform: uppercase;
	opacity: var(--opacity);
	font-size: .9em;
}

.kerning {
	letter-spacing: -.08em;
}

/*PRODUCTS*/
.products .fa,
{
padding-top: 6px;
}

.read-more {
	font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-weight: var(--extra-bold);
	text-transform: uppercase;
}

/*PLANT*/
.dark {
	color: #ffffff;
	background-color: var(--color-secondary);
}

.object-fit {
	height: 100%;
	object-fit: cover;
	width: 100%;
}

.number {
	font-size: 1.9em;
	font-weight: var(--regular);
	line-height: 1em;
	opacity: .5;
}

/*NEWS*/
.latest-news h3 {
	font-weight: 600;
}

.date,
.caption {
	font-size: .9em;
	line-height: 1.2em;
	opacity: var(--opacity);
}

/*FOOTER*/
footer {
	font-size: .9em;
	color: #ffffff;
	background-color: var(--color-secondary);
}

footer h3 {
	font-size: 1em;
	text-transform: uppercase;
}

footer .border-top {
	border-top: 1px solid #ffffff;
}

footer a {
	color: inherit;
	font-weight: inherit;
	text-transform: inherit;
}

footer .fa {
	font-size: 3em;
}

.copyright {
	font-size: .8em;
}

/*ABOUT INTERIOR*/
ul.bullets.extra-leading li {
	padding: 6px 0px;
}

/*PRODUCTS INTERIOR*/
.secondary-drop {
	font-size: .8em;
}

#accordion li a {
	font-weight: var(--regular);
	text-transform: none;
}

#accordion .bold {
	font-weight: var(--extra-bold);
}

.news #accordion ul {
	list-style: none;
}

.news .fa {
	transition: .3s transform ease-in-out;
}

.news .collapsed .fa {
	transform: rotate(135deg);
}

h2 a {
	font-weight: var(--regular);
	text-transform: none;
}

h4 {
	font-size: 1em;
	padding-top: 5px;
	font-weight: 800;
}

.table thead th {
	border-bottom: 1px;
	font-weight: 400;
}

.table thead th {
	font-weight: 500;
	background-color: #f8f8f8;
	border-top: none;
}

.table th {
	font-weight: 500;
}

.table-hover tbody tr:hover {
	background-color: #f8f8f8;
}

/*NEWS INTERIOR*/
.news-gallery {
	border-top: 2px solid #00AEE9;
	width: 5em;
}

/*CONTACT INTERIOR*/
.card {
	box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175);
	border: none;
}

.card,
.index,
.card a,
.card p {
	font-size: 1em;
	font-weight: var(--regular);
	color: var(--color-body);
	opacity: 1;
}

.card-header {
	border-bottom: none;
}

.card h3 {
	font-weight: var(--extra-bold);
}

.card a {
	text-transform: none;
}

.card a:hover {
	color: var(--color-primary);
	;
}

.card a.btn {
	font-size: 1.1em;
	color: #ffffff;
	background-color: var(--color-primary);
}

.card a.btn:hover {
	background-color: var(--color-secondary);
}

.map-frame {
	filter: grayscale(100%);
	width: 100%;
	height: 50em;
	position: relative;
}

.push-bottom {
	flex: 1;
}

.products_img {
	width: 340px;
	height: 340px;
	border-radius: 50%;
	overflow: hidden;
	margin: 20px;
	display: inline-block;
	img{
		 object-fit: cover; 
		 width: 100%;
		 height: 100%;
	}
}

p {
	text-align: justify;
	text-justify: inter-ideograph;
}
