﻿a {
    color: #243042;
}
banner {
    height: 420px;
    background-color: #ece8fc;
}

    banner > .wrap {
        max-width: 1400px;
        min-width: 1220px;
        margin: 0 auto;
        padding-top: 181px;
        display: flex;
        justify-content: center;
    }

.banner-text {
    padding: 15px 400px 0 160px;
    text-align: center;
}

    .banner-text > h1 {
        font-size: 46px;
        font-weight: bold;
        color: #314068;
        letter-spacing: 3px;
    }

    .banner-text > h3 {
        font-size: 18px;
        color: #626f90;
        font-family: 'univia';
        font-weight: 400;
        color: #8780a6;
        letter-spacing: 1px;
    }

        .banner-text > h3::before {
            font-family: 'FontAwesome';
            content: '\e164';
            padding-right: 5px;
            font-size: 15px;
        }

section {
    padding: 60px 0;
    max-width: 1450px;
    margin: 0 auto;
}

    section > h1 {
        font-size: 43px;
        color: #484e63;
        font-weight: bold;
    }

        section > h1::before {
            font-family: 'FontAwesome';
            margin-right: 8px;
        }

.dl-mails > h1::before {
    content: '\f1d8';
}

.dl-tools > h1::before {
    content: '\f7d9';
}


.dl-blocks {
    margin-top: 60px;
    display: flex;
    justify-content: space-between;
}

.dl-block {
    width: 440px;
    height: 306px;
    border-radius: 12px;
    background-color: #f3f7fb;
    padding: 50px 40px;
    color: #243042;
}

    .dl-block > h2 {
        font-size: 24px;
        text-align: center;
        font-weight: bold;
    }

.platform {
    text-align: center;
    margin: 30px 0;
    font-size: 24px;
    font-weight: bold;
    line-height: 1.4;
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .platform::before {
        content: '';
        display: block;
        height: 24px;
        width: 24px;
        background: url('/images/download-icon-windows.png') no-repeat;
        margin-bottom: 10px;
    }

    .platform > .tips {
        color: #9896a4;
        font-size: 14px;
        font-weight: normal;
    }

    .platform > img {
        margin: 10px 0;
    }

.download-bar {
    display: grid;
    grid-template-columns: 1fr 80px;
    grid-gap: 15px;
    justify-content: space-between;
}

.dl-items {
    padding: 0 10px;
    margin: 30px;
}

    .dl-items > li {
        display: flex;
        justify-content: space-between;
        position: relative;
        padding: 16px 20px;
        align-items: center;
        transition: all .35s ease;
        border-radius: 12px;
    }

        .dl-items > li:hover {
            background-color: #f3f7fbca;
        }

        .dl-items > li::after {
            content: '';
            display: block;
            height: 1px;
            width: 100%;
            position: absolute;
            bottom: 0;
            left: 0;
            transition: .35s;
            background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgb(239, 234, 246) 5%, rgb(239, 234, 246) 95%, rgba(0, 0, 0, 0) 100%);
        }

        .dl-items > li > a {
            padding: 6px 20px;
        }
