.header .btn {
    background-color: var(--orange);
    border: 1px solid var(--orange);
    font-weight: 400;
}

.header .btn:hover {
    background-color: var(--orange-hover);
    border: 1px solid var(--orange-hover);
    color: var(--text-color);
}

.breadcrumbs {
    padding-top: 16px;
}

.blog-container {
    max-width: 1170px;
    margin-left: auto;
    margin-right: auto;
}

.breadcrumbs-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.breadcrumbs-list li,
.breadcrumbs-list li a,
.separator {
    font-size: 12px;
    line-height: normal;
    list-style-type: none;
}

.breadcrumbs-list li a {
    text-decoration: none;
    color: var(--text-color);
    opacity: 0.4;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}

.breadcrumbs-list li a:hover {
    opacity: 1;
}

.separator {
    margin: 0px 8px;
    opacity: 0.4;
}

.mobile-breadcrumbs {
    display: none;
}

.blog-page {
    padding: 40px 0 184px;
}

.single .blog-page {
    padding: 60px 0 144px;
}

.blog-btn,
.blog-articles-title.mobile,
.drop-choice {
    display: none;
}

.blog-title {
    font-size: 52px;
    font-weight: 400;
    line-height: 62px;
}

.blog-subtitle {
    font-size: 20px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 24px;
}

.blog-box {
    margin-top: 48px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.category .blog-box {
    margin-top: 40px;
}

.blog-wrapper {
    width: calc(100% - 30px - 270px);
}

.big-article {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 34px;
    text-decoration: none;
    color: var(--text-color);
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    background: #fff;
    padding: 8px;
    margin-left: -8px;
    margin-top: -8px;
}

.big-article:hover {
    background-color: var(--color-primary);
    border-radius: 4px;
}

.big-article__img {
    width: 452px;
    height: 283px;
    line-height: 0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.big-article__img img {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
}

.big-article-content {
    width: 377px;
    margin-left: 22px;
}

.big-article__title {
    font-size: 22px;
    font-weight: 550;
    line-height: 26px;
}

.big-article__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin: 21px 0 46px;
}

.big-article__more {
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    text-transform: uppercase;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.big-article__more span {
    line-height: 0;
    margin-bottom: 3px;
    margin-left: 6px;
    font-size: 11px;
}

.article-date {
    margin-top: 10px;
    color: #8F929B;
    font-size: 14px;
    font-weight: 400;
    line-height: 150%;
}

.big-article .article-date {
    margin-top: 18px;
}

.blog-articles-title {
    font-size: 28px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 22px;
}

.articles {
    margin-top: -8px;
}

.articles,
.related-wrapper {
    margin-left: calc(-14px - 8px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.article {
    width: calc(33.33% - 14px);
    margin-left: 14px;
    text-decoration: none;
    color: var(--text-color);
    padding: 8px;
    margin-bottom: 45px;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    background: #fff;
    border-radius: 4px;
}

.article:hover {
    background: var(--color-primary);
}

.article-img {
    width: 100%;
    height: 160px;
    line-height: 0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.article-img::before {
    content: '';
    height: 100%;
    width: 100%;
    background: #000;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: var(--trans);
}

.article:hover .article-img::before {
    opacity: 0.2;
}

.article-img img {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
}

.article-content {
    margin-top: 23px;
}

.article-title {
    font-size: 18px;
    font-weight: 550;
    line-height: 140%;
}

.article-text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-top: 8px;
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.blog-page .pagination {
    padding-top: 10px;
    overflow: hidden;
}

.wp-pagenavi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
    background: none;
    border: none;
    font-weight: 400;
    font-size: 15px;
    line-height: 20px;
    color: rgba(15, 27, 36, 0.40);
    margin: 0;
    padding: 0;
    width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-decoration: none;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}

.wp-pagenavi a:hover {
    color: var(--text-color);
}

.wp-pagenavi span.current {
    border: 1px solid var(--text-color);
    border-radius: 50%;
    margin: 0;
    color: var(--text-color);
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
    margin: 0 14px;
    font-size: 0;
    height: 20px;
    width: 11px;
    background: url('data:image/svg+xml,<svg width="11" height="20" viewBox="0 0 11 20" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 19C2.30909 17.6909 7.54546 12.4545 10 10L0.999999 1" stroke="%230F1B24" stroke-linecap="round" stroke-linejoin="round"/></svg>');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wp-pagenavi .previouspostslink {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
}

.wp-pagenavi .nextpostslink {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.blog-sidebar {
    width: 270px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.blog .blog-sidebar {
    margin-top: 49px;
}

.sidebar-start {
    padding: 50px 27px 34px;
    text-align: center;
    background: #FFFFFF;
    border-radius: 4px;
    border: 1px solid rgba(15, 27, 36, 0.20);
    background: #FFF;
    line-height: 0;
    text-align: center;
}

.sidebar-start .btn {
    width: 100%;
}

.sidebar-item {
    display: block;
    text-decoration: none;
    margin-bottom: 30px;
}

.sidebar-item:hover .btn {
    background-color: var(--orange-hover);
    border: 1px solid var(--orange-hover);
    color: var(--text-color);
}

.sidebar-item img {
    max-width: 100%;
    height: auto;
}

.sidebar-start__title {
    color: var(--text-color);
    font-weight: 550;
    font-size: 18px;
    line-height: 26px;
    margin: 34px 0;
}

.sidebar-info {
    padding: 20px 27px;
    background: #fff;
    border-radius: 4px;
    border: 1px solid rgba(15, 27, 36, 0.20);
}

.sidebar-info__title {
    font-weight: 550;
    font-size: 16px;
    line-height: 26px;
}

.sidebar-info hr {
    margin: 16px 0;
    background: none;
    width: 100%;
    border: 0;
    border-bottom: 1px solid rgba(15, 27, 36, 0.20);
}

.sidebar-info-list {
    list-style-type: none;
}

.sidebar-info-list__item {
    margin-bottom: 20px;
}

.sidebar-info-list__item a {
    text-decoration: none;
}

.sidebar-info-list__item h3 {
    font-size: 14px;
    font-weight: 550;
    line-height: 20px;
    color: var(--text-color);
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}

.sidebar-info-list__item a:hover h3 {
    opacity: 0.5;
}

.sidebar-info-list__item p {
    color: #8F929B;
    font-size: 13px;
    font-weight: 400;
    line-height: 100%;
    margin-top: 8px;
}

.sidebar-info-list__item .active h3 {
    opacity: 0.5;
}

.sidebar-share {
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 50px rgba(129, 129, 129, 0.1);
    box-shadow: 0px 0px 50px rgba(129, 129, 129, 0.1);
}

.sidebar-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0px 18px;
}

.sidebar-social__item {
    text-decoration: none;
    margin-left: 12px;
}

.sidebar-social .sidebar-social__item:first-child {
    margin-left: 0;
}

.categories {
    margin-top: 8px;
    list-style-type: none;
}

.category-tab {
    border-bottom: 1px solid rgba(15, 27, 36, 0.20);
}

.category-tab__title {
    display: block;
    padding: 16px 30px 16px 0;
    position: relative;
}

:root {
    --plus: url('data:image/svg+xml,<svg viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M7.67205 7.66037H13.0494C13.2256 7.65731 13.3936 7.58516 13.5171 7.45946C13.6407 7.33376 13.7099 7.16456 13.7099 6.98832C13.7099 6.81208 13.6407 6.64288 13.5171 6.51718C13.3936 6.39148 13.2256 6.31933 13.0494 6.31627H7.67205L7.67205 0.93889C7.66899 0.762673 7.59684 0.594709 7.47114 0.471173C7.34544 0.347638 7.17624 0.278416 7 0.278416C6.82376 0.278416 6.65456 0.347638 6.52886 0.471173C6.40316 0.594709 6.33101 0.762673 6.32795 0.93889L6.32795 6.31627L0.95057 6.31627C0.77609 6.32187 0.610636 6.39514 0.489217 6.52057C0.367798 6.646 0.29994 6.81374 0.300002 6.98831C0.300063 7.16288 0.36804 7.33058 0.489548 7.45592C0.611055 7.58126 0.776562 7.65441 0.951045 7.6599L6.32795 7.66037L6.32795 13.0377C6.3264 13.127 6.34263 13.2156 6.37571 13.2985C6.40879 13.3814 6.45804 13.4569 6.5206 13.5206C6.58316 13.5842 6.65777 13.6348 6.74008 13.6693C6.82239 13.7038 6.91075 13.7216 7 13.7216C7.08925 13.7216 7.17761 13.7038 7.25992 13.6693C7.34223 13.6348 7.41684 13.5842 7.4794 13.5206C7.54196 13.4569 7.59121 13.3814 7.62429 13.2985C7.65737 13.2156 7.6736 13.127 7.67205 13.0377L7.67205 7.66037Z" fill="%2317181A"/></svg>');
    --minus: url('data:image/svg+xml,<svg viewBox="0 0 14 2" fill="none" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" clip-rule="evenodd" d="M0 0.75C0 0.335786 0.313401 0 0.7 0H13.3C13.6866 0 14 0.335786 14 0.75C14 1.16421 13.6866 1.5 13.3 1.5H0.7C0.313401 1.5 0 1.16421 0 0.75Z" fill="%2317181A"/></svg>');
}

.category-tab__title.has-child:before {
    content: '';
    width: 14px;
    height: 14px;
    background-image: var(--plus);
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: calc(50% - 7px);
    right: 0px;
}

.category-tab.active .category-tab__title.has-child:before {
    height: 2;
    background-image: var(--minus);
}

.category-tab__title,
.category-list__item a {
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    color: var(--text-color);
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
    opacity: 1;
}

.category-tab__title.current,
.category-list__item.current a {
    opacity: 0.5;
    pointer-events: none;
}

.category-tab__title:hover,
.category-list__item a:hover {
    opacity: 0.5;
}

.category-list {
    padding-left: 16px;
    list-style-type: none;
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

.category-tab.active .category-list {
    max-height: 500px;
}

.category-list__item {
    padding: 8px 0;
}

.category-list__item:last-child {
    padding-bottom: 24px;
}

.sidebar-fixed {
    opacity: 0;
    visibility: hidden;
    position: sticky;
    top: 92px;
    transition: var(--trans);
}

.sidebar-fixed.show {
    opacity: 1;
    visibility: visible;
}

.btn-single {
    margin-top: 32px;
}

.single-img {
    margin-top: 60px;
    line-height: 0;
}

.single-img img {
    width: 100%;
    border-radius: 4px;
}

.single .blog-box {
    margin-top: 60px;
}

.single-content {
    width: calc(100% - 50px - 270px);
}

.single-content {
    color: #313131;
    font-weight: 400;
    font-size: 18px;
    line-height: 36px;
}

.single-content p:not(.shortcode-calculator p) {
    margin-bottom: 16px;
}

.single-content a {
    transition: var(--trans);
    color: #0F1B24;
}

.single-content a:hover {
    color: var(--orange-hover);
}

.single-content a:focus {
    color: #B83716;
}

.single-content img:not(.shortcode-calculator img) {
    max-width: 100%;
    height: auto !important;
    border-radius: 4px !important;
}

.single-content iframe {
    max-width: 100%;
}

.related-articles {
    margin-top: 60px;
}

.related-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 48px;
    margin-bottom: 30px;
}


.single-content .advertising {
    margin-left: 0;
    margin-bottom: 20px;
}

.article.advertising {
    width: 100%;
    padding: 0;
    margin-left: calc(14px + 8px);
    margin-right: 8px;
}

.single .article.advertising {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.advertising {
    display: block;
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.advertising-close {
    cursor: pointer;
    width: 28px;
    height: 28px;
    position: absolute;
    top: 18px;
    right: 20px;
    z-index: 2;
    line-height: 0;
}

.sidebar-item .advertising-close {
    width: 23px;
    height: 23px;
}

.advertising-close::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../../images/cookie-close.svg);
    background-size: contain;
    background-repeat: no-repeat;
}

.advertising a img {
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    -o-transition: transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
}

.advertising a:hover img {
    -webkit-transform: scale(1.06);
    -ms-transform: scale(1.06);
    transform: scale(1.06);
}

.advertising-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
    border-radius: 0;
    -webkit-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
    background: rgba(0, 0, 0, 0.60);
    padding: 0 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 0;
}

.advertising-popup.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition-delay: 3000ms;
    -o-transition-delay: 3000ms;
    transition-delay: 3000ms;
}

.advertising-popup__link {
    max-width: 950px;
    max-height: 90px;
    overflow: hidden;
}

.advertising-popup__link img {
    max-width: 100%;
    max-height: 100%;
    display: block;
    height: auto;
    -webkit-transition: -webkit-transform 0.3s linear;
    transition: -webkit-transform 0.3s linear;
    -o-transition: transform 0.3s linear;
    transition: transform 0.3s linear;
    transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}

.advertising-popup__link:hover img {
    -webkit-transform: scale(1.03);
    -ms-transform: scale(1.03);
    transform: scale(1.03);
}

.advertising-popup__link,
.advertising-popup__close {
    margin-left: auto;
}

.advertising-popup__close {
    cursor: pointer;
}

.advertising-popup__close img {
    width: 70px;
    height: auto;
}


.download-guide-btn {
    width: 157px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 40px;
    margin-bottom: -20px;
    cursor: pointer;
}

.download-guide-btn .download-guide-btn__text {
    color: #0F1B24;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}

.download-guide-btn:hover .download-guide-btn__text {
    opacity: 0.6;
}

.download-icon {
    width: 15px;
    height: 22px;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 15 22" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M7.53846 17L7.53846 1L7.53846 17ZM7.53846 17L13.0769 11.4615L7.53846 17ZM7.53846 17L2 11.4615L7.53846 17Z" fill="%23242424"/><path d="M7.53846 17L7.53846 0.999999M7.53846 17L13.0769 11.4615M7.53846 17L2 11.4615" stroke="%23242424" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/><path d="M1 21H14" stroke="black" stroke-width="2" stroke-linecap="round"/></svg>');
    background-position: center;
    background-repeat: no-repeat;
    margin-left: 21px;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}

.download-guide-btn:hover .download-icon {
    opacity: 0.6;
}

.download-guide-block {
    margin: 60px 0;
    border-radius: 8px;
    background: var(--color-primary);
    width: 100%;
    padding: 40px 32px;
    cursor: pointer;
}

.download-guide-block .download-guide-btn {
    margin-top: 22px;
    margin-bottom: 0 !important;
}

.download-guide-block__text {
    color: #0F1B24;
    font-size: 18px;
    font-weight: 400;
    line-height: 150%;
    max-width: 725px;
}

.single-share {
    width: calc(100% - 50px - 270px);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(15, 27, 36, 0.20);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.single-share-content {
    max-width: 500px;
    margin-right: 40px;
}

.single-share__title {
    font-size: 36px;
    font-weight: 400;
    line-height: 120%;
}

.single-share__text {
    font-size: 16px;
    font-weight: 550;
    line-height: 150%;
    margin-top: 16px;
}

.single-share-social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.single-share-social__item {
    margin-left: 16px;
    border: 1px solid #CECECE;
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-transition: var(--trans);
    -o-transition: var(--trans);
    transition: var(--trans);
}

.single-share-social__item:hover {
    border: 1px solid #0F1B24;
}

.single-share-social__item svg {
    fill: #0F1B24;
}

.popup-blog-subscription {
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
    padding: 0;
}

.popup-blog-subscription .popup-wrapper {
    width: 480px;
    padding: 60px 40px 40px;
    background: #FFF;
    border-radius: 4px;
    margin-top: auto;
    margin-bottom: auto;
}

.popup-blog-subscription__text {
    text-align: left;
    color: #0F1B24;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    max-width: 300px;
}

.popup-blog-subscription__text span {
    margin-right: 16px;
}

.popup-blog-subscription__form {
    margin-top: 40px;
}

.popup-blog-subscription__title {
    font-size: 32px;
    font-weight: 400;
    line-height: 120%;
    margin-bottom: 16px;
    max-width: 370px;
}

.popup-blog-subscription__form label {
    color: #313131;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    margin-bottom: 8px;
    display: block;
}

.popup-blog-subscription__form .inp {
    padding: 14px 16px;
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 16px;
}

.popup-blog-subscription__form .inp::-webkit-input-placeholder {
    color: rgba(49, 49, 49, 0.40);
    font-weight: 400;
    font-size: 15px;
}

.popup-blog-subscription__form .inp::-moz-placeholder {
    color: rgba(49, 49, 49, 0.40);
    font-weight: 400;
    font-size: 15px;
}

.popup-blog-subscription__form .inp:-ms-input-placeholder {
    color: rgba(49, 49, 49, 0.40);
    font-weight: 400;
    font-size: 15px;
}

.popup-blog-subscription__form .inp::-ms-input-placeholder {
    color: rgba(49, 49, 49, 0.40);
    font-weight: 400;
    font-size: 15px;
}

.popup-blog-subscription__form .inp::placeholder {
    color: rgba(49, 49, 49, 0.40);
    font-weight: 400;
    font-size: 15px;
}

.popup-blog-subscription .popup-wrapper button[type="submit"] {
    margin-top: 8px;
    width: 100%;
}

#calculator_iframe {
    border: none;
    background: #F3F6FC;
}


.popular-article {
    display: block;
    border-radius: 8px;
    background: var(--color-primary);
    padding: 40px 30px;
    text-decoration: none;
    display: flex;
    justify-content: space-between;
    transition: var(--trans);
}

.popular-article:hover {
    opacity: 0.9;
}

.popular-article__img {
    line-height: 0;
    width: 383px;
    min-width: 383px;
    height: 200px;
    line-height: 0;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.popular-article__img img {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 100%;
    min-height: 100%;
    width: 100%;
    height: auto;
    display: block;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 4px;
}

.popular-article-content {
    width: 383px;
}

.popular-article__name {
    color: #8F929B;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
}

.popular-article__title {
    font-size: 18px;
    font-weight: 550;
    line-height: 26px;
    margin: 8px 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.popular-article__text {
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.popular-article__date {
    margin: 16px 0 24px;
}

.main-categories {
    margin: 48px 0 40px;
}

.main-categories-tabs {
    display: flex;
    flex-wrap: wrap;
}

.main-categories-tab,
.main-categories-content-item {
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    text-decoration: none;
    color: var(--text-color);
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 24px;
    border: 1px solid rgba(15, 27, 36, 0.20);
    margin-right: 8px;
    transition: var(--trans);
    margin-bottom: 8px;
}

.main-categories-tab:last-child,
.main-categories-content-item:last-child {
    margin-right: 0;
}

.main-categories-tab.current,
.main-categories-content-item.current {
    cursor: auto;
    border: 1px solid #0F1B24;
}

.main-categories-tab:not(.current):hover,
.main-categories-content-item:not(.current):hover {
    opacity: 0.5;
}

.main-categories-contents {
    margin-top: 16px;
}

.main-categories-content {
    display: flex;
    flex-wrap: wrap;
}

.main-categories-content__title {
    padding: 4px 0;
    color: rgba(15, 27, 36, 0.40);
    font-size: 15px;
    font-weight: 400;
    line-height: 150%;
    white-space: nowrap;
    margin-right: 8px;
}

.trustpilot-button {
    max-width: 240px;
    display: flex;
    align-items: center;
    border-radius: 4px;
    border: 1px solid #00DA8D;
    padding: 13px 23px 12.5px;
    text-decoration: none;
    color: var(--text-color) !important;
    text-align: center;
    font-size: 15px;
    font-weight: 400;
    line-height: 20px;
    transition: var(--trans);
    background: transparent;
}

.trustpilot-button svg {
    margin: 0 4px 1px 12px;
    transition: var(--trans);
    fill: #00DA8D;
}

.trustpilot-button:hover {
    background: #00DA8D;
    color: #fff !important;
}

.trustpilot-button:hover svg {
    fill: #fff;
}

.single-content .trustpilot-button {
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media screen and (max-width: 1439px) {
    .blog-container {
        width: var(--width-container);
    }

    .big-article-content {
        width: 350px;
    }

    .popular-article__img {
        width: 350px;
        min-width: 350px;
    }
}

@media screen and (max-width: 1199px) {
    .article {
        width: calc(50% - 14px);
    }

    .blog-wrapper {
        width: calc(100% - 24px - 270px);
    }

    .big-article__img {
        width: 345px;
    }

    .big-article-content {
        width: 290px;
        margin-left: 16px;
    }

    .big-article__title {
        font-size: 20px;
    }

    .advertising-popup__close {
        margin-left: 10px;
    }

    .advertising-popup__close img {
        width: 50px;
    }

    .advertising-popup__link {
        margin-left: 0;
    }

    .advertising-popup {
        padding: 0;
    }

    .related-title {
        font-size: 28px;
        line-height: 1;
        margin-bottom: 20px;
    }

    .single-share {
        padding: 30px;
    }

    .popular-article {
        padding: 24px 20px;
    }

    .popular-article-content {
        width: 270px;
    }

    .popular-article__img {
        width: 310px;
        min-width: 310px;
        height: 220px;
    }
}

@media screen and (max-width: 991px) {
    .blog-page {
        padding: 40px 0 120px;
    }

    .single .blog-page {
        padding: 60px 0 120px;
    }

    .blog-title {
        font-size: 48px;
    }

    .blog-subtitle {
        font-size: 22px;
    }

    .blog-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .blog-wrapper {
        width: 100%;
    }

    .blog-box {
        margin-top: 40px;
    }

    .big-article {
        margin-bottom: 40px;
    }

    .big-article__title {
        font-size: 22px;
    }

    .big-article-content {
        width: 349px;
    }

    .big-article__text {
        font-size: 16px;
        margin: 21px 0 22px;
    }

    .big-article__img {
        height: 254px;
    }

    .article {
        max-width: 316px;
        width: calc(50% - 28px);
        margin-left: 28px;
        margin-bottom: 40px;
    }

    .trustpilot-button {
        margin-top: 10px;
    }

    .article-img {
        height: 177px;
    }

    .article.advertising {
        max-width: 644px;
        margin-left: calc(28px + 8px);
    }

    .articles,
    .related-wrapper {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-left: calc(-28px - 8px);
    }


    .article-content {
        margin-top: 12px;
    }

    .blog .blog-sidebar {
        margin-top: 90px;
    }

    .blog-sidebar {
        margin-top: 90px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%;
        flex-direction: row;
    }

    .sidebar-item,
    .sidebar-info {
        width: 345px;
    }

    .sidebar-categories {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .sidebar-fixed {
        display: none !important;
    }

    .single-img,
    .single .blog-box {
        margin-top: 40px;
    }

    .single-content {
        width: 100%;
    }

    .download-guide-btn {
        margin-bottom: 0;
    }

    #comments,
    #wpdcom {
        margin-bottom: 0;
    }

    .single-share {
        width: 100%;
        padding: 32px 20px;
        margin-top: 40px;
    }

    .single-share-content {
        margin-right: 0;
    }

    .single-share__title {
        font-size: 28px;
        line-height: 150%;
    }

    .single-share__text {
        margin-top: 8px;
        max-width: 344px;
    }

    .popup-blog-subscription .popup-wrapper {
        padding: 60px 24px 40px;
    }

    .popup-blog-subscription__title {
        font-size: 24px;
    }

    .popular-article__img {
        width: 334px;
        min-width: 334px;
        height: 200px;
    }

    .popular-article-content {
        width: 334px;
    }

    .blog-articles-title {
        margin-bottom: 36px;
    }

    .main-categories {
        margin: 40px 0 32px;
    }
}

@media screen and (max-width: 767px) {
    .blog-title {
        font-size: 34px;
        line-height: 44px;
    }

    .blog-subtitle {
        font-size: 19px;
    }

    .big-article {
        padding: 0;
        margin: 0;
        margin-bottom: 40px;
    }

    .big-article:hover {
        background: #fff;
    }

    .big-article__img {
        width: 260px;
    }

    .big-article-content {
        width: 268px;
        margin-left: 12px;
    }

    .big-article__title {
        font-size: 20px;
    }

    .big-article__text {
        font-size: 15px;
    }

    .articles {
        margin-top: 0;
    }

    .articles,
    .related-wrapper {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        margin-left: -14px;
    }

    .article {
        padding: 0;
        width: calc(50% - 14px);
        margin-left: 14px;
    }

    .article:hover {
        background: #fff;
    }

    .article.advertising {
        max-width: 100%;
        margin-right: 0;
        margin-left: 14px;
    }

    .sidebar-item,
    .sidebar-info {
        width: 260px;
    }

    .advertising-popup__close {
        position: absolute;
        top: 0;
        right: 0;
        height: 100%;
    }

    .advertising-popup__close img {
        height: 100%;
        width: auto;
    }

    .single-share {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start;
        -ms-flex-align: start;
        align-items: flex-start;
    }

    .single-share__text {
        max-width: 100%;
    }

    .single-share-social__item:first-child {
        margin-left: 0;
    }

    .single-share__text {
        margin: 8px 0 32px;
    }

    .popup-blog-subscription .popup-wrapper {
        max-width: 592px;
        width: 96%;
        max-width: 480px;
    }

    .desc-breadcrumbs {
        display: none;
    }

    .mobile-breadcrumbs {
        display: block;
    }

    .mobile-breadcrumbs a {
        padding-left: 18px;
        position: relative;
    }

    .mobile-breadcrumbs a::before {
        content: '';
        width: 6px;
        height: 12px;
        background-image: url('data:image/svg+xml,<svg viewBox="0 0 6 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M5 11L1 6L5 1" stroke="%23242424" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>');
        background-position: center;
        background-repeat: no-repeat;
        background-size: contain;
        position: absolute;
        top: 0;
        left: 0;
    }

    .breadcrumbs-list li a {
        opacity: 1;
    }

    .popular-article {
        padding: 20px 18px;
    }

    .popular-article__img {
        width: 220px;
        min-width: 220px;
        height: 190px;
    }

    .popular-article-content {
        width: 270px;
    }

    .popular-article__title {
        margin: 6px 0;
    }

    .popular-article__date {
        margin: 12px 0 24px;
    }

    .blog-articles-title {
        margin-bottom: 22px;
    }
}

@media screen and (max-width: 575px) {
    .blog-title {
        font-size: 28px;
        line-height: 36px;
    }

    .blog-page {
        padding: 25px 0 80px;
    }

    .single .blog-page {
        padding: 40px 0 80px;
    }


    .blog-subtitle {
        font-size: 18px;
        line-height: 30px;
        margin-top: 11px;
    }

    .category .blog-box {
        margin-top: 16px;
    }

    .sidebar-categories {
        display: none;
    }

    .categories {
        margin-top: 0;
    }

    .drop-choice {
        margin-bottom: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        background: var(--color-primary);
        border-radius: 4px;
    }

    .categories-mobile {
        overflow: hidden;
        -webkit-transition: max-height 1s ease;
        -o-transition: max-height 1s ease;
        transition: max-height 1s ease;
    }

    .categories-mobile.hide {
        max-height: 0;
        -webkit-transition: none;
        -o-transition: none;
        transition: none;
    }

    .categories-mobile:not(.hide) {
        padding: 12px 16px 16px;
        max-height: 700px;
    }

    .drop-choice__title {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        padding: 16px 40px 16px 16px;
        position: relative;
    }

    .drop-choice__title::before {
        content: '';
        width: 14px;
        height: 14px;
        background-image: var(--plus);
        background-repeat: no-repeat;
        background-position: center;
        position: absolute;
        top: calc(50% - 7px);
        right: 16px;
    }

    .drop-choice__title.opened::before {
        height: 2;
        background-image: var(--minus);
    }

    .blog-articles-title.mobile {
        display: block;
        font-size: 24px;
        margin-bottom: 16px;
        margin-top: 60px;
    }

    .big-article {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-bottom: 32px;
        margin-left: auto;
        margin-right: auto;
    }

    .big-article,
    .article,
    .article.advertising {
        max-width: 340px;
    }

    .big-article__img {
        width: 100%;
        height: 180px;
    }

    .big-article__img,
    .big-article__img img,
    .article-img,
    .article-img img {
        border-radius: 8px 8px 0 0;
    }

    .big-article-content,
    .article-content {
        width: 100%;
        margin-left: 0;
        padding: 23px 25px 30px;
        border: 1px solid rgba(15, 27, 36, 0.20);
        border-top: 0;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
        margin-top: 0;
    }

    .big-article__more {
        display: none;
    }

    .big-article__title {
        font-size: 18px;
    }

    .big-article__text,
    .article-text {
        margin: 6px 0;
        font-size: 16px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
    }

    .big-article .article-date {
        margin-top: 0;
    }

    .blog-articles-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .articles,
    .related-wrapper {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .article {
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 22px;
    }

    .trustpilot-button {
        margin-top: 28px;
    }

    .article.advertising {
        margin-left: auto;
        margin-right: auto;
    }

    .advertising-close {
        width: 20px;
        height: 20px;
        top: 14px;
        right: 14px;
    }

    .sidebar-item,
    .sidebar-info {
        width: 100%;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .blog-sidebar,
    .blog .blog-sidebar {
        margin-top: 60px;
    }

    .articles,
    .related-wrapper {
        margin-left: 0;
        margin-right: 0;
    }

    .single-content {
        font-size: 16px;
        line-height: 30px;
    }

    .single-content p:not(.shortcode-calculator p) {
        margin-bottom: 12px;
    }

    .download-guide-btn {
        margin-top: 30px;
    }

    .single .blog-box {
        margin-top: 30px;
    }

    .single .article.advertising {
        max-width: 100%;
    }

    .download-guide-block {
        margin: 48px 0;
        padding: 20px;
    }

    .related-title {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .popup-blog-subscription .popup-wrapper {
        width: 100%;
        margin-bottom: 0;
        border-radius: 4px 4px 0 0;
    }

    .wp-pagenavi a,
    .wp-pagenavi span {
        width: 41px;
        height: 41px;
    }

    .popular-article {
        flex-direction: column;
    }

    .popular-article__img {
        width: 100%;
        min-width: auto;
        height: 200px;
    }

    .popular-article-content {
        width: 100%;
        margin-top: 20px;
    }

    .popular-article-content .big-article__more {
        display: block;
    }

    .btn-single {
        width: 100%;
    }

    .main-categories {
        display: none;
    }
}

@media screen and (max-width: 410px) {

    .big-article,
    .article,
    .article.advertising {
        max-width: 100%;
    }

    .blog-subtitle {
        font-size: 16px;
        line-height: 26px;
        margin-top: 10px;
    }

    .download-guide-block {
        padding: 20px 16px;
        margin: 32px 0;
    }

    .download-guide-block__text {
        font-size: 16px;
    }

    .single-share-social {
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .popup-blog-subscription .popup-wrapper {
        padding: 60px 30px;
    }

    .popup-blog-subscription__title {
        font-size: 20px;
    }

    .popup-blog-subscription__text {
        font-size: 14px;
        max-width: 100%;
    }

    .popup-blog-subscription__form {
        margin-top: 24px;
    }

    .wp-pagenavi .previouspostslink,
    .wp-pagenavi .nextpostslink {
        margin: 0 10px;
        height: 16px;
        width: 8px;
    }

    .wp-pagenavi a,
    .wp-pagenavi span {
        width: 36px;
        height: 36px;
    }

    .popular-article__img {
        height: 190px;
    }
}

@media screen and (max-width: 359px) {
    .article-img {
        height: 160px;
    }

    .big-article-content,
    .article-content {
        padding: 16px 20px 24px;
    }

    .article-title {
        font-size: 17px;
    }

    .blog-articles-title.mobile {
        margin-top: 40px;
    }

    .single-share {
        padding: 24px 12px;
    }

    .single-share-social__item {
        margin-left: 10px;
    }

    .popup-blog-subscription .popup-wrapper {
        padding: 60px 20px;
    }

    .wp-pagenavi a,
    .wp-pagenavi span {
        width: 31px;
        height: 31px;
        font-size: 14px;
    }

    .popular-article__img {
        height: 170px;
    }
}