﻿/*-----------
    Fonts
-----------*/
@font-face
{
    font-family: 'SF Pro Text';
    font-weight: 300;
    font-style: normal;

    font-display: swap;
    src: url('../font/sf-pro-text-light.woff2') format('woff2'),
    url('../font/sf-pro-text-light.woff') format('woff'),
    url('../font/sf-pro-text-light.ttf') format('truetype');
}

@font-face
{
    font-family: 'SF Pro Text';
    font-weight: normal;
    font-style: normal;

    font-display: swap;
    src: url('../font/sf-pro-text-regular.woff2') format('woff2'),
    url('../font/sf-pro-text-regular.woff') format('woff'),
    url('../font/sf-pro-text-regular.ttf') format('truetype');
}

@font-face
{
    font-family: 'SF Pro Text';
    font-weight: 500;
    font-style: normal;

    font-display: swap;
    src: url('../font/sf-pro-text-medium.woff2') format('woff2'),
    url('../font/sf-pro-text-medium.woff') format('woff'),
    url('../font/sf-pro-text-medium.ttf') format('truetype');
}

@font-face
{
    font-family: 'SF Pro Text';
    font-weight: 700;
    font-style: normal;

    font-display: swap;
    src: url('../font/sf-pro-text-bold.woff2') format('woff2'),
    url('../font/sf-pro-text-bold.woff') format('woff'),
    url('../font/sf-pro-text-bold.ttf') format('truetype');
}



/*------------------
    Reset styles
------------------*/
*
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;

    scroll-margin-top: 20px;
}

*:before,
*:after
{
    box-sizing: border-box;
}

html
{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
        -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body
{
    margin: 0;

    overscroll-behavior: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-overflow-scrolling: touch;
    text-rendering: optimizeLegibility;
    text-decoration-skip: objects;
}

img
{
    border-style: none;
}

textarea
{
    overflow: auto;
}

input,
textarea,
input:active,
textarea:active,
button
{
    margin: 0;

    -webkit-border-radius: 0;
            border-radius: 0;
         outline: none transparent !important;
    box-shadow: none;

    -webkit-appearance: none;
            appearance: none;
    -moz-outline: none !important;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button
{
    margin: 0;

    -webkit-appearance: none;
}

input[type=number]
{
    -moz-appearance: textfield;
}

:focus
{
    outline: 0;
}

:hover,
:active
{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-touch-callout: none;
}


::-ms-clear
{
    display: none;
}



/*-------------------
    Global styles
-------------------*/
:root
{
    --bg: #000;
    --text_color: #fff;
    --font_size: 16px;
    --font_family: 'SF Pro Text', 'Arial', sans-serif;
}


html
{
    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;
}


body
{
    font: var(--font_size) var(--font_family);

    height: 100%;
    min-height: -moz-available;
    min-height: -webkit-fill-available;
    min-height:         fill-available;

    color: var(--text_color);
}

body.menu_open
{
    overflow: hidden;
}


button
{
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;

    display: inline-block;

    cursor: pointer;
    vertical-align: top;

    color: inherit;
    border: none;
    background: none;
}


.wrap
{
    position: relative;
    z-index: 9;

    display: flex;
    overflow: clip;
    flex-direction: column;

    min-height: 100%;

    background: var(--bg);
}


.main
{
    position: relative;

    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
}


.cont
{
    width: 100%;
    max-width: 1152px;
    margin: 0 auto;
    padding: 0 16px;
}


.row
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    justify-content: flex-start;
}



.page_bg
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    pointer-events: none;
}

.page_bg.right
{
    right: 0;
    left: auto;
}



/*----------------
    Pagination
----------------*/
.pagination
{
    line-height: 24px;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    margin-top: 50px;

    letter-spacing: -.1px;

    color: #999;
}


.pagination > * + *
{
    margin-left: 36px;
}


.pagination a,
.pagination .sep, .pagination span
{
    display: inline-block;

    transition: .2s linear;
    text-align: center;
    vertical-align: top;
    text-decoration: none;

    color: currentColor;
}

.pagination a:hover,
.pagination .current
{
    font-weight: 600;

    color: #fff;
}


.pagination .prev,
.pagination .next
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 54px;
    height: 54px;

    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 50%;
}

.pagination .prev img,
.pagination .next img
{
    display: block;
}

.pagination .prev img
{
    transform: rotate(180deg);
}



/*------------
    Header
------------*/
header
{
    position: relative;
    z-index: 9;
    top: 0;
    left: 0;

    width: 100%;
    margin-bottom: 25px;
    padding: 20px 0;
}

header:after
{
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;

    display: block;

    width: 1120px;
    max-width: calc(100% - 32px);
    height: 1px;
    margin: 0 auto;

    content: '';

    background: rgba(255, 255, 255, .10);
}



header .cont
{
    align-content: center;
    align-items: center;
    justify-content: space-between;
}



header .logo
{
    display: block;

    text-decoration: none;

    color: currentColor;
}

header .logo img
{
    display: block;
    max-width: 140px;
}



header .menu_item + .menu_item
{
    margin-left: 30px;
}


header .menu_item > a
{
    font-size: 14px;

    display: block;

    transition: color .2s linear;
    text-decoration: none;
    letter-spacing: -.28px;

    color: rgba(255, 255, 255, .7);
}


header .menu_item:hover > a,
header .menu_item > a.active
{
    color: rgba(255, 255, 255, .9);
}


header .menu .close_btn
{
    position: absolute;
    top: 50px;
    right: 0;
    left: 0;

    display: none;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 68px;
    height: 61px;
    margin: 0;
    margin: 0 auto;
}


header .menu .close_btn img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}



header .mob_menu_btn
{
    display: none;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 41px;
    height: 29px;

    border-left: 1px solid rgba(255, 255, 255, .1);
}


header .mob_menu_btn img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}



/*----------------
    Typography
----------------*/
.text_block
{
    font-size: var(--font_size);
    line-height: 28px;

    letter-spacing: -.32px;

    color: rgba(255, 255, 255, .80);
}


.text_block > *
{
    margin-bottom: 20px;
}

.text_block > *.no_m
{
    margin-bottom: 0;
}


.text_block > :last-child
{
    margin-bottom: 0 !important;
}

.text_block > :first-child
{
    margin-top: 0 !important;
}


.text_block h2
{
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;

    margin-bottom: 20px !important;

    color: #fff;
}


.text_block * + h2
{
    margin-top: 40px;
}

.text_block h2 + *
{
    margin-top: 0 !important;
}


.text_block img
{
    display: block;

    max-width: 100%;
    margin: 25px 0;

    border-radius: 10px;
}


.text_block blockquote,
.text_block q
{
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;

    display: block;

    width: 100%;
    margin: 50px 0;
    padding-top: 29px;

    text-align: center;
    letter-spacing: -.2px;

    color: #fff;
    background: url(../image/ic_quote.svg) 50% 0 no-repeat;
}


.text_block ul li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 20px;

    list-style-type: none;
}

.text_block ul li:before
{
    position: absolute;
    top: 11px;
    left: 4px;

    display: block;

    width: 5px;
    height: 5px;

    content: '';

    border-radius: 50%;
    background: currentColor;
}


.text_block ol
{
    counter-reset: li;
}

.text_block ol li
{
    position: relative;

    display: block;
    overflow: hidden;

    padding-left: 20px;

    list-style-type: none;
}

.text_block ol li:before
{
    position: absolute;
    top: 0;
    left: 0;

    content: counter(li) '.';
    counter-increment: li;
}


.text_block a
{
    background: -webkit-linear-gradient(45deg, rgb(175, 38, 237) 30.77%, rgb(29, 151, 243) 92.01%) text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.text_block a:hover
{
    text-decoration: none;
}



/*--------------
    Articles
--------------*/
.articles
{
    margin-bottom: 270px;
}


.articles .block_title
{
    font-size: 48px;
    font-weight: 300;
    line-height: 56px;
}


.articles .block_desc
{
    line-height: 24px;

    margin-top: 15px;

    letter-spacing: -.32px;

    color: rgba(255, 255, 255, .70);
}


.articles .grid
{
    display: grid;

    margin-top: 30px;

    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 60px;
    grid-row-gap: 60px;
    align-items: start;
}

.articles .grid .big
{
    grid-row: 1 / 4;
}


.articles .line_sep
{
    width: 100%;
    height: 1px;
    margin-top: 50px;

    background: rgba(255, 255, 255, .10);
}


.articles .row
{
    align-content: stretch;
    align-items: stretch;

    margin-top: 50px;
    margin-bottom: -50px;
    margin-left: -40px;
}

.articles .row > *
{
    width: calc(25% - 40px);
    margin-bottom: 50px;
    margin-left: 40px;
}


.articles .article
{
    position: relative;

    display: flex;
    flex-direction: column;
    text-decoration: none;
}


.articles .article .thumb
{
    position: relative;

    display: block;
    overflow: hidden;

    margin-bottom: 15px;
    padding-bottom: 50%;

    text-decoration: none;

    color: currentColor;
    border-radius: 10px;
}


.articles .article .thumb img
{
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;

    display: block;

    width: 100%;
    height: 100%;

    border-radius: inherit;

    object-fit: cover;
}


.articles .article .date
{
    font-size: 12px;
    line-height: 14px;

    margin-bottom: 5px;

    letter-spacing: -.24px;

    color: rgba(255, 255, 255, .35);
}


.articles .article .name
{
    font-weight: 500;
    line-height: 21px;

    flex: 1 0 auto;
}


.articles .article .name
{
    display: inline-block;

    vertical-align: top;
    text-decoration: none;

    color: #fff;
}


.articles .article .source
{
    font-size: 12px;
    line-height: 18px;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-top: 15px;

    text-transform: uppercase;
}


.articles .article .source .label
{
    color: rgba(255, 255, 255, .35);
}


.articles .article .source .val
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-left: 15px;

    color: rgba(255, 255, 255, .70);
}


.articles .article .source img
{
    display: block;

    width: 18px;
    height: 18px;
    margin-right: 5px;
}


.articles .article .desc
{
    line-height: 24px;

    margin-top: 20px;

    letter-spacing: -.32px;

    color: rgba(255, 255, 255, .70);
}


.articles .article.big
{
    padding-right: 40px;
}

.articles .article.big .name
{
    font-size: 22px;
    line-height: 29px;

    flex: auto;
}


.articles .grid .article:not(.big) + .article:not(.big):before
{
    position: absolute;
    top: -30px;
    left: 0;

    display: block;

    width: 100%;
    height: 1px;

    content: '';

    background: rgba(255, 255, 255, .10);
}


.articles .grid .article:not(.big)
{
    display: flex;
    align-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}


.articles .grid .article:not(.big) .thumb
{
    width: 250px;
    max-width: 100%;
    height: 125px;
    margin: 0;
    padding: 0;
}

.articles .grid .article:not(.big) .thumb + *
{
    width: calc(100% - 265px);
    margin-left: auto;
}



/*------------------
    Article info
------------------*/
.article_info
{
    margin-bottom: 116px;
}


.article_info .cont
{
    align-content: stretch;
    align-items: stretch;
    justify-content: space-between;
}


.article_info .data
{
    width: calc(100% - 420px);
    padding-right: 50px;

    border-right: 1px solid rgba(255, 255, 255, .10);
}


.article_info .article_title
{
    font-size: 32px;
    font-weight: 500;

    display: block;
}


.article_info .info
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-top: 25px;
    margin-left: -15px;
}

.article_info .info > *
{
    margin-left: 15px;
}


.article_info .info .sep
{
    width: 6px;
    height: 6px;

    border-radius: 50%;
    background: #8a8a8e;
}


.article_info .date
{
    font-size: 14px;
    line-height: 18px;

    letter-spacing: -.28px;

    color: #8a8a8e;
}


.article_info .source
{
    font-size: 12px;
    line-height: 18px;

    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    text-transform: uppercase;
}


.article_info .source .label
{
    color: #8a8a8e;
}


.article_info .source .val
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-left: 15px;

    color: rgba(255, 255, 255, .70);
}

.article_info .source .val a{
    color: rgba(255, 255, 255, .70);
    text-decoration: none;
}


.article_info .source img
{
    display: block;

    width: 18px;
    height: 18px;
    margin-right: 5px;
}


.breadcrumbs
{
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;

    letter-spacing: .1px;

    color: #bf5af2;
    margin-bottom: 25px;
}

.breadcrumbs a
{
    transition: color .2s linear;
    text-decoration: none;

    color: rgba(255, 255, 255, .50);
}

.breadcrumbs a:hover
{
    color: #fff;
}

.breadcrumbs .sep
{
    color: rgba(255, 255, 255, .50);
}


.article_info .text_block
{
    margin-top: 25px;
}



.article_info .col_right
{
    position: relative;

    width: 370px;
    max-width: 100%;
}


.article_info .sticky
{
    position: sticky;
    top: 20px;
}


.article_info .anchors .title
{
    font-size: 20px;
    font-weight: 700;

    margin-bottom: 25px;

    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
}

.article_info .anchors .title img{
	transition: 0.3s;
}

.article_info .anchors .title:has(+ .show) img{
	transform: rotate(180deg);
}


.article_info .anchors .items > * + *
{
    margin-top: 20px;
}


.article_info .anchors .items .btn
{
    font-size: 18px;

    position: relative;

    transition: .2s linear;
    text-align: left;

    color: #8a8a8e;
}

.article_info .anchors .items .btn:before
{
    position: absolute;
    top: 7px;
    left: 0;

    display: block;

    width: 8px;
    height: 8px;

    content: '';
    transition: opacity .2s linear;

    opacity: 0;
    border-radius: 50%;
    background: #bf5af2;
}


.article_info .anchors .items .btn:hover
{
    padding-left: 18px;

    color: #fff;
}

.article_info .anchors .items .btn:hover:before
{
    opacity: 1;
}


.article_info .share
{
    /*display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;*/

    margin-top: 50px !important;
}


.article_info .share a
{
    /*display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;

    width: 48px;
    height: 48px;

    text-decoration: none;

    color: currentColor;
    border: 1px solid #38383a;
    border-radius: 50%;*/
}

.article_info .share a + a
{
    margin-left: 15px;
}


.article_info .share img
{
    display: block;

    max-width: 100%;
    max-height: 100%;
}



/*----------
    Apps
----------*/
.apps
{
    position: relative;
    z-index: 3;

    padding: 50px 0;
}

.apps:before
{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    display: block;

    width: 1120px;
    max-width: calc(100% - 32px);
    height: 1px;
    margin: 0 auto;

    content: '';

    background: rgba(255, 255, 255, .20);
}


.apps .bg
{
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 50%;

    width: 944px;
    height: 208px;
    margin-left: -721px;

    pointer-events: none;
}


.apps .cont
{
    position: relative;
    z-index: 3;

    align-content: center;
    align-items: center;
}


.apps .logo img
{
    display: block;
    width: 56px;
    height: 56px;
}


.apps .sep
{
    width: 1px;
    height: 35px;
    margin-left: 25px;

    background: rgba(255, 255, 255, .10);
}


.apps .info
{
    margin-left: 25px;
}


.apps .info .title
{
    font-size: 24px;
    font-weight: 700;
}


.apps .info .desc
{
    line-height: 24px;

    margin-top: 5px;

    letter-spacing: -.32px;

    color: rgba(255, 255, 255, .70);
}


.apps .links
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;

    margin-left: auto;
    padding-left: 50px;

    border-left: 1px solid rgba(255, 255, 255, .10);
}

.apps .links > * + *
{
    margin-left: 5px;
}


.apps .links a
{
    display: block;

    text-decoration: none;

    color: currentColor;
}


.apps .links img
{
    display: block;

    height: 40px;
}



/*------------
    Footer
------------*/
footer
{
    padding-top: 70px;
}


footer .cont
{
    position: relative;

    justify-content: space-between;
}


footer .cont + .cont
{
    margin-top: 40px;
    padding-top: 20px;
    padding-bottom: 20px;
}

footer .cont + .cont:before
{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;

    display: block;

    width: 1120px;
    max-width: calc(100% - 32px);
    height: 1px;
    margin: 0 auto;

    content: '';

    background: rgba(255, 255, 255, .20);
}


footer .logo
{
    margin-right: auto;
}


footer .logo img
{
    display: block;

    max-width: 100%;
    max-width: 140px;
}



footer .title
{
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;

    margin-bottom: 20px;

    letter-spacing: -.2px;
}


footer .links
{
    margin-left: auto;
}

footer .links:last-child
{
    margin-right: 120px;
}


footer .links .items > * + *
{
    margin-top: 15px;
}


footer .links .items a
{
    line-height: 24px;

    display: inline-block;

    transition: color .2s linear;
    vertical-align: top;
    text-decoration: none;
    letter-spacing: -.1px;

    color: rgba(255, 255, 255, .60);
}


footer .links .items a:hover,
footer .links .items a.active
{
    color: #fff;
}



footer .socials
{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}


footer .socials a
{
    display: block;

    text-decoration: none;

    color: currentColor;
    border-radius: 50%;
}

footer .socials a + a
{
    margin-left: 15px;
}


footer .socials img
{
    display: block;

    width: 24px;
    height: 24px;

    border-radius: 50%;
}

.ez-toc-list{
    list-style: none;
}

.ez-toc-link {
    font-size: 18px;
    position: relative;
    transition: .2s linear;
    text-align: left;
    color: #8a8a8e;
    text-decoration: none;
}

.ez-toc-list li + li{
    margin-top: 20px;
}

.ez-toc-link:hover {
    padding-left: 18px;
    color: #fff;
}

.ez-toc-link:hover:before {
    opacity: 1;
}
.ez-toc-link:before {
    position: absolute;
    top: 7px;
    left: 0;
    display: block;
    width: 8px;
    height: 8px;
    content: '';
    transition: opacity .2s linear;
    opacity: 0;
    border-radius: 50%;
    background: #bf5af2;
}
    

.btn-up {
    position: fixed;
    right: 50px;
    bottom: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.15s ease-in-out, transform 0.3s ease-in-out;
    opacity: 1;
    transform: translateY(0);
    z-index: 8;
    color: rgba(255, 255, 255, 1);
    font-weight: 600;
    font-size: 13px;
    line-height: 16px;
    text-align: center;
    letter-spacing: 0.1px;
    text-transform: uppercase;
    gap: 20px;
}

.btn-up_hide {
    display: none;
}

.btn-up_hiding {
    opacity: 0;
    transform: translateY(100px);
}

.btn-up-icon {
    width: 64px;
    height: 64px;
}

.anchors_mob{
    display: none;
}

.addtoany_list{
    display: flex;
    align-content: center;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.addtoany_list a{
    padding: 0 !important;
}

.share_title{
    opacity: 0.8;
    margin-bottom: 10px;
}