* {
    margin: 0;
    padding: 0;
}

.wrapper {
    background: url('../img/bg.png');
    background-size: cover;
    min-height: 100vh;
    background-repeat: no-repeat;
}

.header {
    padding-top: 100px;
    display: flex;
    justify-content: center;
}

.header__inner {
    display: flex;
    justify-content: center;
    max-width: 100%;
}
.header__inner img {
    max-width: 100%;
}
.logo svg {
    width: 447px;
    height: auto;
}
.main {
    padding-top: 160px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    text-transform: uppercase;
}
.title {
    font-family: 'Poppins', sans-serif;
    font-size: 82px;
    color: #014A75;
    font-weight: 700;
}
.subtitle {
    margin-top: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    color: #014a75;
}

@media screen and (max-width: 480px) {
    .wrapper {
        background: url('../img/bg-mobile.png');
    }
    .header {
        padding-top: 30px;
    }
    .logo svg {
        width: 300px;
        height: auto;
    }
    .title {
        padding: 20px 20px 0;
        font-size: 38px;
    }
    .subtitle {
        margin-top: 0px;
        padding: 0 20px;
        font-size: 24px;

    }
}

@media screen and (min-width: 481px) and (max-width: 768px) {
    .wrapper {
        background: url('../img/bg-mobile.png');
        background-repeat: no-repeat;
    }
    .header {
        padding-top: 30px;
    }
    .logo svg {
        width: 300px;
        height: auto;
    }
    .title {
        padding: 20px;
        font-size: 46px;
    }
    .subtitle {
        margin-top: 20px;
        padding: 0 20px;
        font-size: 28px;
    }
}