/* normalize */

html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

main {
    display: block
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible
}

pre {
    font-family: monospace, monospace;
    font-size: 1em
}

a {
    background-color: transparent
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted
}

b,
strong {
    font-weight: bolder
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em
}

small {
    font-size: 80%
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

img {
    border-style: none
}

/* --------- */




html {
    font-size: 10px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth
}

body {
    max-width: 1200px;
    margin: 0 auto;

    font-size: 16px;
    text-rendering: optimizeLegibility;
    font-family: Inter, sans-serif;
    overflow-x: hidden;

    display: flex;
    flex-direction: column;
    flex: 1 0;

    text-align: center;
    color: #005776;
}

.section__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.section__background-image {
    width: 100%;
    height: 100%;

    opacity: .5;

    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;

    object-fit: contain;
    object-position: bottom right;
}

.section__background-image-2 {
    display: none;
}

.logo {
    margin-top: 70px;
}

.logo img {
    width: 173px;
}

h1 {
    margin: 30px 0;
    font-size: 3.6rem;
}

h3 {
    margin: 0;
    font-size: 2.0rem;
}

.btns {
    margin-top: 18px;
}

.btn {
    display: inline-flex;
    margin: 12px 8px;
    padding: 1.5rem 2rem;
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: 600;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    border: 0;
    outline: 0;
    background: 0 0;
    cursor: pointer;
    transition: color 150ms, background-color 150ms, border-color 150ms, box-shadow 150ms, opacity 150ms;

    color: #fff;
    background-color: #0fafaf;
    border-radius: 8px;
    min-width: 24rem;
}

.btn:focus,
.btn:hover {
    background-color: #0a9797;
}




@media only screen and (min-width: 600px) {

    .section {
        max-width: 600px;
        text-align: left;
        margin-left: 130px;
    }

    .logo {
        margin-top: 125px;
        padding-left: 10px;
    }

    .logo img {
        width: 236px;
    }

    h1 {
        margin: 36px 0 51px;
        font-size: 5.6rem;
        padding-left: 10px;
    }

    h3 {
        padding-left: 10px;
    }

    .btns {
        margin-top: 0px;
    }

    .btn {
        margin: 23px 15px 0 0;
    }
}

@media only screen and (min-width: 1000px) {
    .section__background-image-2 {
        display: flex;

        height: 100%;

        position: absolute;
        top: 0;
        right: 0;
        z-index: -2;

        object-fit: contain;
        object-position: bottom right;
    }
}