*,
*::before,
*::after {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    display: -ms-flexbox;
    display: flex;
    min-height: 100vh;
    flex-direction: column;
    padding: 0;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    line-height: 1.2;
    text-align: center;
}

main {
    display: -ms-flexbox;
    display: flex;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
}

.header {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    background-color: #00092e;
    background-image: url('../images/page-banners/activations-banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    -ms-flex-align: center;
    -ms-flex-pack: center;
}

.header::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: -ms-linear-gradient(90deg, rgba(0, 9, 46, 1), rgba(0, 9, 46, 0));
    background: linear-gradient(90deg, rgba(0, 9, 46, 1), rgba(0, 9, 46, 0));
    content: '';
}

.logo {
    z-index: 1;
    width: 100%;
    max-width: 130px;
    height: auto;
}

.content {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    text-align: center;
}

.icon {
    display: -ms-inline-flexbox;
    display: inline-flex;
    width: 80px;
    height: 80px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 16px;
    background-color: #eaecf3;
    -ms-flex-align: center;
    -ms-flex-pack: center;
}

.icon-svg {
    width: 32px;
}

.title {
    width: 100%;
    margin-bottom: 16px;
    color: #00092e;
    font-size: 28px;
    font-weight: 400;
}

.text {
    width: 100%;
    margin-bottom: 32px;
    color: #4c536c;
    font-size: 16px;
    font-weight: 400;
}

.container {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
}

.container-row {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
}

.wrapper--first {
    margin-bottom: 24px;
}

.container-row--first {
    margin-bottom: 24px;
}

.wrapper {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #00092e;
    -ms-flex-align: center;
    -ms-flex-pack: center;
    text-decoration: none;
}

.wrapper:hover {
    color: #000573;
    text-decoration: underline;
    text-decoration-color: #000573;
    text-underline-position: 4px;
}

.browser-logo {
    width: 45px;
    height: auto;
    margin-bottom: 8px;
}

.browser-name {
    color: inherit;
    font-size: 12px;
    font-weight: 500;
    line-height: 18.75px;
    text-align: center;
}

.footer {
    padding-top: 32px;
    padding-bottom: 32px;
    background-color: #00092e;
    color: #ffffff;
    text-align: center;
}

.footer-wrapper {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    max-width: 1688px;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: space-between;
    padding-right: 24px;
    padding-left: 24px;
    margin-right: auto;
    margin-left: auto;
    -ms-flex-align: center;
    -ms-flex-pack: space-between;
}

.footer-info {
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    margin-top: 32px;
}

.footer-text--first {
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-grow: 1;
    justify-content: center;
    padding: 0;
    -ms-flex-pack: center;
    list-style: none;
}

.footer-link {
    color: #ffffff;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.footer-social {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
}

.footer-link-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -ms-flex-align: center;
    -ms-flex-pack: center;
}

.footer-icon {
    width: 17px;
    height: 18px;
}

@media screen and (min-width: 480px) {
    .title {
        margin-bottom: 24px;
        font-size: 36px;
    }

    .text {
        font-size: 18px;
    }

    .browser-name {
        font-size: 16px;
    }

    .logo {
        max-width: 150px;
    }

    .icon {
        width: 96px;
        height: 96px;
        margin-bottom: 24px;
    }

    .container-row {
        flex-direction: row;
        align-items: flex-start;
        -ms-flex-align: flex-start;
    }

    .wrapper--first {
        margin-right: 8px;
        margin-bottom: 0;
    }

    .wrapper--second {
        margin-left: 8px;
    }

    .wrapper {
        width: 150px;
    }
}

@media screen and (min-width: 768px) {
    .logo {
        max-width: 200px;
    }

    .content {
        padding: 64px 24px;
    }

    .icon {
        width: 120px;
        height: 120px;
        margin-bottom: 32px;
    }

    .icon-svg {
        width: 100%;
    }

    .title {
        margin-bottom: 32px;
    }

    .text {
        margin-bottom: 40px;
    }

    .wrapper--first {
        margin-right: 16px;
    }

    .wrapper--second {
        margin-left: 16px;
    }

    .container-row--first {
        margin-bottom: 32px;
    }

    .browser-logo {
        width: 70px;
    }
}

@media screen and (min-width: 1024px) {
    .title {
        font-size: 60px;
    }

    .text {
        font-size: 24px;
    }

    .footer {
        padding-top: 44px;
        padding-bottom: 44px;
        text-align: left;
    }

    .footer-info {
        margin-top: 0;
    }

    .footer-wrapper {
        flex-direction: row;
    }

    .footer-text {
        line-height: 1.5;
    }

    .footer-links {
        flex-grow: 0;
    }

    .container {
        flex-direction: row;
    }

    .container-row--first {
        margin-right: 32px;
        margin-bottom: 0;
    }

    .container-row--second {
        margin-left: 32px;
    }

    .wrapper {
        width: auto;
    }

    .wrapper--first {
        margin-right: 32px;
    }

    .wrapper--second {
        margin-left: 32px;
    }
}
