/*
SPACING SYSTEM (px)
2 / 4 / 8 / 12 / 16 / 24 / 32 / 48 / 64 / 80 / 96 / 128

FONT SIZE SYSTEM (px)
10 / 12 / 14 / 16 / 18 / 20 / 24 / 30 / 36 / 44 / 52 / 62 / 74 / 86 / 98
*/
/*
Main color: #087f5b 
Gray: #343a40
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ------------------------ */
/* GENERAL STYLES */
/* ------------------------ */
body {
  font-family: 'Inter', sans-serif;
	color: #343a40;
	border-bottom: #087f5b solid 8px;
}

.container {
  width: 960px;
  margin: 0 auto;
}

header, section {
  margin-bottom: 96px;
}

h2 {
  margin-bottom: 48px;
	font-size: 30px;
}

.grid-3-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 80px;
}

.btn:link, .btn:visited{
	background-color: #087f5b;
	color: #fff;
	text-decoration: none;
	text-transform: uppercase;
	display: inline-block;
	font-weight: 500;
	border-radius: 25px;

}

.btn--big{
	padding: 16px 32px;
	font-size: 18px;
	box-shadow: 3px 6px 6px hsl(0deg 0% 0% / 0.30); 
}

.btn--small{
	padding: 8px 12px;
	font-size: 14px;
	box-shadow: 2px 4px 4px hsl(0deg 0% 0% / 0.30);
}

.btn:hover, .btn:active{
	background-color: #099268;
}
/* ------------------------ */
/* COMPONENT STYLES */
/* ------------------------ */

/* HEADER */
header {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  margin-top: 64px;
}

.header-text-box {
  align-self: center;
}

h1 {
  margin-bottom: 32px;
	font-size: 36px;
	font-weight: bold;
	line-height: 1.1;
}

.header-text {
  margin-bottom: 24px;
	line-height: 1.6;
}
.top-img{
	border-radius: 25px;
	box-shadow: 0px 12px 20px hsl(0deg 0% 0% / 0.42);
}

img {
  max-width: 100%;	
}
.customers{
	border-radius: 25px;
	box-shadow: 0px 12px 20px hsl(0deg 0% 0% / 0.42);	
}



/* FEATURES */
.science-icon {
	stroke: #087f5b;
	max-height: 32px;
	max-width: 32px;
	margin-bottom: 24px;
}

.comfort-icon{
	stroke: #087f5b;
	max-height: 32px;
	max-width: 32px;
	margin-bottom: 24px;	
}

.heart-icon{
	stroke: #087f5b;
	max-height: 32px;
	max-width: 32px;
	margin-bottom: 24px;	
}

.features-title {
  margin-bottom: 16px;
	font-size: 20px;
	font-weight: 700;
}

.features-text {
	line-height: 1.6;
}

/* TESTIMONIAL */
.testimonial-section {
	background-color: #087f5b;
	color: #FFF;
	padding: 24px;
	border-radius: 25px;
	box-shadow: 0px 12px 20px hsl(0deg 0% 0% / 0.42);
	
}

.testimonial-box {
  grid-column: 2 / -1;
  align-self: center;
}

.testimonial-box h2 {
  margin-bottom: 24px;
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 24px;
	line-height: 1.6;
	color: #e6fcf5;
}

.testimonial-author{
	color: #c3fae8;
}

/* CHAIRS */
.chair-box {
  padding: 32px;	
}

.chair-card-image{
	max-width: 100%;
	border-top-left-radius: 25px;
	border-top-right-radius: 25px;
}

.chair{
	border-radius: 25px;
	box-shadow: 0px 12px 20px hsl(0deg 0% 0% / 0.42);

}

h3 {
  margin-bottom: 24px;
}

.chair-details {
  list-style: none;
  margin-bottom: 48px;
}

.chair-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.chair-details li:last-child {
  margin-bottom: 0;
}

/*ul{
	margin-left: 16px;
}*/

.chair-icon {
	stroke: #087f5b;
	max-height: 24px;
	max-width: 24px;	

}

.chair-price {
  display: flex;
  justify-content: space-between;
	align-items: center;
}

footer {
  margin-bottom: 48px;
	color: #495057;
	
}

/*  Icons  */


