section .wrapper > :is(h1, h2) a,
section .wrapper > :is(h1, h2) {
    font: 700 28px var(--font2);
    position: relative;
    width: fit-content;
    margin-bottom: 20px;
    z-index: 1;
}
section .wrapper > :is(h1, h2)::before,
section .wrapper > :is(h1, h2)::after {
    content: '';
    height: 6px;
    width: 100%;
    position: absolute;
    bottom: 4px;
    left: 0;
    background: var(--border);
    z-index: -1;
    transition: .2s;
    border-radius: 2px;
}
section .wrapper > :is(h1, h2)::after {
    background: var(--secondary);
    transform: scaleX(0);
    transform-origin: center left;
    transition: .3s linear;
}
section .wrapper > h2 a {
    display: flex;
    align-items: baseline;
    gap: 5px;
}
section .wrapper > h2 a::after {
    position: relative;
    font-family: 'Icon';
    font-size: 14px;
    content: '\e009';
    display: block;
    margin-bottom: 2px;
    transition: .3s linear;
}
section .wrapper > h2:hover::after {
    transform: scaleX(1);
}
section .wrapper > h2:hover a::after {
    transform: translateX(5px);
}
section .news {
    display: flex;
    flex-direction: column;
    justify-content: end;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
section .news.card2 {
    justify-content: start;
}
section .news-big {
    padding: 20px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 40.25%, rgba(0, 0, 0, 0.80) 100%);
}
section .news.card {
    justify-content: space-between;
    overflow: visible;
    position: relative;
}
section .news.card .mob {
    display: contents;
}
section .news.card.card2 {
    grid-row: span 2;
}
section .news.card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: var(--hover);
    border-radius: 12px;
    z-index: -2;
    scale: 0;
    transition: .3s;
}
section .news.card:hover:before {
    scale: 1;
}
section .news > a {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
section .news img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
    transition: .4s linear;
    transform: scale(1);
    filter: grayscale(0);
    border-radius: 12px;
}
section .news:hover img {
    transform: scale(1.1);
    filter: grayscale(100%);
}
section .news.card img {
    left: auto;
    right: 0;
    width: 120px;
    height: 120px;
}
section .news.card2 img {
    position: static;
    width: 100%;
    height: 50%;
}
section .news.smoll img {
    width: 110px;
    height: 100px;
}
section .news.card:hover img {
    transform: scale(1);
    filter: grayscale(0);
}
section .news.card2 h3 {
    color: var(--base-text);
    font: 700 20px var(--font2);
}
section .news.news-big :is(h2, h3) {
    color: var(--main);
    font: var(--news-h2);
    transition: .3s linear;
}
section .news.news-big p {
    color: var(--text3);
}
section .news.card .text {
    max-width: 255px;
}
section .news.card2 .text {
    max-width: 100%;
    justify-self: start;
    margin-top: 20px;
    margin-bottom: auto;
}
section .news h3 {
    transition: .4s linear;
    margin-bottom: 10px;
}
section .news p {
    margin-bottom: 15px;
}
section .news:hover :is(h2, h3) {
    color: var(--secondary);
}
section .news.card:hover h3 {
    color: var(--base-text);
}
section .news .info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
section .news .info .date {
    color: var(--text3);
    font-family: var(--font2);
    font-size: 12px;
}
section .news.card .info .date {
    color: var(--icon);
}
section .news .info .category {
    text-transform: uppercase;
    color: var(--secondary);
    font-size: 12px;
    font-family: var(--font2);
    position: relative;
    z-index: 1;
    text-align: right;
}
section .content .banners {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
section .content .banners .banner {
    position: relative;
    height: 33%;
    max-height: 120px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
section .content .banners .banner img {
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
}
section .content .banners .banner a {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 2;
}
section .content .banners .banner h3 {
    font: 700 16px var(--font2);
    color: var(--text2);
    width: fit-content;
    display: flex;
    gap: 5px;
    align-items: center;
    position: relative;
    z-index: 1;
}
section .content .banners .banner h3::after {
    font-family: 'Icon';
    font-size: 11px;
    content: '\e009';
    color: var(--text2);
}
.promo {
    padding-bottom: 20px;
    background: var(--section-background);
}
.promo .content {
    display: grid;
    grid-template-columns: 1fr 240px 250px;
    grid-template-rows: 210px 170px 120px;
    grid-template-areas:
        'news1  news2 currency'
        'news1 news2 banner'
        'news1 news3 news3';
    gap: 20px;
    position: relative;
    z-index: 1;
}
.promo .news1 {
    grid-area: news1;
    padding: 20px 30px 20px 40px;
}
.promo .news1.news-big h2 {
    margin-bottom: 7px;
    font: 700 25px var(--font2);
}
.promo .news2 {
    grid-area: news2;
    padding: 12px 20px;
}
.promo .news2 h2 {
    margin-bottom: 20px;
}
.promo .news3 {
    grid-area: news3;
    padding: 12px 20px;
}
.promo .news3.news-big h2 {
    margin-bottom: 10px;
    font: 700 24px var(--font2);
}
.promo .currency {
    grid-area: currency;
    display: flex;
    flex-direction: column;
    background: #FFE3CC;
    border-radius: 12px;
    overflow: hidden;
    padding: 10px 12px 10px 8px;
}
.promo .currency h2 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 10px;
}
.promo .currency .titles {
    display: flex;
    justify-content: space-between;
    margin-bottom: 7px;
}
.promo .currency .titles span {
    color: var(--icon);
    font-size: 14px;
    font-weight: 700;
}
.promo .currency .val {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    padding-top: 6px;
    border-top: 1px solid #EBD1BC;
}
.promo .currency .val img {
    width: 100%;
    max-width: 23px;
}
.promo .currency .val span {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 300;
    text-transform: uppercase;
}
.promo .currency .val span:first-of-type {
    font-size: 14px;
    font-weight: 400;
    width: 85px;
    justify-content: start;
}
.promo .banner {
    grid-area: banner;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
}
.promo .banner a {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}
.widget2 {
    padding: 30px 0;
}
.main-news {
    background: var(--section-background);
    padding-top: 60px;
    padding-bottom: 70px;
}
.main-news .tabs {
    display: flex;
    margin-bottom: 25px;
}
.main-news .tabs::-webkit-scrollbar {
    height: 0;
}
.main-news .tabs span {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-family: var(--font2);
    border-radius: 8px;
    transition: .2s linear;
    cursor: pointer;
    white-space: nowrap;
}
.main-news .tabs span.active {
    color: var(--secondary);
    background: var(--hover);
}
.main-news .tabs span:hover {
    color: var(--secondary);
    background: var(--hover);
}
.main-news .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 185px);
    gap: 40px;
    position: relative;
    z-index: 1;
}
.main-news .content .news:nth-child(1) {
    grid-row: span 2;
}
.main-news .content .banners .banner h3::after {
    display: none;
}
.main-news .content .banners {
    grid-row: span 2;
}
.widget3 {
    padding: 25px 0 50px;
}
.widget3 .widgets {
    display: grid;
    grid-template-columns: repeat(4, 280px);
    justify-content: space-between;
}
.widget3 .widgets .card {
    width: 100%;
    position: relative;
    cursor: pointer;
    transition: .3s linear;
}
.widget3 .widgets .card:hover {
    border-radius: 12px;
    box-shadow: 0px 4px 14px 0px #E1F3FF;
}
.widget3 .widgets .card .tradingview-widget-container {
    width: 100% !important;
    height: 150px !important;
}
.widget3 .widgets .card .tradingview-widget-container {
    border-radius: 12px 22px 12px 12px !important;
    position: relative;
}
.widget3 .widgets .card .tradingview-widget-container iframe {
    width: 100% !important;
    height: 100% !important;
}
.widget3 .widgets .card .tradingview-widget-container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    border: 1px solid var(--main);
    border-radius: 12px;
    transition: .2s linear;
    pointer-events: none;
}
.widget3 .widgets .card .tradingview-widget-container:hover:after {
    border: 1px solid var(--text3);
}
.biznes {
    background: var(--section-background);
    padding-top: 60px;
    padding-bottom: 70px;
}
.biznes .content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 330px repeat(2, 185px);
    gap: 40px;
    position: relative;
    z-index: 1;
}
.biznes .content .news:nth-child(1) {
    grid-column: span 3;
}
.biznes .content .news:nth-child(2) {
    grid-column: span 3;
}
.biznes .content .news.card {
    grid-column: span 2;
}
.biznes .content .banners {
    grid-column: span 2;
    grid-row: span 2;
}
.widget4 {
    padding: 30px 0;
}
.widget4 .widgets {
    display: grid;
    grid-template-columns: repeat(4, 300px);
    justify-content: space-between;
}
.widget4 .widgets .card {
    width: 100%;
    position: relative;
}
.widget4 .widgets .card .tradingview-widget-container {
    width: 100% !important;
}
.widget4 .widgets .card .tradingview-widget-container iframe {
    width: 100% !important;
    border-radius: 0 22px 0 0 !important;
    position: relative;
}
.invest {
    background: var(--section-background);
    padding-top: 60px;
    padding-bottom: 70px;
}
.invest .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 185px);
    gap: 40px;
    position: relative;
    z-index: 1;
}
.invest .content .news:nth-child(1) {
    grid-row: 1/3;
}
.invest .content .banners {
    grid-column: 3/4;
    grid-row: 1/3;
}
.invest .content .banners .banner:nth-child(1) img {
    height: 103%;
}
.taxes {
    padding-top: 60px;
    padding-bottom: 70px;
}
.taxes .content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 330px repeat(2, 185px);
    gap: 40px;
    position: relative;
    z-index: 1;
}
.taxes .content .news:nth-child(1) {
    grid-column: span 3;
}
.taxes .content .news:nth-child(2) {
    grid-column: span 3;
}
.taxes .content .news:nth-child(3) {
    grid-column: span 2;
    grid-row: span 2;
}
.taxes .content .news:nth-child(4) {
    grid-column: span 2;
    grid-row: span 2;
}
.taxes .content .banners {
    grid-column: span 2;
    grid-row: span 2;
}
.cripta {
    background: var(--section-background);
    padding-top: 60px;
    padding-bottom: 70px;
}
.cripta .content {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: 530px 135px 135px;
    gap: 40px;
    position: relative;
    z-index: 1;
}
.cripta .content .news:nth-child(1) {
    grid-column: span 3;
    grid-row: 1;
}
.cripta .content .news:nth-child(2) {
    grid-column: span 3;
    grid-row: 1;
}
.cripta .content .news.card2 img {
    height: 61%;
}
.cripta .content .news.card.smoll {
    grid-column: span 2;
}
.insurance {
    padding-top: 60px;
    padding-bottom: 70px;
}
.insurance .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 185px);
    gap: 40px;
    position: relative;
    z-index: 1;
}
.insurance .content .news:nth-child(1) {
    grid-row: span 2;
}
.insurance .content .banners {
    grid-row: span 2;
    display: grid;
    grid-template-rows: 120px 270px;
    gap: 20px;
}
.insurance .content .banners .banner {
    height: 100%;
}
.insurance .content .banners .news h2 {
    margin-bottom: 20px;
}
.video {
    background: var(--section-background);
    padding-top: 60px;
    padding-bottom: 70px;
}
.video .content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
}
.video .content .card iframe {
    border-radius: 18px;
    overflow: hidden;
    width: 100%;
    height: 215px;
    border: none;
}
.video a {
    display: flex;
    padding: 10px 40px;
    border: 1px solid var(--border);
    gap: 10px;
    width: fit-content;
    border-radius: 6px;
    margin: 0 auto;
    align-items: center;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.10);
    font-size: 20px;
    font-family: var(--font2);
}
.video a img {
    width: 60px;
}
.last {
    background: var(--section-background);
    padding-top: 100px;
    padding-bottom: 180px;
}
.last .content {
    display: flex;
    flex-direction: column;
    padding: 80px 480px 60px 60px;
    background: url(../images/footer-banner.png) center no-repeat;
    background-size: 100% 100%;
    border-radius: 30px;
    position: relative;
}
.last .content :is(h2, p) {
    color: var(--main);
    font: 700 36px var(--font2);
}
.last .content p {
    margin-bottom: 15px;
}
.last .content :is(h2, p) br {
    display: none;
}
.last .content a {
    color: #1D6AA9;
    font: 700 36px var(--font2);
    gap: 10px;
    align-self: start;
    position: relative;
    display: flex;
    align-items: center;
}
.last .content a::before {
    color: #1D6AA9;
    font-size: 42px;
    position: relative;
    z-index: 1;
}
.last .content a::after {
    content: '';
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--main);
    position: absolute;
    left: 1px;
}
.last .content img {
    width: 445px;
    height: 454px;
    position: absolute;
    right: 0;
    top: -80px;
}
.last .content img:last-of-type {
    width: 287px;
    height: 583px;
    position: absolute;
    right: -20px;
    top: -110px;
    display: none;
}
.seo {
    width: 100%;
    background: var(--section-background);
    padding-bottom: 50px;
}
.seo .box {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 0 auto;
    max-width: 800px;
    max-height: 50px;
    overflow: hidden;
    transition: all .3s;
}
.seo.show  .box{
    max-height: 600px;
}
.seo * {
    color: #d0d0d0;
    font-size: 12px;
    line-height: 16px;
}
.seo .more1 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    cursor:  pointer;
    background: var(--section-background);
    width: fit-content;
    margin-top: 10px;
}
.seo .more1::before {
    font-family: 'icon';
    content: '\e009';
    font-size: 12px;
    margin-right: 14px;
    transition: 0.6s;
    transform: rotate(90deg);
}
.show .more1::before {
    transform: rotate(270deg);
}
@media screen and (max-width: 1270px) {
    section .wrapper > h2 a,
    section .wrapper > h2 {
        font: 700 25px var(--font2);
    }
    section .news p {
        font-size: 13px;
    }
    section .news.card img {
        width: 80px;
        height: 80px;
    }
    section .news.card .text {
        max-width: calc(100% - 90px);
    }
    section .news.card2 img {
        width: 100%;
        height: 40%;
    }
    section .news.card2 .text {
        max-width: 100%;
    }
    section .content .banners {
        gap: 10px;
    }
    .promo {
        padding: 15px 0 60px;
    }
    .promo .content {
        grid-template-columns: 1fr 250px;
        grid-template-rows: 330px 250px 170px 120px;
        grid-template-areas:
            'news1  news1'
            'news2 currency'
            'news2 banner'
            'news3 news3';
    }
    .main-news {
        padding-top: 30px;
        padding-bottom: 50px;
    }
    .main-news .tabs {
        overflow-x: scroll;
    }
    .main-news .tabs span {
        padding: 10px 15px;
    }
    .main-news .content {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: repeat(6, 185px);
        gap: 20px;
    }
    .main-news .content .news:nth-child(1) {
        grid-column: span 2;
    }
    .main-news .content .banners {
        grid-column: 3/5;
        grid-row: 1/3;
    }
    .main-news .news.card {
        grid-column: span 2;
    }
    .widget3 .widgets {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .widget3 .widgets .card {
        max-width: 300px;
        margin: 0 auto;
    }
    .widget3 .wrapper .widget-link,
    .widget4 .wrapper .widget-link {
        right: 0;
    }
    .biznes {
        padding-top: 30px;
        padding-bottom: 50px;
    }
    .biznes .content {
        grid-template-columns: repeat(6, 1fr);
        grid-template-rows: 330px 185px 330px 185px 185px;
        gap: 20px;
        row-gap: 30px;
    }
    .biznes .content .news:nth-child(1) {
        grid-column: span 6;
    }
    .biznes .content .news:nth-child(2) {
        grid-column: span 6;
        grid-row: 3;
    }
    .biznes .content .news.card {
        grid-column: span 3;
    }
    .biznes .content .banners {
        grid-column: span 3;
    }
    .widget4 .widgets {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        justify-content: space-between;
        gap: 20px;
    }
    .widget4 .widgets .card {
        width: 300px;
        margin: 0 auto;
    }
    .invest {
        padding-top: 30px;
        padding-bottom: 50px;
    }
    .invest .content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(6, 185px);
        gap: 20px;
    }
    .invest .content .news:nth-child(1) {
        grid-row: 1/3;
    }
    .invest .content .news:nth-child(5) {
        grid-row: 5;
    }
    .invest .content .banners {
        grid-column: 1/2;
        grid-row: 3/5;
    }
    .taxes {
        padding-top: 30px;
        padding-bottom: 50px;
    }
    .taxes .content {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 330px);
        gap: 20px;
    }
    .taxes .content .news:nth-child(1) {
        grid-column: span 2;
    }
    .taxes .content .news:nth-child(2) {
        grid-column: span 1;
    }
    .taxes .content .news:nth-child(3) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .taxes .content .news:nth-child(4) {
        grid-column: span 1;
        grid-row: span 1;
    }
    .taxes .content .banners {
        grid-column: span 1;
        grid-row: span 1;
    }
    .cripta {
        padding-top: 30px;
        padding-bottom: 50px;
    }
    .cripta .content {
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: 430px 135px 135px 135px;
        gap: 20px;
    }
    .cripta .content .news:nth-child(1) {
        grid-column: span 2;
    }
    .cripta .content .news:nth-child(2) {
        grid-column: span 2;
    }
    .cripta .content .news.card2 img {
        height: 40%;
    }
    .insurance {
        padding-top: 30px;
        padding-bottom: 50px;
    }
    .insurance .content {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(4, 185px);
        gap: 20px;
    }
    .insurance .content .news:nth-child(1) {
        grid-row: span 1;
        grid-column: span 2;
    }
    .insurance .content .banners {
        grid-row: 3 / span 3;
        grid-template-rows: 120px 1fr;
    }
    .video {
        padding-bottom: 0;
    }
    .video .content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .last {
        padding: 100px 20px 180px 20px;
    }
    .last .content {
        padding: 40px 280px 30px 30px;
    }
    .last .content :is(h2, p) {
        font: 700 24px var(--font2);
    }
    .last .content a {
        font: 700 20px var(--font2);
    }
    .last .content img {
        width: 300px;
        height: 314px;
        top: -40px;
    }
    .seo .box {
        gap: 20px;
    }
    .seo.show  .box {
        max-height: 1000px;
    }
}
@media screen and (max-width:668px) {
    :root {
        --news-h2: 700 18px 'Trebuchetms', sans-serif;
    }
    section .news.card .mob {
        display: flex;
        gap: 20px;
        margin-bottom: 15px;
        justify-content: space-between;
    }
    section .news.card img {
        width: 110px;
        height: 100px;
        position: static;
    }
    section .news.card2 img {
        width: 100%;
        height: 220px;
    }
    section .news.card .text {
        max-width: calc(100% - 130px);
    }
    section .news.card2 .text {
        max-width: 100%;
    }
    section .news.news-big h3 {
        margin-top: 175px;
    }
    section .content .banners {
        flex-direction: row;
        gap: 20px;
        overflow-y: scroll;
    }
    section .content .banners::-webkit-scrollbar {
        width: 0;
        height: 0;
    }
    section .content .banners .banner {
        min-width: 300px;
        min-height: 120px;
    }
    .promo .content {
        display: flex;
        flex-direction: column;
    }
    .promo :is(.news1, .news2, .news3) {
        padding: 12px;
    }
    .promo :is(.news1, .news2, .news3) h2 {
        font: 700 20px var(--font2);
    }
    .promo .news1 {
        order: 0;
    }
    .promo .news1 h2 {
        margin-top: 155px;
        margin-bottom: 5px;
    }
    .promo .news2 {
        order: 3;
    }
    .promo .news2 h2 {
        margin-top: 255px;
        margin-bottom: 25px;
        max-width: 63%;
    }
    .promo .news3 {
        order: 2;
    }
    .promo .news3 h2 {
        margin-top: 40px;
    }
    .promo .banner {
        order: 4;
    }
    .promo .currency {
        order: 5;
        padding: 13px 15px 13px 10px;
    }
    .promo .currency h2 {
        margin-bottom: 15px;
        font-size: 17px;
    }
    .promo .currency .titles {
        margin-bottom: 10px;
    }
    .promo .currency .titles span {
        font-size: 16px;
    }
    .promo .currency .titles span:nth-child(2) {
        margin-left: 35px;
    }
    .promo .currency .val {
        margin-bottom: 10px;
        padding-top: 8px;
    }
    .promo .currency .val img {
        max-width: 32px;
    }
    .promo .currency .val span:first-of-type {
        font-size: 18px;
        width: 113px;
    }
    .promo .currency .val span {
        font-size: 17px;
    }
    .main-news .content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .main-news .content.active {
        display: flex;
    }
    .main-news .content .news:nth-child(1) {
        order: -3;
    }
    .main-news .content .news:nth-child(2) {
        order: -2;
    }
    .main-news .content .news:nth-child(9) {
        order: -1;
    }
    .widget3 .widgets {
        display: flex;
        gap: 40px;
        overflow-y: scroll;
    }
    .widget3 .widgets::-webkit-scrollbar {
        width: 0;
        height: 0;
    }
    .widget3 .widgets .card {
        width: 100%;
        min-width: 280px;
    }
    .biznes .content {
        display: flex;
        flex-direction: column;
        row-gap: 40px;
    }
    .biznes .content .banners {
        order: 1;
    }
    .widget4 .widgets {
        display: flex;
        gap: 20px;
        overflow-y: scroll;
    }
    .widget4 .widgets::-webkit-scrollbar {
        width: 0;
        height: 0;
    }
    .widget4 .widgets .card {
        width: 100%;
        min-width: 300px;
    }
    .invest .content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .invest .content .news.card.card2 {
        order: 1;
    }
    .taxes .content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .cripta .content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .cripta .content .news.card2 img {
        height: 220px;
    }
    .cripta .content .news.card:nth-child(even) {
        order: 1;
    }
    .insurance .content {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }
    .insurance .content div:nth-child(even) {
        order: 1;
    }
    .insurance .content .banners {
        order: 1;
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    .insurance .content div:nth-child(2) {
        order: 2;
    }
    .video .wrapper > h2 {
        font: 700 20px var(--font2);
        width: fit-content;
    }
    .video .content {
        display: flex;
        gap: 20px;
        overflow-y: scroll;
    }
    .video .content::-webkit-scrollbar {
        width: 0;
        height: 0;
    }
    .video .content .card iframe {
        min-width: 300px;
        height: 170px;
    }
    .last {
        padding-bottom: 100px;
    }
    .last .content {
        padding: 355px 30px 30px 25px;
        background: url(../images/footer-banner-mob.png) center no-repeat;
        background-size: 100%;
    }
    .last .content h2 {
        margin-bottom: 10px;
    }
    .last .content :is(h2, p) br {
        display: block;
    }
    .last .content a {
        align-self: center;
    }
    .last .content img:first-of-type {
        display: none;
    }
    .last .content img:last-of-type {
        display: block;
    }
}