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;
    vertical-align: baseline;
    font-family: sans-serif;
}

html {
    box-sizing: border-box;
    height: 100%;
    scroll-behavior: smooth;
    margin: 0 !important;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

*,
*:before,
*:after {
    box-sizing: inherit;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
}

ul,
ol,
li {
    list-style: none;
}

.header {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    background: white;
    width: 100%;
}

.header__container {
    padding: 15px 25px;
}

.header__content {
    width: 100%;
    text-align: center;
}

.header__logo {
    width: 120px;
    height: 26px;
}

.header__log img {}

.body {
    width: 100%;
    height: 100vh;
    min-height: 640px;
    position: absolute;
    top: 0;
    left: 0;
    background-image: url('dronemobile-background.jpg');
    background-size: cover;
    background-position: 50% 50%;
    z-index: 0;
}

.body__container {
    width: 100%;
    height: 100%;
    padding: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.body__content {
    color: white;
    text-align: center;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

h1 {
    font-size: 60px;
    font-weight: 500;
}

.body__text-content {
    margin-bottom: 45px;
}

.body__action-item {
    margin-bottom: 15px;
}

.button {
    position: relative;
    -webkit-appearance: none;
    appearance: none;
    display: inline-block;
    max-width: 100%;
    font-size: 15px;
    font-weight: 700;
    line-height: 16px;
    padding: 15px 15px;
    transition: all 300ms;
    border: none;
    outline: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    background: #00ac69;
    color: white;
    width: 266px;
}

.button:hover {
    background: #008556;
    cursor: pointer;
}

.button span{
    position: absolute;
    left: 12px;
}
@media screen and (max-width: 640px) {
    .body {
        background-image: url('dronemobile-background-mobile.jpg');

    }
    h1{
        font-size: 43px;
    }
    h2{
        font-size: 16px;
    }
}