@font-face {
	font-family:'Roboto';
	src:url('../fonts/Roboto-Regular.eot');
	src:url('../fonts/Roboto-Regular.woff2') format('woff2'),
		url('../fonts/Roboto-Regular.woff') format('woff'),
		url('../fonts/Roboto-Regular.ttf') format('truetype'),
		url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg'),
		url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype');
	font-weight:normal;
	font-style:normal;
}

@font-face {
	font-family:'Roboto';
	src:url('../fonts/Roboto-Medium.eot');
	src:url('../fonts/Roboto-Medium.woff2') format('woff2'),
		url('../fonts/Roboto-Medium.woff') format('woff'),
		url('../fonts/Roboto-Medium.ttf') format('truetype'),
		url('../fonts/Roboto-Medium.svg#Roboto-Medium') format('svg'),
		url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype');
	font-weight:500;
	font-style:normal;
}

@font-face {
	font-family:'Roboto';
	src:url('../fonts/Roboto-Bold.eot');
	src:url('../fonts/Roboto-Bold.woff2') format('woff2'),
		url('../fonts/Roboto-Bold.woff') format('woff'),
		url('../fonts/Roboto-Bold.ttf') format('truetype'),
		url('../fonts/Roboto-Bold.svg#Roboto-Bold') format('svg'),
		url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype');
	font-weight:bold;
	font-style:normal;
}

*{
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
    -webkit-tap-highlight-color: transparent !important;
}

html{
    height: 100%;
}

body{
    margin: 0;
    padding: 0;
    font-size: 18px; 
    line-height: 22px;
    background: #ffffff;
    color: #000000;
    min-width: 360px;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

a{
    color: inherit;
    text-decoration: none;
}

a img{
    border: none;
}

img{
    display: block;
    max-width: 100%;
    height: auto;
}

svg{
    display: block;
}

ul{
    list-style-position: outside;
}

ol{
    list-style-position: outside;
}

h1, h2, h3, h4, h5, h6{
    font-weight: normal;
    line-height: normal;
}

h1 {
    width: calc(100% - 86px);
    font-size: 80px;
    font-weight: 500;
    line-height: 60px;
}

.c_red{
    color: #ff0000;
}

.nowrap{
    white-space: nowrap;
}

.container{
    width: 1250px;
    max-width: 100%;
    position: relative;
    margin: 0 auto;
    padding: 0 15px;
}

.desktop,
.android,
.ios{
    display: none;
}

.system_desktop .desktop{
    display: block;
}

.system_android .android{
    display: block;
}

.system_ios .ios{
    display: block;
}

.main{
    flex-grow: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.header_main{
    width: 100%;
    background-color: #f3db13;
    padding-top: 50px;
    padding-bottom: 45px;
    flex-shrink: 0;
}

.head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.promo{
    width: 100%;
    max-width: 700px;
    text-transform: uppercase;
    font-size: 25px;
    line-height: 36px;
    font-weight: 600;
    margin-top: 24px;
}

.content{
    flex-grow: 1;
    width: 100%;
    padding-top: 70px;
    padding-bottom: 32px;
    position: relative;
    z-index: 1;
}

.content p {
    margin-bottom: 24px;
}

.content p:last-child{
    margin-bottom: 0;
}

.txt_block{
    max-width: 520px;
}

.txt_block ul {
    margin-left: 24px; 
    margin-bottom: 24px; 
}

.txt_block a {
    color: #2e62e9;
}

.txt_block a:hover {
    text-decoration: underline;
}

.txt_block p + ul {
    margin-top: -16px;
}

.img{
    max-width: 507px;
    position: absolute;
    left: 650px;
    top: -267px;
}

.img_main.desktop {
    max-width: 420px;
    max-height: 700px;
    margin-top: 35px;
}

.btns{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 32px;
}

.footer_main{
    flex-shrink: 0;
    width: 100%;
    min-height: 80px;
    margin-top: auto;
    background-color: #181C1F;
    padding-top: 15px;
    padding-bottom: 15px;
    position: relative;
    z-index: 2;
}

.footer_main .container{    
    display: flex;
    align-items: center;
    justify-content: center;
}

.system_desktop .footer_main{
    min-height: 50px;
    background-color: #f3db13;
}

@media (max-width: 1200px) {
    .img {
        left: 560px;
        max-width: 450px;
        top: -190px;
    }  
}

@media (max-width: 1100px) {
    .img {
        top: -190px;
    }   
}

@media (max-width: 1000px) {
    .img {
        left: auto;
        right: 0;
        max-width: 400px;
        top: -120px;
    }   
    
    .txt_block {
        max-width: 400px;
    }
}

@media (max-width: 800px) {    
    .txt_block {
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .page_apps .img{
        position: static;
        display: flex;
        justify-content: center;
        max-width: none;
        margin-top: 32px;
    }

    .page_apps .txt_block{
        max-width: none;
    }
}

@media (max-width: 576px) {
    body{
        font-size: 14px;
        line-height: 18px;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }   

    h1{
        font-size: 44px;
        line-height: 33px;
    } 

    .header_main{
        padding-top: 24px;
        padding-bottom: 16px;
    }

    .promo {
        font-size: 16px;
        line-height: 24px;
        margin-top: 8px;
        max-width: 455px;
    }

    .content {
        padding-top: 32px;
    }

    .txt_block {
        max-width: 256px;
    }

    .img {
        max-width: 240px;
        display: flex;
        justify-content: center;
        margin: auto;
        left: 0;
        right: 0;
        top: 100%;
    }
}