* {
	margin: 0;
}

html {
	font-size: 16px;
	overflow-x: hidden;
}

body {
	background: #F6F8FA;
	overflow-x: hidden;
	font-family: sans-serif;
}

a, a:link, a:visited {
	color: #365c6c;
}

p {
	font-family: Roboto, sans-serif;
}

#startbutton {
    background: #fff;
    border-radius: 30px;
    box-shadow: 2px 2px 2px 2px #000;
    color: #0a2535;
    padding: 15px 30px;
}

section {
    text-align: center;
}

#hero {
	background: #F6F8FA url('../images/hero_bg.svg') center 8rem / contain no-repeat fixed;
	height: 30rem;
}

#appImage {
	position: relative;
	left: 0;
	right: 0;
	top: 130px;
	margin-top: -130px;
	margin-left: auto;
	margin-right: auto;
	max-width: 800px;
	width: 90%;
}

#getstarted {
	background: #FB8A83;
	border-radius: 20px;
	box-shadow: 2px 2px 15px #888;
	color: #fff;
	line-height: 4rem;
	padding: 15px 30px;
	text-decoration: none;
	
}

#featureTable {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	padding: 2rem;
}

#featureTable > article {
	background: #e6e9eb;
	border-radius: 15px;
	margin: 0 .5rem 1rem;
	padding: 10px;
	height: 12rem;
	width: 12rem;
}

#featureTable img {
	height: 56px;
}

#featureTable h4 {
	color: #1C3C4D;
}

#featureTable p {
	color: #333;
	font-size: .9rem;
	text-align: left;
}

#features {
    background: #0a2535;
	padding-top: 10rem;
}

#demo {
	background: #0a2535;
	padding: 5rem 0 5rem;
}

#pricing {
	padding-top: 4rem;
	background: #F6F8FA url('../images/hero_bg.svg') center 8rem / contain no-repeat fixed;
}

#priceTable {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

#priceTable > article {
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 0px 50px #888;
	height: 22rem;
	position: relative;
	width: 14rem;
	margin: 2rem 1rem;
}

#priceTable .button {
	position: absolute;
	bottom: 0;
	width: 100%;
}

#priceTable h3 {
	margin-top: 20px;
}

#priceTable a {
	background: #1F78AD;
	border-radius: 10px;
	color: #fff;
	display: block;
	margin: 10px;
	padding: 10px;
	text-decoration: none;
}

#basicPackage h3 {
	background: #365c6c;
	color: #fff;
}

#customPackage h3 {
	background: #0A2535;
	color: #fff;
}

#supportPackage h3 {
	background: #D77B77;
	color: #fff;
}

h1, h2 {
	font-family: 'IBM Plex Sans', sans-serif;
	font-size: 2rem;
	padding: 10px;
}

h3, h4 {
	font-family: 'IBM Plex Sans', sans-serif;
	padding: 10px;
}

h5 {
	border-top: 1px solid #ccc;
	font-family: 'IBM Plex Sans', sans-serif;
	margin: 0 10px;
	padding: 10px 0;
}

.blue {
	color: #0a2535;
}

.white {
	color: #F6F8FA;
}

.menu-container {
  position: relative;
  display: flex;
  align-items: center;
  background: #0a2535;
  color: #ffffff;
  font-family: 'IBM Plex Sans', sans-serif;
  padding: 30px;
  z-index: 1;
  -webkit-user-select: none;
  user-select: none;
  box-sizing: border-box;
}

.menu-logo {
  line-height: 0;
  margin: 0 20px;
}

.menu-logo img {
  max-height: 40px;
  max-width: 100px;
  flex-shrink: 0;
}

.menu-container a {
  text-decoration: none;
  color: #0a2535;
  transition: color 0.3s ease;
}

.menu-container a:hover {
  color: #1bdbfd;
}

.menu-container input {
  display: block;
  width: 35px;
  height: 25px;
  margin: 0;
  position: absolute;
  cursor: pointer;
  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */
  -webkit-touch-callout: none;
}

/* Burger menu */
.menu-container span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;
  background: #ffffff;
  border-radius: 3px;
  z-index: 1;
  transform-origin: 4px 0px;
  transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              background 0.5s cubic-bezier(0.77,0.2,0.05,1.0),
              opacity 0.55s ease;
}

.menu-container span:first-child {
  transform-origin: 0% 0%;
}

.menu-container span:nth-child(3) {
  transform-origin: 0% 100%;
}

.menu-container input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(3px,-1px);
  background: #0a2535;
}

.menu-container input:checked ~ span:nth-child(4) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

.menu-container input:checked ~ span:nth-child(3) {
  transform: rotate(-45deg) translate(-5px,11px);
}

.menu ul {
  list-style: none;
}

.menu li {
  padding: 10px 0;
  font-size: 1.2rem;
}

/* mobile styles */
@media only screen and (max-width: 767px) { 
  .menu-container {
    flex-direction: column;
    align-items: flex-end;
  }
  
  .menu-logo {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  .menu-logo img {
    max-height: 30px;
  }

  .menu {
    position: absolute;
    box-sizing: border-box;
    width: 300px;
    right: -300px;
    top: 0;
    margin: -20px;
    padding: 75px 50px 50px;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    /* to stop flickering of text in safari */
    transform-origin: 0% 0%;
    transform: translateX(0%);
    transition: transform 0.5s cubic-bezier(0.77,0.2,0.05,1.0);
  }

  .menu-container input:checked ~ .menu {
    transform: translateX(-100%);
  }
}

/* desktop styles */
@media only screen and (min-width: 768px) { 
	
	#hero {
		height: auto;
	}
  
  .menu-container {
    width: 100%;
  }

  .menu-container a {
    color: #ffffff;
  }

  .menu-container input {
    display: none;
  }

  /* Burger menu */
  .menu-container span {
    display: none;
  }

  .menu {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .menu ul {
    display: flex;
    padding: 0;
  }

  .menu li {
    padding: 0 20px;
  }
}