/* -Шалом- */
*{
	margin: 0;
	padding: 0;
	border: 0;
}


*,*:before, *after{
	-moz-box-sizing; border-box: 
	-webkit-box-sizing: border-box;
	-box-sizing:border-box;
}

:focus, :active{outline: none;}
a:focus, a:active{outline: none;}

nav,footer,header,aside{display: block;}

html,body{
	height: 100%;
	width: 100%;
	font-size: 100%;
	line-height: 1;
	font-size: 14px;
	-ms-text-size-adjust: 100%;
	-moz-text-size-adjust: 100%;
	-webcit-text-size-adjust: 100%;
}

input,button,textarea{font-family: inherit;}

input::-ms-clear{display: none; color: #c7c7c7;}
button{cursor: pointer;}
button::-moz-focus-inner{padding: 0; border: 0;}
a, a:visited{text-decoration: none;}
a:hover{text-decoration: none;}
ul li{list-style: none;}
img{vertical-align: top;}

textarea {
resize: none;
}

/* - Шрифты - */

.inter-<uniquifier> {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

/* - end Шрифты - */


body{
font-family: "Inter", sans-serif;
background: #0a0a0a;
color: #FFF;
}


a{
color: #D9D9D9;
cursor: pointer;
transition: 1s all;
opacity: 0.6;    
}

a:hover{
opacity: 1;
transition: 1s all;   
}

h1, h2, h3, h4, h5, p{
font-weight: 400;
color: #FFF;
}

h1{
font-size: 48px;
font-weight: 500;
line-height: 135%;
margin-bottom: 20px;
}

h2{
font-size: 36px;
font-weight: 600;
line-height: 135%;
}

h3{
font-size: 24px;
line-height: 135%;
}


h4{
font-size: 20px;
line-height: 135%;
opacity: 0.7;
}

h5{
font-size: 14px;
line-height: 135%; 
}

p{
font-size: 16px;
line-height: 135%;  
}

li{
    color: #8C8F99;
    font-size: 20px;
    font-weight: 500;
    margin-right: 50px;
}




.container{
    width: 690px;
    margin: 0px auto;
    padding: 0px 15px;
    box-sizing: border-box;
    position: relative;
}

.text{
    padding-top: 150px;
    width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
}

.text h2{
    margin-bottom: 20px;
}

.window{
    width: 100%;
    height: auto;
    min-height: 420px;
    border: 3px solid #2d2c2c;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.w_border{
    height: 35px;
    border-bottom: 3px solid #2d2c2c;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0px 15px;
}

.w_point{
    width: 12px;
    height: 12px;
    border-radius: 12px;
    background: #373737;
    margin-right: 6px;
}

.w_content{
    width: 100%;
    padding: 20px;
    height: auto;
}

.in_e{
    background-color: transparent;
    caret-color: #00ffcc;
    color: #00ffcc;
    height: 45px;
    min-width: 280px;
}

.in_e:focus {
background-color: transparent;
outline: none;
}

.in_e:-webkit-autofill,
.in_e:-webkit-autofill:hover,
.in_e:-webkit-autofill:focus {
-webkit-box-shadow: 0 0 0 1000px transparent inset;
-webkit-text-fill-color: #ffffff;
transition: background-color 9999s ease-in-out 0s;
}


.w_content h5 {
    font-size: 12px;
    color: #00ffcc;
    animation: softBlink 2s ease-in-out infinite;
}


@keyframes softBlink {
0% {
opacity: 1;
}
33% {
opacity: 0.2;
}
66% {
opacity: 0.6;
}
100% {
opacity: 1;
}
}

.in_e:focus {
border-color: #00ffcc;
}


footer{
    width: 100%;
    background: #0a0a0a;
    min-height: 320px;
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

footer h4{
    font-size: 14px;
    color: #f8f8f8;
    opacity: 0.2;
}


@media (max-width: 990px){

.container{
  width: 100%;
  padding: 0px 20px;
}




}

@media (max-width: 550px){

.container{
  width: 100%;
  padding: 0px 10px;
}














































