* {
	padding: 0px;
	margin: 0px;
	border: none;
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

:focus,
:active {
	/*outline: none;*/
}

a:focus,
a:active {
	/* outline: none;*/
}

/* Links */

a, a:link, a:visited  {
    /* color: inherit; */
    text-decoration: none;
    /* display: inline-block; */
}

a:hover  {
    /* color: inherit; */
    text-decoration: none;
}

/* Common */

aside, nav, footer, header, section, main {
	display: block;
}

h1, h2, h3, h4, h5, h6, p {
    font-size: inherit;
	font-weight: inherit;
}

ul, ul li {
	list-style: none;
}

img {
	vertical-align: top;
}

img, svg {
	max-width: 100%;
	height: auto;
}

address {
  font-style: normal;
}

/* Form */

input, textarea, button, select {
	font-family: inherit;
    font-size: inherit;
    color: inherit;
    background-color: transparent;
}

input::-ms-clear {
	display: none;
}

button, input[type="submit"] {
    display: inline-block;
    box-shadow: none;
    background-color: transparent;
    background: none;
    cursor: pointer;
}

input:focus, input:active,
button:focus, button:active {
    outline: none;
}

button::-moz-focus-inner {
	padding: 0;
	border: 0;
}

label {
	cursor: pointer;
}

legend {
	display: block;
}
body{
background:#014F8A;
font-family: 'Inter', sans-serif;
}
/* --------------------------------------------------------------------------------------------------- */
.wrapper {
    text-align: center;
    padding: 0 15px;
    height: 100vh;
    margin: 0 auto;
    max-width: 820px;
    color: #FFFFFF;
    background: url(../img/bg.png) center no-repeat;
}

.header {
    padding-top: 20px;
}
.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.header__logo {
    background: url(../img/logo.png) left no-repeat;
    font-weight: 400;
font-size: 28px;
line-height: 35px;
padding-left: 40px;
}
.header__box {
    align-items: center;
    display: flex;
    gap: 25px;
}
.header__int {
}
.header__burger {
}
.main {
    padding-top: 80px;
}
.main__img {
    
}
.main__text {
    padding-top: 20px;
}
.main__btn {
    margin-top: 60px;
    background: linear-gradient(90deg, #2598C9 0%, #0CD7FE 131.56%);
border-radius: 15px;
font-weight: 700;
font-size: 28px;
line-height: 34px;
display: inline-flex;
justify-content: center;
align-items: center;
color: #FFFFFF;
width: 300px;
height: 60px;
margin-bottom: 20px;

}
/* ------------------------------------------------------------------- */
@media(max-width:450px) and (orientation: portrait){
    .main__img img{
width: 200px;

    }
    .main__btn{
        width: 100%;
    }
}
@media(max-height:550px) and (orientation: portrait){
    .main {
        padding-top: 20px;
    }
    .main__img img {
        width: 150px;
    }
}
@media(max-height:550px) and (orientation: landscape){
    .main {
        padding-top: 14px;
    }
    .main__btn {
        margin-top: 30px;
    }
    .main__img img{
        width: 200px;
        
            }
}