* {
    box-sizing: border-box;
    padding: 0;
    border: none;
    margin: 0;
    box-shadow: none;
    outline: none;
    font-family: Chivo, sans-serif;
    letter-spacing: 1px;
    line-height: 1;
    font-size: 100%;
    font-weight: 400;
    font-stretch: normal
}

*:focus {
    box-shadow: none;
    text-shadow: none;
    outline: none
}

ul, li {
    list-style: none
}

a {
    text-decoration: none
}

input, textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

html {
    scroll-behavior: smooth
}

html body {
    background: linear-gradient(180deg, #fff 0%, #fff 50%, #f3f6fa 75%, #eee 100%)
}

.wrap_top p {
    color: #fff;
}

.button_visit {
    display: block;
    padding: 10px 0;
    background: linear-gradient(90deg, rgba(255, 97, 97, 1) 0%, rgba(242, 179, 87, 1) 35%);
    border-radius: 10px;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #fff;
    text-align: center;
    cursor: pointer;
    transition: background .2s;
    margin-bottom: 15px
}

.button_visit:hover {
    background: #DA3D6C;
    box-shadow: 0 4px 20px #959da940
}

.link_default {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #1f2d3f;
    cursor: pointer;
    transition: color .2s;
    text-transform: uppercase;
    margin-top: auto
}

.link_default:hover {
    text-decoration: none;
    color: #da3d6c
}

.page_content {
    color: #333
}

.page_content h1 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px
}

.page_content h2 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 900;
    color: #333;
    margin-bottom: 20px
}

.page_content h3 {
    font-size: 18px;
    line-height: 30px;
    font-weight: 900;
    color: #333;
    margin-bottom: 20px
}

.page_content h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 20px;
    font-weight: 900
}

.page_content p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px
}

.page_content img {
    width: 100%;
    margin-bottom: 30px;
    border-radius: 20px;
    object-fit: contain;
    height: 100%
}

.page_content a {
    color: #c92d5c
}

.page_content .button_visit {
    color: #fff;
    width: min-content;
    margin: 0 auto 20px;
    padding: 15px 25px;
    white-space: nowrap
}

.page_content ul {
    margin-bottom: 30px
}

.page_content ul li {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4c5b6d;
    list-style: none;
    margin-bottom: 10px;
    background-image: url(../images/check_discl.svg);
    background-repeat: no-repeat;
    padding-left: 25px
}

.page_content ul li strong, .page_content ul li b {
    font-weight: 700
}

.page_content ul li em, .page_content ul li i {
    font-style: italic
}

.page_content ol {
    margin-bottom: 30px;
    padding-left: 25px
}

.page_content ol li {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
    list-style-type: decimal;
    line-height: 25px;
    margin-bottom: 15px;
    text-align: left
}

.page_content ol li p {
    margin-bottom: 0
}

.page_content table {
    width: 100%;
    background-color: #fff;
    border-collapse: collapse;
    margin-bottom: 15px
}

.page_content table th, .page_content table td {
    padding: 10px;
    text-align: left
}

@media (max-width: 700px) {
    .page_content h1 {
        font-size: 24px;
        line-height: 30px;
        font-weight: 900;
        margin-bottom: 20px
    }

    .page_content h2 {
        font-size: 24px;
        font-weight: 900;
        margin-bottom: 20px
    }

    .page_content h3 {
        font-size: 18px;
        font-weight: 900;
        margin-bottom: 15px
    }
}

header {
    background-color: #fff;
}

header nav {
    max-width: 1170px;
    padding: 0 10px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

header nav .logo {
    display: block;
    padding: 18px 0;
}

header .burger_mobile {
    display: none;
}

header ul {
    display: flex;
    flex-flow: row nowrap;
    position: relative;
}

header li a {
    display: block;
    padding: 10px 0;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
    margin-right: 20px;
    transition: color .2s;
    white-space: nowrap;
}

header li a.active, header li a:hover {
    color: #ff6161;
}

.dropdown-wrapper {
    display: flex;
    align-items: center;
}

.dropdown-wrapper img {
    flex-shrink: 0;
    margin-left: 4px;
}

header .dropdown:before, header .dropdown:after {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #FFFFFF transparent;
}

header .dropdown {
    position: absolute;
    top: 39px;
    right: 0;
    display: none;
    flex-flow: column nowrap;
    background: #fff;
    border-radius: 4px;
    z-index: 1000;
}


header .dropdown a {
    padding: 10px 15px;
}

header .dropdown:after {
    content: "";
    position: absolute;
    bottom: 100%;
    right: 30px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 8px 8px 8px;
    border-color: transparent transparent #FFFFFF transparent;
}

header .mobile-menu.activated {
    display: flex;
    flex-flow: column nowrap;
    background-color: #fff;
    padding: 15px 20px;
    min-height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    width: 85%;
}

header .mobile-menu {
    display: none;
}


header .mobile-menu.activated li {
    border-bottom: 1px solid #F3F6FA;
    background: none;
}

header .mobile-menu.activated a {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: .5px;
    text-transform: capitalize;
    color: #1f2d3f;
    padding: 20px 0;
}


.wrap_top {
    background: linear-gradient(90deg, rgba(47, 52, 92, 1) 0%, rgba(71, 77, 129, 1) 35%, rgba(239, 196, 128, 1) 100%);
    padding: 40px 0;
    position: relative;
}

.wrap {
    display: block;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    color: #333;
}

.wrap_top .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container {
    max-width: 680px;
    width: 100%;
    position: relative;
    z-index: 2;
}

h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 60px;
    line-height: 56px;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.title .title-green {
    color: #ff6161;
    font-weight: 600;
}

.header_image {
    background-image: url(../images/header_bg.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    max-width: 420px;
    width: 100%;
    background-blend-mode: soft-light, normal;
    filter: drop-shadow(0px 4px 40px rgba(114, 124, 139, .25));
    padding: 25px;
    z-index: 0;
}

.header_image img {
    max-width: 100%;
    width: 100%;
}

.table-top {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    background: #f6e9d5;
    margin-bottom: 30px;
}

.table-top .table-sight {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #1f2d3f;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

.table-top .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.table-top .table-sight svg {
    margin-right: 10px;
}

.a-disclosure-wrapper button {
    background: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    color: #6d6b6b;
    cursor: pointer;
    transition: all .2s;
}

.a-disclosure-wrapper {
    position: relative;
    background: none;
    box-shadow: none;
}

.a-disclosure-wrapper button .outerText {
    display: flex;
    flex-flow: row nowrap;
    text-align: left;
    min-width: 20px;
}

.a-disclosure-wrapper button .outerText span {
    font-size: 11px;
}

.a-disclosure-wrapper button .outerText span:nth-child(1) {
    cursor: default;
}

.a-disclosure-wrapper button .outerText .bold {
    font-weight: 900;
}

.a-disclosure-wrapper button .outerText span:nth-child(1):after {
    display: inline-block;
    content: "|";
    width: 10px;
    text-align: center;
}

.popup-tooltip {
    position: absolute;
    width: 580px;
    top: calc(100% + 10px);
    right: 0;
    padding: 25px;
    border-radius: 20px;
    background: #FFFFFF;
    box-shadow: 0 9px 12px 3px #0003;
    z-index: 9999;
    font-size: 13px;
    line-height: 19px;
    color: #333;
    display: none;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
}

.popup-tooltip p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
}

.popup-tooltip .popup-close {
    position: absolute;
    right: 8px;
    top: 6px;
}

.toTop {
    position: fixed;
    z-index: 30;
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 8px 20px #b4becd59;
    background: linear-gradient(90deg, rgba(255, 97, 97, 1) 0%, rgba(242, 179, 87, 1) 35%);
    cursor: pointer;
    transition: all .2s;
}

.toTop img {
    width: 22px;
}

.toTop:hover {
    background: #E04F52;
}

main {
    width: 100%;
    display: flex;
    margin-top: 30px;
    flex-flow: row nowrap;
    align-items: flex-start;
}

main .wrap {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
}

.main_table {
    width: 100%;
}

.page_list {
    border-radius: 4px;
}

.page_list .offer_wrap {
    position: relative;
    background-color: #fff;
}

.offer {
    padding: 15px;
    margin: 15px 0;
    box-shadow: 0 8px 20px #b4becd59;
    border-radius: 4px;
    transition: transform .3s;
}

.offer.offer_first {
    background: #f6f4f0;
    border: 2px solid #6b6d98;
    box-shadow: 0 4px 20px #c4cdd940;
    border-radius: 10px;
}

.page_list .offer_wrap .offer {
    display: flex;
    justify-content: space-around;
    border-radius: 10px;
}

.labels {
    position: absolute;
    color: #fff;
    top: 0;
    left: 0;
    z-index: 10;
    display: flex;
    justify-content: center;
    font-size: 22px;
    line-height: 28px;
    align-content: center;
}

.labels .label {
    border-radius: 10px 0;
    padding: 10px;
    background: #d8d9d7;
    margin-right: 5px;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    letter-spacing: .5px;
    color: #fff;
}

.labels .label.top {
    background: #6b6d98;
    border-radius: 8px 0 10px;
}

.labels .label2 {
    background: #6b6d98;
    border-radius: 0 0 10px 10px;
    padding: 9px 18px;
    display: none;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    letter-spacing: .5px;
    font-feature-settings: "liga" off;
    color: #fff;
}

.labels .label2.active {
    display: block;
}

.offer .logo {
    position: relative;
    padding: 30px 20px;
}

.page_list .offer_wrap .offer .logo {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.offer .logo a {
    display: block;
    margin: 0 auto 15px;
    width: 160px;
}

.offer .logo a img {
    display: block;
    width: 100%;
}

.stars {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;

}

.stars svg {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.offer .bottomLine {
    padding: 20px 15px;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
}

.page_list .offer_wrap .offer .bottomLine {
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.offer .bottomLine .page_content {
    width: 100%;
}

.offer .bottomLine .page_content ul,
.offer .bottomLine .page_content p,
.offer .bottomLine .page_content ol {
    margin-bottom: 15px;
}

ul li {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4c5b6d;
    list-style: none;
    margin-bottom: 10px;
    background-image: url(../images/check_discl.svg);
    background-repeat: no-repeat;
    padding-left: 25px;
}

.offer .bottomLine .links {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    width: 100%;
}

.link_default {
    font-style: normal;
    font-weight: 600;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 1px;
    color: #1f2d3f;
    cursor: pointer;
    transition: color .2s;
    text-transform: uppercase;
    margin-top: auto;
}

.offer .score {
    padding: 15px 20px;
    flex-direction: column;
    justify-content: space-around;
    align-items: flex-start;
}

.offer .score .score_row {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-start;
}

.offer .score .score_row .score_inner {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}

.offer .score .score_row .score_inner .score_rating {
    font-size: 32px;
    font-weight: 400;
    line-height: 32px;
}

.page_list .offer_wrap .offer .score .score_row .score_inner .score_rating {
    margin-right: 5px;
}

.offer .score .score_row .score_inner .score_text {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
    text-transform: capitalize;
}

.offer .score .smallText {
    text-transform: uppercase;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    line-height: 18px;
    color: #91a1b9;
}

.a-disclosure-wrapper {
    position: relative;
    background: none;
    box-shadow: none;
}

.a-disclosure-wrapper button {
    background: none;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    color: #6d6b6b;
    cursor: pointer;
    transition: all .2s;
}

.a-disclosure-wrapper button .outerText {
    display: flex;
    flex-flow: row nowrap;
    text-align: left;
    min-width: 20px;
}

.a-disclosure-wrapper button .outerText img {
    width: 13px;
    height: 13px;
    margin: 0 3px;
}

.offer .score .page_content {
    display: none;
}

.offer:hover {
    transform: scaleX(1.04);
}


.col-right {
    max-width: 370px;
    width: 100%;
    margin: 15px 0 0 33px;
    background: #fff;
    box-shadow: 0 4px 20px #c4cdd940;
    border-radius: 10px;
}

.banner {
    display: flex;
    width: 100%;
    padding: 20px 20px 0;
    margin-bottom: 20px;
}

.banner img {
    width: 100%;
    border-radius: 10px;
}

.col-right h2 {
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    letter-spacing: .5px;
    color: #009685;
}

.post {
    display: block;
    color: #333;
    padding: 20px 20px 0;
    transition: -webkit-text-decoration .2s;
    transition: text-decoration .2s;
    transition: text-decoration .2s, -webkit-text-decoration .2s;
}

.post .post_title {
    font-style: normal;
    font-weight: 600;
    font-size: 18px;
    line-height: 26px;
    color: #1f2d3f;
}

.post .post_description {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #4c5b6d;
    padding-bottom: 20px;
    border-bottom: 1px solid #E0E7F1;
}


.comments_block {
    color: #333;
    padding: 50px 0;
    position: relative;
}


.comments_block h3 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 900;
    color: #333;
    width: 615px;
    margin: 0 auto 20px;
    text-align: center;
}


.comments_block p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
    margin: 0 auto 50px;
    text-align: center;
}


.comments_block .subtitle {
    margin-bottom: 20px;
}

.comments_block .comments {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    padding: 25px 0 0;
    width: 100%;
}

.comment_top {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.comment_top .item_avatar {
    max-width: 50px;
    width: 100%;
    height: 50%;
    border-radius: 50%;
}

.comment_top .item_name {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #1f2d3f;
    margin-left: 20px;
}

.comments .item_text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4c5b6d;
    width: 100%;
    margin-bottom: 20px;
    text-align: left;
}


.comments_item {
    max-width: 370px;
    width: 100%;
    height: 100%;
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px #c4cdd940;
    border-radius: 14px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    color: #333;
    transition: all .2s;
}

.comments_block .comments .client_comment {
    margin-bottom: 20px;
}

.comment_bottom {
    display: flex;
    justify-content: space-between;
}

.comment_bottom .item_logo {
    max-width: 130px;
    width: 100%;
    background: #F9F9F9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 15px;
}

.comment_bottom .item_logo img {
    max-width: 100%;
    width: 100%;
}

.comment_bottom .button_visit {
    background: linear-gradient(90deg, rgba(255, 97, 97, 1) 0%, rgba(242, 179, 87, 1) 35%);
    border-radius: 10px;
    max-width: 180px;
    width: 100%;
    height: 48px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comment_top .item_name {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    color: #1f2d3f;
    margin-left: 20px;
    margin-bottom: 0;
}

.comment_top {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}


.offer-month {
    padding: 50px 165px;
    border-radius: 10px;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto 60px;
    background: #f6e9d5;
}

.offer-month .offer_wrap {
    position: relative;
    background-color: #fff;
    border-radius: 10px;
}

.offer-month .offer_wrap .offer {
    display: flex;
    justify-content: space-around;
    border-radius: 10px;
}

.offer-title {
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    letter-spacing: 1px;
    color: #1f2d3f;
    margin-bottom: 25px;
}

.offer-title span {
    font-weight: 600;
    color: #009685;
}

.offer-title {
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    letter-spacing: 1px;
    color: #1f2d3f;
    margin-bottom: 25px;
}


.most-popular {
    margin-top: 60px;
    background: #F9F9F9;
    padding: 50px 0;
    max-width: 100%;
}

.most-popular .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
}

.most-popular .categories_list {
    display: flex;
    justify-content: space-between;
    max-width: 770px;
    width: 100%;
}

.most-popular .category {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid #BBC9DE;
    border-radius: 10px;
    max-width: 160px;
    width: 100%;
    padding: 35px 20px;
}

.most-popular .category:hover {
    border: 1px solid #DA3D6C;
    box-shadow: 0 4px 20px #959da940;
    border-radius: 10px;
}

.most-popular .category svg {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 18px;
    height: 18px;
}

.most-popular .category p {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 26px;
    letter-spacing: .5px;
    color: #4c5b6d;
}

.most-popular h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 1px;
    color: #1f2d3f;
}

.most-popular h1 span {
    font-weight: 600;
    color: #009685;
}


footer {
    width: 100%;
    background: #474d81;
    color: #fff;
}

footer .wrap {
    width: 1170px;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin: 0 auto;
    padding: 30px 0;
}

footer .col {
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
}

footer .col.copyright {
    width: 25%;
    align-items: flex-start;
}

footer .col.copyright .logo {
    margin-bottom: 30px;
}

footer .col.copyright p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #fff;
}

footer li {
    background: none;
}

footer li a {
    display: block;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
    color: #fff;
    margin-bottom: 15px;
    transition: color .2s;
}

.copyright_mob {
    display: none;
}

.desktop-menu li {
    background: none;
}

.client-top-offers {
    max-width: 370px;
    width: 100%;
}

.bottom-block .wrap {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    justify-content: space-between;
    padding: 60px 0 100px;
}

.client-faq h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    letter-spacing: 1px;
    color: #1f2d3f;
    margin-bottom: 25px;
}

.client-faq h1 span {
    font-weight: 600;
    color: #009685;

}

.faqITem {
    margin-top: 15px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px #c4cdd940;
    border-radius: 10px;
    max-width: 770px;
    width: 100%;
}

.faqITem .summary {
    min-height: 75px;
    padding: 20px;
    line-height: 32px;
    display: flex;
    align-items: center;
    position: relative;
    background: #FFFFFF;
    font-style: normal;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: .5px;
    color: #1f2d3f;
    border-radius: 10px;
    max-width: 770px;
    width: 100%;
}

.faqITem .summary svg {
    position: absolute;
    float: right;
    font-weight: 700;
    margin: -5px 10px 0 0;
    padding: 0;
    text-align: center;
    width: 28px;
    height: 28px;
    right: 20px;
    cursor: pointer;
    transition: all .3s;
    top: 30px;
}

.faqITem .details {
    overflow: hidden;
    max-height: 0;
    transition: max-height 2s;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: .5px;
    box-shadow: none;
    padding: 0 25px 25px;
    margin-top: -25px;
}

.open_faq.active + .details {
    margin-top: 0;
    max-height: max-content;
}

.faqITem .details p, .faqITem .details ul li {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4c5b6d;
    margin-bottom: 15px;
}

.faqITem .summary.active svg {
    transform: rotate(45deg);
}

.topReviews {
    background: #FFFFFF;
    box-shadow: 0 4px 20px #c4cdd940;
    border-radius: 10px;
    padding: 20px 20px 0;
}

.topReviews .header {
    width: 100%;
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    letter-spacing: .5px;
    color: #1f2d3f;
    margin-bottom: 20px;
}

.topReviews .review {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    justify-content: space-between;
    padding: 20px 15px;
    background-color: #fff;
    border-bottom: 1px solid #E0E7F1;

}

.topReviews .review .logo {
    width: 120px;
}

.topReviews .rating_score {
    display: flex;
    align-items: center;
    justify-content: center;
}

.topReviews .score_number {
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 24px;
    display: flex;
    align-items: center;
    color: #1f2d3f;
    margin-right: 5px;
}

.topReviews .button_visit {
    width: 115px;
    margin: 0;
}

.popular_articles .wrap {
    display: block;
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    color: #333;
}

.popular_articles h1 {
    font-style: normal;
    font-weight: 600;
    font-size: 26px;
    line-height: 36px;
    text-align: center;
    letter-spacing: 1px;
    color: #1f2d3f;
    margin-bottom: 25px;
}

.popular_articles h1 span {
    font-weight: 600;
    color: #009685;
}

.popular_articles .articles_wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

.popular_articles .article {
    max-width: 370px;
    width: 100%;
    padding: 20px;
    background: #FFFFFF;
    box-shadow: 0 4px 20px #c4cdd940;
    border-radius: 10px;
    margin-bottom: 20px;
}

.popular_articles .article img {
    object-fit: cover;
    object-position: top;
    max-width: 100%;
    width: 100%;
    height: 220px;
    border-radius: 10px;
}

.popular_articles .article_title {
    font-style: normal;
    font-weight: 400;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    letter-spacing: .5px;
    color: #1f2d3f;
    margin: 20px 0;
}

.popular_articles .article_desc {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #4c5b6d;
    height: 72px;
    overflow-y: hidden;
    margin-bottom: 30px;
}

.popular_articles .article .article_nav {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.popular_articles .article .article_update {
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    color: #a0aec2;
}

.popular_articles .article .article_update img {
    width: 16px;
    height: 16px;
    margin-right: 5px;
}

.popular_articles .article .article_link {
    background: #FFFFFF;
    border: 1px solid #C92D5C;
    border-radius: 10px;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #c92d5c;
    padding: 10px 20px;
}

.popular_articles .article .article_link:hover {
    border: 1px solid #DA3D6C;
    box-shadow: 0 4px 20px #959da940;
    border-radius: 10px;
}

header.mobile-menu.activated {
    display: flex;
    flex-flow: column nowrap;
    background-color: #fff;
    padding: 15px 20px;
    min-height: 100vh;
    position: fixed;
    right: 0;
    top: 0;
    width: 85%;
    z-index: 10000;
}

.burger_mobile .desk-hidden {
    display: none;
}

.privacy__content {
    display: block;
    background: #F3F6FA;
    padding: 160px 0 128px;
}

.client-about {
    display: block;
    width: 100%;
    padding: 50px 0 100px;
    background: url(../images/reviews_bg.jpg) no-repeat;
    background-size: cover;
}

.client-about .content {
    width: 814px;
    margin: 0 auto;
}

.client-about h1 {
    font-size: 40px;
    line-height: 60px;
    font-weight: 900;
    color: #333;
    text-transform: uppercase;
    font-feature-settings: "smcp";
    font-variant: small-caps;
    margin-bottom: 32px;

}

.client-about .page_content {
    width: 100%;
    padding: 32px;
    background: rgba(255, 255, 255, .6);
    box-shadow: 0 8px 20px #b4becd59;
    border-radius: 4px;
}

.page_content_main p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
    margin-bottom: 30px;
}

.page_content_main h2 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 900;
    color: #333;
    margin-bottom: 20px;
}

.page_content_main {
    min-width: 763px;
    background: #fff;
    box-shadow: 0 8px 20px #b4becd59;
    border-radius: 4px;
    padding: 32px;
}

.page_content_main h1 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #333;
}

.page_content {
    color: #333;
}

.wrap-blog-article {
    width: 1170px;
    margin: 0 auto;
}

.wrap-blog-article section {
    display: flex;
    flex-flow: row nowrap;
}

.main_wrap_blog {
    margin-right: 30px;
    margin-top: -15px;
}

.main-blog-article {
    margin-top: 5px;
    background-color: #fff;
    padding: 15px 20px;
    border-radius: 8px;
}

.main-blog-article h1 {
    font-size: 40px;
    line-height: 60px;
    font-weight: 900;
    color: #333;
    text-transform: uppercase;
    font-feature-settings: "smcp";
    font-variant: small-caps;
    margin-bottom: 30px;
}

.blog-page {
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
}

.blog-page .header {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin-bottom: 64px;
    align-items: center;
}

.blog-page .header h1 {
    font-size: 40px;
    line-height: 60px;
    font-weight: 900;
    color: #333;
    text-transform: uppercase;
    font-feature-settings: "smcp";
    font-variant: small-caps;
}

.blog-page-section {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.client-post-preview {
    display: block;
    max-width: 575px;
    width: 100%;
    margin-bottom: 32px;

}

.client-post-preview .post {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 8px 20px #b4becd59;
    border-radius: 4px;
}

.client-post-preview .post img {
    width: 260px;
}

.client-post-preview .post .col {
    width: 100%;
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: flex-start;
    margin-left: 16px;
}

.client-post-preview .post h3 {
    font-size: 26px;
    line-height: 36px;
    font-weight: 900;
    color: #333;
}

.client-post-preview .button_visit {
    width: calc(100% - 55px);
    margin-right: 54px;
    position: relative;
    white-space: nowrap;
    border-radius: 10px;
}

.client-review-page {
    padding: 156px 0 128px;
    display: block;
    width: 100%;
    margin: 0 auto;
    color: #333;
    background: url(../images/reviews_bg.jpg) no-repeat top center / cover;
}

.client-review-page h1 {
    margin: 0 auto 20px;
    max-width: 1170px;
    width: 100%;
    font-style: normal;
    font-weight: 600;
    font-size: 46px;
    line-height: 60px;
    text-transform: uppercase;
    color: #333;
    padding-right: 40%;
}

.client-review-page .description {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    margin: 0 auto 30px;
    max-width: 1170px;
    width: 100%;
    padding-right: 10%;

}

.client-review-page .reviews {
    max-width: 1170px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
}

.client-review-page .reviews .review {
    width: 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    padding: 32px 32px 40px;
    background: #fff;
    box-shadow: 0 8px 20px #b4becd59;
    margin-bottom: 32px;
}

.client-review-page .reviews .review .col {
    display: flex;
    flex-flow: column nowrap;
    width: 100%;
}

.client-review-page .reviews .review .col .logo_wrap {
    display: flex;
    width: 100%;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.client-review-page .stars {
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    margin-right: 10px;
}

.client-review-page .stars p {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #333;
    color: #2f3f54;
    margin-left: 5px;
}

.client-review-page .col-additional .block {
    width: 100%;
    margin-bottom: 16px;
    padding: 20px;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    background-color: #f3f6fa;
    justify-content: space-around;
    min-height: 180px;
}

.client-review-page .col-additional .block img {
    width: 50px;
    height: 50px;
    margin-bottom: 10px;
}

.client-review-page .col-additional .block h3 {
    font-family: Chivo;
    font-style: normal;
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    text-transform: uppercase;
    color: #333;
    text-align: center;
}

.client-review-page .col-additional .block p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
    text-align: center;
}

.client-review-page .col-additional {
    display: flex;
    flex-flow: column nowrap;
    min-width: 345px;
    margin-left: 32px;
}

.client-review-page .col-additional.mobile {
    display: none;
}

.client-review-page .page_content {
    color: #333;
}

.client-review-page p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    margin-bottom:20px;
    margin-top:20px;
}

.client-review-page .buttons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
}

.client-review-page .buttons .button_visit {
    margin-right: 36px;
    padding: 10px 45px;
    text-align: center;
    white-space: nowrap;
    margin-bottom: 0;
    max-width: 74%;
    width: 100%;
    height: 46px;
    border-radius: 4px;
    font-family: Chivo;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.client-review-page .buttons .link_default {
    margin-top: 0;
    font-family: Chivo;
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 30px;
    color: #f46467;
    letter-spacing: 0;
    text-transform: capitalize;
    flex-shrink: 0;
}

.burger_mobile.activated img:first-child {
    display: none;
}

.offer .score .links .link_default:last-child {
    display: none;
}

.review-intro-page {
    display: block;
    padding: 160px 0 100px;
    background: linear-gradient(180deg, #F3F6FA 0%, #F3F6FA 49.46%, #FFFFFF 100%);
}

.review-intro-page .page_content {
    margin: -40px 0 0;
    color: #333;
}

.review-intro-page .page_content h1 {
    font-size: 40px;
    font-weight: 900;
    margin-bottom: 20px;
    color: #333;
}

.review-intro-page .page_content h1 a {
    color: #c92d5c;
}

.review-intro-page .disclosure {
    margin-top: 20px;
}

.review-intro-page .disclosure h3 {
    color: #939393;
}

.review-intro-page .disclosure div {
    padding: 0;
    box-shadow: none;
    border-radius: 0;
}

.review-intro-page .disclosure p {
    color: #939393;
}

.review-intro-page .col-right {
    width: 376px;
    margin-left: 32px;
    background: transparent;
    box-shadow: none;
}


.review-intro-page-container {
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-flow: row nowrap;
    width: 100%;
}

.mobileStickyReview {
    display: none;
}

.review-intro-page .col-right .client-review-info {
    display: block;
    position: sticky;
    top: 0;
}

.client-review-info .review_info {
    display: block;
    width: 100%;
    margin: 0 auto 20px;
    background: #fff;
    padding: 20px;
    box-shadow: 0 8px 20px #b4becd59;
    border-radius: 4px;
}

.client-review-info .logo_wrap {
    width: 100%;
    padding-bottom: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.client-review-info .logo_wrap img {
    width: 120px;
    margin-right: 25px;
}

.client-review-info .stars {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
}

.client-review-info .stars svg {
    width: 20px;
    height: 20px;
    margin-right: 4px;
}

.client-review-info .rating {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
}

.client-review-info .rating_number {
    font-size: 30px;
    line-height: 40px;
    font-weight: 900;
    color: #333;
    text-transform: uppercase;
    font-feature-settings: "smcp";
    font-variant: small-caps;
    margin-right: 8px;
}

.client-review-info .rating_textScore {
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    color: #333;
    margin-right: 8px;
    white-space: nowrap;
}

.client-review-info .rating_text {
    font-size: 12px;
    line-height: 18px;
    font-weight: 400;
    color: #333;
    text-transform: uppercase;
    white-space: nowrap;
}

.client-review-info .button_visit {
    width: 258px;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
}


@media (max-width: 1200px) {
    .client-review-page {
        padding: 156px 20px 128px;
    }

    .client-review-page .reviews .review {
        flex-direction: column;
        padding: 20px;
    }

    .client-review-page .col-additional {
        min-width: 100%;
        margin: 20px 0 0;
        flex-direction: row;
        padding: 0;
    }

    footer .wrap {
        width: 100%;
        margin: 0;
        padding: 50px 15px;
    }

    footer .col.copyright .logo {
        width: 300px;
        display: block;
    }

    footer .col.copyright .logo img {
        width: 100%;
    }

    .review-intro-page .col-right .client-review-info {
        display: none;
    }
}

@media (max-width: 1180px) {
    .client-post-preview {
        max-width: 100%;
    }

    .blog-page {
        padding-left: 15px;
        padding-right: 15px;
    }

    .col-right {
        max-width: 240px;
        margin-left: 20px;
    }

    .logo img {
        width: 200px;
    }

    .offer-month.wrap {
        padding: 50px;
    }

    .bottom-block .wrap {
        padding: 50px 15px;
    }
}

@media (max-width: 1024px) {
    .comments_block h3 {
        width: 100%;
    }

    .faqITem, .faqITem .summary {
        max-width: 100%;
    }

    .bottom-block .wrap {
        flex-direction: column;
    }

    .client-top-offers {
        margin: 50px auto 0;
    }

    .client-faq {
        margin-right: 0;
        max-width: 100%;
        width: 100%;
    }

    .most-popular .wrap {
        flex-direction: column;
        align-items: center;
    }


    .most-popular .categories_list {
        max-width: 100%;
        margin-top: 25px;
    }

    .col-right {
        display: none;
    }

    .header_image {
        display: none;
    }

    .wrap_top {
        padding: 30px 0;
    }

    .wrap_top h1 {
        font-size: 40px;
    }

    .title .title-newline {
        font-size: 25px;
    }

    .wrap {
        width: 100%;
        padding: 0 15px;
    }
}

@media (max-width: 900px) {
    footer .wrap {
        flex-wrap: wrap;
    }

    footer .col.copyright {
        width: 100%;
    }

    .copyright_desc {
        display: none;
    }

    .copyright_mob {
        display: block;
        color: white;
    }

    .offer-month.wrap {
        padding: 50px 15px;
    }
}

@media (max-width: 800px) {
    header .burger_mobile {
        display: block;
        border: none;
        background: none;
        width: 30px;
        height: 20px;
    }

    .main_wrap_blog {
        width: 100%;
    }

    .page_content_main {
        min-width: 100%;
    }


    header .burger_mobile img {
        width: 100%;
        height: 100%;
    }

    header nav {
        width: 100%;
        margin: 0;
        padding: 0 20px;
    }

    header .burger_mobile {
        display: block;
        border: none;
        background: none;
        width: 30px;
        height: 20px;
    }

    header .desktop-menu {
        display: none;
    }

    header .mobile-menu.activated {
        top: 30px;
        z-index: 10000;
    }

    header .burger_mobile.activated {
        z-index: 1000000;
    }

    header .burger_mobile.activated .desk-hidden {
        display: block;
    }

}

@media (max-width: 768px) {

    .review-intro-page .page_content {
        margin-top: 0;
        color: #333;
    }

    .review-intro-page {
        padding: 40px 15px;
    }

    .review-intro-page-container {
        flex-direction: column;
    }

    .mobileStickyReview {
        display: block;
    }

    .singles, .labels .label2.active {
        display: none;
    }

    .offer .score .links .link_default:last-child {
        display: block;
    }

    .client-review-page {
        padding: 40px 20px 128px;
    }

    .client-review-page h1 {
        max-width: 100%;
        padding-right: 0;
        font-weight: 600;
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 8px;
    }

    .client-review-page .buttons .button_visit {
        margin-right: 0;
        width: 100%;
    }

    .client-review-page .logo_wrap img {
        margin-bottom: 10px;
        max-width: 250px;
        width: 100%;
    }

    .client-review-page .reviews .review .col .logo_wrap {
        flex-direction: column;
        align-items: center;
        margin-bottom: 24px;
    }

    .client-review-page .buttons {
        flex-direction: column;
        align-items: center;
        margin: 20px 0 0;
    }

    .client-review-page .col-additional {
        display: none;
    }

    .client-review-page .col-additional .block {
        margin: 0 0 8px;
        flex-flow: row;
        justify-content: flex-start;
        align-items: flex-start;
        min-height: 114px;
    }

    .client-review-page .col-additional .block > div {
        text-align: left !important;
        margin-left: 20px;
    }

    .client-review-page .col-additional.mobile {
        display: flex;
        flex-direction: column;
    }

    .most-popular {
        padding: 20px 15px;
    }

    .most-popular .categories_list {
        flex-direction: column;
    }

    .most-popular .category {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
    }

    .offer-month .offer_wrap .offer {
        flex-flow: column nowrap;
        position: relative;
    }

    .offer-month.wrap {
        padding: 20px 15px;
    }

    .client-top-offers {
        margin-top: 0;
        margin-bottom: 30px;
        max-width: 100%;
    }

    .page_list .offer_wrap .offer .links .page_content {
        display: block;
    }

    .faqITem .summary {
        font-size: 18px;
        padding-right: 60px;
    }

    .page_list .offer_wrap .offer .bottomLine, .a-disclosure-wrapper button .outerText {
        display: none;
    }

    .page_list .offer_wrap .offer {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    footer .col {
        width: 100%;
    }

    .copyright_mob {
        padding-top: 50px;
    }
}
