* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Public Sans', sans-serif;
}

a {
    color: #000;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.color-primary {
    color: #aa2f69;
}

.container {
    max-width: 1050px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
}

.header {
    padding-top: 43px;
    padding-bottom: 36px;
}

.claim {
    width: 0;
    min-height: 405px;
    background-color: #009ee2;
    padding-top: 126px;
    padding-bottom: 133px;
    transition: width 1s;
    overflow: hidden;
}

.claim__title {
    color: #fff;
    font-size: 57px;
    font-weight: 600;
    line-height: 73px;
}

.body--loaded .claim {
    width: 100%;
    transition: width 1s;
}

.footer {
    padding-top: 53px;
    padding-bottom: 30px;
}

.footer p {
    margin-bottom: 10px;
}

.load-after {
    opacity: 0;
    transition: all 2s;
}

.other--loaded {
    opacity: 1;
    transition: all 2s;
}

@media (min-width: 600px) {
    .container {
        text-align: left;
    }
}

@media (min-width: 1050px) {
    .container {
        max-width: 1050px;
        margin-left: auto;
        margin-right: auto;
    }

    .claim__title {
        display: none;
    }

    .other--loaded.claim__title {
        display: block;
    }
}