/*------------------------------------------------------------------
[Master Stylesheet]

Project:	Ankor Bio Website
Version:	2.0
Author: Fedegilles // Banana Paradox Creative Studio
Publish Date: April 2019

-------------------------------------------------------------------*/

/*------------------------------------------------------------------


[Contents]

Fonts
1- CSS Variables
2- Reset
3- Main
4- Text
5- Img
6- Links
7- HR
8- Hovers
9- Fontawesome
10- Media Queries

-------------------------------------------------------------------*/

/* -----
	Fonts
	-------
	
	font-family: 'Roboto', sans-serif;
	light: 300;
	regular: 400;
	bold: 700;
	black: 900;

	font-family: 'Rajdhani', sans-serif;
	light: 300;
	regular: 400;
	medium: 500;
	semi-bold: 600;
	bold: 700;

	font-family: 'Chivo', sans-serif;
	light: 300;
	regular: 400;
	bold: 700;
	black: 900;

	-----
	Colors
	-----

	#7bc196: lightgreen;
	#517a5f: darkgreen;

---- */

/*-------- Reset --------*/

a {
	text-decoration: none;
	margin: 0;
	padding: 0;
	color: #000;
}

p,h1,h2,h3,h4,h5 {
	padding: 0;
	margin: 0;
}

li {
	list-style: none;
}

/*-------- Main --------*/

html {
	box-sizing: border-box;
	scroll-behavior:smooth;
}

body {
	margin: 0;
	line-height: 1.5;
}


.wrapper {
	display: grid;
}

header {
	padding: 50px;
}

header img {
	width: 200px;
}

.legal {
	padding: 0 50px 100px 50px;
}

.legal-hd {
	padding: 20px 0;
}

.legal-hd h1 {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 600;
	font-size: 3em;
}

.legal-hd hr {
	height: 5px;
	width: 50vw;
	background-color: #7bc196;
	border: none;
	margin: 10px 0;
}

.legal-bd p {
	font-family: 'Roboto', sans-serif;
	font-weight: 300;
	font-size: 1em;
}

span {
	font-weight: 400;
}

.legal-bd h3 {
	font-family: 'Chivo', sans-serif;
	font-weight: 400;
	font-size: 1.5em;
	margin-top: 20px;
}

.disclaimer {
	padding: 50px;
	background-image: url('../img/back-4.jpg');
	background-size: cover;
	background-position: bottom;
	background-attachment: fixed;
}

footer {
}

.footer-content {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-gap: 20px;
	padding: 50px;
}

.copyright {
	padding: 5px 5px 5px 50px;
	background-color: #517a5f;
}

/*-------- Text --------*/

.disclaimer p {
	font-family: 'Chivo', sans-serif;
	font-weight: 300;
	font-size: 0.7em;
	color: #fff;
	text-align: center;
	margin: auto;
	max-width: 700px;
	padding: 10px;
	border: solid 3px #fff;
}

.copyright p {
	font-family: 'Chivo', sans-serif;
	font-weight: 500;
	font-size: 0.8em;
	color: #fff;
}

/*-------- Img --------*/

.footer-content img {
	width: 300px;
}

/*-------- Links --------*/

.footer-content a {
	font-family: 'Rajdhani', sans-serif;
	font-weight: 600;
	font-size: 1.2em;
	max-width: 50vw;
	margin: 10px 0;
	transition: 0.1s ease;
}

/*-------- HR --------*/
/*-------- Hover --------*/

.footer-content a:hover {
	border-bottom: solid 1px #000;
}

/*-------- Fontawesome --------*/
/*-------- Media Queries --------*/

@media (max-width: 640px) {
    
}
