/* RESPONSIVE FONT SIZE */

@media (max-width: 767px) {
	html{font-size: 14px;}
	#footer-content {
		text-align:center !important;
	}
}
@media (max-width: 575px) {
	html{font-size: 12px;}
	.logo {
		width:auto;
		height:50px;
	}

}

/* GENERIC STYLES */

#menu, #responsive-menu, button, h1, h2, h3, h4, h5, h6 {
	font-family:"Berthold Akzidenz-Grotesk", sans-serif;
}

#call-to-action, .nav .active, button.btn-success {
	background-color:#d60 !important;
	border-color:#d60 !important;
}

#call-to-action:hover, button.btn-success:hover {
	background-color:#d81 !important;
	border-color:#d81 !important;
}

button, .nav .active {
	border-radius:0.5rem !important;
}

button {
	cursor:pointer;
	text-transform:uppercase;
	font-size:1.1rem !important;
}

h1 {
	text-transform:uppercase;
}

h1, h2, h3 {
	text-align:center;
}

h4, h5, h6 {
	color:#d60;
}

a.unstyled {
	color:inherit !important;
	text-decoration:inherit !important;
}

.section {
	padding-top:3rem;
	padding-bottom:1rem;
}


/* RESPONSIVE MENU */

#responsive-menu {
	position:fixed;
	left:0px;
	top:-100%;
	width:100%;
	height:100%;
	padding-bottom:3rem;
	background-color:white;
	overflow:auto;
	transition:top 300ms;
	z-index:1;
}

#responsive-menu-menu {
	height:100px;
	padding-top:10px;
	padding-bottom:10px;
}

#responsive-menu .element {
	margin-bottom:1.5rem;
	font-size:2.5rem;
	text-align:center;
}

#btnShowResponsiveMenu, #btnHideResponsiveMenu {
	color:#d60;
	cursor:pointer;
}


/* MENU */

#menu {
	background-color:white;
	padding-top:10px;
	padding-bottom:10px;
}

#menu .nav {
	font-size:1.2rem;
}

#menu .nav-link {
	color:black;
}

#menu .nav-link:hover {
	text-decoration:underline;
}

#menu .nav-link.active {
	cursor:pointer;
	color:white;
}

/* HEADER */

#header {
	background-image:url(../img/header.jpg);
	background-size:cover;
	background-position:center;
	color:white;
}

#header-content {
	padding-bottom:3rem;
}

#header-icons .icon {
	position:absolute;
	margin-top:-0.6rem;
	font-size:2.8rem;
}

#header-icons h4, #header-icons h5 {
	color:white;
	margin-left:4.5rem;
}

#header-icons h4 {
	margin-bottom:0px;
}

#header-icons h5 {
	color:#ddd;
}

#header-cards {
	text-align:right;
	font-size:15px;
}

/* CALL TO ACTION */

#call-to-action {
	color:white;
	padding:0.5rem;
	transition:opacity 1000ms;
}

#call-to-action h2 {
	margin:0px;
}

/* TESTIMONIALS */

.testimonial-logo {
	float:left;
	margin-top:.2rem;
	margin-right:1.5rem;
	width:auto;
	height:4rem;
}

.testimonial-author span {
	color:#666;
	border-bottom:1px dotted #666;
}


.testimonial-picture {
	position:relative;
	top:-2px;
	width:24px;
	height:auto;
	vertical-align:middle;
	border-radius:50%;
}

/* CLOSURE */

#closure {
	background-image:url(../img/closure.jpg);
	background-size:cover;
	background-position:center;
	color:white;
}

/* FOOTER */


.dropbtn {
	background-color: #4CAF50;
	color: white;
	padding: 16px;
	font-size: 16px;
	border: none;
	cursor: pointer;
  }
  
  .dropdown {
	position: relative;
	display: inline-block;
  }
  
  .dropdown-contentt {
  
	display: none;
	right: 0;
	position: absolute;
	background-color: #ffffff;
	min-width: 160px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 1;
  }
  
  .dropdown-contentt a {
	color: black;
	padding: 12px 16px;
	text-decoration: none;
	display: block;
  }
  
  .dropdown-contentt a:hover {background-color: #dd6600}
  
  .dropdown:hover .dropdown-contentt {
	display: block;
  }
  
  .dropdown:hover .dropbtn {
	background-color: #3e8e41;
  }
  