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


: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;
}

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



@font-face{
font-family: "Lucida Grande", sans-serif;
font-style: normal;
font-weight: 400;
src: url('./fonts/lucidagrande.ttf'); 
}

@font-face{
font-family: "Lucida Grande", sans-serif;
font-style: normal;
font-weight: 600;
src: url('./fonts/lucidagrande_bold.ttf'); 
}



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


body{
font-family: "Lucida Grande", sans-serif;
background: #141414;
color: #eaeaea;
}


a{
    font-weight: 500;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(85.51deg, #03E903 -25.07%, #01BFC5 58.03%, #00B2FF 105.71%);
    transform: all 1s;
}

a:hover{
    color: #2B4B54;
}

h1, h2, h3, h4, h5, p{
font-weight: 400;
color: #eaeaea;
font-family: "Lucida Grande", sans-serif;
}

h1{
font-size: 48px;
font-weight: 600;
line-height: 120%;
}

h2{
font-size: 36px;
font-weight: 600;
line-height: 120%;
margin-bottom: 20px;
}

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


h4{
font-size: 20px;
line-height: 120%;
}

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

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



::-webkit-scrollbar{
    height: 4px;
    width: 9px;
}

::-webkit-scrollbar-track{
background: #f0f0f0;
border-radius: 0px;
}
::-webkit-scrollbar-track piece{
    background: #e3e3e3;
}

::-webkit-scrollbar-thumb{
    background: linear-gradient(85.51deg, #03E903 -25.07%, #01BFC5 58.03%, #00B2FF 105.71%);
    border-radius: 0px;
}

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

.main_block {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 692px;
    background-image: url(./img/bg.png);
    background-size: 100%;
    background-repeat: no-repeat;
    margin-top: 50px;
    align-items: center;
}

.main_block h2{
    text-align: center;
    line-height: 100%;
}

.main_block span {
    font-size: 20px;
    font-family: "Lucida Grande", sans-serif;
    font-weight: 400;
}

.main_block h4 {
    text-align: center;
    font-size: 18px;
    max-width: 450px;
}

#logo {
    width: 158px;
    height: 35px;
    margin-bottom: 30px;
}

.card_row {
    margin-top: 50px;
    display: flex;
    width: 100%;
    max-width: 800px;
    flex-direction: row;
    justify-content: space-between;
}

.card_block {
    width: 240px;
    height: 290px;
    background: linear-gradient(178deg, #1E85FF 0.86%, #125099 97.76%);
    border-radius: 45px;
    opacity: 0.9;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.animation_card{
    -webkit-animation: animation_card 1.5s ease;
    animation: animation_card 1.5s ease;
    -webkit-animation-iteration-count: 2;
    animation-iteration-count: 2;
}

.card_block img {
    width: 90px;
    height: auto;
    margin-bottom: 10px;
}

.card_block h3{
    font-size: 16px;
    text-align: center;
}

#vbucks {
    width: 190px;
    height: 114px;
    margin-top: 20px;
}

.btn {
    display: flex;
    width: 100%;
    position: absolute;
    bottom: 0px;
    height: 55px;
    border-bottom-left-radius: 45px;
    border-bottom-right-radius: 45px;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    cursor: pointer;
    background: linear-gradient(88.21deg, #12DE4B 0.86%, #02ADEE 97.76%);
    color: #f2f2f2;
    font-size: 16px;
    transition: 1s ease-in;
    justify-content: center;
    align-items: center;
}

.btn:hover{
    color: #141414;
}

.conditions {
    color: #777792;
    font-size: 12px;
    position: absolute;
    line-height: 140%;
    bottom: -65px;
    font-weight: 500;
    text-align: center;
}

@-webkit-keyframes animation_card {
  15% {
    -webkit-transform: translateX(9px);
    transform: translateX(9px);
  }
  30% {
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
  }
  40% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  65% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes animation_card {
  15% {
    -webkit-transform: translateX(9px);
    transform: translateX(9px);
  }
  30% {
    -webkit-transform: translateX(-9px);
    transform: translateX(-9px);
  }
  40% {
    -webkit-transform: translateX(6px);
    transform: translateX(6px);
  }
  50% {
    -webkit-transform: translateX(-6px);
    transform: translateX(-6px);
  }
  65% {
    -webkit-transform: translateX(3px);
    transform: translateX(3px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.black {
    background: #1A2129;
    opacity: 0.8;
    color: #0c0c0c;
    font-size: 275px;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: none;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 20px;
}

footer h4{
    font-size: 14px;
    color: #777792;
    text-align: center;
    line-height: 140%;
}

footer span {
    font-weight: 500;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    background-image: linear-gradient(85.51deg, #03E903 -25.07%, #01BFC5 58.03%, #00B2FF 105.71%);
}

@media (max-width: 1200px){

.container{
width: 938px;
margin: 0px auto;
padding: 0px 15px;
}





@media (max-width: 990px){

.container{
    width: 100%;
    margin: 0px auto;
    padding: 0px 15px;
}

.black{
    display: none;
}    





@media (max-width: 550px){

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

.main_block {
    height: 100%;
}

.card_row {
    flex-direction: column;
    align-items: center;
    margin-top: 0px;
}

.card_block {
    width: 100%;
    max-width: 300px;
    height: 340px;
    margin: 50px 0px;
}

.card_block img {
    width: 110px;
    height: 37px;
    margin-bottom: 10px;
}

#vbucks {
    width: 240px;
    height: auto;
    margin-top: 20px;
}

footer {
    margin-top: 50px;
}




}











































