@font-face {
    font-family: "alegreya";
    src: url('./fonts/alegreyasanssc-black-webfont.woff2') format('woff2'),
         url('./fonts/alegreyasanssc-black-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
:root {
    --yellow: #ffc92f;
    --red: #d82727;
    --black: #1b1b1b;
    --titlesFont: 'Yanone Kaffeesatz', Arial, sans-serif;
}
html, body {
    height: 100%;
}
body {
    font: 16px / 1.42 "Roboto", Arial, sans-serif;
    color: #212121;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #fcf5e6;
}
.wrapper {
    overflow: hidden;
    min-width: 1440px;
}
.container {
    margin: 0 auto;
    width: 1300px;
}
ul {
    margin: 0;
    padding: 0;
}
ul > li {
    list-style: none;
}
.hero {
    height: 100vh;
    min-height: 650px;
    background: url('./img/bg/hero.jpg') center center / cover no-repeat;
    position: relative;
    margin-bottom: 130px;
}
.header {
    width: 1290px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 27px;
}
.mail {
    text-decoration: none;
    text-align: center;
    color: inherit;
}
.mail__title {
    margin-bottom: 3px;
}
.mail__content {
    background: #212121;
    color: #ffbc2f;
    padding: 5px 10px;
}
.hero__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1140px;
    height: 72%;
}
.sidebar {
    width: 75px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    background: #212121;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: width .3s;
}
.sidebar__menu {
    position: absolute;
    left: -400px;
    transition: left .3s;
}
.sidebar__hamburger {
    display: block;
    position: absolute;
    top: 27px;
    left: 50%;
    transform: translate(-50%);
}
.sidebar__hamburger-icon {
    width: 29px;
    height: 29px;
    fill: var(--yellow)
}
.sidebar--opened .sidebar__menu {
    left: 0;
    width: 100%;
    text-align: center;
    transition-delay: .1s;
}
.sidebar--opened {
    width: 325px;
    padding: 0 3% 0 4%;    
}
.sidebar--opened .sidebar__hamburger {
    display: none;
}
.sidebar--opened .sidebar__header {
    display: flex;
}
.sidebar__header {
    position: absolute;
    top: 29px;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
}
.sidebar__close {
    position: absolute;
    top: -4px;
    right: 23px;
}
.sidebar__close-icon {
    width: 29px;
    height: 29px;
    fill: var(--yellow);
}
.side-menu__item {
    margin-bottom: 20px;
}
.side-menu__link:hover {
    color: var(--red);
}
.side-menu__link {
    font-size: 20px;
    color: var(--yellow);
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--titlesFont);
}
.fade-slider {
    width: 100%;
    height: 100%;
}
.fade-slider__item {
    background: center center / contain no-repeat;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .5s;
}
.fade-slider__item--visible {
    opacity: 1;
}
.fade-slider__item--style-thirts {
    background-image: url('./img/content/hero/slider_pic_1.png');
}
.fade-slider__item--style-games {
    background-image: url('./img/content/hero/slider_pic_2.png');
}
.fade-slider__item--style-presents {
    background-image: url('./img/content/hero/slider_pic_3.png');
}
.fade-slider__item--style-thirts .fade-slider__text {
    left: 50%;
    top: 50%;
    transform: translateX(-164%) translateY(-52%);
}
.fade-slider__item--style-games .fade-slider__text {
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.fade-slider__item--style-games .lined-text {
    align-items: center;
}
.fade-slider__item--style-presents .fade-slider__text {
    /* align-items: center; */
    left: 0;
    bottom: 0;
    transform: translateY(-120%);
}
.fade-slider__item--style-presents .lined-text {
    align-items: center;
}
.fade-slider__text {
    position: absolute;
}
.linde-text {
    font-family: "alegreya", Arial, sans-serif;
    color: #fff;
    font-size: 63px;
    text-transform: uppercase;
    line-height: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin: 0;
}
.lined-text__word {
    background: #000;
    padding: 0 17px 8px;
    margin-top: -7px;
    white-space: nowrap;
}
.lined-text__word--color-yellow {
    color: #ffbc2f;
}
.lined-text__word:nth-child(2n) {
    margin-left: 8px;
}
.lined-text--no-indent .lined-text__word {
    margin-left: 0;
}
.filter,
.tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}
.filter__item,
.tabs__item {
    margin-right: 40px;
}
.filter__link,
.tab__link {
    font-family: var(--titlesFont);
    text-transform: uppercase;
    padding: 3px 21px;
    color: var(--black);
    font-size: 24px;
    font-weight: bold;
    display: inline-block;
    text-decoration: none;
}
.filter__item:last-child {
    margin-right: 0;
}
.filter__link:hover {
    color: var(--red);
}
.filter__item--active .filter__link,
.tabs__item--active .tab__link{
    color: var(--yellow);
    background: var(--black);
}
.products,
.description {
    margin-bottom: 160px;
}
.description .container {
    width: 1105px;
}
.products__list {
    display: flex;
    flex-wrap: wrap;
    margin-left: -27px;
}
.products__item {
    width: 302px;
    height: 386px;
    background: var(--yellow);
    margin-bottom: 35px;
    margin-left: 27px;
    position: relative;
}
.products__price {
    position: absolute;
    top: 18px;
    left: -6px;
    width: 126px;
    border-bottom: 45px solid #232323;
    border-left: 5px solid transparent;
    border-right: 2px solid transparent;
    transform: rotate(-181deg);
}
.products__price-amount {
    font-size: 30px;
    font-weight: bold;
    font-family: var(--titlesFont);
    color: #fff;
    transform: rotate(181deg);
    position: absolute;
    top: 0;
    right: 28px;
}
.products__item--color-black .products__price {
    border-bottom-color: var(--yellow);
}
.products__item--color-black .products__price-amount {
    color: var(--black)
}
.products__item--color-black {
    background: #232323;
}
.products__item:hover .products__desc {
    transform: translateY(0);
}
.products__item--size-double {
    width: 630px;
    height: 544px;
}
.products__content {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.products__desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 23px 30px;
    background: rgba(35, 35, 35, .8);
    font-size: 15px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: translateY(100%);
    transition: transform .3s;
}
.products__desc-text {
    text-align: center;
    margin-bottom: 18px;
}
.products__img {
    display: block;
    max-width: 90%;
    max-height: 100%;
}
.btn {
    text-transform: uppercase;
    font-family: var(--titlesFont);
    font-size: 24px;
    padding: 2px 30px;
    background: var(--black);
    color: var(--yellow);
    display: inline-block;
    text-decoration: none;
}
.btn:hover {
    background: var(--red);
    color: #fff;
}
.collections {
    margin-bottom: 135px;
}
.collections__list {
    display: flex;
}
.collections__item {
    min-height: 474px;
    flex: 1;
    overflow: hidden;
    margin-right: 30px;
    background: url("./img/bg/pattern.png") center center / 500px;
    position: relative;
}
.collections__item::before {
    content: "";
    display: block;
    position: absolute;
    height: 176%;
    width: 60%;
    top: -17%;
    left: -18%;
    background: center center / contain no-repeat;
}
.collections__item--type-guys::before {
    background-image: url("./img/collections/collection_man.png");
}
.collections__item--type-girls::before {
    background-image: url("./img/collections/collection_woman.png");
    top: -31%;
    width: 80%;
    left: -25%;
}
.collections__link {
    display: block;
    padding: 74px 13% 74px 44%;
    text-decoration: none;
    color: inherit;
    font-size: 15px;
    position: relative;
    height: 100%;
    box-sizing: border-box;
}
.collections__link:hover .btn {
    background: var(--red);
    color: #fff;
}
.collections__title {
    font-family: var(--titlesFont);
    font-size: 70px;
    font-weight: bold;
    line-height: 1;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 11px;
}
.collections__item:last-child {
    margin-right: 0;
}
.collections__desc {
    margin-bottom: 28px;
}
.footer {
    margin-bottom: 115px;
}
.footer__container {
    width: 1105px;
}
.site-menu {
    margin-bottom: 115px;
}
.site-menu__section {
    display: flex;
    justify-content: space-between;
}
.site-menu__col {
    margin-right: 20px;
}
.site-menu__col:last-child {
    margin-right: 0;
}
.site-menu__title {
    font-family: var(--titlesFont);
    font-size: 24px;
    font-weight: bold;
    color: var(--black);
    text-transform: uppercase;
    margin-bottom: 24px;
}
.site-menu__item {
    margin-bottom: 15px;
}
.site-menu__link {
    color: #737373;
    font-size: 15px;
    text-decoration: none;
}
.site-menu__link:hover {
    color: var(--red);
}
.site-menu__text {
    font-size: 15px;
    color: var(--black);
    margin-bottom: 30px;
}
.site-menu__text-row {
    color: inherit;
    text-decoration: none;
    display: block;
    margin-bottom: 5px;
}
.extras {
    display: flex;
    margin-bottom: 95px;

}
.extras__col {
    margin-right: 20px;
    flex: 1;
}
.extras__col:last-child {
    margin-right: 0;
}
.extras__best {
    text-align: center;
    color: #fff;
    background: #232323;
    font-size: 50px;
    font-weight: bold;
    font-family: var(--titlesFont);
    text-transform: uppercase;
    padding: 39px 10%;
    display: block;
    text-decoration: none;
    line-height: 1;
}
.extras__col-socials {
    height: 100%;
    background: url("./img/bg/pattern.png") center center / 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.socials {
    display: flex;
}
.socials__item {
    margin-right: 50px;
}
.socials__item:last-child {
    margin-right: 0;
}
.socials__link {
    width: 38px;
    height: 38px;
    display: block;
}
.socials__link:hover .socials__icon {
    fill: var(--red)
}
.socials__icon {
    width: 100%;
    height: 100%;
}