/* 
COLORS
    MAIN :: #087f5b
    GREY :: #343a40
*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: #343a40;
    border-bottom: 8px solid #087f5b;
}

.container {
    width: 960px;
    margin: 0 auto;
}

header, section {
    margin-bottom: 48px;
}
h1 {
    font-size: 44px;
    line-height: 1.1;
    letter-spacing: -1px;
}
h2 {
    margin-bottom: 48px; 
    font-size: 36px;
    letter-spacing: -0.5px;
}

.grid-3-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 80px;
}

header {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 80px;
    margin-top: 80px;
}
.header-text-box {
    align-self: center;
}

h1 {
    margin-bottom: 24px;
}

.header-text {
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.6;
}

img {
    width: 100%;
    border-radius: 12px;
}

/* Features */

.features-icon {

}

.features-title {
    margin-bottom: 16px;
    font-size: 20px;
}

.features-text {
    font-size: 18px;
    line-height: 1.6;
}


/* Testimonial */

.testimonial-section {
    background-color:#087f5b;
    color: #fff;
    padding: 24px;
    border-radius: 12px;
}

.testimonial-box {
    grid-column: 2/-1;
    align-self: center;
}
.testimonial-box h2 {
    margin-bottom: 24px;
    font-size: 24px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 24px;
    font-size: 18px;
    line-height: 1.6;
}

/* chairs */
.chair-box {
    padding: 24px;
}
h3 {
   margin-bottom: 24px; 
}
.chair-details {
    list-style: none;
    margin-bottom: 24px;
}
.chair-details li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.chair-details li:last-child {
    margin-bottom: 0;
}

.chair-icon {

}

.chair-price {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
}

footer {
    margin-bottom: 48px;
    font-size: 14px;
    color: #868e96;
}

.btn:link, .btn:visited {
    background-color: #087f5b;
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-block;
    font-weight: 500;
    border-radius: 200px;
}
.btn:hover, .btn:focus {
    background-color: #099268;
}
.btn--big {
    padding: 16px 24px;
    font-size: 18px;
}
.btn--small {
    padding: 8px 12px;
    font-size: 14px;
}
.feature-icon {
    width: 32px;
    height: 32px;
    stroke: #087f5b;
    margin-bottom: 16px;
}
.chair-icon {
    stroke: #087f5b;
    width: 24px;
    height: 24px;
}
.chair {
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    border-radius: 12px;
}
.chair img {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
}