/* Import Google Fonts for Headings */
@import url('https://fonts.googleapis.com/css2?family=Poppins&family=Raleway:wght@700&display=swap');

/* Defaults */
h1, h2 {
	font-family: 'Raleway', sans-serif;
	font-size: 3em;
	margin-top: 200px;
	margin-bottom: 25px;
}

p {
	text-align: justify;
	font-family: 'Poppins', sans-serif;
	font-size: 1.2em;
	line-height: 1.75em;
	padding-bottom: 50px;
}

a {
	font-family: 'Poppins', sans-serif;
	color: brown;
}

a:hover, a:focus, a:active {
	color: orangered;
	text-decoration: none;
	outline: none;
}

::selection { /* for selected texts */
  color: white;
  background: rosybrown;
}

::-moz-selection { 
	color: white;
	background: rosybrown;
}

img.full {
	width: 100%;
}

button.CTA {
	background-color: brown;
	color: white;
	font-size: 18px;
	border: 1.75px solid brown;
	border-radius: 30px;
	outline: none;
	cursor: pointer;
	width: 175px;
	padding: 15px 10px;
	margin-top: -25px;
	transition: 0.5s ease background-color;
}

button.CTA:hover {
	background-color: transparent;
	color: brown;
}

/* Navbar */
nav {
	background-color: white;
	width: 100%;
	z-index: 100;
	transition: box-shadow .5s ease;
}

.scrolling-active {
	box-shadow: 0 5px 10px #efefef;
}

.logo {
	height: 35px;
	margin: 22.5px 50px 22.5px 0;
}

.icon-bar {
	background-color: brown;
}

li a.nav-link {
	color: black;
	font-family: 'Raleway', sans-serif;
	font-size: 1.15em;
	margin-top: 15px;
	margin-bottom: 15px;
}

li a.nav-link:hover, li a.nav-link:focus, li a.nav-link:active {
	background-color: transparent;
	color: brown;
}

ul.dropdown-menu {
	border: none;
	border-top: 3px solid brown;
	border-radius: 0;
	animation: fade-in 0.5s ease-out;
}

@keyframes fade-in {
	0% {
		opacity: 0%;
		transform: translateY(50px);
	}

	100% {
		opacity: 100%;
		transform: translateY(0);
	}
}

li a.dropdown-link {
	color: black;
	font-size: 1em;
	padding-top: 7px;
	padding-bottom: 7px;
}

button.navbar-right {
	font-family: 'Raleway', sans-serif;
	font-size: 15px;
	width: 110px;
	padding: 10px 5px;
	margin-top: 17.5px;
	margin-bottom: 17.5px;
}

@media (max-width: 768px) {
	.logo {
		margin-left: 20px;
	}

	li a.nav-link {
		margin-left: 15px;
	}

	button.navbar-right {
		margin-left: 10px;
	}
}

/* Content */
.top {
	margin-top: 150px;
}

div.top-panel {
	animation: fade-right 1.25s ease;
}

@keyframes fade-right {
	0% {
		opacity: 0;
		transform: translateX(-100px);
	}

	100% {
		opacity: 100%;
		transform: translateX(0);
	}
}

/* Footer */
.footer {
	background-color: rgb(35, 35, 35);
	color: white;
	width: 100%;
	padding-bottom: 25px;
	margin-top: 125px;
}

h3.footer-title {
	font-weight: bold;
	font-size: 1.5em;
	margin-top: 75px;
	margin-bottom: 30px;
}

p.footer-link {
    padding-bottom: 5px;
}

p a.footer-link {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.95em;
    text-decoration: none;
}

p a.footer-link:hover,  a.footer-link:focus,  a.footer-link:active {
    color: rosybrown;
}

img.footer-link {
	margin-top: 35px;
    margin-right: 30px;
}