main {
    margin-top: 0;
}

section.header {
    background-color: var(--products-background);
    padding: 90px 0 30px 0;
}

section.header .container {
    width: 95%;
    max-width: 1120px;
    margin: auto;
    display: flex;
    gap: 40px;
}

section.header .container>div {
    flex: calc(50% - 20px);
    width: calc(50% - 20px);
    flex-grow: 0;
    flex-shrink: 0;
}

section.header .gallery img {
    border-radius: 15px;
    margin-bottom: 20px;
    width: 100%;
    height: auto;
    object-fit: contain;
}

section.header .gallery .items {
    width: 100%;
    display: flex;
    overflow: scroll;
    gap: 15px;
    -ms-overflow-style: none;  /* Internet Explorer 10+ */
    scrollbar-width: none;  /* Firefox */
}

section.header .gallery .items::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

section.header .gallery ul.items li.item {
    flex: 100px;
    flex-shrink: 0;
    flex-grow: 0;
    width: 100px;
    height: 100px;
    background-color: var(--background);
    border-radius: 15px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    display: inline-block;
}

section.header h1 {
    margin: 0 0 5px 0;
    font-size: 48px;
    font-weight: 700;
    line-height: 56px;
}

section.header p {
    margin: 12px 0 35px 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 30px;
}

section.header .categories {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

section.header .categories a.category {
    color: var(--category);
}

section.header .features {
    display: flex;
    margin: auto;
    margin-bottom: 45px;
}

section.header .features .feature {
    box-sizing: border-box;
    border-right: 1px solid var(--background);
    flex: 25%;
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    gap: 6px;
}

section.header .features .feature img {
    height: 24px;
    object-fit: contain;
}

section.header .features .feature:last-child {
    border: 0;
}

section.header .colors {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: 50px;
}

section.header .colors .color {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    margin-right: -20px;
    display: inline-block;
}

section.header .colors h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

section.header .call {
    display: flex;
    align-items: center;
}

section.header .call p {
    margin: 0;
    width: 230px;
    font-size: 18px;
    font-weight: 600;
    line-height: 23px;
    color: var(--link);
}

section.header .call .button {
    background-color: var(--primary);
    color: var(--accent-text);
    padding: 15px 25px;
    border-radius: 30px;
    display: flex;
    gap: 10px;
    align-items: center;
}

section.header .call .button a:first-child {
    margin-right: 5px;
}

section.benefits {
    display: flex;
    gap: 20px;
    padding: 50px 0 90px 0;
}

section.benefits .benefit {
    box-sizing: border-box;
    border: 1px solid var(--products-benefits-border);
    border-radius: 30px;
    flex: calc((100% - 60px) / 4);
    flex-grow: 0;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 20px;
}

section.benefits .benefit img {
    height: 48px;
    object-fit: contain;
}

section.benefits .benefit h3 {
    margin: 25px 0 15px 0;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
}

section.benefits .benefit p {
    margin: 0;
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-align: center;
}

section.items {
    padding: 0 0 90px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

section.items .item {
    flex: calc(50% - 52px);
    border-radius: 30px;
    flex-grow: 0;
    flex-shrink: 0;
    padding: 20px;
    border: 1px solid var(--products-benefits-border);
}

section.items .item img {
    width: 100%;
}

section.items .item h3 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
}

section.items .item p {
    font-size: 16px;
    font-weight: 400;
    line-height: 19px;
    text-align: justify;
}

section.video {
    padding: 0;
    height: 630px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

section.video a {
    width: 125px;
    height: 125px;
    border-radius: 100%;
    background-color: var(--play-background);
    display: flex;
    align-items: center;
    justify-content: center;
}

section.content {
    padding: 90px 0;
}

section.content h2 {
    margin: 0;
}

section.content .table {
    margin-top: 100px;
}

section.content .table table {
    width: 100%;
}

section.content .table table tr td {
    padding: 35px 0;
}

section.content .table table tr td:first-child {
    width: 200px;
    vertical-align: top;
    font-size: 24px;
    font-weight: 700;
    padding-top: 40px;
}

section.content .table ul {
    list-style: disc;
    font-size: 18px;
    line-height: 35px;
    margin-left: 30px;
}

@media screen and (max-width: 600px) {
    section.header .container {
        width: calc(100% - 50px);
        flex-direction: column-reverse;
    }

    section.header .container > div {
        flex: 100%;
        width: 100%;
    }

    section.header .features {
        margin: 0 -25px 45px -25px;
        padding: 0 25px;
        overflow: auto;
        -ms-overflow-style: none;  /* Internet Explorer 10+ */
        scrollbar-width: none;  /* Firefox */
    }
    
    section.header .features::-webkit-scrollbar { 
        display: none;  /* Safari and Chrome */
    }

    section.header .features .feature {
        min-width: 110px;
        font-size: 18px;
    }

    section.header .gallery .items {
        margin: 0 -25px;
        padding: 0 25px;
        width: calc(100% + 50px);
    }

    section.benefits {
        flex-direction: column;
    }

    section.items .item {
        flex: 100%;
    }
    
    section.content .table table tr td {
        padding: 20px 0;
    }

    section.content .table table tr td:first-child {
        width: 150px;
        padding-top: 25px;
    }

    section.items .item p {
        line-height: 24px;
    }

    section.content .table ul li {
        line-height: 24px;
        margin-top: 10px;
    }
}