header {
    background: var(--main-bg);
    .wrapper {
        box-shadow: 0px 2px 12px 0px #0000001A;
    }
}
main {
    padding-top: 120px;
    padding-bottom: 120px;
    position: relative;
}
h1 {
    font-size: 60px;
    line-height: 64px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--title);
}
main > p {
    font-size: 24px;
    line-height: 32px;
    margin-bottom: 64px;
}
main > img {
    position: absolute;
    width: 172px;
    right: 50px;
    top: 185px;
}
main .items {
    display: flex;
    flex-direction: column;
    gap: 16px;
    max-width: 754px;
    div {
        display: flex;
        flex-direction: column;
        width: 100%;
        padding: 17px 80px;
        position: relative;
        border: 1px solid var(--border);
        border-radius: 16px;
        transition: .3s linear;
        span {
            position: absolute;
            left: 16px;
            top: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            border: 1px solid var(--border);
            &::before {
                content: '';
                font-family: 'icon';
                color: var(--green-bg);
            }
        }
        p {
            font-size: 20px;
            line-height: 24px;
            font-weight: 500;
            color: var(--title);
        }
        a {
            font-size: 14px;
            line-height: 20px;
            color: #226f6b;
            text-decoration: underline;
        }
        &.email span::before {
            content: '\e006';
            font-size: 24px;
        }
         &.vk span::before {
            content: '\e007';
            font-size: 27px;
        }
        &.telegram span::before {
            content: '\e008';
            font-size: 22px;
        }
        &.max span::before {
            content: '\e009';
            font-size: 23px;
        }
    }
}
@media screen and (max-width: 1640px) {
    main {
        padding-top: 96px;
        padding-bottom: 96px;
    }
    main > img {
        top: 165px;
    }
}
@media screen and (max-width: 1239px) {
    main {
        padding-top: 64px;
        padding-bottom: 64px;
    }
    h1 {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 20px;
    }
    main > p {
        font-size: 20px;
        line-height: 28px;
        margin-bottom: 40px;
    }
    main > img {
        display: none;
    }
    main .items {
        div {
            padding: 19px 80px;
            span {
                left: 15px;
                top: 15px;
            }
            p {
                font-size: 18px;
                line-height: 24px;
            }
            a {
                font-size: 12px;
                line-height: 16px;
            }
        }
    }
}
@media screen and (max-width: 599px) {
    main {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    h1 {
        font-size: 36px;
        line-height: 40px;
        margin-bottom: 16px;
    }
    main > p {
        font-size: 18px;
        line-height: 24px;
        margin-bottom: 28px;
    }
    main .items {
        div {
            padding: 15px 72px;
            span {
                left: 12px;
                top: 12px;
            }
        }
    }
}
@media (hover:hover) {
    main .items div:hover {
        background: #edfffa;
    }
}