:root {
    /* texts */
    --text-color-black: #000000;
    --text-color-grey: #929292;
    --text-color-blue: #0B6AFF;
    --text-color-blue-hover: #1067f1;
    --text-color-blue-active: #0d62eb;
    --text-size-1: .8rem;
    --text-size-2: .87rem;
    --text-size-3: 1.07rem;
    --text-size-4: 2rem;
}

* {
    font-family: 'Manrope', sans-serif;
    font-family: 'PT Sans Narrow', sans-serif;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    font-size: var(--text-size-2);
    color: var(--text-color-black);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
    overflow-y: scroll;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    display: none
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="number"],
select,
textarea {
    font-family: inherit;
    appearance: none;
    font-size: var(--text-size-2);
    color: var(--text-color-black);
    outline: none;
    width: 100%;
    transition: box-shadow .2s ease;
    border: 1px solid #E9E9E9;
    border-radius: 4px;
    padding: 9px 20px;
    /* box-shadow: 0 0 0 2px #EFEFEF; */
    -webkit-appearance: none;
    -moz-appearance: none;
}

input::placeholder,
textarea::-webkit-input-placeholder,
textarea::-moz-placeholder,
textarea:-ms-input-placeholder,
textarea::placeholder {
    font-family: inherit;
    font-size: var(--text-size-2);
    color: var(--text-color-grey);
}

textarea::placeholder,
input::placeholder {
    color: var(--text-color-grey);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border: 1px solid #BCD5F3;
    box-shadow: 0 0 0 3px #E1EFFF;
}

input:disabled,
input:read-only {
    background: #FAFBFB;
    color: var(--text-color-grey);
}

img {
    display: block;
}

ul {
    list-style: none
}

textarea {
    display: block;
    resize: none;
    height: 250px;
    box-sizing: border-box;
    margin: 0;
}

button {
    font-family: inherit;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: var(--text-size-2);
    color: #E1EFFF;
    font-weight: var(--text-weight-1);
    outline: none;
    cursor: pointer;
    background-color: #0B6AFF;
    transition: box-shadow .2s ease;
    width: fit-content;
    height: 40px;
    border: none;
    border-radius: 4px;
    padding: 0 35px;
}

button:focus {
    box-shadow: 0 0 0 3px #E1EFFF;
    background-color: #0B6AFF;
}

a {
    color: var(--text-color-blue);
    outline: none;
    text-decoration: none;
}

a:hover {
    color: var(--text-color-blue-hover);
    text-decoration: underline;
}

h1 {
    font-size: 31px;
    font-weight: 700;
}

.relative {
    position: relative;
}

.unselectable {
    user-select: none;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.ellipsis {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.hrzScroll {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}

.hrzScroll::-webkit-scrollbar {
    display: none;
}

.hideScrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: #fff;
}

.layout {
    margin: 0 auto;
    width: 100%;
    max-width: 1030px;
    padding: 0 15px;
}

.blueLine {
    background-color: #274EBB;
    color: #fff;
    padding: 7px 0;
}

.line1,
.line2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.line1 a {
    color: #fff;
}

.line1>div {
    display: flex;
}

.left>span,
.right>span {
    margin: 0 6px;
}

.left>span,
.left>a {
    color: #96AFF5;
    white-space: nowrap;
}

.left>a:first-of-type,
.left>a:hover {
    color: #fff;
}

.right>img {
    margin-right: 15px;
}

.line2 {
    margin: 25px 0 15px;
}

.search {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.search img:first-of-type {
    position: absolute;
    top: 13px;
    left: 15px;
}

.search img:last-of-type {
    position: absolute;
    top: 8.5px;
    right: 10px;
}

.search>input {
    padding-left: 35px;
}

.gNews {
    display: flex;
    align-items: center;
}

.gNews>img:first-of-type {
    margin: 0 15px 0 0;
}

.sections {
    border: 1px solid #E9E9E9;
    border-left: none;
    border-right: none;
    padding: 7px 0;
}

.sections>div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 18px;
    padding: 0 15px;
}

.sections>div>a {
    font-weight: 700;
    color: #092540;
    text-transform: uppercase;
    white-space: nowrap;
}

.sections>div>a:hover {
    color: var(--text-color-blue);
}

.footWrap {
    background-color: #F1F5F9;
}

.footLine1 {
    height: 2px;
    background-color: #DCE4ED;
}

.footSec {
    padding: 30px 0 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    gap: 45px;
}

.footSec>a {
    display: block;
    color: #1E293C;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .9px;
    white-space: nowrap;
}

.footSec>a:hover {
    color: var(--text-color-blue)
}

.subs {
    border: 1px solid #DCE4ED;
    border-left: none;
    border-right: none;
    padding: 25px 0 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.subs>div {
    flex: 0.42;
}

.fR>p:first-of-type {
    font-size: 21px;
    font-weight: 700;
}

.fR>p:nth-child(2) {
    font-size: 17px;
    margin: 5px 0 30px 0;
}

.fR>p:nth-child(3) {
    color: #728097;
    line-height: 20px;
    font-size: 15px;
}

.inputSubs {
    display: flex;
    align-items: center;
    gap: 10px;
}

.inputSubs input {
    max-width: 300px;
    box-shadow: 0 0 0 4px #DCE4ED;
    border: none;
}

.inputSubs button {
    background-color: #FCD34D;
    color: #1E293C;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .9px;
    height: 38px;
}

.fL>p {
    font-size: 15px;
    letter-spacing: .9px;
    line-height: 20px;
}

.fL>p:first-of-type {
    margin: 20px 0 10px 0;
}

.foot3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.foot3 p {
    font-size: 15px;
    color: #728097;
    line-height: 25px;
}

.content {
    margin: 20px 0 25px 0;
}

.clmn2 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.clmn2>main {
    flex: .693;
}

.clmn2>aside {
    flex: .307;
}

.clmn2 .toper {
    display: flex;
    gap: 20px;
}

.topL {
    flex: .59;
}

.topR {
    flex: .41;
}

.headline {
    font-size: 13px;
    font-weight: 700;
    color: #F44816;
}

.readMore {
    display: block;
    color: #000000;
    font-weight: 700;
    font-size: 13px;
}

.readMore:hover {
    color: var(--text-color-blue);
}

.pImg {
    position: relative;
    width: 100%;
    max-width: 390px;
    aspect-ratio: 39 / 25;
    background-color: #ebebeb;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.pLine {
    position: absolute;
    top: 0;
    left: 0;
    height: 3px;
    width: 100%;
    background-color: #2758E1;
}

.pImg>img {
    width: 540px;
}

.picture>a {
    display: block;
    margin: 10px 0 5px 0;
}

.picture>a>h1 {
    font-size: 23px;
    font-weight: 700;
    color: #000;
}

.picture>a:hover,
.picture>a h1:hover {
    color: var(--text-color-blue);
}

.picture>p {
    font-size: 16px;
    color: #A4ACBA;
    margin: 0 0 10px 0;
}

.nLi {
    margin-bottom: 11px;
}

.nLi>span {
    color: #A4ACBA;
    font-size: 10px;
}

.nLi>a,
.nLi>strong>a {
    color: #000;
    font-size: 15px;
}

.news {
    margin: 6px 0;
}

.strip {
    margin: 30px 0;
    border-top: 3px solid #000;
    padding: 13px 0 0 0;
    max-width: 680px;
}

.sWrap {
    display: flex;
    gap: 20px;
    flex-wrap: nowrap;
}

.sImgB {
    width: 155px;
    height: 100px;
    background-color: #ebebeb;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.sImgB>img {
    height: 110px;
}

.time {
    color: #A4ACBA;
    font-size: 10px;
}

.sTit {
    display: block;
    line-height: 18px;
    color: #000;
    font-size: 15px;
    font-weight: 700;
    margin: 7px 0 0 0;
}

.midlle {
    display: flex;
    gap: 20px;
}

.midlle>div {
    flex: .5;
}

.boxes>div {
    padding: 20px;
    border-radius: 14px;
    background-color: #F1F5F9;
    margin: 15px 0;
}

.bTo {
    display: flex;
    align-items: center;
}

.bTo>img {
    margin: 0 5px 0 0;
}

.boxes h2 {
    line-height: 18px;
    margin: 10px 0;
}

.boxes h2>a {
    font-size: 15px;
    font-weight: 700;
    color: #000;
}

.boxes>div>p {
    font-size: 15px;
    color: #A4ACBA;
    line-height: 20px;
    margin: 0 0 10px 0;
}

.boxes>div>a {
    font-weight: 700;
    font-size: 13px;
}

.boxes>div.yell {
    background-color: #FAF5F1;
}

.subscribe {
    margin: 20px 0;
    font-size: 13px;
}

.red {
    font-size: 13px;
    font-weight: 700;
    color: #F44816;
}

.subsem {
    box-shadow: 0 0 0 4px #DEDFE2;
    background-color: #EAEAEA;
    margin: 10px 0;
}

.unsub {
    font-size: 11px;
    margin: 0 0 15px 0;
}

.unsub span {
    color: #0B6AFF;
}

.conts {
    display: flex;
    align-items: center;
    margin: 0 0 15px 0;
}

.conts img {
    display: inline-block;
    margin: 0 8px 0 0;
}

.conts img,
.conts span {
    margin: 0 8px 0 0;
}

.carrousel {
    padding: 18px 0;
    border-top: 3px solid #000000;
    border-bottom: 2px solid #E9E9E9;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 20px;
}

.carIt {
    flex: 240px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    border-right: 1px solid #E9E9E9;
    padding: 0 20px 0 0;
    gap: 10px;
}

.carIt>div:first-of-type {
    flex-basis: 110px;
    flex-shrink: 0;
}

.imgQ {
    width: 100px;
    height: 100px;
    background-color: #ebebeb;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.imgQ img {
    height: 110px;
}

.rightIt {
    display: block;
    text-align: right;
    font-weight: 700;
    color: #000000;
    font-size: 15px;
    padding: 0 0 8px 0;
}

.carIt .time {
    display: block;
    text-align: right;
}

.clmn3 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 20px 0;
}

.clmn3>div:nth-child(1),
.clmn3>div:nth-child(3) {
    flex: .297;
}

.clmn3>div:nth-child(2) {
    flex: .406;
}

.info {
    display: flex;
    gap: 45px;
}

.info>article:first-of-type {
    flex: .628;
}

.info>aside:first-of-type {
    flex: .372;
}

.info p {
    font-size: 16px;
    line-height: 25px;
}

.iRow {
    margin: 20px 0;
}

.info h2 {
    font-size: 17px;
}

.email {
    color: var(--text-color-blue);
}

.breads {
    font-size: 12px;
}

.breads a {
    text-transform: uppercase;
    text-decoration: underline;
    font-weight: 700;
}

.breads span {
    color: #A4ACBA;
}

.er404 {
    font-size: 182px;
    color: #E9E9E9;
}

.cen {
    text-align: center;
    margin: 30px 0;
}

.three {
    display: flex;
    gap: 20px;
}

.three>div:nth-child(1) {
    flex: .374;
}

.three>div:nth-child(2),
.three>div:nth-child(3) {
    flex: .313;
}

.three>div:nth-child(3) {
    align-self: flex-start;
    position: sticky;
    top: 170px;
}

.fLi {
    margin: 20px 0 0 0;
}

.seo {
    font-size: 15px;
    line-height: 25px;
}

.seo p {
    margin: 10px 0;
}

.post {
    display: flex;
    gap: 40px;
}

.post>article {
    flex: .656;
}

.post>aside {
    flex: .344;
}

.post .breads {
    margin: 5px 0 15px 0;
}

.desc {
    font-size: 17px;
    line-height: 23px;
    color: #A4ACBA;
}

.author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 15px 0 20px 0;
}

.author>div:first-of-type {
    display: flex;
    align-items: center;
}

.author>div>img {
    margin: 0 15px 0 0;
    display: block;
    height: 30px;
    width: 30px;
    border-radius: 30px;
    box-shadow: 0 0 0 3px #DEDFE2;
    background-color: #f9f9f9;
}

p.date {
    font-size: 13px;
    line-height: initial;
    color: #A4ACBA;
}

.date a {
    color: #A4ACBA;
}

.author>img:last-of-type {
    cursor: pointer;
}

.text p {
    font-size: 17px;
    line-height: 25px;
    margin: 20px 0;
}

.text figure,
.text p>img {
    margin: 20px 0;
}

.text img {
    margin-bottom: 5px;
    width: 100%;
}

.text figcaption,
.text figcaption p {
    font-size: 13px;
    line-height: initial;
    color: #A4ACBA;
    text-align: center;
    margin: 0;
}

.text blockquote {
    font-size: 17px;
    line-height: 25px;
    margin: 20px 0;
    border-left: 5px solid #ccc;
    font-style: italic;
    overflow: hidden;
    padding: 20px;
    background-color: #f4f4f4;
}

.text blockquote>p {
    margin: 0;
}

.text a {
    text-decoration: underline;
}

.text h2 {
    font-size: 24px;
    margin: 20px 0;
}

.text h3 {
    font-size: 21px;
    margin: 20px 0;
}

.text ul,
.text ol {
    margin: 20px 0 20px 40px;
    font-size: 17px;
    line-height: 25px;
}

.text ul {
    list-style: disc;
}

.text li {
    margin: 7px 0;
}

.text iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.googleNews {
    display: flex;
    align-items: center;
    padding: 10px 0;
    border-top: 1px solid #E9E9E9;
    border-bottom: 1px solid #E9E9E9;
}

.googleNews>a {
    margin: 0 15px;
}

.googleNews>p {
    font-size: 13px;
    color: #A4ACBA;
    max-width: 115px;
    line-height: initial;
}

.liner {
    height: 1px;
    background-color: #E9E9E9;
    margin: 10px 0;
}

.mostP {
    margin: 25px 0;
}

.newsP {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.newsP>div {
    flex: .5;
}

.post>aside {
    align-self: flex-start;
    position: sticky;
    top: 170px;
}

.pagination {
    margin: 15px 0;
}

.pagination,
.pagination>div {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination input {
    width: 80px;
    margin: 0 8px;
}

.pagination a:last-of-type {
    margin: 0 0 0 8px;
}

div>a.activeSec {
    color: var(--text-color-blue);
    text-decoration: underline;
}

.dates {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 30px 0;
}

.tots {
    margin: 20px 0 0 0;
}

@media screen and (max-width: 1024px) {
    .clmn2,
    .clmn3,
    .toper,
    .three,
    .post,
    .newsP {
        flex-direction: column;
    }

    .midlle {
        flex-direction: column;
    }

    .post,
    .newsP {
        gap: 0;
    }

    .mostP {
        margin-bottom: 0;
    }
}

@media screen and (max-width: 540px) {
    .info {
        flex-direction: column;
        gap: 20px;
    }

    .line1>div.right,
    .search {
        display: none;
    }

    .line2 {
        margin: 14px 0;
    }

    .sections>div {
        padding: 0;
    }

    .footSec {
        flex-direction: row-reverse;
        justify-content: flex-end;
        gap: 20px;
    }

    .foot3,
    .subs {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .foot3 img {
        width: 300px;
    }
}

@media screen and (max-width: 360px) {
    .logma {
        width: 165px;
    }

    .gNews>img:first-of-type {
        display: none;
    }

    .post h1 {
        font-size: 27px;
    }
}