@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
    font-family: 'Roboto', sans-serif;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

.wrapper{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url(img/main_bg.png) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wrapper .width-block{
    width: 722px;
}

.wrapper .info-block{
    background: radial-gradient(105.45% 108.87% at 4.66% 0.01%, #0089FF 0%, rgba(10, 135, 206, 0.38) 100%);
    border-radius: 20px;
    padding: 50px 34px;
    margin: 0 15px;
}

.wrapper .info-block .text p{
    text-align: center;
    color: #fff;
    font-weight: 500;
    font-size: 30px;
    line-height: 35px;
}

.wrapper .info-block .link-wrap{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.wrapper .info-block .link-wrap .link{
    margin-left: 42px;
    width: 200px;
    line-height: 44px;
    background: #FF760D;
    border-radius: 8px;
    display: block;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    color: #FFFFFF;
}

@media (max-width: 575.98px) { 

    .wrapper .info-block{
        padding: 20px;
    }

    .wrapper .info-block .text p{
        font-size: 20px;
        line-height: 30px;
    }

    .wrapper .info-block .link-wrap{
        display: block;
    }

    .wrapper .info-block .link-wrap img{
        display: block;
        margin: 0 auto;
    }

    .wrapper .info-block .link-wrap .link{
        margin: 15px auto 0 auto;
    }
}