
.promo {
    padding: 134px 0 26px;
    background-size: cover;
    background-position: top right;
    .breadcrumbs {
        margin-bottom: 50px;
    }
    .text {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
        position: relative;
        &::before {
            content: '';
            display: flex;
            position: absolute;
            top: 0;
            bottom: 0;
            left: 0;
            width: 4px;
            background: linear-gradient(74.17deg, #917234 7.74%, #e3ca96 26.76%, #cdb27c 47.44%, #a8894c 53.73%, #b28e42 77.78%, #93763a 86.51%, #98793b 95.7%);
        }
        h1 {
            font-size: 50px;
            font-weight: 600;
            line-height: 100%;
            letter-spacing: 0.2px;
        }
        p {
            max-width: 600px;
            font-size: 20px;
            font-weight: 300;
            line-height: 120%;
            letter-spacing: 0.2px;
        }
        span {
            color: rgba(239, 240, 244, 0.65);
            font-size: 14px;
            font-weight: 300;
            line-height: 120%;
            letter-spacing: 0.2px;
        }
    }
}
.content {
    padding-top: 40px;
    padding-bottom: 100px;
    margin-bottom: 100px;
    position: relative;
    &::before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: url(/resource/themes/ur/assets/images/content-bg.png) repeat-y;
        background-size: cover;
        background-position: top center;
        z-index: -1;
        pointer-events: none;
    }
    .wrapper {
        display: grid;
        grid-template-columns: 1fr 315px;
        gap: 60px;
        .text {
            display: flex;
            flex-direction: column;
            gap: 20px;
            h2 {
                color: var(--text-2);
                font-size: 24px;
                font-weight: 600;
                line-height: 120%;
                letter-spacing: 0.2px;
                margin-bottom: -10px;
            }
            p {
                color: var(--text-2);
                font-size: 16px;
                font-weight: 300;
                line-height: 140%;  
                letter-spacing: 0.2px;
                opacity: 0.7;
                a {
                    color: var(--text-2);
                    font-size: inherit;
                    font-weight: inherit;
                    line-height: inherit;  
                    letter-spacing: inherit;
                    opacity: 0.7;
                    text-decoration: underline;
                }
            }
            strong {
                font-weight: 700;
                color: var(--text-2);
            }
            .wse-hr {
                margin-top: -10px;
                hr {
                    background: #c9a84c;
                    max-width: 60px;
                }
            }
            ul, ol {
                display: flex;
                flex-direction: column;
                padding-left: 17px;
                li {
                    color: var(--text-2);
                    font-size: 16px;
                    font-weight: 300;
                    line-height: 140%;
                    letter-spacing: 0.2px;
                    opacity: 0.7;
                    strong {
                        font-weight: 700;
                        color: var(--text-2);
                    }
                }
            }
        }
        aside {
            position: sticky;
            top: 70px;
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-height: max-content;
            nav {
                display: flex;
                flex-direction: column;
                gap: 10px;
                padding: 20px;
                background: #fefefe;
                box-shadow: 0 4px 10px 0 rgba(141, 146, 161, 0.20);
                h3 {
                    margin-bottom: 10px;
                    color: #777b86;
                    font-size: 12px;
                    line-height: 120%;
                    letter-spacing: 0.2px;
                    text-transform: uppercase;
                }
                p {
                    display: flex;
                    align-items: center;
                    justify-content: space-between;
                    gap: 4px;
                    color: var(--text-2);
                    font-size: 14px;
                    line-height: 120%;
                    letter-spacing: 0.2px;
                    opacity: 0.5;
                    transition: .3s linear;
                    cursor: pointer;
                    &::after {
                        content: '\e006';
                        font-family: 'icon';
                        font-size: 10px;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        width: 20px;
                        height: 20px;
                    }
                    &:hover {
                        opacity: 1;
                    }
                }
            }
            .btns {
                display: flex;
                flex-direction: column;
                gap: 10px;
                padding: 20px;
                background: #f6f7f9;
                box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.10);
                a, button {
                    display: flex;
                    justify-content: center;
                    align-items: center;
                    width: 100%;
                    height: 40px;
                    border: 1px solid rgba(119, 123, 134, 0.20);
                    background: #eff0f4;
                    cursor: pointer;
                    color: var(--text-2);
                    font-size: 16px;
                    font-weight: 500;
                    line-height: 120%;
                    letter-spacing: 0.2px;
                }
            }
        }
    }
}
@media screen and (max-width: 1340px) {  
    .promo {
        padding: 115px 0 26px;
        .breadcrumbs {
            margin-bottom: 40px;
        }
        .text {
            gap: 10px;
            padding: 10px 20px;
            position: relative;
            h1 {
                font-size: 40px;
            }
            p {
                font-size: 18px;
            }
        }
    }
}
@media screen and (max-width: 1130px) {  
    .promo {
        padding: 65px 0 20px;
        .breadcrumbs {
            margin-bottom: 30px;
        }
        .text {
            padding: 5px 10px;
            gap: 6px;
            &::before {
                width: 3px;
            }
            h1 {
                font-size: 32px;
            }
            p {
                max-width: 400px;
                font-size: 16px;
            }
            span {
                font-size: 14px;
            }
        }
    }
    .content {
        padding-top: 30px;
        padding-bottom: 60px;
        margin-bottom: 60px;
        .wrapper {
            grid-template-columns: 1fr 225px;
            gap: 30px;
            .text {
                gap: 10px;
                h2 {
                    font-size: 18px;
                    margin-bottom: -5px;
                }
                p {
                    font-size: 14px;
                }
                .wse-hr {
                    margin-top: -5px;
                    hr {
                        max-width: 40px;
                    }
                }
                ul {
                    padding-left: 17px;
                    li {
                        font-size: 14px;
                    }
                }
            }
            aside {
                top: 60px;
                gap: 5px;
                nav {
                    gap: 5px;
                    padding: 10px;
                    h3 {
                        margin-bottom: 5px;
                    }
                    p {
                        font-size: 12px;
                        &::after {
                            font-size: 8px;
                            width: 14px;
                            height: 14px;
                        }
                    }
                }
                .btns {
                    padding: 10px;
                    a, button {
                        height: 32px;
                        font-size: 14px;
                    }
                }
            }
        }
    }
}
@media screen and (max-width: 767px) {  
    main {
        gap: 20px;
    }
    .promo {
        padding: 73px 0 26px;
        background-size: cover;
        background-position: 70% center;
        .text {
            &::before {
                width: 2px;
            }
            h1 {
                font-size: 24px;
            }
            p {
                font-size: 14px;
            }
            span {
                font-size: 12px;
            }
        }
    }
    .content {
        padding-top: 20px;
        padding-bottom: 40px;
        margin-bottom: 40px;
        .wrapper {
            grid-template-columns: 1fr;
            gap: 20px;
            aside {
                display: contents;
                nav {
                    grid-area: 1/1/2/2;
                }
            }
        }
    }
}