
:root {
	--brand-primary: rgb(110, 150, 170);
	--brand-darker: rgb(70,110,130);
	--brand-dark: rgb(50,90,110);
}
a {
    text-decoration: none;
}

body {
    font-family: "Segoe UI";
	margin: 0;
}

#main-header {
    width: 100%;
    background-color: var(--brand-primary);
    color: white;
    position: sticky;
    top: 0;
    transition: all 0.3s;
	z-index: 999;
	box-shadow: 0 2px 5px #555;
}

.header-content {
    display: flex;
    justify-content: space-between;   
	max-width: 1200px;
	margin: 0 auto;
}

.product-info {
    display: flex;
    align-items: center;
	& img {
		height: 48px;
	}
}

#product-icon {
    margin-right: 10px;
}

nav a {
    display: flex;
    height: 100%;
	margin: 0 auto;
	text-decoration:none;
    padding: 15px;
    color: white;	
	display: inline-block;
	height: 100%;
	box-sizing: border-box;
	cursor: pointer;
	align-items:center;
	
	&::after {
	  content: '';
	  display: block;
	  position: relative;
	  bottom: 0;
	  transform: translateY(15px);
	  margin: auto;
	  height: 3px;
	  width: 0px;
	  background: transparent;
	  transition: width 0.5s ease, background-color 0.5s ease;
	}
	
	&:hover::after {
	  width: 30px;
	  background-color: currentColor;
	  opacity: 0.5;
	}
}




.full-screen-image {
    background-image: url('/static/homepage/model-validation-snapshot.png');
    background-size: cover;
    background-position: center;
    height: 100vh;
    position: relative;
	z-index: 0;
	& h1 {
		color: white;
		font-size: 3em;
		text-align: center;
	}
	& h2 {
		color: white;
		font-size: 1.5em;
		text-align: center;
		font-weight: lighter;
	}
	& button {
		border-radius: 5px;
		padding: 10px 20px;
		width: 8em;
		border: 1px solid white;
		background: transparent;
		color: white;
		margin-top: 25px;
		margin-left: 5px;
		margin-right: 5px;
		font-size: 1.2em;
		&:hover {
			background: var(--brand-primary);
			cursor: pointer;
		}
	}
}

.overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	z-index: 0;
}

.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;

}

.features {
    padding: 50px 0;
	margin: 0 auto;
	max-width: 800px;
}

.feature {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
	& h3 {
		color: var(--brand-primary);
		font-weight: 400;
	}
	& li {
		margin-bottom: 5px;
		list-style: none;
		&:before {
		  font-family: FontAwesome;
		  content: "\f058";
		  color: var(--brand-primary);
		  font-size: 1em;
		  line-height: 1em;
		  padding-right: 10px;
		}
	}
	& img {
		height: 128px;
	}
}
.slide-in {
  /*opacity:0;
  transition:2s;*/
  transform: translateY(100%);
}
.active {
  /*opacity:1;*/
   transition: transform 1s;
  -webkit-transition: transform 1s;
  transform: translateY(0%);
}

.feature-icon {
    flex: 1;
}
.feature-details {
    flex: 3;
}




.pricing {
    display: flex;
    justify-content: space-between;
    padding: 50px 0;
	max-width: 1400px;
	margin: 0 auto;
}

.price-panel {
    flex: 1;
    border: 1px solid var(--brand-primary);
    border-radius: 10px;
    margin: 0 20px 120px 20px;
    position: relative;
	height: 500px;
	
	&:hover {
		background: var(--brand-primary);
		color: white;
		cursor: pointer;
		& img {
			filter: none;
		}
		& .volume-discount {
			visibility: visible;
		}
		& h3 {
			font-weight: 800;
		}
	}
	
	& h3 {
		color: var(--brand-dark);
		position: absolute;
		top: 0;
		left:0;
		font-family: "Nothing You Could Do";
		text-Align: center;
		margin-top: 0;
		transform: translateY(-0.9em);
		width: 100%;
		font-size: 2em;
		font-weight: 500;
		& :hover {
			font-weight: 800;
		}
	}
	
	& li {
		list-style: none;
		margin-bottom: 5px;
	}
	
	& ul {
		min-height: 120px;
	}	
	
	& .button {
		border-radius: 5px;
		padding: 10px 20px;
		border: 1px solid white;
		background: transparent;
		color: white;
		margin: 25px auto;
		font-size: 1.2em;
		width: fit-content;
		&:hover {
			background: var(--brand-darker);
			cursor: pointer;
		}		
	}
}

.price-info {
	text-align: center;
}
.price-tag {
	font-size: 1.5em;
}
.volume-discount {
	visibility: hidden;
}

.panel-image {
    position: absolute;
    bottom: 0;	
	& img {
		height: 240px;
		filter: grayscale(100%);
	}
}
.left-overlap {
    left: 0;
	transform: translateY(80px) translateX(-40px);
		
}
.right-overlap {
    right: 0;
	transform: translateY(80px) translateX(40px);
}



footer {
    background-color: var(--brand-primary);
    color: white;
	& a {
		color:white;
	}
    padding: 15px;
}
.footer-content{
    display: flex;
    justify-content: space-between;
    align-items: center;
	max-width: 1200px;
	margin: 0 auto;	
	color: white;
}



.modal {
	color: black;
    display: none; 
    position: fixed; 
    z-index: 1001; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.55);
	
	& .header {
		font-weight: 400;
		font-size: 1.5em;
		margin-bottom: 50px;
	}
	
	& .footer {
		margin: 50px auto 0 auto;
		padding-top: 15px;
		display: flex;
		justify-content: right;
		border-top: 1px solid #ccc;
		
		& .button {
			border-radius: 5px;
			padding: 5px 20px;
			margin-left: 10px;
			border: 1px solid var(--brand-primary);
			background: transparent;
			color: var(--brand-primary);
			width: fit-content;
			&:hover {
				background: var(--brand-primary);
				color: white;
				cursor: pointer;
			}
		}	
	}			
}
	
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 30px 50px 20px 50px;
    border: 1px solid #888;
    width: 80%; 
    max-width: 600px; 
}

