* {
    box-sizing: inherit;
}

html {
    line-height: 1.7em;
    box-sizing: border-box;
}

.grid {
    width: 1200px;
    max-width: 100%;
    margin: 0 auto;

}

:root {
    --button-color: #c7b39a;
    --text-color: #666;

}

.grid__row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -16px;
}

.grid__column-2 {
    width: calc((100% / 12) * 6);
}

.grid__column-3 {
    padding-left: 15px;
    padding-right: 15px;
    width: calc((100% / 12) * 4);
}

.grid__column-4 {
    padding-left: 15px;
    padding-right: 15px;
    width: calc((100% / 12) * 3);
}

.grid__column-6 {
    width: calc((100% / 12) * 2);
}

.second-button {
    border: 2px solid #e1e1e1;
    border-radius: 5px;
    margin-top: 30px;
    width: 62px;
    height: 36px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    transform: translateX(918%);

}

.second-button::after {
    content: "";
    position: absolute;
    height: 35px;
    border-left: 2px solid #e1e1e1;

}

.second-button__icon {
    text-decoration: none;
    color: var(--text-color);
    line-height: 36px;
    

}

.second-button__icon:hover {
    filter: brightness(200%);
    transition: all ease 0.3s;
}

