.container_header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 4rem;
}

hr {
    background: #E8ECEF;
    border: 0;
    height: 3px;
    margin: 0 0 50px;
}


.container_header-title {
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 2rem;
}

.container_header-misc {
    display: flex;
    flex-direction: column;
    align-items: end;
    gap: 1rem;
}

.container_header-logo {
    width: 250px;
    height: 180px;
    display: grid;
    place-content: center;
    border: 2px solid #f2f2f2;
    overflow: hidden;
}

.container_header-logo img {
    max-width: 95%;
    height: auto;
    max-height: 95%;
    display: block;
    margin: 0 auto;
}

.similar_service-logo {
    width: 100%;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
    border-radius: 5px;
    overflow: hidden;
    background: white;
}

.similar_service-logo img {
    max-width: 95%;
    max-height: 95%;
    object-fit: cover;
}

.container_header-buttons {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 1rem;
}

.post_button-site_link {
    color: #101033;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 0.8rem 1.2rem;
    border: 2px solid #101033;
    border-radius: 10px;
    text-wrap: nowrap;
    text-decoration: none!important;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.post_button-site_link:hover {
    background: #EA143B;
    border: 2px solid #EA143B;
    color: white!important;
}

.container_header-cost {
    font-weight: 500;
}

.post_button-reviews {
    display: block;
    color: #fff!important;
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding: 0.8rem 1.2rem;
    border-radius: 10px;
    border: 2px solid #EA143B;
    background: #EA143B;
    text-wrap: nowrap;
    text-decoration: none!important;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

.post_button-reviews:hover {
    background: #F1D73C;
    border: 2px solid #F1D73C;
    color: black!important;
}

.container_content-synonyms {
    font-weight: 500;
    margin-bottom: 2rem;
}

.post_title {
    font-family: 'YiggivooUC';
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    line-height: 100%;
    letter-spacing: -1.28px;
    color: #EA143B;
    margin-bottom: 2rem;
}

.container_content-promocode {
    padding: 0.8rem 1.2rem;
    background: #f2f2f2;
    border-radius: 10px;
    font-weight: 500;
    margin-bottom: 2rem;
    display: inline-block;
}

.similar_posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
}

.similar_service {
    background: #f2f2f2;
    padding: 20px;
    border-radius: 10px;
    max-width: 400px;
}

.similar_service a {
    display: flex;
    height: 100%;
    flex-direction: column;
    gap: 20px;
    justify-content: space-between;
    align-items: center;
    text-align: center;
}

.similar_service .similar_service_title {
    margin-bottom: 10px;
    font-size: 1.3em;
    font-family: 'YiggivooUC';
    font-style: normal;
    font-weight: 500;
    line-height: 100%;
    letter-spacing: -0.48px;
    margin-top: 1rem;
}

.articles_posts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    align-items: stretch;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.articles_post {
    max-width: 400px;
}

.articles_post img {
    border-radius: 10px;
}

@media only screen and (max-width: 1200px) {
    .comments-rates-logo {
        display: none;
    }

    .container_header {
        flex-direction: column-reverse;
        gap: 2rem;
    }
}

@media only screen and (max-width: 1155px) {
    .post_content {
        margin-top: 0!important;
    }
    .sidebar_content {
        margin-top: 0!important;
    }
}

@media only screen and (max-width: 991px) {
    .post_content {
        width: 100%;
    }
}

@media only screen and (max-width: 900px) {
    .similar_posts,
    .articles_posts {
        grid-template-columns: 1fr 1fr;
    }
}

@media only screen and (max-width: 700px) {
    .container_header-buttons {
        flex-direction: column;
        align-items: start;
        gap: 20px;
    }

    .similar_posts,
    .articles_posts {
        grid-template-columns: 1fr;
    }

    .post_content {
        margin-right: 0!important;
    }
}