
:root {

    --regular: 400;
    --medium: 500;
    --semiBold: 600;
    --bold: 700;

}

* {
    margin: 0;
    padding: 0;
    outline: none;
    box-sizing: border-box;
    font-style: normal;
    font-optical-sizing: auto;
}

html {
    scroll-behavior: smooth;
}

.container,
.extra_small_container,
.sm_container,
.md_container{
    width: 100%;
    margin: 0 auto;
}
.container{
    max-width: 1312px;
    padding: 0px 16px;
}
.extra_small_container{
    max-width: 622px;
}
.sm_container{
    max-width:703px;
}

.md_container{
    max-width:1014px;
}

body {
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    overflow-x: hidden;
}

::selection {
    background-color: #373bb9;
    color: white;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}


/* font weight */
.fw_regular {
    font-weight: var(--regular);
}

.fw_medium {
    font-weight: var(--medium);
}

.fw_semi_bold {
    font-weight: var(--semiBold);
}

.fw_bold {
    font-weight: var(--bold);
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a {
    text-decoration: none;
    display: inline-block;
}

button {
    border: none;
    outline: none;
    background-color: transparent;
}

img {
    width: 100%;
    height: 100%;
}

/* start flex */
.flex {
    display: flex;
}

.flex_row.flex_sm_row,
.flex_row {
    flex-direction: row;
}

.flex_column.flex_sm_column,
.flex_column {
    flex-direction: column;
}

.flex.items_center {
    align-items: center;
}
.flex.items_end {
    align-items: flex-end;
}

.flex.justify_start {
    justify-content: start;
}

.flex.justify_center {
    justify-content: center;
}

.flex.justify_end {
    justify-content: end;
}

.flex.justify_between {
    justify-content: space-between;
}

.flex.justify_around {
    justify-content: space-around;
}

.flex.wrap {
    flex-wrap: wrap;
}

.flex.no_wrap {
    flex-wrap: wrap;
}

.flex.gap_2 {
    gap: 2px;
}
.flex.gap_5 {
    gap: 5px;
}
.flex.gap_6 {
    gap: 6px;
}
.flex.gap_8 {
    gap: 8px;
}
.flex.gap_10 {
    gap: 10px;
}
.flex.gap_11 {
    gap: 11px;
}
.flex.gap_12 {
    gap: 12px;
}
.flex.gap_15 {
    gap: 15px;
}
.flex.gap_16 {
    gap: 16px;
}
.flex.gap_20 {
    gap: 20px;
}
.flex.gap_24 {
    gap: 24px;
}
.flex.gap_30 {
    gap: 30px;
}
.flex.gap_32 {
    gap: 32px;
}
.flex.gap_40 {
    gap: 40px;
}

.lg_title,
.md_title,
.sm_title{
    font-weight: var(--semiBold);
    color: var(--title_color);
}
.lg_title{
    font-size: 24px;
    line-height: 32px;
}
.md_title{
    font-size:22px;
    line-height:30px;
}

.sm_title{
    font-size:16px;
    line-height: 24px;
}

.lead{
    font-size: 14px;
    line-height: 22px;
    font-weight: var(--regular);
}
.highlighted_title{
    margin-right: 18px;
    position: relative;
}
.highlighted_title::before{
    content: "";
    position: absolute;
    bottom:5px;
    left: calc(100% + 4px);
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #E5E5E5;
}

.article_published_time{
    font-size:12px;
    line-height:20px;
    font-weight:var(--regular);
}

/* margin */

.mb_12{
    margin-bottom: 12px;
}

.separator .article_card_wrapper{
    position: relative;
}
.separator .article_card_wrapper:not(:last-child)::before{
    content: "";
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 1px;
}
.col_separator .article_card:not(:last-child)::before{
    content: "";
    position: absolute;
    top:0px;
    left: calc(100% + 16px);
    width: 1px;
    height: 100%;
}

.three_col .article_card{
    width:cal(100% / 2 - 16px) !important;
}

.d_none{
    display: none;
}


@media(min-width:992px){
    .desktop_none{
        display: none;
    }
}

@media (min-width:1024px) {
    .container {
        max-width: 1320px;
        padding: 0px 20px;
    }
    .md_title{
        font-size:24px;
        line-height:32px;
    }
    .pointer {
        cursor: pointer;
    }
}

.icon{
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    -webkit-mask-position: center;
    background-color: #000;
}
.icon_sm {
    width: 14px;
    height: 14px;
    scale: 1;
}
.icon_md {
    width: 18px;
    height: 18px;
    scale: 1.25;
}
.icon_lg{
    width: 21px;
    height: 21px;
    scale: 1.5;
}

.d_block {
    display: block;
}
.relative {
    position: relative;
}
.overflow_hidden {
    overflow: hidden;
}