* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  background: url('/pereezd/images/main-bg.png') no-repeat center center;
  background-size: cover;
  font-family: sans-serif;
  color: #fff;
}
ul {
  list-style: none;
}
a {
  text-decoration: none;
}
.body-flex {
  display: flex;
  align-items: center;
  padding: 14px 0;
}
.container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 14px;
}
.container--height {
  height: 100%;
}
.filter-wrap {
  padding: 20px;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.8);
}
.title {
  text-transform: uppercase;
  font-size: 18px;
  text-shadow: 0 0 1px rgb(20, 20, 20);
  font-weight: bold;
}
.text-center {
  text-align: center;
}
.text-orange {
  color: #FA7F01;
}
header {
  margin-bottom: 40px;
}
.header__logo {
  max-width: 300px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.main {
  margin-bottom: 40px;
}
.main__content {
  font-size: 18px;
  color: #202124;
}
.main__content p a {
  color: #004a89;
}
.main__timer-title {
  margin-bottom: 15px;
}
.demo {
  max-height: 100%;
}
.footer__socials {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer__socials-item:not(:last-of-type) {
  margin-right: 8px;
}
.footer__socials-item-link {
  display: block;
  width: 40px;
  height: 40px;
}
.footer__socials-item-link svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* timer plugin */
.countdown-container {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	transform: translateY(-50%);
}

.clock-item .inner {
	height: 0px;
	padding-bottom: 100%;
	position: relative;	
	width: 100%;
}
.clock-days,
.clock-hours {
  margin-bottom: 30px;
}
.clock-canvas {
	background-color: rgba(0, 0, 0, 0.2);
	border-radius: 50%;
	height: 0px;
	padding-bottom: 100%;
}
.text {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  font-weight: bold;
  text-shadow: 0px 0px 1px rgba(0, 0, 0, 1);
}
.text p {
  margin-bottom: 0;
}
.text .val {
	font-size: 30px;
}
.text .type-time {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: normal;
}
/* /timer plugin */

@media (min-width: 576px) {
  .title {
    font-size: 24px;
  }
  /* timer plugin */
  .text .val {
    font-size: 70px;
  }
  .text .type-time {
    font-size: 20px;
  }
  /* /timer plugin */
}
@media (min-width: 768px) {
  /* timer plugin */
  .clock-days, .clock-hours {
    margin-bottom: 0;
  }
  .text .val {
    font-size: 45px;
  }
  .text .type-time {
    font-size: 17px;
  }
  /* /timer plugin */
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
    padding: 0 16px;
  }
  /* timer plugin */
  .text .val {
    font-size: 55px;
  }
  /* /timer plugin */
}
@media (min-width: 1200px) {
  header {
    margin-bottom: 70px;
  }
  .main__timer-title {
    margin-bottom: 30px;
  }
  .main {
    margin-bottom: 70px;
  }
  .container {
    max-width: 1168px;
    padding: 0 16px;
  }
  .filter-wrap {
    padding: 20px 40px;
  }
  /* timer plugin */
  .text .val {
    font-size: 70px;
  }
  .text .type-time {
    font-size: 25px;
  }
  /* /timer plugin */
}