@font-face {
    font-family: "Ghotam Pro Bold";
    src: url("../fonts/gotham-pro-bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
}
@font-face {
    font-family: "Lato Medium";
    src: url("../fonts/lato-medium.ttf") format("truetype");
    font-style: normal;
    font-weight: 500;
}
body {
    margin: 0;
    height: 100vh;
}
section {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: url(../img/bg.jpg) no-repeat center center;
    -webkit-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
}
.title {
    margin-top: 40px;
    margin-bottom: 100px;
}
.title p {
    font-family: 'Ghotam Pro Bold';
    text-align: center;
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 14px;
    color: #2A3042;
    text-transform: uppercase;
}
.timer {
    text-align: center;
}
.text-1 {
    margin-top: 0;
    font-family: 'Lato Medium';
    font-size: 20px;
    color: #fff;
    margin-bottom: 30px;
}
.timer-inner {
    background: #293249b8;
    border: 1px solid #2A3042;
    padding: 65px 55px 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #fff;
    font-size: 36px;
    font-family: 'Ghotam Pro Bold';
    width: 500px;
}
span {
	position: relative;
    width: 50px;
}
#span-1:before {
	content: 'Дней';
    font-family: 'Lato Medium';
    font-size: 14px;
    color: #FFF;
    position: absolute;
    top: -25px;
    left: 8px;
}
#span-2:before {
	content: 'Часов';
    font-family: 'Lato Medium';
    font-size: 14px;
    color: #FFF;
    position: absolute;
    top: -25px;
    left: 7px;
}
#span-3:before {
	content: 'Минут';
    font-family: 'Lato Medium';
    font-size: 14px;
    color: #FFF;
    position: absolute;
    top: -25px;
    left: 4px;
}
#span-4:before {
	content: 'Секунд';
    font-family: 'Lato Medium';
    font-size: 14px;
    color: #FFF;
    position: absolute;
    top: -25px;
    left: 1px;
}
.text-2 {
    margin-top: 30px;
    font-family: 'Lato Medium';
    font-size: 20px;
    color: #fff;
    margin-bottom: 0;
}
@media(max-width: 767px) {
    section {
        padding: 0 20px;
    }
    .title {
        margin-bottom: 70px;
    }
    .title p {
        font-size: 18px;
    }
    .timer {
        width: 100%;
    }
    .timer-inner {
        padding: 45px 20px 20px;
        font-size: 28px;
        width: auto;
    }
}