/* font-family: 'Cormorant Unicase', serif;
font-family: 'Roboto', sans-serif; */

*{
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 16px;
}

.white-row {
    width: 200px;
    height: 5px;
    background-color: #fff;
    margin: 20px auto;
}

.white-row--info-block {
    width: 5px;
    height: 400px;
    margin: 0;
    position: absolute;
    top: 50px;
    right: 2px;
}

.main-bg{
    background-image: url("../img/bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    min-height: 100vh;
    overflow: hidden;
}
.wrapper {
    width: 1600px;
    margin: 0 auto;
}

/* .main__title-wrapper {
    margin: 55px auto;
} */

.header__wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header {
    padding-top: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid #fff;
}

.logo {
    display: block;
    width: 246px;
    display: flex;
    justify-content: space-between;
    font-weight: 300;
    font-size: 16px;
    line-height: 123%;
    color: #000000;
    align-items: center;
    text-decoration: none;
}

.logo__img {
    margin-right: 30px;
}

.logo__desc {
    font-family: 'Playfair Display', serif;
    font-weight: 300;
    font-size: 16px;
    line-height: 123%;
    color: #000000;
}

.socials {
    text-align: center;
    width: 200px;
    display: flex;
    justify-content: space-between;
}

.socials__link {
    display: block;
    width: 45px;
    height: 45px;
    font-size: 28px;
    color: #757582;
    background-color: #FBECCD;
    border-radius: 50%;
    padding: 8px;
    transition: .3s;
}

.socials__link:hover {
    background-color: #f7da9e;
}

/* MAIN */

.main__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.main__title-wrap {
    text-align: center;
    max-width: 600px;
    margin: 60px auto;
    margin-bottom: 0;
}
.main__title {
    font-size: 40px;
    line-height: 50px;
    color: #2F313C;
    text-align: center;
    margin-top: 30px;
    margin-bottom: 0;
}

.main__title-date {
    color: tomato;
}

.main__desc {
    font-size: 28px;
    line-height: 30px;
    color: #000000;
    margin-bottom: 10px;
    color: #757582;
    text-align: center;
}

.video-block {
    width: 400px;
    overflow: hidden;
}

.video-block__img-wrap {
    position: relative;
    margin-bottom: 20px;
}

.video-block__desc {
    background-color: #a9dbde;
    padding: 10px;
    border-radius: 5px;
    font-size: 18px;
}

.video-block__img {
    width: 320px;
}

.video-block__img-smoke {
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    border-radius: 50%;
}



.play-btn {
    color: #000;
    margin: 0 auto;
    border: none;
    background-color: transparent;
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: .3s;
    border-radius: 5px;
}

.play-btn i{
    transition: .3s;
}

.play-btn:hover {
    background-color: #f7da9e;
}


.play-btn i{
    margin-right: 14px;
    font-size: 35px;
}

/* INFOBLOCK */
.info-block__left-side {
    position: relative;
}
.info-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 44%;
    position: relative;
}

.present {
    position: absolute;
    bottom: -120px;
    left: 0;
    display: flex;
    align-items: center;
    max-width: 820px;
    font-size: 40px;
    color: tomato;
}

.present__slogan {
    font-size: 18px;
    margin-left: 20px;
}

.info-block__item {
    display: flex;
    width: 320px;
    align-items: center;
    margin-bottom: 30px;
    min-height: 75px;
    margin-bottom: 0;
}

.info-block__img {
    background-color: #FBECCD;
    border-radius: 50%;
    text-align: center;
    overflow: hidden;
    width: 50px;
    height: 50px;
    line-height: 50px;
    color: #0c0c0c;
    font-weight: bold;
    margin-right: 30px;
}

.info-block__desc {
    width: 200px;
}

/* FORM */
.form-block {
    position: relative;
}

.form {
    width: 400px;
    padding: 30px;
    border-radius: 5px;
    background-color: #fff;
    box-shadow: 3px 3px 60px #FBECCD;
}

.form-block__timer {
    height: 232px;
    width: 400px;
    background-color: #FBECCD;
    border-radius: 5px;
    color: #2F313C;
    position: absolute;
    top: -260px;
    left: 0;
    padding: 10px;
}

.form__title {
    font-family: 'Cormorant Unicase', serif;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}

.form__input {
    padding: 14px 10px;
    margin-bottom: 8px;
    width: 100%;
    border: 1px solid #757582;
}

.form__agre {
    font-size: 12px;
    margin-bottom: 40px;
}

.form__btn {
    background: #FBECCD;
    border-radius: 5px;
    text-align: center;
    text-transform: uppercase;
    border: none;
    padding: 14px 24px;
    cursor: pointer;
    transition: .3s;
}

.form__btn:hover {
    background: #f7da9e;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #141414d2;
}

.form-block__title {
    text-align: center;
    margin-bottom: 30px;
}

.form-block__wrapper{
    max-width: 280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.form-block__num {
    font-size: 60px;
    display: block;
}

.form-block__days {
    text-align: center;
}

.form-block__item {
    text-align: center;
}

.form-block__separator {
    font-size: 40px;
    margin-top: -20px;
}

.form-block__separator--last {
    display: none;
}

.form-block__item--seconds {
    display: none;
}

.form__error-msg {
    /* display: none; */
    opacity: 0;
    margin-bottom: 10px;
    font-size: 10px;
    color: tomato;
}

/* --------------------MODAL-------------------- */
.modal-wrapper {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(251, 236, 205, .68);
    z-index: 10;
}

.modal-window {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50%;
    transform: translate(-50%, -50%);
}

.modal-window video {
    width: 100%;
}

.video-close {
    border: none;
    background-color: transparent;
    font-size: 40px;
    cursor: pointer;
    border-radius: 50%;
    transition: .3s;
    width: 50px;
    height: 50px;
    text-align: center;
    position: absolute;
    top: -52px;
    right: 0;
    z-index: 20;
}

.video-close:hover {
    background-color: #f7da9e;
    transition: .3s;
    color: #fff;
}
/* ////////////////////MODAL-------------------- */
