

@keyframes animate {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
		border-radius: 0;
	}
	100% {
		transform: translateY(-1000px) rotate(720deg);
		opacity: 0;
		border-radius: 50%;
	}
}

html {
	scroll-behavior: smooth;
	overflow-x: hidden;
}

body {
	color: #000;
	background: #97ABB1;
	font-family: 'Comfortaa', cursive;
}

@keyframes animate {
	0% {
		transform: translateY(0) rotate(0deg);
		opacity: 1;
		border-radius: 0;
	}
	100% {
		transform: translateY(-1000px) rotate(720deg);
		opacity: 0;
		border-radius: 50%;
	}
}

.callButton {
	background-color:#44c767;
	border-radius:28px;
	border:1px solid #18ab29;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	font-family:Arial;
	font-size:17px;
	font-weight:bold;
	padding:16px 31px;
	text-decoration:none;
	text-shadow:0px 1px 0px #2f6627;
}
.callButton:hover {
	background-color:#5cbf2a;
	color:#000000;
}
.callButton:active {
	position:relative;
	top:1px;
}

.groovedBorder {
	border: 20px groove #8b5d33;
}

.button span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.5s;
}

.button span:after {
  content: '\00bb';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.5s;
}

.button:hover span {
  padding-right: 25px;
}

.button:hover span:after {
  opacity: 1;
  right: 0;
}

nav {
	background: #55aaff!important;
	border-radius: 0px!important;
	margin: 0px!important;
	font-family: 'Bebas Neue', cursive;
}

.btn-main {
	background: #155698!important;
	color: #FFF!important;
	box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 1);
	-webkit-box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 1);
}

.btn-main:hover {
	background: #FFF!important;
	color: #155698!important;
	box-shadow: 0px 12px 24px -12px rgba(255, 255, 255, 1);
	-webkit-box-shadow: 0px 12px 24px -12px rgba(255, 255, 255, 1);
}

h1,
h2,
h3,
h4,
h5 {
	font-family: 'Bebas Neue', cursive;
}

.dropshadow {
	box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 1);
	-webkit-box-shadow: 0px 12px 24px -12px rgba(0, 0, 0, 1);
}

.panel-group .panel {
	border-radius: 0;
	box-shadow: none;
	border-color: #EEEEEE;
}

.panel-default > .panel-heading {
	padding: 0;
	border-radius: 0;
	color: #212121;
	background-color: #FAFAFA;
	border-color: #EEEEEE;
}

.panel-title {
	font-size: 14px;
}

.panel-title > a {
	display: block;
	padding: 15px;
	text-decoration: none;
}

.more-less {
	float: right;
	color: #212121;
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
	border-top-color: #EEE;
}

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 120px;
  height: 120px;
	margin-left: -60px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid blue;
  border-bottom: 16px solid blue;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 }
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom {
  from{ bottom:-100px; opacity:0 }
  to{ bottom:0; opacity:1 }
}

#mainBody {
  text-align: center;
}
