@import url('https://fonts.googleapis.com/css?family=Raleway:200,300,400,500,600,700,800');

:root {
	--main-color:#001940;
	--greenish:#53ad4f;
}

html {
	height: 100%;
	background-color: #FFF;
	padding: 5%;
}

body {
	font-family: 'Raleway', sans-serif;
	/* height: 90%; */
	color: #FFF;
	text-shadow: 1.25px 1.5px 1px rgba(0, 0, 0, 0.7);
	background: linear-gradient(180deg, #e98d62, #f4bd77, #f7d77c);
}

#wrapper {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -165px; /* the bottom margin is the negative value of the footer's height - not always apparently, -165 looks pretty */
}

h1 {
	font-weight: 800;
	font-size: 52px;
	letter-spacing: 0.5px;
	margin-bottom: 20px;
	text-shadow: 2px 3px 1px rgba(0, 0, 0, 0.7);
}

h2 {
	font-weight: 800;
	font-size: 22px;
	letter-spacing: 0.25px;
	margin-bottom: 40px;
	text-shadow: 1.5px 2.5px 1px rgba(0, 0, 0, 0.7);
}

h3 {
	font-weight: 800;
	font-size: 18px;
	line-height: 24px;
}

p {
	font-weight: 500;
	font-size: 18px;
	line-height: 24px;
	margin-bottom: 20px;
}

a, a.visited {
	color: #FFF;
}

hr {
	width: 50%;
	margin-bottom: 40px;
}

.clear {
	clear: both;
}

.section {
	margin: 0% 10% 40px 10%;
	text-align: center;
	/* border: solid red 1px; */
}

#header, #footer {
	width: 100%;
}

#header {
	position: top;
	bottom: 0px;
}

.left {
	float: left;
}
.right {
	float: right;
}

#footer, #push {
	height: 100px;
}

.left img, .right img {
	width: 100px;
	height: 100px
}

.goguy {
	width: 15%;
	height: auto;
	margin-bottom: 10px;
}

/* Desktop CSS */
.image-container {
	display: flex;
	justify-content: space-between;
	max-width: 100%;
	margin-bottom: 40px;
}

.carousel-image {
	width: 32%; /* Adjust as needed */
	margin-right: 1%;
}

.carousel-image:last-child {
	margin-right: 0;
}

.badge {
	width: 20%;
	height: auto;
	margin-bottom: 40px;
}
		 
 .btn-grad {
	background-image: linear-gradient(225deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
	margin: 10px auto;
	padding: 15px 45px;
	text-align: center;
	text-transform: uppercase;
	transition: 0.5s;
	background-size: 200% auto;
	color: white;            
	box-shadow: 0 0 20px #eee;
	border-radius: 10px;
	display: block;
	width: 180px;
	text-decoration: none;
  }

  .btn-grad:hover {
	background-position: right center; /* change the direction of the change here */
	color: #fff;
	text-decoration: none;
  }
 