.text-blocks{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 30px;
}

.text-blocks__item{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
}

.text-blocks__left{
    flex: 1 1 auto;
    min-height: 320px;
    color: #fff;
    padding: 30px;
    background: #7D8386;
}

.text-blocks__left a{
    color: #fff;
    text-decoration: underline;
}

.text-blocks__right{
    flex: 0 0 360px;
}

.pull-left img,
.pull-right img{
    border: 4px solid #C80082;
}

.quote{
    color: #6C9C49;
    padding-left: 10px;
    border-left: 1px solid #6C9C49;
}

.quote-pink{
    position: relative;
    background: #C80082;
    padding: 20px 20px 20px 50px;
    color: #fff;
}

.quote-pink::before{
    content: '';
    position: absolute;
    left: 20px;
    top: 20px;
    width: 17px;
    height: 19px;
    background-image: url('../images/quote-white.svg');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.advantages-list{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

.advantages-list__item{
    flex: 0 0 calc(50% - 15px);
}

.advantages-list__icon{
    height: 53px;
    margin-bottom: 10px;
}

.advantages-list__title{
    font-weight: 600;
    color: #C80082;
    margin-bottom: 10px;
}

.newsletter{
    background-color: #fff;
    box-shadow: 1px 1px 7px 0px rgba(0, 0, 0, 0.12);
    padding: 12px;
    margin-bottom: 70px;
}

body.lang-ru .newsletter h3,
body.lang-ru .newsletter .h3{
    color: #6C9C49;
    font-weight: bold !important;
}

.newsletter label{
    font-size: 12px;
}

.newsletter .rue-gdpr-nl-prefooter-link{
    display: inline-block;
    font-size: 10px;
    margin-left: 10px;
    margin-top: 0;
}

.row-policy{
    margin-top: -10px;
}

.article-main-container .single-post .entry-content ul,
.single-post ol,
.single-post ul{
    list-style-type: none;
    margin-left: 0 !important;
    padding: 0;
}

.article-main-container .single-post .entry-content ol{
    counter-reset: counter;
    margin-left: 0 !important;
}

.single-post img{
    max-width: 100%;
}

.single-post li{
    counter-increment: counter;
    position: relative;
    padding-left: 25px;
}

.single-post ul li::before{
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #C9007F;
}

.single-post ol li::before{
    content: counter(counter);
    position: absolute;
    text-align: center;
    line-height: 19px;
    left: 0;
    top: 5px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid #C9007F;
    color: #C9007F;
    font-size: 14px;
    font-weight: bold;
}

.single-post img.big-photo{
    width: 100%;
    height: auto;
}

.share-block__title{
    position: relative;
    padding-left: 30px;
    font-weight: bold;
}

.share-block__title::before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 25px;
    height: 25px;
    background-image: url("../images/share.svg");
    background-position: left center;
    background-repeat: no-repeat;
    margin-bottom: 20px;
}

.share-block__list{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 15px;
}
.share-block__item{
    position: relative;
    width: 30px;
    height: 30px;
    background: #C9007F;
}

.share-block__item svg{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.share-block__item--bottom svg{
    top: unset;
    bottom: 0;
    transform: translateX(-50%);
}

.ad_tb{
    max-width: 100%;
    overflow: auto;
}

.custom-table{
    font-family: 'Exo', sans-serif;
}

.custom-table th{
    background: #C9007F;
    color: #fff;
    border-color: transparent;
    font-weight: bold;
    font-size: 16px;
}

.custom-table th,
.custom-table td{
    padding: 12px 15px;
}

.custom-table td{
    vertical-align: top;
    font-weight: 400;
    border: 0;
    line-height: 1.5;
}

.custom-table td:not(:last-child){
    border-right: 1px solid #333;
}

.custom-table,
.custom-table tbody{
    border: 0;
}

.custom-table tr{
    background: #fff;
}

.custom-table tr:nth-child(even){
    background: #F5F5F5;
}

.custom-table tbody{
    font-size: 14px;
}

@media (max-width: 900px) {
    .text-blocks__item{
        flex-direction: column-reverse;
    }

    .text-blocks__left{
        min-height: auto;
    }

    .text-blocks__right{
        width: 100%;
        flex-basis: auto;
        height: 300px;
    }

    .text-blocks__image{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .advantages-list__item{
        flex-basis: 100%;
    }
}