@import url('variables.css');

.articles-and-tips .show-more-details {
    display: block
}

.articles-and-tips .blog {
    width: 100%;
    /*padding-left: 10px !important;*/
    /*padding-right: 10px !important;*/
}

.articles-and-tips .blog:first-child {
    padding: 60px 0
}

.articles-and-tips .blog:nth-child(2) {
    padding-bottom: 30px
}

.articles-and-tips .blog-container {
    max-width: 1190px;
    margin: 0 auto;
    padding: 62px 0 80px;
    padding-bottom: 0;
}

.articles-and-tips .blog-container h2 {
    text-align: center
}

.articles-and-tips .blog-container h3 {
    font-size: 20px;
    /* font-weight: 600; */
    line-height: 1.3;
    color: #2a2a2a;
    text-align: center
}

.articles-and-tips .blog-container>span {
    font-size: 14px;
    color: #f60;
    display: block;
    text-align: center
}

.articles-and-tips .blog-container h2 {
    margin: 20px 0 13px
}

.articles-and-tips .blog-container p {
    font-size: 16px;
    line-height: 1.63;
    text-align: center;
    color: #676767
}

.articles-and-tips .blog-container .read-more {
    color: var(--article-read-more-text-color);
    text-decoration: none;
    display: block;
    margin-top: 16px;
    position: absolute;
    bottom: 35px
}

.articles-and-tips .blog-container.main-page .read-more svg {
    position: relative;
    top: -1px;
    transform: translateX(5px);
    transition: transform .5s cubic-bezier(.28,.73,.53,.79) 0s;
    color: var(--article-read-more-text-color);
    fill: var(--article-read-more-text-color);
}

.articles-and-tips .blog-container.main-page .read-more:hover svg {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px)
}

.articles-and-tips .more {
    opacity: 0;
    max-height: 0;
    margin-top: -10px;
    -webkit-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

.articles-and-tips .more.show-more-details {
    height: auto;
    max-height: 10000000px;
    margin-top: 0;
    opacity: 1
}

.articles-and-tips .hide-text,.read-more {
    font-size: 15px;
    /* font-weight: 600; */
    color: var(--leadingColor-5);
    line-height: 1.47;
    cursor: pointer;
    position: relative
}

.articles-and-tips .hide-text:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.articles-and-tips .blog-container .show-more {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.articles-and-tips .blog-container.main-page .content-container {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-top: 50px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.articles-and-tips .big-article {
    width: 100%;
    -webkit-box-shadow: 0 1px 3px 1px rgba(0,0,0,.08);
    box-shadow: 0 1px 3px 1px rgba(0,0,0,.08);
    background: #fff;
    border-radius: 5px;
    margin: 0 0 50px
}

.articles-and-tips .big-article .big-article-info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
    padding: 20px 30px 30px;
    position: relative
}

.articles-and-tips .post-excerpt {
    font-size: 15px;
    /* font-weight: 400; */
    line-height: 1.47;
    color: #9e9e9e;
    margin-bottom: 50px
}

.articles-and-tips .big-title {
    font-size: 21px;
    margin: 20px 0;
    max-width: fit-content;
}

.articles-and-tips .big-title,.small-title {
    letter-spacing: .2px;
    /* font-weight: 600 */
}

.articles-and-tips .small-title {
    font-size: 19px;
    line-height: 1.42;
    margin-bottom: 50px!important
}

.articles-and-tips .big-title a,.small-title a {
    color: #343434;
    text-decoration: none;
}

.articles-and-tips .single-article.main-page {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-flex: 30%;
    -ms-flex: 30%;
    flex: 30%
}

.articles-and-tips .single-article,.single-article.main-page {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.articles-and-tips .single-article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 3px 1px rgba(0,0,0,.08);
    box-shadow: 0 1px 3px 1px rgba(0,0,0,.08);
    background: #fff;
    overflow: hidden;
    max-width: 370px;
    width: 370px;
    margin: 0 0 40px
}

.articles-and-tips .single-article.main-page:not(:last-child) {
    margin-right: 30px
}

.articles-and-tips .single-article.main-page .single-article-info,.single-article.main-page .small-post-thumbnails {
    -webkit-box-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
    height: inherit
}

.articles-and-tips .big-post-thumbnails img,.small-post-thumbnails img {
    width: 100%;
    height: 100%;
    border-radius: 0 5px 0 0;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.articles-and-tips .single-article:hover .small-post-thumbnails img {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2)
}

.articles-and-tips .single-article .single-article-info {
    padding: 30px;
    height: 100%;
    position: relative
}

.articles-and-tips .big-post-thumbnails {
    -webkit-box-flex: 50%;
    -ms-flex: 50%;
    flex: 50%;
    overflow: hidden
}

.articles-and-tips .blog-container.main-page .big-post-thumbnails,.blog-container.main-page .small-post-thumbnails {
    overflow: hidden;
    height: 100%;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px
}

.articles-and-tips .blog-container.main-page .small-post-thumbnails {
    border-bottom-right-radius: 0
}

.articles-and-tips .blog-container.main-page .big-article .big-post-thumbnails div {
    min-width: 585px;
    min-height: 287px;
    max-width: 50%;
    height: 100%;
    background-size: cover;
    background-position: 50%;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.articles-and-tips .blog-container.main-page .big-article:hover .big-post-thumbnails div,
.articles-and-tips .blog-container.main-page .single-article:hover .small-post-thumbnails div {
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    transform: scale(1.2)
}

.articles-and-tips .blog-container.main-page .small-post-thumbnails div {
    height: 100%;
    min-height: 267px;
    min-width: 370px;
    max-width: 50%;
    background-position: 50%;
    background-size: cover;
    -webkit-transition: .4s ease;
    -o-transition: .4s ease;
    transition: .4s ease
}

.articles-and-tips .small-post-thumbnails {
    height: 267px;
    min-height: 267px;
    overflow: hidden;
    background-position: 50%;
    background-size: cover;
    background-repeat: no-repeat
}

.articles-and-tips .content-container span {
    display: block;
    margin-bottom: 16px
}

.articles-and-tips .article-date {
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: .1px;
    color: #343434;
    opacity: .5;
    max-width: fit-content;
}

.articles-and-tips .loading-posts {
    cursor: pointer
}

.articles-and-tips .loading-posts.hidden {
    display: none
}



@media screen and (max-width: 1210px) {
    .articles-and-tips .content-container {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }
}



@media screen and (max-width: 1190px) {

    .articles-and-tips .single-article {
        height: auto
    }

    .articles-and-tips .blog:first-child {
        padding: 60px 20px
    }

    .articles-and-tips .blog:nth-child(2) {
        padding: 0 20px 20px
    }

    .articles-and-tips .single-article {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .articles-and-tips .small-post-thumbnails img {
        border-radius: 5px 5px 0 0
    }
}

@media screen and (max-width: 1190px) {
    .articles-and-tips .single-article.main-page:not(:last-child) {
        margin-right:0
    }

    .articles-and-tips .blog-container.main-page .big-article .big-post-thumbnails div,.blog-container.main-page .small-post-thumbnails div {
        min-width: 440px
    }

    .articles-and-tips .blog-container.main-page .content-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .articles-and-tips .single-article.main-page {
        max-width: 100%;
        width: 100%;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }
}

@media screen and (max-width: 900px) {
    .articles-and-tips .single-article.main-page {
        -webkit-box-orient:vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse !important;
    }
    /*.articles-and-tips .blog-container.main-page .big-article {*/
    /*    -ms-flex-direction: column;*/
    /*    flex-direction: column !important;*/
    /*}*/

    .articles-and-tips .blog-container.main-page .big-post-thumbnails,.blog-container.main-page .small-post-thumbnails {
        border-bottom-right-radius: 0
    }
}

@media screen and (max-width: 900px) {
    .articles-and-tips .blog-container.main-page .big-article .big-post-thumbnails div,.blog-container.main-page .small-post-thumbnails div {
        min-width:100% !important;
    }
}

@media screen and (max-width: 810px) {
    .articles-and-tips .single-article {
        width:47%;
        max-width: 47%
    }
}

@media screen and (max-width: 768px) {
    .articles-and-tips .single-article:hover {
        border: 0
    }

    .articles-and-tips .single-article:active {
        border: 2px solid #f60
    }
}

@media screen and (max-width: 749px) {
    .articles-and-tips .single-article.main-page:first-child {
        margin-right:0
    }

    .articles-and-tips .single-article.main-page {
        -webkit-box-flex: 51%;
        -ms-flex: 51%;
        flex: 51%
    }

    .articles-and-tips .big-article {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }
}

@media screen and (max-width: 655px) {
    .articles-and-tips .single-article {
        width:100%;
        max-width: 100%
    }
}

@media screen and (max-width: 600px) {
    .articles-and-tips .content-container {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .articles-and-tips .single-article,.single-article:nth-child(2n),.single-article:nth-child(3n+2) {
        margin: 0 0 40px
    }
}

@media screen and (max-width: 522px) {
    .articles-and-tips .content-container {
        -ms-grid-columns:auto;
        grid-template-columns: auto
    }
}



@media screen and (max-width: 414px) {
    .articles-and-tips .big-post-thumbnails img,.small-post-thumbnails img {
        -webkit-filter: grayscale(0);
        filter: grayscale(0)
    }
}


.articles-and-tips .articles-and-tips-header a.button {
    border-radius: 4px;
    padding: 14px 26px 14px 27px;
    -webkit-box-shadow: 0 2px 5px 0 rgba(0,0,0,.15);
    box-shadow: 0 2px 5px 0 rgba(0,0,0,.15);
}
.articles-and-tips .articles-and-tips-header .compare-btn {
    background: var(--leadingColor-5);
    color: #fff;
    font-weight: 700;
    padding: 12px 18px 12px 19px;
    border-radius: 5px;
    text-decoration: none!important;
}

.articles-and-tips .articles-and-tips-header .compare-btn:hover {
    opacity: 0.85;
}

@keyframes pulsate {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes opacity {
    0% {
        opacity: .5;
    }
    25% {
        opacity: .75;
    }
    50% {
        opacity: 1;
    }
    75% {
        opacity: .75;
    }
    100% {
        opacity: .75;
    }
}

.articles-and-tips .articles-and-tips-content {
    max-width: 1000px !important;
    margin: 0 auto;
}

.articles-and-tips .articles-and-tips-content h1:after {
    display: none;
}

.articles-and-tips .loading .rocket-lazyload.lazyloaded {
    background-size: 60% !important;
    background-repeat: no-repeat !important;
    background-image: var(--lazyloading-background-image) !important;
    animation: pulsate 2s infinite !important;
}

.articles-and-tips .loading .loading-element,
.articles-and-tips .loading .loading-element a  {
    background-color: #f4f4f4 !important;
    color: #f4f4f4 !important;
    border-radius: 5px !important;
    opacity: .25;
    animation: opacity 1s infinite !important;
}

.articles-and-tips .loading .read-more svg {
    display: none;
}

.articles-and-tips .accordion span.loading {
    background-color: #f4f4f4 !important;
    color: #f4f4f4 !important;
    border-radius: 5px !important;
    opacity: .25;
    animation: opacity 1s infinite !important;
    padding: 2px;
}

.articles-and-tips .blog-container .post-excerpt p {
    text-align: left;
}

.articles-and-tips .loading .loading-element p {
    color: #f4f4f4 !important;
}