/*==========================================================================================================================================================================*/
/* Подключение шрифтов */
@font-face {
    font-family: "Roboto";
    src: url("../fonts/Roboto.woff2") format("woff2"), 
         url("../fonts/Roboto.woff") format("woff");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Robotomedium.woff2") format("woff2"), 
         url("../fonts/Robotomedium.woff") format("woff");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/Robotobold.woff2") format("woff2"), 
         url("../fonts/Robotobold.woff") format("woff");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}



/*==========================================================================================================================================================================*/
/* Обнуление */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

button {
    font-family: inherit;
    outline: none;
    border: none;
}

a,
button {
    color: inherit;
    cursor: pointer;
    border: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
    border: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

:focus,
:active,
a:focus,
a:active {
    outline: none;
}

a,
a:visited,
a:hover {
    text-decoration: none;
}



/*==========================================================================================================================================================================*/
/* Общие стили */
html,
body {
    height: 100%;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #000000;
    background-color: #ffffff;
}

body {
    -webkit-animation: body_show 0.5s forwards ease-in-out;
            animation: body_show 0.5s forwards ease-in-out;
}

@-webkit-keyframes body_show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes body_show {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

body._lock {
    overflow: hidden;
}

.wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    min-height: 100%;
    overflow: hidden;
}

[class*=__container] {
    max-width: 1208px;
    margin: 0 auto;
    padding: 0px 40px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}

.content {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
}


/*===================================================================================*/
/* Media Queries */
@media (max-width: 479.98px) {
    [class*=__container] {
        padding: 0 24px;
    }
}



/*==========================================================================================================================================================================*/
/* Модификаторы */
._btn {
    position: absolute;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    height: 100%;
    padding: 8px 32px;
    font-size: 24px;
    line-height: 1.333;
    color: #fff;
    background-color: #F10565;
    -webkit-transform: translate(-5px, -5px);
        -ms-transform: translate(-5px, -5px);
            transform: translate(-5px, -5px);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    z-index: 2;
}


/*===================================================================================*/
/* Media Queries */
@media (any-hover: hover) {
    ._btn:hover {
        -webkit-transform: translate(0px, 0px);
            -ms-transform: translate(0px, 0px);
                transform: translate(0px, 0px);
    }
}

@media (max-width: 1288px) {
    ._btn {
        padding: 8px 20px;
        font-size: calc(14px + 10 * ((100vw - 320px) / (1208 - 320)));
    }
}

@media (max-width: 767.98px) {
    ._btn {
        font-size: 18px;
    }
}



/*==========================================================================================================================================================================*/
/* Main */
.main {
    position: relative;
    min-height: 100vh;
}

.main::before {
    content: '';
    position: absolute;
    top: 56px;
    bottom: 0;
    left: calc(50% + 600px);
    width: 800px;
    -webkit-clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 90%, 100% 100%, 0% 100%);
    background-color: rgba(246, 178, 122, 0.8);
    z-index: -1;
}

.main__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(250, 161, 28, 0.47);
    z-index: -2;
}

.main__bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    mix-blend-mode: multiply;
}

.main__body {
    position: relative;
    padding: 40px 0;
}

.header-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    min-height: 48px;
    background-color: #000;
}

.sponsor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-column-gap: 11px;
       -moz-column-gap: 11px;
            column-gap: 11px;
}

.sponsor__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    padding: 0px 18px 0px 13px;
    min-height: 32px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    background-color: #fff;
    color: #000;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 95% 100%, 0% 100%);
}

.sponsor__text span {
    margin: 2px 0px 0px 0px;
}

.sponsor__link {
    margin: 2px 0px 0px 0px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.142;
    text-transform: uppercase;
    color: #fff;
}

.header-main__link {
    margin: 0px 26px 0px 0px;
}

.header-main__link a {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.142;
    text-transform: uppercase;
    color: #FFFFFF;
    text-decoration: underline;
}

.header-main__link a:hover {
    text-decoration: none;
}

.header-main__link img {
    width: 15px;
    height: auto;
    margin: 0px 9px 0px 0px;
}

.header-main__link span {
    color: #fff;
}

.video-main {
    position: relative;
    width: 100%;
    padding: 0px 0px 55.878% 0px;
    border-left: 3px solid #000000;
    border-right: 3px solid #000000;
}

.video-main iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.action-main {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 5px 32px 5px 56px;
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
    border: 3px solid #000000;
}

.action-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 1300px;
    height: calc(100vh - 400px);
    min-height: 400px;
    background-color: rgba(246, 178, 122, 0.8);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 40% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 40% 100%);
    z-index: -1;	
}

.action-main__assortment {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 433px;
            flex: 0 1 433px;
    padding: 5px 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.14;
    text-transform: uppercase;
    color: #000000;
}

.action-main__assortment span {
    position: relative;
    white-space: nowrap;
}
    
.rub {
    font-weight: 500;
}

.action-main__button {
    position: relative;
    display: inline-block;
    max-width: 277px;
    width: 100%;
    min-height: 96px;
}

.action-main__button img {
    margin: 0px 11px 0px 0px;
    width: 22px;
    height: 22px;
}

.action-main__button span {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
}

.action-main__image {
    position: relative;
    margin: 0px 0px -12px 0px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 293px;
            flex: 0 1 293px;
    min-width: 170px;
}

.action-main__image::before {
    content: '';
    position: absolute;
    top: 22px;
    left: -12px;
    width: 2px;
    height: calc(100% - 63px);
    background-color: #000;	
}

.action-main__image img {
    width: 100%;
    height: 100%;
}

.bottom-main {
    margin: 32px 0px 0px 0px;
}

.bottom-main__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.33;
    text-transform: uppercase;
    color: #000000;
    pointer-events: none;
}

.bottom-main__link span {
    text-decoration: underline;
    pointer-events: all;
}

.bottom-main__link span:hover {
    text-decoration: none;
}


/*===================================================================================*/
/* Media Queries */
@media (min-width: 1920px) {
    .main::before {
        width: 2000px;
        -webkit-clip-path: polygon(0% 0%, 100% 220%, 100% 100%, 0% 100%);
        clip-path: polygon(0% 0%, 100% 220%, 100% 100%, 0% 100%);
    }

    .action-main::before {
        height: 800px;
        -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 45% 100%);
                clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 45% 100%);	
    }
}

@media (max-width: 1288px) and (min-width: 767.98px) and (min-height: 1078px) {
    .main::before,
    .action-main::before {
        display: none;
    }
}

@media (max-width: 1300px) {
    .action-main__image::before {
        display: none;
    }
}

@media (max-width: 1288px) {
    .main::before {
        left: auto;
        right: -760px;
    }

    .action-main {
        -webkit-column-gap: 25px;
           -moz-column-gap: 25px;
                column-gap: 25px;
    }

    .action-main__assortment {
        font-size: 20px;
    }

    .rub {
        font-size: 21px;
    }

    .action-main__button {
        min-height: 60px;
    }
}

@media (min-height: 1078px) and (min-width: 767.98px) {
     .main__container {
        height: 100vh;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
    }

    .main::before {
        top: calc(50% - 485px);
    } 
}

@media (max-width: 991.98px) {
    .action-main {
        padding: 5px 20px 5px 35px;
    }
}

@media (max-width: 767.98px) {
    .main__body {
        padding: 40px 0px 20px;
    }

    .main::before {
        top: 40px;
        width: 40px;
        height: 50vh;
        right: 0;
        min-height: calc(350px + 200 * ((100vw - 320px) / (768 - 320)));
        -webkit-clip-path: polygon(0% 0%, 100% 10%, 100% 100%, 0% 100%);
                clip-path: polygon(0% 0%, 100% 10%, 100% 100%, 0% 100%);
    }

    .header-main {
        display: block;
        padding: 16px;
    }

    .sponsor {
        display: block;
        margin: 0px 0px 8px 0px;
    }

    .sponsor__text {
        max-width: 400px;
        padding: 8px;
        margin: 0px auto 16px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
                clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    }

    .sponsor__link,
    .header-main__link {
        text-align: center;
    }

    .header-main__link {
        margin: 0;
    }

    .video-main {
        height: auto;
        padding: 0px 0px 55.8% 0px;
    }

    .action-main {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
            -ms-flex-direction: column;
                flex-direction: column;
        padding: 19px 16px 21px;
    }

    .action-main::before {
        width: calc(100% + 50px);
        height: 100vh;
        -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 170% 100%);
                clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 170% 100%);	
    }

    .action-main__assortment {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
        max-width: 300px;
        font-size: 18px;
        line-height: 1.33;
        margin: 0px 0px 16px 0px;
    }

    .rub {
        font-size: 18px;
    }

    .action-main__button {
        min-height: 48px;
        max-width: 300px;
        margin: 0px 0px 24px 0px;
    }

    .action-main__image {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
        width: 375px;
    }

    .action-main__image::before {
        display: block;
        top: 0;
        left: 39px;
        width: calc(100% - 77px);
        height: 2px;	
    }

    .bottom-main {
        margin: 16px 0px 0px 0px;
    }

    .bottom-main__link {
        max-width: 500px;
    }
}

@media (max-width: 479.98px) {
    .main::before {
        width: 24px;
        -webkit-clip-path: polygon(0% 0%, 100% 6%, 100% 100%, 0% 100%);
                clip-path: polygon(0% 0%, 100% 6%, 100% 100%, 0% 100%);
    }

    .action-main__assortment {
        max-width: 100%;
    }

    .action-main__button {
        max-width: 100%;
    }

    .action-main__image {
        width: 125%;
        height: auto;
    }

    .action-main__image::before {
        top: 0;
        left: 10.5%;
        width: calc(100% - 20.5%);	
    }
}

@media (max-width: 360px) {
    .action-main__image::before {
        top: -2px;	
    }
}