
@font-face {
	font-family: mainFont;
	src: url(../fonts/Quicksand-Regular.ttf);
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: mainFont;
	cursor: none;
	/*	background: #7b7b7b;*/
}

html, body {
	background-color: #e2e9d3;
	height: 100vh;
	background-image: radial-gradient(circle, #EFF6E0, #e2e9d3);
	overflow: hidden;
}

li, a, button {
	font-weight: 1000;
	font-size: 25px;
	color: #124559;
	text-decoration: none;
}

header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 10%;
}

.logo {
	width: 71px;
	height: 47px;
}

.rotate:hover {
	animation: rotation 3s infinite linear;
}

@keyframes rotation {
	from {
		transform: rotate(0deg);
	}
	to {
		transform: rotate(360deg);
	}
}

.nav__links {
	list-style: none;
}

.nav__links li {
	display: inline-block;
	padding: 0px 20px;
}

.nav__links li a {
	transition: all 0.3s ease 0s;
}

.nav__links li a:hover {
	color: #598392;
}

button {
	width: 64px;
	height: 64px;
	background-repeat: no-repeat;
	/*	background-color: ;*/
	border: none;
	border-radius: 50%;
	transition: all 0.3s ease 0s;
}

button:hover {
	color: #598392;
}

.socials {
	padding: 7rem 0;
}

.socials__container {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	height: 90%;
	z-index: 1;
	width: 100%;
	max-width: 1300px;
	padding: 0 50px;
}

.socials__content {
	color: #124559;
	width: 100%;
}

.socials__content h2 {
	font-size: 4rem;
	color: #124559;
}

.socials__content a {
	margin-top: 1rem;
	font-size: 2rem;
	font-weight: 700;
	transition: all 0.3s ease;
	
}

.socials__content a:hover {
	color: #598392;
}

.socials__img--container {
	text-align: center;
}

.socials__img--card {
	margin: 10px;
	height: 500px;
	width: 500px;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	color: #fff;
/*	background-image: linear-gradient(to right, #BB0A1E 0%, #FF781F 100%);*/
	background-color: #9A9A9A;
}

.fa-layer-group,
.fa-users {
	font-size: 14rem;
}

/* Mobile Responsive */
@media screen and (max-width: 1100px) {
	html, body {
		overflow: visible;
	}
	
	.nav__links {
		text-align: center;
		padding: 0;
	}

	.nav__links li {
		display: block;
/*		margin: 10px 0;*/
	}
	
	.nav__links a {
		font-size: 18px;
	}

	.socials__container {
		display: grid;
		grid-template-columns: 1fr;
		align-items: center;
		justify-content: center;
		width: 100%;
		margin: 0 auto;
		height: 90%;
	}

  .socials__img--container {
		display: flex;
		justify-content: center;
	}

  .socials__img--card {
		height: 425px;
		width: 425px;
	}

  .socials__content {
		text-align: center;
		margin-bottom: 4rem;
	}

  .socials__content h1 {
		font-size: 2.5rem;
		margin-top: 2rem;
	}

  .socials__content h2 {
		font-size: 3rem;
	}

  .socials__content p {
		margin-top: 1rem;
		font-size: 1.5rem;
	}
}

@media screen and (max-width: 480px) {
	.socials__img--card {
		width: 250px;
		height: 250px;
	}

  .fa-users,
  .fa-layer-group {
		font-size: 4rem;
	}
	
  .socials__content h1 {
		font-size: 2rem;
		margin-top: 3rem;
	}
	
  .socials__content h2 {
		font-size: 2rem;
		margin-bottom: 2rem;
	}

  .socials__content p {
		margin-bottom: 1rem;
	}

  .socials__btn {
		padding: 12px 36px;
		margin: 2.5rem 0;
	}
}

.copyright__links {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-size: 12px;
    color: #124559;
    padding: 5px;
    border-radius: 3px;
}
