@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

body {
    font-family: "Manrope", Arial, sans-serif;
    background: var(--background-color);
    color: var(--text-color);
}

h1 {
    font-weight: 800;
}

.button {
    line-height: 55px;
    cursor: pointer;
    text-align: center;
    padding: 0 30px;
    border-radius: 50px;
    background: var(--button-color);
    color: var(--button-text-color);
    display: inline-block;
}

.button:hover {
    background: var(--button-color);
    color: var(--button-text-color);
}

.home,
.review,
.preview,
.start {
    margin-bottom: 90px;
}

.home-title {
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.home-description {
    text-align: center;
    margin: 0 auto;
    max-width: 650px;
    margin-bottom: 30px;
}

.home-button {
    text-align: center;
}

.header {
    margin-bottom: 50px;
}

.header {
    padding: 20px 0;
}

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

.header-logo {
    display: block;
    width: 30px;
    color: var(--text-color);
}

.header-logo:hover {
    color: var(--text-color);
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 25px;
}

.header-nav-item {
    color: var(--text-color);
}

.header-nav-item:hover {
    color: var(--accent-color);
}

.review-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.review-item {
    width: calc(33.333% - 10px);
    background: var(--background-second-color);
    padding: 20px;
    border-radius: 15px;
}

.review-title {
    font-size: 21px;
    font-weight: 800;
    margin-bottom: 10px;
}

.review-stars {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #ffbe2b;
}

.review-star {
    width: 19px;
    height: 19px;
}

.preview-items {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.preview-item {
    width: calc(25% - 11.3px);
    background: var(--background-second-color);
    padding: 20px;
    border-radius: 15px;
}

.preview-image {
    max-width: 120px;
    margin: 0 auto 20px;
}

.preview-title {
    text-align: center;
}

.start {
    background: var(--background-second-color);
    padding: 40px 0;
    text-align: center;
}

.start-title {
    margin-bottom: 15px;
    text-transform: uppercase;
}

.start-description {
    max-width: 650px;
    margin: 0 auto 20px auto;
}

.subtitle {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.title {
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 40px;
}

.title-main {
    text-align: center;
    text-transform: uppercase;
}

.text {
    margin-bottom: 40px;
}

.text > p,
.text > ul,
.text > h1,
.text > h2,
.text > h3,
.text > img,
.text > a,
.text > blockquote {
    margin-bottom: 20px;
}

.text > .image {
    display: flex;
}

.text > p:last-child,
.text > ul:last-child {
    margin-bottom: 0;
}

.text a {
    text-decoration: underline;
}

.text a:hover {
    text-decoration: none;
}

.text a,
.text a:hover {
    color: var(--text-color);
}

.text > ul {
    list-style: disc;
    padding-left: 45px;
}

.text > ul > li {
    margin-bottom: 10px;
}

.text > ul > li:last-child {
    margin-bottom: 0;
}

.footer {
    padding: 40px 0;
    border-top: 1px solid var(--separator-color);
}

.footer-copyright {
    font-size: 14px;
}



@media (max-width: 1400px) {

}

@media (max-width: 1200px) {

}

@media (max-width: 992px) {
    .review-item,
    .preview-item {
        width: calc(50% - 10px);
    }

    body {
        font-size: 16px;
    }

    .home,
    .review,
    .preview,
    .start {
        margin-bottom: 70px;
    }
}

@media (max-width: 768px) {
    h1, h2, h3 {
        line-height: 1.5;
    }

    h1 {
        font-size: 36px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 21px;
    }

    .home,
    .review,
    .preview,
    .start {
        margin-bottom: 50px;
    }
}

@media (max-width: 480px) {
    h1, h2, h3 {
        line-height: 1.4;
    }

    h1 {
        font-size: 26px;
    }
    
    h2 {
        font-size: 23px;
    }
    
    h3 {
        font-size: 20px;
    }

    .header {
        margin-bottom: 20px;
    }

    .header-logo {
        width: 25px;
    }

    .home,
    .review,
    .preview {
        margin-bottom: 30px;
    }

    .title {
        margin-bottom: 25px;
    }

    .text {
        margin-bottom: 30px;
    }

    .review-item,
    .preview-item {
        width: 100%;
    }

}
