
/* Main color #087f5b
Grey color: #343a40 */


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: InterRegular, sans-serif;
  color: #343a40;
  border-bottom: 8px solid #087f5b;
}

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

header,
section {
  margin-bottom: 96px;

}

h2 {
  margin-bottom: 48px;
  font-size: 36px;
  letter-spacing: -0.5px;
}

.grid {
  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: 100px;
}
.btn:hover,
.btn:active{
    background-color: #099268;
}
.btnbig{
    padding: 16px 32px;
    font-size: 18px;
}
.btnsmall{
    font-size: 14px;
    padding: 8px 12px;

}
img{
    border-radius: 12px;
}
header {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 80px;
  margin-top: 64px;
}

.headertxtbox {
  align-self: center;
}

h1 {
  margin-bottom: 32px;
  font-size: 44px;
  line-height: 1.1;
  letter-spacing: -1px;
}

.headertxt {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.7;
}

img {
  width: 100%;
}

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

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

.features-text {
    font-size: 18px;
    line-height: 1.7;
}


.testimonial {
    background-color: #087f5b;
    color: #fff;
    padding: 24px;
    border-radius: 12px;
}

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

.testbox h2 {
  margin-bottom: 24px;
  font-size: 24px;
}

.testtext {
  font-style: italic;
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.7;
  color: #e6fcf5;
}
.testauthor{
    color: #c3fae8;
}

.chair{
    box-shadow: 0 20px 30px 0 rgba(0, 0, 0, 0.07);
    border-radius: 12px;
}
.chair img{
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.chairbox {
  padding: 32px;
}

h3 {
  margin-bottom: 24px;
  font-size: 20px;
}

.details {
  list-style: none;
  margin-bottom: 48px;
}
.chairicon{
    stroke: #087f5b;
    width: 24px;
    height: 24px;
}

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

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

.chair-icon {
}

.price {
  display: flex;
  justify-content: space-between;
  font-size: 20px;
  align-items: center;
}

footer {
  margin-bottom: 48px;
  font-size: 14px;
  color: #495057;
}
@font-face {
    font-family: InterRegular;
    src: url(fonts/Inter_18pt-Regular.ttf);
}
@font-face {
    font-family: InterMedium;
    src: url(fonts/Inter_18pt-Medium.ttf);
}
@font-face {
    font-family: InterBold;
    src: url(fonts/Inter_18pt-Bold.ttf);
}