html,
body {
    height: 100%;
    padding: 250px;
    margin: 0;
}

* {
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(to bottom, #152a47 0%, #26416a 100%);
    font-family: Roboto;
}

.container-outer {
    margin: 10px;
}

.container {
    border-radius: 10px;
    overflow: hidden;
    width: 519px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    left: 50%;
}

.header {
    text-align: center;
    background: #fff;
    padding: 30px 75px;
}

.header-title {
    font-weight: 700;
    color: #152a47;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.65px;
    margin-bottom: 28px;
}

.header-subtitle {
    color: #445058;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.35px;
}

.content {
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.57);
    background-color: #f0f3f8;
    padding: 35px 30px;
}

.content-title {
    color: #152a47;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 20px;
    letter-spacing: 0.45px;
}

.content-text {
    color: #445058;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.35px;
}

.content-item {
    display: flex;
    align-items: center;
}

.content-item:not(:first-child) {
    margin-top: 60px;
}

.icon {
    position: relative;
    margin-right: 35px;
    min-width: 76px;
    min-height: 76px;
    display: flex;
    z-index: 1;
    justify-content: center;
    align-items: center;
}

.icon:after {
    content: "";
    position: absolute;
    background-image: linear-gradient(
        to bottom,
        #ffffff 0%,
        #eeeff3 49%,
        #dcdfe6 100%
    );
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
    width: 76px;
    height: 76px;
    border-radius: 50%;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.svg-icon {
    fill: #1493ff;
}

.svg-icon-proxy {
    width: 40px;
    height: 40px;
    position: relative;
    left: 3px;
    top: 2px;
}

.svg-icon-email {
    width: 46px;
    height: 38px;
    position: relative;
    top: 2px;
}

a {
    text-decoration: none;
    color: #1493ff;
}

a:hover {
    text-decoration: underline;
}

@media screen and (max-width: 800px) {
    html,
    body {
        padding: 0;
        margin: 0;
    }

    .header {
        padding: 45px 75px;
    }

    .header-title {
        letter-spacing: 0.65px;
    }

    .content {
        padding: 45px 55px;
    }

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

    .container-mobile {
        border-radius: 10px;
        overflow: hidden;
        min-width: 300px;
        max-width: 450px;
        margin: 0 auto;
    }

    .mobile-padding {
        padding: 20px 30px;
    }

    .content-item-mobile {
        text-align: center;
    }

    .content-item-mobile:not(:first-child) {
        margin-top: 50px;
    }

    .icon-mobile {
        margin-right: 0;
        margin-bottom: 35px;
    }

    .divider {
        height: 1px;
        background: #445058;
        margin: 10px auto 10px auto;
        border-radius: 1px;
        width: 100%;
        opacity: 0.5;
    }
}

@media screen and (max-width: 500px) {
    .header {
        padding: 20px 52px;
    }

    .content-item:not(:first-child) {
        margin-top: 38px;
    }

    .container {
        width: 390px;
    }

    .content {
        padding: 32px 20px;
    }

    .svg-icon-proxy {
        width: 26px;
        height: 26px;
    }

    .svg-icon-email {
        width: 40px;
        height: 30px;
    }

    .icon {
        min-width: 67px;
        min-height: 67px;
    }

    .icon:after {
        width: 67px;
        height: 67px;
    }
}

@media screen and (max-width: 390px) {
    .container {
        width: 360px;
    }
}

@media screen and (max-width: 320px) {
    .container {
        width: 280px;
    }

    .content {
        padding: 18px 20px;
    }

    .content-text {
        font-size: 10px;
        line-height: 14px;
    }

    .content-item:not(:first-child) {
        margin-top: 26px;
    }

    .content-text br {
        display: none;
    }

    .header {
        padding: 8px 52px;
    }

    .header-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .svg-icon-proxy {
        width: 14px;
        height: 14px;
    }

    .svg-icon-email {
        width: 26px;
        height: 18px;
    }

    .icon {
        min-width: 30px;
        min-height: 30px;
    }

    .icon:after {
        width: 40px;
        height: 40px;
    }
}
