@font-face {
    font-family:"Inter";
    src:url("fonts/Inter-Regular.woff2") format("woff2"),url("fonts/Inter-Regular.woff") format("woff");
    font-style:normal;font-weight:400;
    font-display: swap;
}
@font-face {
    font-family:"Inter";
    src:url("fonts/Inter-SemiBold.woff2") format("woff2"),url("fonts/Inter-SemiBold.woff") format("woff");
    font-style:normal;font-weight:600;
    font-display: swap;
}

body, html {
    margin: 0;
}

html {
    font: 400 16px/1.25 "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-text-size-adjust: 100%;
}
*, *:before, *:after {
    box-sizing: border-box;
}

body {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    color: #fff;
    background: #005478 url('img/bg.jpg') center / cover fixed no-repeat;
}

h1 {
    padding: 5vw 0 0;
    margin: auto 0;
}
h1 img {
    display: block;
    width: 75%;
    height: auto;
    max-width: 600px;
    margin: 0 auto;
}

h2, p {
    margin: 0;
}
h2 {
    font-weight: 600;
    font-size: 1.8rem;
}
h2 + p {
    font-size: 1.2rem;
    line-height: 1.4;
}
a {
    color: inherit;
    text-decoration: none;
}
small {
    display: block;
    font-size: 0.7rem;
    margin-top: 20px;
}

.col:nth-child(2) {
    padding-right: 100px;
    position: relative;
}
.col:nth-child(2) img {
    position: absolute;
    top: 0; right: 0;
    width: 80px;
    height: 120px;
    object-fit: contain;
}

.row {
    display: flex;
    flex-direction: column;
    gap: 50px;
    padding: 5vw;
}
.col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 122px;
}

@media( min-width: 1024px ) {
    h1 img {
        width: 35%;
        max-width: 720px;
    }
    .row {
        flex-direction: row;
        justify-content: space-between;
        padding: 5vw 10vw;
    }
    .col {
        flex: 0 0 auto;
        max-width: calc( 50% - 25px );
    }
}