.cover1 {
    padding-top: 6vw;
    padding-bottom: 11vw;
    display: flex;
    justify-content: space-between;
    overflow: hidden;
    padding-right: 2px;
    max-width: 1728px;
    margin: auto;
}

.cover1__event {
    flex-grow: 1;
    padding-left: 164px;
}

.cover1__title {
    font-size: 60px;
    line-height: 70px;
    font-family: 'Roboto Condensed', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    position: relative;
}

.cover1__title::before {
    content: "";
    display: block;
    width: 144px;
    height: 9px;
    background: #0066B5;
    position: absolute;
    left: -164px;
    top: 30px;
}

.cover1__date {
    font-size: 26px;
    line-height: 34px;
    opacity: .76;
    font-weight: bold;
    margin-top: 90px;
}

.cover1__date::before {
    content: "";
    display: block;
    width: 31px;
    height: 26px;
    background: url("calendar.png") no-repeat center center;
    float: left;
    margin-right: 17px;
    position: relative;
    top: 4px;
}

.cover1__countdown {
    width: 385px;
    flex-shrink: 0;
}

.cover1__countdown-title {
    font-size: 32px;
    line-height: 43px;
    font-family: 'Roboto Condensed', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: bold;
    margin-bottom: 11px;
}

.cover1__action-box {
    display: flex;
    justify-content: space-between;
}

.cover1__action-button {
    font-size: 14px;
    line-height: 16px;
    text-decoration: none;
    border: solid #0066B5 1px;
    padding: 16px 26px;
    white-space: nowrap;
    font-family: 'Raleway', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 500;
    display: inline-block;
    color: #0066B5;
    width: 100%;
    text-align: center;
}

.cover1__action-button_half {
    width: 47%;
}

.cover1__action-button_primary {
    color: #ffffff;
    background: #0066B5;
    transition: background-color 200ms linear;
}

.cover1__action-button_primary:hover {
    background: #0779D1;
}

.cover1__action-button_primary:active {
    transition: none;
    background: #055DA2;
}

.cover1__action-button_disabled,
.cover1__action-button_disabled:hover,
.cover1__action-button_disabled:active {
	background-color: #707070;
	border-color: #272424;
	color: #ababab;
}

.cover1__counter {
	display: flex;
	justify-content: space-between;
    margin-bottom: 21px;
}

.cover1__counter-section+.cover1__counter-section {
    margin-left: 7px;
}

.cover1__counter-section {
    font-size: 59px;
	line-height: 75px;
	min-width: 124px;
	text-align: center;
    font-weight: 900;
    padding: 22px 27px 30px;
    border: solid #403636 1px;
    position: relative;
}

.cover1__counter-section-label {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: calc(100% - 64px);
    font-size: 10px;
    line-height: 11px;
    text-align: center;
    font-family: 'Raleway', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: normal;
    text-transform: uppercase;
    background: #ffffff;
    margin-left: 32px;
    margin-right: 32px;
}

@media screen and (max-width: 1920px) {
    .cover1 {
        max-width: 90vw;
        min-width: 290px;
    }
}

@media screen and (max-width: 1450px) {
    .cover1__event {
        padding-left: 0;
    }
    .cover1__title::before {
        left: 0;
        top: auto;
        bottom: -20px;
    }
}

@media screen and (max-width: 1280px) {
    .cover1 {
        display: block;
        padding-bottom: 46px;
    }
    .cover1__title {
        font-size: 50px;
        line-height: 70px;
    }
    .cover1__date {
        margin-top: 32px;
    }
    .cover1__countdown {
        display: flex;
        align-items: center;
    }
    .cover1__countdown-title {
        min-width: 336px;
    }
    .cover1__event {
        margin-bottom: 51px;
    }
}

@media screen and (max-width: 1024px) {
    .cover1__event {
        margin-bottom: 51px;
    }
}

@media screen and (max-width: 960px) {
    .cover1__title {
        font-size: 24px;
        line-height: 30px;
    }
    .cover1__date {
        font-size: 18px;
        line-height: 24px;
    }
    .cover1__date::before {
        top: 0;
    }
    .cover1__countdown-title {
        font-size: 20px;
        line-height: 26px;
        min-width: auto;
    }
    .cover1__countdown {
        display: block;
        width: 100%;
	}
	.cover1__counter {
		justify-content: flex-start;
	}
    .cover1__counter-section {
        font-size: 28px;
		line-height: 36px;
		min-width: 64px;
        padding: 13px 16px 18px;
    }
    .cover1__counter-section+.cover1__counter-section {
        margin-left: 4px;
    }
    .cover1__counter-section-label {
        width: calc(100% - 22px);
        margin-left: 11px;
        margin-right: 11px;
    }
    .cover1__event {
        margin-bottom: 23px;
    }
    .cover1__action-button {
        white-space: normal;
        max-width: 380px;
        width: 100%;
    }
}

.cover1_eff1 .cover1__event,
.cover1_eff1 .cover1__countdown {
    opacity: 0;
    position: relative;
    top: 30px;
    animation: show .2s 1 linear;
    animation-fill-mode: forwards;
    animation-delay: .3s;
}

@keyframes show {
    100% {
        opacity: 1;
        top: 0;
    }
}

.countdown-time {
    display: inline-block;
}