body {
    font-family: 'Open Sans', sans-serif;
    background-color: #d70021;
    font-size: 10px;
}
a {
    text-decoration: inherit;
    color: inherit;
}
@media (max-width: 460px) {
    .container {
        margin: 0 auto;
        width: 100%;
    }
}
@media (min-width: 460px) {
    .container {
        margin: 0 auto;
        width: 80%;
    }
}
@media (min-width: 940px) {
    .container {
        margin: 0 auto;
        width: 940px;
    }
}
.c_white {
    color: #fff;
}
.c_yellow {
    color: #f8e824;
}
.c_black {
    color: #1e1804;
}
.c_green {
    color: #486634;
}
.c_red {
    color: #d70021;
}
header {
    width: 100%;
    overflow: hidden;
    /*position: fixed;*/
    
    z-index: 100;
    background-color: #d70021;
    padding-bottom: 10px;
}
nav {
    overflow: hidden;
}
.page {
    /*padding-top: 150px;*/
}
.nav__button {
    position: relative;
    margin-top: 20px;
    float: left;
    margin-left: 20px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
}
.nav__button span, .nav__button span:before, .nav__button span:after {
    cursor: pointer;
    border-radius: 1px;
    height: 5px;
    width: 35px;
    background: white;
    position: absolute;
    display: block;
    content: '';
}
.nav__button span:before {
    top: -10px;
}
.nav__button span:after {
    bottom: -10px;
}
.nav__button span, .nav__button span:before, .nav__button span:after {
  transition: all 500ms ease-in-out;
}
.nav__button.active{
}
.nav__button.active span {
  background-color: transparent;
}
.nav__button.active span:before, .nav__button.active span:after {
  top: 0;
}
.nav__button.active span:before {
  transform: rotate(45deg);
}
.nav__button.active span:after {
  transform: rotate(-45deg);
}
.menu{
    color: #fff;
    z-index: 200;
    background-color: #d70021;
    top: 50px;
    position: absolute;
    left: -50%;
    width: 50%;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.menu a:first-child{
    border-top: 0;
}
.menu a{
    font-size: 1.6em;
    padding: 1em 2em;
    display: block;
    border-top: 1px solid #fff;
}
.menu_active{
    left: 0;
}
@media (max-width: 460px) {
    .nav__item {
        display: none;
    }
    .nav__button {
        display: block;
    }
    .lang {
        margin-right: 10px;
    }
}
@media (min-width: 460px) {
    .nav__item {
        display: none;
    }
    .nav__button {
        display: block;
    }
    .lang {
        margin-right: 10px;
    }
}
@media (min-width: 940px) {
    .nav__item{
        display: block;
    }
    .menu{
        display: none;
    }
    .nav__button {
        display: none;
    }
}
.nav__item a {
    font-weight: 300;
    margin-top: 20px;
    font-size: 1.8em;
    display: inline-block;
    position: relative;
}
.nav__item a:after {
    content: '';
    display: block;
    opacity: 0;
    height: 0;
    width: 100%;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.nav__item a:hover:after {
    height: 3px;
    opacity: 1;
}
.nav__left {
    float: left;
}
.nav__left > a {
    margin-right: 40px;
}
.nav__right {
    float: right;
}
.nav__right > a {
    margin-left: 40px;
}
.lang {
    margin-left: 40px;
    font-size: 1.4em;
    float: right;
    margin-top: 20px;
}
.lang > a {
    font-weight: 600;
    padding: 5px 15px;
    border-radius: 5px;
    display: inline-block;
    vertical-align: middle;
}
@media (max-width: 460px) {
    .lang > a {
        display: block;
    }
}
.lang > a.active {
    color: #d70021;
    background-color: #fff;
}
.logo__wrap {
    text-align: center;
    margin-top: -25px;
}
.logo {
    display: inline-block;
}
.logo__slogan {
    font-weight: 800;
    font-size: 1.8em;
}
.main {
    padding-top: 10px;
}
@media (max-width: 460px) {
    .row {
        margin: 0;
        overflow: hidden;
    }
}
@media (min-width: 460px) {
    .row {
        margin: 0;
        overflow: hidden;
    }
}
@media (min-width: 940px) {
    .row {
        margin: 20px 0;
        overflow: hidden;
    }
}
.row_inline {
    margin-bottom: 0;
}
.row_top {
    margin-top: 0;
}
.block {
    position: relative;
    overflow: hidden;
}
@media (max-width: 460px) {
    .block {
        margin: 10px auto;
    }
    .block_full,.block_normal,.block_smaller,.block_half,.block_bigger {
        width: 100%;
    }
    .block_normal {
        height: 345px;
    }
    .block_smaller {
        height: 285px;
    }
    .block_half {
        height: 185px;
    }
    .block_bigger {
        height: auto;
    }
}
@media (min-width: 460px) {
    .block {
        margin: 10px auto;
    }
    .block_small.block_left {
        float: left;
    }
    .block_small.block_right {
        float: right;
    }
    .block_full {
        width: 460px;
    }
    .block_normal {
        width: 460px;
        height: 345px;
    }
    .block_smaller {
        width: 460px;
        height: 285px;
    }
    .block_half {
        width: 460px;
        height: 185px;
    }
    .block_bigger {
        width: 460px;
        height: 320px;
    }
}
@media (min-width: 940px) {
    .block {
        margin: auto;
    }
    .block_left {
        float: left;
    }
    .block_right {
        float: right;
    }
    .block_full {
        width: 940px;
    }
    .block_normal {
        width: 460px;
        height: 345px;
    }
    .block_smaller {
        width: 460px;
        height: 285px;
    }
    .block_half {
        width: 460px;
        height: 185px;
    }
    .block_bigger {
        width: 460px;
        height: 320px;
    }
}
.block_border {
    border: 5px solid #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (max-width: 460px) {
    .block_icons {
        width: 100%;
        margin: auto;
    }
    .block_icons.row_top{
        margin: auto;
    }
    .block_break {
        width: 100%;
        text-align: center;
    }
}
@media (min-width: 460px) {
    .block_icons {
        width: 460px;
        margin: auto;
    }
    .block_icons.row_top{
        margin: auto;
    }
    .block_break {
        width: 460px;
        text-align: center;
    }
}
@media (min-width: 940px) {
    .block_icons {
        width: 460px;
        margin: 20px 0 0;
    }
    .block_icons.row_top{
        margin: 0 0 20px;
    }
    .block_break {
        width: 460px;
        text-align: center;
    }
}



.block_break img{
    max-width: 100%;    
}
.t_u {
    text-transform: uppercase;
}
.t_i {
    font-style: italic;
}
h2 {
    font-size: 3em;
    font-weight: 800;
}
h3 {
    font-size: 2.4em;
    font-weight: 800;
}
h4 {
    font-size: 1.8em;
    font-weight: 300;
}
h5 {
    font-size: 1.6em;
    font-weight: 400;
}
h6 {
    font-size: 1.4em;
    font-weight: 700;
}
/* first */

.block_first {
    background-image: url('../img/first__bg.jpg');
}
.first__limit, .first__chocolate {
    position: absolute;
}
.first__limit {
    right: 30px;
    top: 10px;
}
.first__chocolate {
    left: 10px;
    top: 100px;
}
.first__heading, .first__message {
    position: relative;
    z-index: 5;
    padding-left: 30px;
}
.first__heading {
    text-shadow: 1.5px 3px 0px rgba( 5, 58, 60, 0.4);
    padding-top: 50px;
}

.first__message {
    width: 175px;
}
.first__subheading, .first__submessage {
    text-align: right;
    position: relative;
    z-index: 5;
    padding-right: 30px;
}
.first__subheading {
    margin-top: 130px;
}
@media (max-width: 460px){
    .first__heading {
        padding-top: 10px;
    }
    .first__subheading {
       padding-top: 50px;
    }
    .first__heading, .first__message{
        padding-left: 20px;
    }
    .first__limit{
        right: 30px;
        top: 45px;
        width: 35%;
    }
    .first__chocolate{
        width: 95%;
        top: 120px;
    }
    .first__subheading, .first__submessage{
    }
}
/* second */

.block_second {
    background-image: url('../img/second__bg.jpg');
}
.second__text {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px;
    width: 250px;
    height: 145px;
    margin: 15px;
    background-image: url('../img/second__text.png');
    background-repeat: no-repeat;
}
.second__photo {
    position: absolute;
    right: 20px;
    top: 10px;
}
@media (max-width: 460px){
    .second__photo{
        display: none;
    }
    .second__text{
        margin-left: auto;
        margin-right: auto;
    }
}
/*third*/

.block_third {
    background-color: #82b15c;
    text-align: center;
}
.block_border-green {
    border: 5px solid #82b15c;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.block_small {
    width: 220px;
    height: 140px;
}
.counter {
    background-color: #fff;
    width: 180px;
    height: 80px;
    margin: 15px auto;
    border-radius: 3px;
}
.counter__heading {
    font-weight: 700;
    border-bottom: 1px solid #82b15c;
    padding: 1px 0;
}
.counter__body {
    padding: 6px 0;
}
.counter__number {
    font-weight: 700;
    font-size: 3em;
    display: inline-block;
    width: 25px;
    height: 38px;
    line-height: 35px;
    background-color: #82b15c;
    border-radius: 3px;
    margin: 1px;
}
.third__text {
    font-weight: 400;
    font-size: 1.1em;
}
.block_iconed {
    text-align: center;
    background-color: #fff;
}
.iconed__text {
    font-size: 1.8em;
    color: #5a8341;
}
.iconed__link {
    font-weight: 800;
    text-decoration: underline;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.iconed__link:hover {
    color: #d70021;
}
.iconed__link_newline {
    display: block;
}
/*fourth*/

.block_fourth {
    background-image: url('../img/fourth__bg.jpg');
}
.fourth__box {
    position: absolute;
    top: 40px;
    left: 0;
}
.fourth__text {
    width: 210px;
    float: right;
    font-weight: 400;
    margin: 25px 30px;
    font-size: 2em;
}
.fourth__heading {
    display: block;
    font-weight: 800;
    font-size: 1.25em;
}
.fourth__arrow {
    position: absolute;
    right: 90px;
    bottom: 45px;
}
@media (max-width: 460px){
    .fourth__box{
        width: 50%;
        top: auto;
        bottom: 10px;
    }
    .fourth__text {
        margin: 10px;
        text-align: center;
        width: auto;
            -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    float: none;
    font-size: 1.8em;
    }
    .fourth__arrow{
        right: 50px;
        bottom: 90px;

    }
}
/*register*/

.register {
    position: relative;
    background-color: #fff;
    padding: 15px 15px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.register_done {
    background-color: #82b15c;
}
/*
.register .register__thanks {
    display: none;
}
.register_done .register__form {
    display: none;
}*/

.register__heading {
    color: #5a8341;
    font-size: 2em;
    text-align: center;
}
.register__input {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.4em;
    color: #6d9a4e;
    padding: 7px 10px;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #c1c1c1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
@media (max-width: 460px) {
    .register__input,.register__select-wrap{
        width: 100%;
        display: block;
        float: none;
        margin: 10px 0;
    }
    .register__fieldset{
        margin: 0 auto;
        width: 100%;
        overflow: hidden;
    }
    .register__left{
        float: none;
    }
    .register__right{
        float: none;
    }
    .register__path{
        display: none;
    }
    .register__button{
        display: block;
        margin: 10px auto;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
}
@media (min-width: 460px) {
    .register__input,.register__select-wrap {
        width: 200px;
        display: inline-block;
    }
    .register__left {
        float: left;
    }
    .register__right {
        float: right;
    }
    .register__fieldset {
        margin: 10px 0;
        overflow: hidden;
    }
    .register__button{
        display: inline-block;
    }
}
@media (min-width: 940px) {
    .register__input,.register__select-wrap {
        width: 200px;
        display: inline-block;
    }
    .register__left {
        float: left;
    }
    .register__right {
        float: right;
    }
    .register__fieldset {
        margin: 10px 0;
        overflow: hidden;
    }
    .register__button{
        display: inline-block;
    }
}
.register__input:focus {
    outline: 0;
    border-color: #5a8341;
}
.register__select-wrap{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 1.4em;
    color: #6d9a4e;
    overflow: hidden;
    border-radius: 3px;
    border: 1px solid #c1c1c1;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.register__select {
    padding: 0 6px;
    height: 33px;
    width: 100%;
    border: 0;
    outline: 0;
}
.register__select option span {
    display: block;
    text-align: center;
}


.register__input > option {} .register__path {
    width: 300px;
}
.register__button {
    padding: 8px 15px;
    text-align: center;
    color: #fff;
    border-radius: 3px;
    background-color: #80ae5a;
    font-size: 1.4em;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.register__button:hover {
    background-color: #579E1D;
}
.register__file {
    display: none;
}
.register__checkbox {
    display: none;
}
.register__checkbox+label {
    cursor: pointer;
    color: #858585;
    font-size: 1.2em;
}
.register__checkbox+label a {
    text-decoration: underline;
    color: #80ae5a;
}
.register__checkbox+label:before {
    vertical-align: middle;
    content: '';
    margin-right: 5px;
    display: inline-block;
    float: left;
    width: 20px;
    height: 20px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/unchecked.png');
    font-size: 1.2em;
}
.register__checkbox:checked+label:before {
    background-image: url('../img/checked.png');
}
.register__submit {
    padding: 10px 45px;
    font-size: 2em;
    border-radius: 3px;
    border: 1px solid #af5967;
    background-color: #d70021;
    font-weight: 400;
    display: block;
    margin: 10px auto;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.register__submit:hover {
    background-color: #FC0027;
}
/*share*/

.share {} .register__thanks {
    position: absolute;
    top: 15px;
}
.register__photo {
    width: 220px;
    height: 200px;
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../img/register__photo.png');
    display: inline-block;
    vertical-align: middle;
}
.register__photo-content {
    width: 170px;
    height: 170px;
    overflow: hidden;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center;
    position: relative;
    top: 15px;
    left: 25px;
}
.share {
    width: 185px;
    display: inline-block;
    vertical-align: middle;
}
.share__heading {
    padding-left: 10px;
    text-shadow: 1.172px 2.762px 0px rgba( 5, 58, 60, 0.4);
}
.share__subheading {
    padding-left: 10px;
    margin-bottom: 10px;
}
.share__link {
    display: inline-block;
    width: 46px;
    height: 46px;
    margin-right: 10px;
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
}
.share__vk {
    background-image: url('../img/share__vk.png');
}
.share__fb {
    background-image: url('../img/share__fb.png');
}
.share__mail {
    background-image: url('../img/share__mail.png');
}
.share > script {} .c_white {} .share42init {
    margin-top: 10px;
    margin-bottom: 10px;
}
/*fifth*/

.block_fifth {
    background-color: #82b15c;
}
.fifth__heading {
    font-size: 2em;
    text-align: center;
    padding: 15px 0 10px;
}
.fifth__item {
    width: 220px;
    height: 140px;
    border: 4px solid #fff;
    overflow: hidden;
    display: inline-block;
    margin: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.fifth__item img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.fifth__item:hover img {
    transform: scale(1.2);
}
.fifth__list {
    text-align: center;
    margin: 0 auto;
    overflow: hidden;
}
.fifth__button {
    padding: 10px 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 160px;
    text-align: center;
    border-radius: 3px;
    background-color: #f8e824;
    color: #486c2a;
    font-weight: 300;
    font-size: 1.4em;
    display: block;
    margin: 10px auto 20px;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.fifth__button:hover {
    background-color: #FFFC00;
}
/*icons*/

.icon {
    height: 70px;
    display: block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-position: center;
}
.icon_rules {
    background-image: url('../img/icon-rules.png');
}
.icon_winners {
    background-image: url('../img/icon-winners.png');
}
.icon_faq {
    background-image: url('../img/icon-faq.png');
}
/*footer*/

footer {
    height: 60px;
    text-align: center;
    font-size: 1.8em;
    line-height: 40px;
}
/*rules*/


@media (max-width: 460px) {
    .rules {
        margin: 10px 0;
        padding: 15px;
        background-color: #fff;
    }
}
@media (min-width: 460px) {
    .rules {
        margin: 15px 0;
        padding: 20px;
        background-color: #fff;
    }
}
@media (min-width: 940px) {
    .rules {
        margin: 20px 0;
        padding: 35px;
        background-color: #fff;
    }
}
.rules h2, .rules h3, .rules h4 {
    text-transform: uppercase;
    font-size: 1.8em;
    font-weight: 800;
    font-style: italic;
}
.rules h2 {
    color: #d70021;
}
.rules h3 {
    color: #4d752d;
}
.rules h4 {
    text-align: center;
}
.rules a {
    color: #32cba9;
    text-decoration: underline;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.rules a:hover {
    color: #d70021;
}
.rules p {
    color: #444;
    font-weight: 700;
    font-size: 1.4em;
    margin: 15px 0;
}
.rules p sub {
    font-size: 1em;
    display: block;
    padding-left: 1.5em;
    font-weight: 600;
    margin: 10px 0;
}
/*gallery*/

.gallery {
    margin: 20px 0;
    text-align: center;
}
.gallery h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 2em;
    font-weight: 800;
    font-style: italic;
}
.gallery__item {
    width: 220px;
    height: 140px;
    border: 4px solid #fff;
    overflow: hidden;
    display: inline-block;
    margin: 5px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.gallery__item img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.gallery__item:hover img {
    transform: scale(1.2);
}
.gallery__list {
    margin: 0 auto;
    overflow: hidden;
}
/*winners*/

.winners {
    margin: 20px 0;
    text-align: center;
    overflow: hidden;
}
.winners h1 {
    color: #fff;
    text-transform: uppercase;
    font-size: 2em;
    font-weight: 800;
    font-style: italic;
}
.winners h3, .winners h4 {
    font-weight: 400;
    font-size: 1.9em;
}
.winners h3 {
    color: #fff;
}
.winners h4 {
    color: #2c0007;
}
.winners__item {
    margin: 7px 5px;
    display: inline-block;
}
.winners__img {
    width: 285px;
    height: 245px;
    overflow: hidden;
    border-bottom: 5px solid #fff;
}
.winners__img img {
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}
.winners__img:hover img {
    transform: scale(1.15);
}
.winners__badge {
    width: 80px;
    height: 100px;
    text-align: center;
    line-height: 100px;
    border-right: 5px solid #fff;
    vertical-align: middle;
    display: inline-block;
}
.winners__badge img {
    vertical-align: middle;
}
.winners__bottom {
    text-align: left;
    overflow: hidden;
    background-color: #af011c;
}
.winners__info {
    display: inline-block;
    vertical-align: middle;
    padding-left: 20px;
}

#agreement {

}