/* ------------------------------------------------------------------------------------------------------------------ */
/* Шрифты */
/* ------------------------------------------------------------------------------------------------------------------ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Roboto:wght@300;400;500;700&display=swap');

@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?frdx3i');
    src: url('../fonts/icomoon.eot?frdx3i#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?frdx3i') format('truetype'),
    url('../fonts/icomoon.woff?frdx3i') format('woff'),
    url('../fonts/icomoon.svg?frdx3i#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon', sans-serif;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-vk:before {
    content: "\e900";
}

.icon-youtube:before {
    content: "\e901";
}

.icon-facebook:before {
    content: "\e903";
}

.icon-inst:before {
    content: "\e904";
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Обнуление */
/* ------------------------------------------------------------------------------------------------------------------ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

input {
    border: 0;
    outline: 0;
}

button {
    border: 0;
    outline: 0;
}

a {
    color: #fff;
    text-decoration: none;
    line-height: 120%;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6, span, p {
    line-height: 130%;
}

/* Убирает у input с type='number' стрелки */
.bgc-commerce .tel {
    -moz-appearance: textfield;
}

.bgc-commerce .tel::-webkit-inner-spin-button {
    display: none;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Верстка */
/* ------------------------------------------------------------------------------------------------------------------ */

.bgc-commerce section {
    padding: 60px 0;
    position: relative;
    z-index: 9;
    background-color: #fff;
}

/* Контейнер */
.bgc-commerce ._container {
    max-width: 1420px;
    padding: 0 20px;
    margin: 0 auto;
}

.bgc-commerce ._container-s {
    max-width: 1420px;
    padding: 0 20px;
    margin: 0 auto;
}

/* Общий стиль шрифта */
.bgc-commerce {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    overflow-x: hidden;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Header */
/* ------------------------------------------------------------------------------------------------------------------ */

/* Шапка сайта */
.bgc-commerce header {
    position: fixed;
    z-index: 10;
    width: 100%;
    background: rgba(237, 237, 237, 0.76);
}

/* Header контейнер */
.bgc-commerce .header-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

/* Лого */
.bgc-commerce .logo {
    width: 100%;
    max-width: 204px;
    margin-right: 70px;
}

.bgc-commerce .logo img {
    width: 75%;
}

/* Меню бургер */
.bgc-commerce .hamburger {
    position: relative;
    width: 50px;
    height: 4px;
    background: #000;
    transition: 0.5s;
    display: inline-block;
}

/* Верхняя и нижняя полоса */
.bgc-commerce .hamburger:before,
.bgc-commerce .hamburger:after {
    content: "";
    width: 50px;
    height: 4px;
    position: absolute;
    background: #000;
    transition: 0.5s;
}

/* Верхняя полоса */
.bgc-commerce .hamburger:before {
    top: 10px;
}

/* Нижняя полоса */
.bgc-commerce .hamburger:after {
    top: -10px;
}

/* Блок с бургером */
.bgc-commerce .header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 60px;
    cursor: pointer;
}

/* Активный бургер */
.bgc-commerce .header-icon._active .hamburger {
    background: rgba(0, 0, 0, 0);
}

.bgc-commerce .header-icon._active .hamburger:before {
    top: 0;
    transform: rotate(-45deg);
}

.bgc-commerce .header-icon._active .hamburger:after {
    top: 0;
    transform: rotate(-135deg);
}

/* Вылетающее блок с меню */
.bgc-commerce .header-menu {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 68px;
    right: 0;
    bottom: 0;
    left: 100%;
    background-color: #a5b3ca;
    transition: 0.6s;
}

.bgc-commerce .header-menu._active {
    left: 0;
}

/* Бургер Меню */
.bgc-commerce .header-menu-box {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    padding-bottom: 90px;
    /*padding-left: 40px;*/
    padding-top: 40px;
    max-width: 1390px;
    margin: 0 auto;
}

/* Ссылки в меню бургер */
.bgc-commerce ._menu-link > a {
    font-size: 55px;
}

.bgc-commerce ._menu-link > a:hover {
    color: #626262;
}

/*.bgc-commerce ._menu-link:nth-child(2) {
    margin: 25px 0;
}*/


/* ------------------------------------------------------------------------------------------------------------------ */
/* Секция Present */
/* ------------------------------------------------------------------------------------------------------------------ */

.bgc-commerce .present {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    height: 100vh;
}

/* Черный фон */
.bgc-commerce .present:before {
    content: '';
    position: absolute;
    z-index: 2;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(30, 30, 32, 0.5);
}

/* Фон секции */
.bgc-commerce .bg-present {
    position: fixed;
    object-fit: cover;
    width: 100%;
    height: 100vh;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

/* Контейнер секции */
.bgc-commerce .present-box {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    z-index: 3;
}

.bgc-commerce ._present-item:first-child {
    flex-basis: 59%;
}

.bgc-commerce ._present-item:nth-child(2) {
    flex-basis: 450px;
    margin-left: 20px;
}

.bgc-commerce ._present-item h1 {
    font-weight: 700;
    font-size: 70px;
    color: #fff;
}

.bgc-commerce ._present-item p {
    max-width: 645px;
    width: 100%;
    margin-top: 50px;
    font-weight: 600;
    font-size: 40px;
    color: #fff;
}

.bgc-commerce ._present-item h3 {
    font-weight: 500;
    font-size: 30px;
    text-align: center;
    margin-bottom: 60px;
}

/* Контейнер для формы */
.bgc-commerce .form-container {
    background: rgba(209, 209, 209, 0.9);
    border-radius: 6px;
    padding: 40px;
}

.bgc-commerce ._present-item input {
    width: 100%;
    height: 53px;
    border-radius: 6px;
    font-size: 18px;
    padding: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #000;
    transition: 0.3s;
}

.bgc-commerce ._present-item input::placeholder {
    color: #757373;
}

.bgc-commerce ._present-item input:nth-child(3) {
    margin: 40px 0 50px;
}

.bgc-commerce ._present-item input:focus {
    border: 1px solid #000;
}

/* Кнопка */
.bgc-commerce ._btn {
    width: 100%;
    padding: 12px;
    font-size: 18px;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    border-radius: 6px;
    background-color: #1B1311;
    border: 1px solid #000;
    color: #fff;
    cursor: pointer;
    transition: 0.3s;
}

.bgc-commerce ._btn:hover {
    background: #fff;
    color: #000;
    transform: translateY(-3px);
}

/* Кнопка которая появляется при 500px */
.bgc-commerce .btn-media {
    display: none;
}

/* Popup */
.bgc-commerce .popup-media {
    opacity: 0;
    position: absolute;
    transition: 0.4s;
    pointer-events: none;
    top: 50%;
    right: 50%;
    transform: translate(50%, -50%);
}

/* Popup active */
.bgc-commerce .popup-media.active {
    opacity: 1;
    pointer-events: all;
}

.bgc-commerce .popup-media form {
    text-align: center;
}

.bgc-commerce .popup-input {
    width: 100%;
    height: 40px;
    border-radius: 6px;
    padding: 14px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #000;
    transition: 0.3s;
}

.bgc-commerce .popup-input:nth-child(2) {
    margin-top: 25px;
}

.bgc-commerce .popup-input:nth-child(3) {
    margin: 10px 0 25px 0;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Секция About */
/* ------------------------------------------------------------------------------------------------------------------ */

/* Секция About */
.bgc-commerce .about {
    position: relative;
}

/* Обертка контента */
.bgc-commerce .about-box {
    position: relative;
    z-index: 2;
}

/* Фоновая картинка */
.bgc-commerce .bg-about {
    position: absolute;
    top: 23%;
    right: 0;
    opacity: 0.5;
}

/* Общий Title у всех секция */
.bgc-commerce ._title {
    position: relative;
    margin: 0 0 0 100px;
    font-family: 'Roboto', sans-serif;
    font-size: 50px;
    font-weight: 700;
}

.bgc-commerce ._title:before {
    content: '';
    position: absolute;
    width: 100%;
    max-width: 83px;
    height: 10px;
    background-color: #000;
    top: 43%;
    left: -100px;
}

/* Список с текстом*/
.bgc-commerce .about-list {
    display: flex;
    flex-basis: 874px;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 874px;
    margin-top: 60px;
}

/* Элемент списка */
.bgc-commerce ._about-list-item {
    max-width: 430px;
    padding: 0 15px;
    width: 100%;
}

/* Блок который содержит цифры и линию*/
.bgc-commerce ._list-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Цифры */
.bgc-commerce ._list-number {
    font-weight: 500;
    font-size: 40px;
}

/* Линия */
.bgc-commerce ._dash {
    height: 2px;
    width: 100%;
    max-width: 324px;
    background-color: #000;
    margin-left: 25px;
}

/* Текст */
.bgc-commerce ._list-text {
    margin: 15px 0 25px;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Секция Offer */
/* ------------------------------------------------------------------------------------------------------------------ */

/* Коробка с контентом */
.bgc-commerce .offer-content {
    margin-top: 120px;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

/* Коробка с текстом */
.bgc-commerce ._offer-item {
    flex-basis: 48.5%;
}

.bgc-commerce ._offer-item:nth-child(2) {
    display: flex;
    flex-basis: 48%;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 25px;
}

/* Большой текст */
.bgc-commerce ._offer-text {
    font-size: 22px;
    line-height: 130%;
}

/* Маленький текст */
.bgc-commerce .offer-small-text {
    margin-top: 50px;
    font-size: 22px;
}

/* Подробнее */
.bgc-commerce ._offer-subtitle {
    display: block;
    margin-top: 50px;
    font-size: 20px;
    color: #8a8a8a;
}

/* Ссылка подробнее */
.bgc-commerce ._offer-more a {
    text-decoration: underline;
    color: #8a8a8a;
}

.bgc-commerce ._offer-more a:hover {
    text-decoration: none;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Секция Benefit */
/* ------------------------------------------------------------------------------------------------------------------ */

/* Блок с контентом */
.bgc-commerce .benefit-content {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/* Элемент блока */
.bgc-commerce ._benefit-item {
    position: relative;
    max-width: 415px;
    flex-basis: 30%;
    padding: 0 10px;
    margin: 50px 0;
}

.bgc-commerce ._benefit-title {
    font-size: 20px;
    font-weight: 600;
}

.bgc-commerce ._benefit-text {
    margin-top: 30px;
}

/* Фоновый квадрат */
.bgc-commerce ._bg-block {
    font-size: 215px;
    font-weight: 600;
    color: #EFEFEF;
    position: absolute;
    top: -97px;
    left: -24px;
    width: 100%;
    max-width: 250px;
    height: 100%;
    max-height: 200px;
    border-radius: 10px;
    z-index: -1;
}

.bgc-commerce .benefit-link a {
    margin: 10px 0;
    display: block;
    color: black;
    text-decoration: underline;
}

.bgc-commerce .benefit-link a:hover {
    text-decoration: none;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Секция Reward */
/* ------------------------------------------------------------------------------------------------------------------ */

/* Блок с контентом */
.bgc-commerce .reward-content {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    margin-top: 80px;
}

/* Элемент блока */
.bgc-commerce ._reward-item {
    position: relative;
    flex-basis: 100%;
    padding: 46px 25px 30px;
    background-color: #F2F2F2;
    border-radius: 10px;
}

/* Текст с примером */
.bgc-commerce ._reward-example {
    position: absolute;
    top: -33px;
    left: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 46px;
    color: #8c8c8c;
}

/* Заголовок */
.bgc-commerce ._reward-title {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.bgc-commerce ._reward-text {
    font-family: 'Roboto', sans-serif;
    margin-top: 30px;
    font-size: 20px;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Секция Relise */
/* ------------------------------------------------------------------------------------------------------------------ */

/* Блок с контентом */
.bgc-commerce .relise-content {
    margin-top: 80px;
    display: flex;
    justify-content: space-evenly;
    align-items: stretch;
}

/* Элемент блока */
.bgc-commerce ._relise-item {
    cursor: pointer;
    position: relative;
    flex-basis: 46.5%;
    padding: 35px 40px;
    background: #F2F2F2;
    border-radius: 20px;
    z-index: 0;
}

.bgc-commerce ._relise-item:nth-child(2) {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Информация о пользователе */
.bgc-commerce ._relise-info {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 3;
    position: relative;
}

/* Аватар пользователя */
.bgc-commerce ._relise-avatar {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bgc-commerce ._relise-avatar > img {
    border-radius: 50%;
    width: 86px;
    height: 86px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.17), 0 10px 10px rgba(0, 0, 0, 0.16);
}

/* Имя пользователя */
.bgc-commerce ._relise-name {
    margin-left: 30px;
    font-family: 'Roboto', sans-serif;
    font-size: 30px;
    color: #fff;
}

/* Текст пользователя */
.bgc-commerce ._relise-text {
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    margin-top: 20px;
    color: #f7f7f7;
    z-index: 3;
    position: relative;
}

/* Типо кнопка */
.bgc-commerce .btn-example {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px auto 0;
    max-width: 287px;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #c5c5c5;
    background: rgba(206, 206, 206, 0.20);
    border-radius: 29px;
    padding: 13px 0;
    position: relative;
    z-index: 3;
}

/* Типо кнопка отправить сообщение */
.bgc-commerce .btn-message {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 40px auto 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    color: #c5c5c5;
    border: 1px solid #c5c5c5;
    border-radius: 29px;
    padding: 13px 20px;
    z-index: 3;
}

/* Пустой блок */
.bgc-commerce ._relise-empty {
    margin-top: 25px;
    width: 100%;
    height: 250px;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Секция Cooperation */
/* ------------------------------------------------------------------------------------------------------------------ */

.bgc-commerce .cooperation {
    position: relative;
}

/* Фоновая картинка */
.bgc-commerce .bg-cooperation {
    position: absolute;
    top: 14%;
    left: 0;
    z-index: -1;
}

/* Заголовок */
.bgc-commerce .right {
    width: 42%;
    margin-left: auto;
}

/* Блок с контентом*/
.bgc-commerce .cooperation-content {
    position: relative;
    margin-left: auto;
    width: 50%;
    margin-top: 70px;
}

.bgc-commerce .cooperation-content:before {
    content: '';
    position: absolute;
    height: 92%;
    top: 34px;
    left: -25px;
    width: 2px;
    background-color: #FF0000;
}


/* Элемент блока*/
.bgc-commerce ._cooperation-item {
    display: flex;
}

.bgc-commerce ._cooperation-item:not(:first-child) {
    margin-top: 30px;
}

/* Цифра */
.bgc-commerce ._number {
    position: relative;
    font-size: 50px;
    min-width: 60px;
}

.bgc-commerce ._number:before {
    content: '';
    position: absolute;
    left: -31px;
    top: 23px;
    width: 14px;
    height: 14px;
    background-color: #FF2424;
    border-radius: 50%;
}

/* Текст */
.bgc-commerce ._cooperation-text {
    margin: 10px 0 0 30px;
    font-size: 18px;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Секция Restrictions */
/* ------------------------------------------------------------------------------------------------------------------ */

/* Блок с контентом */
.bgc-commerce .restrictions-content {
    margin-top: 80px;
}

/* Блок с текстом */
.bgc-commerce .restrictions-text {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
}

/* Элемент блока с текстом */
.bgc-commerce ._restrictions-text-item {
    flex-basis: 47%;
    margin-top: 25px;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Подвал сайта */
/* ------------------------------------------------------------------------------------------------------------------ */

.bgc-commerce footer {
    background: #f1f1f1e0;
    z-index: 9;
    position: relative;
}

/* Враппер */
.bgc-commerce .footer-box {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
}

/* Элемент блока */
.bgc-commerce ._footer-item {
    display: flex;
    flex-direction: column;
}

.bgc-commerce ._footer-item:nth-child(2) {
    flex-basis: 38%;
}

.bgc-commerce ._footer-item h3 {
    font-family: "Roboto", sans-serif;
    font-size: 60px;
    font-weight: 500;
}

/* Блок с телефоном и почтой */
.bgc-commerce .footer-connect {
    margin: 50px 0;
    font-size: 32px;
    font-family: 'Roboto', sans-serif;
}

.bgc-commerce .footer-connect a {
    color: #000000;
}

.bgc-commerce .footer-connect a:hover {
    text-decoration: underline;
}

.bgc-commerce .footer-connect p:nth-child(2) {
    margin-top: 5px;
}

/* Социальные сети */
.bgc-commerce .footer-soc {
    display: flex;
    font-size: 38px;
}

.bgc-commerce .footer-soc a {
    color: black;
}

.bgc-commerce .footer-soc a:not(:first-child) {
    margin-left: 30px;
}

.bgc-commerce .footer-soc span {
    width: fit-content;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
    border-radius: 50px;
    padding: 10px;
    transition: 0.3s;
}

.bgc-commerce .footer-soc span:hover {
    background: #fff;
    transform: scale(1.05);
}

/* Заголовок у формы */
.bgc-commerce footer h6 {
    font-size: 40px;
    font-weight: 500;
    font-family: 'Roboto', sans-serif;
    text-align: center;
}

/* Враппер для инпутов */
.bgc-commerce .footer-form-inputs {
    display: flex;
    flex-direction: column;
    margin-top: 30px;
}

.bgc-commerce footer label {
    font-family: 'Roboto', sans-serif;
    font-size: 24px;
    font-weight: 400;
}


.bgc-commerce footer input {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 300;
    display: block;
    margin: 10px 0 25px;
    padding: 12px 18px;
    height: 45px;
    border: 1px solid #AFAFAF;
    border-radius: 4px;
}

.bgc-commerce footer input:focus {
    border: 1px solid #000;
}

.bgc-commerce footer ._btn {
    font-size: 30px;
    padding: 11px 10px;
}


/* ------------------------------------------------------------------------------------------------------------------ */
/* Фоны для блоков инстаграм */
/* ------------------------------------------------------------------------------------------------------------------ */

.bgc-commerce .overlay-instagram {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
    -o-transition: 0.5s all;
    z-index: 2;
    border-radius: 20px;
}

.bgc-commerce ._relise-item:nth-child(1) {
    background-image: url("../../img/lion.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

.bgc-commerce ._relise-item:nth-child(2) {
    background-image: url("../../img/comm.jpg");
    background-size: cover;
    background-repeat: no-repeat;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Popup  */
/* ------------------------------------------------------------------------------------------------------------------ */

.bgc-commerce .overlay {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    pointer-events: none;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    transition: 0.5s all;
    padding: 0 15px;
}

.bgc-commerce .overlay.active {
    opacity: 1;
    pointer-events: all;
    -webkit-transition: 0.5s all;
    -o-transition: 0.5s all;
    transition: 0.5s all;
}

.bgc-commerce .popup {
    position: relative;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 550px;
    max-height: 350px;
    height: 100%;
    overflow: auto;
    text-align: center;
    background: #171717;
    color: #fff;
    padding: 0 15px;
    opacity: 0;
    pointer-events: none;
    transition: 0.4s;
}

.bgc-commerce .popup.active {
    opacity: 1;
    pointer-events: all;
    z-index: 15;
}

.bgc-commerce .popup-close {
    position: absolute;
    right: 13px;
    top: 11px;
    font-size: 33px;
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.bgc-commerce .popup-close:hover {
    color: #808080;
}

.bgc-commerce .popup-content {
    font-family: "Roboto", sans-serif;
    font-size: 23px;
    line-height: 30px;
    max-width: 480px;
    text-align: center;
}

.bgc-commerce .popup-body {
    font-family: "Roboto", sans-serif;
    font-size: 23px;
    text-align: left;
    max-width: 480px;
    margin: 15px auto 0;
}

.bgc-commerce .popup-rules {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bgc-commerce .popup-container {
    height: 100%;
}

.social-box-commercial_link {
    border-radius: 50%;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid black;
}

.social-box-commercial_link svg {
    fill: black;
}

.social-box-commercial_link path {
    fill: black;
}

.bgc-commerce .reward {
    position: relative;
}

.bgc-commerce .bg-reward {
    position: absolute;
    right: 5%;
    bottom: -10%;
    animation: anim-reward 8s ease-in-out infinite;
}

.bgc-commerce .bg-coop {
    position: absolute;
    left: 5%;
    top: 0;
    animation: anim-coop 27s linear infinite;
}

.bgc-commerce .restrictions {
    position: relative;
}

.bgc-commerce .bg-rest {
    position: absolute;
    top: 0;
    right: 0;
    animation: anim-rest 50s linear infinite;
}

.bgc-commerce .benefit {
    position: relative;
}

.bgc-commerce .bg-benefit {
    position: absolute;
    right: 40%;
    bottom: 0;
    animation: anim-benefit 7s ease-in-out infinite;
}

.bgc-commerce .header-menu-box {
    padding-left: 10px;
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Мобильная адаптация */
/* ------------------------------------------------------------------------------------------------------------------ */

/* ------------------------------------------------------------------------------------------------------------------ */
/* Мобильная адаптация */
/* ------------------------------------------------------------------------------------------------------------------ */


@media screen and (max-width: 1414px){
    .bgc-commerce .cooperation-content:before {
        height: 90%;
    }
}

@media screen and (max-width: 1370px) {
    .bgc-commerce ._offer-text {
        font-size: 26px;
    }
}

@media screen and (max-width: 1300px){
    .bgc-commerce .cooperation-content:before {
        height: 91%;
    }
}

@media screen and (max-width: 1200px) {
    /* Header */
    /* Ссылки в меню */
    .bgc-commerce ._menu-link {
        font-size: 42px;
    }

    /* Общий title у всех секция*/
    .bgc-commerce ._title {
        font-size: 42px;
    }

    /* Present */
    .bgc-commerce .present-box {
        align-items: center;
    }

    .bgc-commerce ._present-item h1 {
        font-size: 50px;
    }

    .bgc-commerce ._present-item p {
        font-size: 36px;
    }

    /* Секция Reward */
    .bgc-commerce ._reward-example {
        font-size: 42px;
    }

    .bgc-commerce ._reward-text {
        font-size: 16px;
        margin-top: 15px;
    }

    /* Секция Cooperation */
    .bgc-commerce .bg-cooperation {
        opacity: 0.6;
    }

    /* Footer */
    .bgc-commerce .footer-box {
        justify-content: space-around;
    }

    .bgc-commerce ._footer-item h3 {
        font-size: 40px;
    }

    .bgc-commerce footer h6 {
        font-size: 40px;
    }

    .bgc-commerce .footer-connect {
        font-size: 25px;
    }

    .bgc-commerce footer ._btn {
        font-size: 25px;
        /*padding: 8px 10px;*/
    }
}

@media screen and (max-width: 1198px){
    .bgc-commerce .cooperation-content:before {
        height: 90%;
    }

    .bgc-commerce ._menu-link > a {
        padding-left: 10px;
        font-size: 46px;
    }

    .bgc-commerce ._menu-link {
        margin-bottom: 10px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 1070px){
    .bgc-commerce .cooperation-content:before {
        height: 91%;
    }
}

@media screen and (max-width: 992px) {
    /* Present */
    .bgc-commerce .present-box {
        flex-direction: column;
        text-align: center;
    }

    /* Блок с формой */
    .bgc-commerce ._present-item:nth-child(2) {
        margin: 50px auto 0;
        max-width: 500px;
    }

    .bgc-commerce ._present-item p {
        max-width: 100%;
    }

    /* Секция About */
    /* Список */
    .bgc-commerce .about-list {
        justify-content: space-around;
    }

    /* Элемент списка */
    .bgc-commerce ._about-list-item {
        max-width: 315px;
    }

    /* Секция Offer */
    .bgc-commerce .offer-content {
        margin-top: 75px;
        flex-direction: column;
    }

    .bgc-commerce ._offer-item:nth-child(2) {
        margin: 30px 0 0;
    }

    .bgc-commerce ._offer-text {
        font-size: 22px;
    }

    .bgc-commerce .offer-small-text {
        margin-top: 25px;
        font-size: 22px;
    }

    .bgc-commerce ._offer-subtitle {
        margin-top: 30px;
        font-size: 20px;
    }

    /* Секция Benefit */
    /* Элемент блока */
    .bgc-commerce ._benefit-item {
        flex-basis: 45%;
    }

    /*  Пустой блок */
    .bgc-commerce ._benefit-item:last-child {
        display: none;
    }

    /* Секция Reward */
    .bgc-commerce .reward-content {
        flex-wrap: wrap;
    }

    /* Элемент блока */
    .bgc-commerce ._reward-item {
        flex-basis: 100%;
    }

    .bgc-commerce ._reward-item:last-child {
        margin-top: 25px;
    }

    .bgc-commerce ._reward-example {
        top: -23px;
        font-size: 32px;
    }

    /* Секция Relise */
    /* Блок с контентом*/
    .bgc-commerce .relise-content {
        flex-direction: column;
    }

    /* Блок с элементом */
    .bgc-commerce ._relise-item:nth-child(2) {
        margin-top: 35px;
    }

    /* Секция Cooperation */
    .bgc-commerce .cooperation {
        margin-top: 75px;
    }

    /* Блок с контентом */
    .bgc-commerce .cooperation-content {
        width: 93%;
    }

    /* Заголовок секции */
    .bgc-commerce .right {
        width: 100%;
        margin-left: 100px;
    }

    /* Фоновая картинка */
    .bgc-commerce .bg-cooperation {
        opacity: 0.2;
    }

    /* Прямая */

    /* Секция  Restrictions*/
    /* Блок с контентом */
    .bgc-commerce .restrictions-content {
        margin-top: 50px;
    }

    /* Блок с текстом */
    .bgc-commerce .restrictions-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .bgc-commerce ._restrictions-text-item:nth-child(12) {
        display: none;
    }

    /* Секция  Footer*/
    .bgc-commerce ._footer-item:nth-child(2) {
        flex-basis: 48%;
        margin-left: 20px;
    }

    .bgc-commerce ._menu-link > a {
        padding-left: 10px;
        font-size: 36px;
    }

    .bgc-commerce ._menu-link {
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .bgc-commerce .bg-benefit {
        right: 10%;
    }

    .bgc-commerce .bg-reward {
        right: 15%;
        bottom: 3%;
    }

    .bgc-commerce .bg-coop {
        right: 4%;
        left: unset;
        z-index: -1;
    }

    .bgc-commerce .bg-rest {
        top: -5%;
        right: 7%;
    }

    .bgc-commerce ._reward-item {
        flex-basis: 100%;
    }
}

@media screen and (max-width: 900px) {
    .bgc-commerce ._present-item:first-child {
        margin-top: 40px;
    }
}

@media screen and (max-width: 900px) {
    .bgc-commerce header > a {
        font-size: 36px;
    }

    .bgc-commerce ._menu-link {
        font-size: 30px;
    }
}

@media screen and (max-width: 840px) {
    .bgc-commerce .bg-benefit {
        z-index: -1;
        right: 3%;
    }

    .bgc-commerce .bg-reward {
        right: 1%;
        bottom: -5%;
    }

    .bgc-commerce .bg-coop {
        max-width: 109px;
    }

    .bgc-commerce .bg-rest {
        top: 0;
        right: -13%;
        z-index: -1;
        max-width: 100px;
    }

    .bgc-commerce .footer-soc a:not(:first-child) {
        margin-left: 10px;
    }

}

@media screen and (max-width: 767px) {
    /* Header */
    /* Высота шапки */
    .bgc-commerce .header-box {
        height: 60px;
    }

    /* Выдвигающее меню */
    .bgc-commerce .header-menu {
        top: 60px;
    }

    /* Лого */
    .bgc-commerce .logo {
        max-width: 190px;
    }

    .bgc-commerce .logo img {
        width: 68%;
    }

    /* Present */
    .bgc-commerce .present {
        height: 100%;
        padding: 125px 0 75px;
    }

    .bgc-commerce .bg-present {
        height: 100%;
    }

    .bgc-commerce ._present-item h1 {
        font-size: 38px;
    }

    .bgc-commerce ._present-item p {
        font-size: 28px;
    }

    /* Заголовок в форме */
    .bgc-commerce ._present-item h3 {
        margin-bottom: 40px;
    }

    /* Секция About*/
    /* Лого */
    .bgc-commerce .bg-about {
        width: 100%;
        opacity: 0.4;
    }

    /* Специальный контейнер */
    .bgc-commerce ._container {
        padding: 0 40px
    }

    /* Общий title у всех секция*/
    .bgc-commerce ._title {
        margin-left: 70px;
    }

    .bgc-commerce ._title:before {
        height: 7px;
        max-width: 60px;
    }

    /* Список */
    .bgc-commerce .about-list {
        flex-direction: column;
        flex-wrap: nowrap;
    }

    /* Элемент списка */
    .bgc-commerce ._about-list-item {
        max-width: 100%;
    }

    /* Линия */
    .bgc-commerce ._dash {
        max-width: 100%;
    }

    /* Секция Offer */
    /* Коробка с контентом */
    .bgc-commerce .offer-content {
        margin-top: 45px;
    }

    /* Маленький текст */
    .bgc-commerce .offer-small-text {
        margin-top: 30px
    }

    /* Секция Benefit */
    .bgc-commerce .benefit-content {
        margin-top: 30px;
        flex-direction: column;
    }

    /* Элемент блока */
    .bgc-commerce ._benefit-item {
        max-width: 100%;
        flex-basis: 100%;
        margin: 30px 0;
        padding: 10px;
    }

    /* Фоновый блок */
    .bgc-commerce ._bg-block {
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        top: -38px;
        left: 12px;
        font-size: 100px;
    }

    .bgc-commerce ._benefit-item:not(:first-child) {
        margin-top: 15px;
    }

    .bgc-commerce ._benefit-text {
        margin-top: 20px;
    }

    /* Скрывается в спойлер */
    .bgc-commerce ._benefit-text {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.35s ease-out;
    }

    .bgc-commerce ._benefit-title {
        position: relative;
        width: 85%;
        cursor: pointer;
    }

    /*  Стрелка в спойлере */
    .bgc-commerce ._benefit-title:before {
        content: '\2039';
        position: absolute;
        top: 0;
        right: -13%;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 25px;
        height: 25px;
        font-size: 36px;
        transform: rotate(-90deg);
        transition: 0.3s;
    }

    .bgc-commerce ._active:before {
        transform: rotate(90deg);
    }

    /* Элемент без абзаца */
    .bgc-commerce .benefit-title-fix {
        position: static;
    }

    .bgc-commerce .benefit-title-fix:before {
        content: '';
    }

    /* Секция Reward */
    .bgc-commerce .reward-content {
        flex-direction: column;
        flex-wrap: nowrap;
        margin-top: 50px;
    }

    .bgc-commerce ._reward-item {
        padding: 20px;
        margin: 35px 0;
    }

    /* Секция Relise */
    .bgc-commerce .relise-content {
        margin-top: 40px;
    }

    /* Пустой блок */
    .bgc-commerce ._relise-empty {
        height: 100px;
    }

    /* Элемент блока */
    .bgc-commerce ._relise-item {
        padding: 20px;
    }

    /* Секция Cooperation */
    .bgc-commerce .cooperation {
        margin-bottom: 40px;
    }

    .bgc-commerce .cooperation-content {
        width: 100%;
        margin-top: 40px;
    }

    .bgc-commerce ._number {
        font-size: 42px;
    }

    .bgc-commerce ._cooperation-text {
        font-size: 18px;
        margin-left: 15px;
    }

    .bgc-commerce ._cooperation-item:not(:first-child) {
        margin-top: 20px;
    }

    /* Прямая */
    .bgc-commerce .cooperation-content:before {
        height: 90%;
    }

    /* Секция  Restrictions*/
    /* Блок с контентом */
    .bgc-commerce .restrictions-content {
        margin-top: 30px;
    }

    /* Секция Footer */
    .bgc-commerce .footer-box {
        flex-direction: column;
    }

    /* Элемент блока */
    .bgc-commerce ._footer-item {
        align-items: center;
    }

    .bgc-commerce ._footer-item:nth-child(2) {
        margin: 0 0 35px;
        order: -1;
    }

    .bgc-commerce footer h6 {
        font-size: 32px;
    }

    .bgc-commerce ._footer-item h3 {
        font-size: 32px;
    }

    /* Блок с инпутами */
    .bgc-commerce .footer-form-inputs {
        margin-top: 20px;
    }

    .bgc-commerce footer label {
        font-size: 20px;
    }

    .bgc-commerce footer ._btn {
        font-size: 25px;
        padding: 5px 10px;
    }

    .bgc-commerce section {
        padding: 60px 0 0;
    }

    .bgc-commerce ._relise-avatar > img {
        width: 60px;
        height: 60px;
    }

    .bgc-commerce .hamburger {
        width: 40px;
    }

    .bgc-commerce .hamburger:before, .bgc-commerce .hamburger:after {
        width: 40px;
    }

    .bgc-commerce .header-menu-box {
        padding: 10px;
        align-items: normal;
    }

    .bgc-commerce ._menu-link {
        font-weight: 600;
        margin: 10px 0;
    }

    .bgc-commerce ._menu-link > a {
        color: #000;
        font-size: 22px;
    }

    .bgc-commerce .cooperation-content:before {
        height: 90%;
    }
}

@media screen and (max-width: 760px) {
    .bgc-commerce .restrictions{
        padding-bottom: 60px;
    }
}

@media screen and (max-width: 540px) {
    .bgc-commerce ._menu-link > a {
        font-size: 18px;
    }

    .bgc-commerce ._menu-link {
        margin-bottom: 5px;
        margin-top: 0px;
    }
}


@media screen and (max-width: 500px) {
    .bgc-commerce section {
        z-index: 9;
    }

    .bgc-commerce header {
        background: #d4d4d4;
    }

    .bgc-commerce ._container {
        padding: 0 20px;
    }

    /* Header */
    /* Ссылки в меню */
    .bgc-commerce ._present-item:nth-child(2) {
        display: none;
    }

    /* Present */
    .bgc-commerce .present {
        padding: 115px 0 0;
    }

    .bgc-commerce ._present-item h1 {
        font-size: 32px;
    }

    .bgc-commerce ._present-item p {
        font-size: 24px;
    }

    .bgc-commerce ._present-item h3 {
        margin-bottom: 20px;
    }

    .bgc-commerce ._present-item input:nth-child(3) {
        margin: 20px 0 25px;
    }

    .bgc-commerce .btn-media {
        position: relative;
        z-index: 3;
        display: block;
        text-align: center;
        margin: 25px 0 30px 0;
    }

    /* Контейнер для формы */
    .bgc-commerce .form-container {
        padding: 20px;
        width: 90%;
    }

    /*Кнопка закрыть в Popup */
    .bgc-commerce .close {
        right: 5px;
        top: -3px;
    }

    /* Список */
    .bgc-commerce .about-list {
        margin-top: 25px;
    }

    /* Текст в списке */
    .bgc-commerce ._list-text {
        margin: 10px 0 20px;
    }

    /* Общий заголовок у всех */
    .bgc-commerce ._title {
        font-size: 30px;
    }

    .bgc-commerce ._title:before {
        height: 5px;
        max-width: 44px;
        left: -70px;
        top: 47%;
    }

    /* Цифры */
    .bgc-commerce ._list-number {
        font-size: 32px;
    }

    /* Секция About */
    /* Большой текст */
    .bgc-commerce ._offer-text {
        font-size: 20px;
    }

    /* Маленький текст */
    .bgc-commerce .offer-small-text {
        font-size: 18px;
    }

    /* Подробнее */
    .bgc-commerce ._offer-subtitle {
        margin-top: 25px;
        font-size: 18px;
    }

    .bgc-commerce ._about-list-item {
        padding: 0;
    }

    /* Секция Benefit*/
    .bgc-commerce .benefit-content {
        margin-top: 0;
    }

    .bgc-commerce ._benefit-text {
        margin-top: 15px;
        font-size: 18px;
    }

    .bgc-commerce ._benefit-item:first-child {
        margin-bottom: 10px;
    }

    .bgc-commerce ._benefit-item:not(:first-child) {
        margin: 15px 0;
    }

    /* Секция Reward */
    /* Блок с контентом */
    .bgc-commerce .reward-content {
        margin-top: 50px;
    }

    /* Текст с примером */
    .bgc-commerce ._reward-example {
        font-size: 33px;
        top: -27px;
        left: 16px;
    }

    .bgc-commerce ._reward-title {
        font-size: 22px;
    }

    .bgc-commerce ._reward-text {
        font-size: 18px;
    }

    /* Секция Relise */
    /* Элемент блока */
    .bgc-commerce ._relise-item {
        padding: 15px;
    }

    /* Имя пользователя */
    .bgc-commerce ._relise-name {
        font-size: 24px;
    }

    /* Текст */
    .bgc-commerce ._relise-text {
        font-size: 16px;
        margin-top: 15px;
    }

    /* Секция Cooperation*/
    .bgc-commerce .cooperation {
        margin: 50px 0 0;
    }

    .bgc-commerce ._cooperation-item {
        display: block;
    }

    .bgc-commerce ._cooperation-text {
        margin-left: 0;
    }

    .bgc-commerce .cooperation-content {
        width: 90%;
    }

    .bgc-commerce ._number {
        font-size: 32px;
    }

    .bgc-commerce ._number:before {
        top: 14px;
    }

    .bgc-commerce .cooperation-content:before {
        top: 16px;
    }

    /* Секция  Restrictions*/
    /* Блок с контентом */
    .bgc-commerce .restrictions-content {
        margin-top: 10px;
    }

    /*  Блок с текстом */
    .bgc-commerce ._restrictions-text-item {
        font-size: 18px;
        margin-top: 20px;
    }

    /* Подвал сайта */
    /* Враппер формы */
    .bgc-commerce .footer-form-container {
        width: 100%;
    }

    .bgc-commerce footer h6 {
        font-size: 28px;
    }

    .bgc-commerce ._footer-item h3 {
        font-size: 28px;
    }

    .bgc-commerce .footer-connect {
        margin: 25px 0;
    }
    .bgc-commerce .bg-benefit {
        display: none;
    }

    .bgc-commerce .bg-reward {
        display: none;
    }

    .bgc-commerce .bg-coop {
        display: none;
    }

    .bgc-commerce .bg-rest {
        display: none;
    }

    .social-box-commercial_link svg {
        width: 26px;
        height: 26px;
    }

    .social-box-commercial_link {
        width: 45px;
        height: 45px;
    }

    .bgc-commerce .footer-soc span {
        width: 45px;
        height: 45px;
    }

    .bgc-commerce .footer-soc svg {
        width: 26px;
        height: 26px;
    }
}

    ._reward-item-hide {
        display: none;
}

@media screen and (max-width: 450px) {
    /*.bgc-commerce ._menu-link > a {*/
    /*    padding-left: 10px;*/
    /*}*/
    .bgc-commerce .header-menu-box {
        padding: 0px;
    }
}

@media screen and (max-width: 450px) {

}

@media screen and (max-width: 391px) {
    /* Present */
    .bgc-commerce ._present-item h1 {
        font-size: 28px;
    }

    .bgc-commerce ._present-item p {
        font-size: 22px;
    }

    .bgc-commerce ._present-item h3 {
        font-size: 22px;
    }

    /* Общий заголовок */
    .bgc-commerce ._title {
        font-size: 26px;
    }

    /* Секция About */
    /* Цифры */
    .bgc-commerce ._list-number {
        font-size: 22px;
    }

    /* Линия */
    .bgc-commerce ._dash {
        margin-left: 15px;
    }

    /* Секция About */
    .bgc-commerce ._benefit-title {
        font-size: 18px;
    }

    .bgc-commerce ._benefit-text {
        margin-top: 10px;
        font-size: 18px;
    }

    .bgc-commerce .benefit-link {
        font-size: 16px;
    }

    /* Секция Reward */
    /* Элемент блока */
    .bgc-commerce ._reward-item {
        padding: 25px 15px;
    }

    .bgc-commerce ._reward-title {
        font-size: 20px;
    }

    /* Секция Relise */
    /* Аватар пользователя */
    .bgc-commerce ._relise-avatar {
        width: 60px;
        height: 60px;
    }

    .bgc-commerce ._relise-item:nth-child(2) {
        margin-top: 20px;
    }

    /* Имя пользователя */
    .bgc-commerce ._relise-name {
        font-size: 20px;
        margin-left: 15px;
    }

    /* Кнопка перейти */
    .bgc-commerce .btn-example {
        font-size: 16px;
        margin-top: 20px;
    }

    /* Кнопка сообщения */
    .bgc-commerce .btn-message {
        font-size: 16px;
        margin-top: 20px;
    }

    /* Секция  Cooperation */
    .bgc-commerce ._cooperation-item:not(:first-child) {
        top: 10px;
    }

    .bgc-commerce ._number {
        font-size: 28px;
    }

    /* Секция  Restrictions*/
    /*  Блок с текстом */
    .bgc-commerce ._restrictions-text-item {
        margin-top: 15px;
    }

    /* Секция Footer */
    .bgc-commerce .footer-box {
        padding: 40px 0;
    }

    .bgc-commerce footer h6 {
        font-size: 24px;
    }

    .bgc-commerce ._footer-item h3 {
        font-size: 24px;
    }

    .bgc-commerce footer label {
        font-size: 18px;
    }

    .bgc-commerce footer input {
        margin-bottom: 15px;
    }

    .bgc-commerce ._footer-item:nth-child(2) {
        margin-bottom: 25px;
    }

    .bgc-commerce footer ._btn {
        font-size: 22px;
    }

    /* Блок с почтой и номером  */
    .bgc-commerce .footer-connect {
        font-size: 18px;
    }

    /* popup*/
    .bgc-commerce .popup-content {
        font-size: 20px;
    }

}

@media screen and (max-width: 350px) {
    /* Секция About */
    /* Текст в списках */
    .bgc-commerce ._list-text {
        font-size: 18px;
    }
}

/* ------------------------------------------------------------------------------------------------------------------ */
/* Анимация произвольных блоков */
/* ------------------------------------------------------------------------------------------------------------------ */

@keyframes anim-benefit {
    0% {
        transform: translatey(0px);
    }
    50% {
        transform: translatey(-40px);
    }
    100% {
        transform: translatey(0px);
    }
}

@keyframes anim-reward {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(25px, -10px);
    }
    50% {
        transform: translate(0px, -30px);
    }
    75% {
        transform: translate(25px, -10px);
    }
    100% {
        transform: translate(0px);
    }
}


@keyframes anim-relise {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(25px, -10px);
    }
    50% {
        transform: translate(0px, -30px);
    }
    75% {
        transform: translate(25px, -10px);
    }
    100% {
        transform: translate(0px);
    }
}


@keyframes anim-coop {
    from {
        transform: rotate(0deg) translateX(75px) rotate(0deg);
    }
    to {
        transform: rotate(360deg) translateX(75px) rotate(-360deg);
    }
}

@keyframes anim-rest {
    from {
        transform: rotate(0deg) translateX(75px) rotate(0deg);
    }
    to {
        transform: rotate(540deg) translateX(75px) rotate(-540deg);
    }
}