@font-face{font-family: Oswald; src: url("../fonts/Oswald.ttf");}
*{
	padding: 0;
	margin: 0;
}
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul[class],
ol[class] {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul[class],
ol[class] {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
input {outline:none;}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body{
	width: 100%;
	background: url(../img/bg.png);
	background-size: cover;
	background-attachment: fixed;
}

.container{
	margin: 0 auto;
	width: 70%;
}

.block{
	width: 100%;
	background: rgba(255, 255, 255, 0.1);
	height: 100%;
	z-index: -1;
	position: fixed;
}

.header{
	height: 136px;
	width: 100%;
	display: block;
}

.logo{
	width: 88px;
	height: 88px;
	margin-top: 48px;
	float: left;
	display: block;
}

.arrow{
	width: 42px;
	height: 42px;
	margin-top: 71px;
	float: right;
	display: block;
}
.text{
	font-family: Oswald;
	font-style: normal;
	font-weight: 500;
	font-size: 130px;
	line-height: 150px;
	display: block;
	align-items: center;
	text-transform: uppercase;
	color: #fff;
	margin: 0 auto;
	width: 606px;
	margin-top: 2%;
}

.mhref{
	font-family: Oswald;
	font-style: normal;
	font-weight: 500;
	font-size: 40px;
	line-height: 150px;
	text-decoration: none;
	color: #fff;
}
.mhref_mob{
	font-family: Oswald;
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 30px;
	text-decoration: none;
	color: #fff;
	display: none;
	text-transform: uppercase;
	margin: 34px auto;
}

.blue{
	color: #0029FF;
}

.popup-fade {
	display: none;
}

.popup-fade:before {
	content: '';
	background: #292929;
	position: fixed; 
	left: 0;
	top: 0;
	width: 100%; 
	height: 100%;
	z-index: 9999;
}

.popup {
	position: fixed;
  top: 0%;
  left: 15%;
  width: 70%;
  z-index: 99999;
  opacity: 1;
  margin: 0 auto;
}

.form{
	clear: both;
}

.head_form{
	width: 100%;
	display: block;
	height: 102px;
}

.popup-close {
	float: right;
  margin-top: 30px;
}

.logo_form{
	float: left;
	width: 30%;
}

.order{
	float: left;
	text-align: left;
	margin-left: 10%;
	width: 60%;
}
.order h2{
	font-family: Oswald;
	font-style: normal;
	font-weight: 500;
	font-size: 80px;
	line-height: 150px;
	color: #fff;
	text-transform: uppercase;
	margin-top: -46px;
}
.tags .tag{
	float: left;
	background: #000000;
	padding: 16px;
	color: #FFFFFF;
	font-family: Oswald;
	font-style: normal;
	font-weight: 500;
	font-size: 20px;
	line-height: 28px;
	margin-right: 16px;
	margin-bottom: 16px;
}
.order input[type="text"],.order input[type="tel"]{
	border-bottom: 1px solid #E0E0E0;
	border-top: none;
	border-left: none;
	border-right: none;
	width: 100%;
	margin-top: 32px;
	font-family: Oswald;
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 70px;
	color: #E0E0E0;
	background: none;
	display: block;
}
.check{
	margin-top: 20px;
}

/* прячем input checkbox */
.check input[type="checkbox"] {
  display: none;
}

/* стили для метки */
.check label {
	color: #fff;
  cursor: default;
  display: inline-block;
  position: relative;
  text-align: center;
  text-indent: 0px;
  font-family: Oswald;
	font-style: normal;
	font-weight: 300;
	font-size: 15px;
	text-transform: uppercase;
	vertical-align: top !important;
}

/* формируем внешний вид чекбокса в псевдоэлементе before */
.check label:before {
  content: " ";
  color: #fff;
  display: inline-block;
  position: relative;
  text-align: center;
  text-indent: 0px;
  margin-right: 16px;
	width: 24px;
	height: 24px;
  background: none;
  border: 1px solid #E0E0E0;
  border-image: initial;
  font-family: Oswald;
	font-style: normal;
	font-weight: 300;
	font-size: 15px;
	text-transform: uppercase;
	vertical-align: baseline;
}

/* вариации внешнего вида в зав-ти от статуса checkbox */
/* checked */
.check input:checked + label:before {
  content: "x";
}
/* disabled */
.check input:disabled + label:before {
  background: none;
  color: #fff;
}

.btn{
	background: none;
	padding: 24px;
	border: 2px solid #0029FF;
	font-family: Oswald;
	font-style: normal;
	font-weight: 500;
	font-size: 24px;
	line-height: 20px;
	cursor: pointer;
	margin-top: 40px;
	color: #fff;
}
#message{
	font-family: Oswald;
	font-style: normal;
	font-weight: 500;
	font-size: 40px;
	line-height: 20px;
	color: #fff;
	display: none;
	margin-top: 40px;
}

@media only screen and (max-device-width: 480px) {
	.text{
		margin-top: 45%;
	}
}