/* CSS Document */



#social {
	width: 150px;
	height: auto;
	justify-content: center;
	margin: 40px auto;
}
.m-social {
	width: 100%;
	height: auto;
	display: grid;
	grid-template-columns: repeat(4, 20%);
	grid-template-areas: "but-a but-b but-c but-d";
	grid-gap: 10px;
	justify-content: center;
}
.but-a {
	grid-area: but-a;
}
.but-b {
	grid-area: but-b;
}
.but-c {
	grid-area: but-c;
}
.but-d {
	grid-area: but-d;
}
.sdg-3-buttons {
	display: grid;
	grid-template-columns: repeat(3, 33%);
	grid-template-areas: "but1 but2 but3";
	grid-gap: 30px;
	justify-content: center;
	font-size: 14px;
	margin-top: 0px;
}
.but1 {
	grid-area: but1;
	border: 2px solid #bdbdbd;
}
.but2 {
	grid-area: but2;
	border: 2px solid #bdbdbd;
}
.but3 {
	grid-area: but3;
	border: 2px solid #bdbdbd;
}
a.but1:hover {
	transition-duration: 0.3s, 0.1s;
	border: 2px solid #f7f7f7;
}
a.but2:hover {
	transition-duration: 0.3s, 0.1s;
	border: 2px solid #f7f7f7;
}
a.but3:hover {
	transition-duration: 0.3s, 0.1s;
	border: 2px solid #f7f7f7;
}
#downloads {
	color: #696a6d;
	background: #696a6d00;
	border-color: #ffffff00;
	border-radius: 5px;
	padding: 10px;
	text-align: center;
	text-transform: uppercase !important;
	font-weight: 600!important;
}
.btn {
	height: 60px;
	background-color: #ffffffde;
	border-top: 0px solid;
	color: #717171;
	padding: 10px 30px;
	cursor: pointer;
	font-size: 16px;
	bottom: 0px;
	position: fixed;
	z-index: 1000;
	-webkit-box-shadow: 2px 3px 38px -21px rgba(0,0,0,0.7);
	-moz-box-shadow: 2px 3px 38px -21px rgba(0,0,0,0.7);
	box-shadow: 2px 3px 38px -21px rgba(0,0,0,0.7);
}
/* Darker background on mouse-over */
.btn:hover {
	border-top: 3px solid #c7c8ca;
	color: #007CD8;
}
.dropbtn {
	width: 250px;
	background-color: #ffffff;
	color: #007CD8;
	padding: 16px;
	font-size: 16px;
	border: 0PX SOLID;
	cursor: pointer;
}
.dropdown {
	position: relative;
	display: inline-block;
	margin: 30px auto;
}
.dropdown-content {
	display: none;
	position: absolute;
	background-color: #f9f9f9;
	min-width: 100%;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
}
.dropdown-content a {
	font-size: 16px;
	color: #717171;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
}
.dropdown-content a:hover {
	background-color: #f1f1f1
}
.dropdown:hover .dropdown-content {
	display: block;
}
.dropdown:hover .dropbtn {
	background-color: #F7F7F7;
}

@media only screen and (max-width: 1300px) {
.sdg-3-buttons {
	grid-template-columns: repeat(3, 30%);
	grid-template-areas: "but1 but2 but3";
}
}

@media only screen and (max-width: 550px) {
.sdg-3-buttons {
	grid-template-columns: 100%;
	grid-template-areas: "but1"  "but2"  "but3";
	grid-column-gap: 5px!important;
	grid-gap: 15px!important;
}
}
