body, html {
    margin: 0px;
    padding: 0px;
    background: #E8EFF3;
    overflow-x: hidden;
    font-family: Tahoma, Geneva, sans-serif;
}

body * {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-family: Tahoma, Geneva, sans-serif;
}

.container {
    max-width: 1480px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px
}

header {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 3;
    width: 100%;
    background: #FFF;
    -webkit-box-shadow: 0px 4px 30px 0px rgba(3, 0, 37, 0.1);
    box-shadow: 0px 4px 30px 0px rgba(3, 0, 37, 0.1)
}

header .outer__header {
    min-height: 90px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

header .outer__header .header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

header .outer__header .header__right .login-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 50px;
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

header .outer__header .header__right .login-btn.hidden {
    opacity: 0;
    pointer-events: none
}

header .outer__header .header__right .login-btn > a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 37px;
    background: #1AD079;
    border: 2px solid #1AD079;
    font-size: 20px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    min-width: 155px;
    min-height: 54px;
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

header .outer__header .header__right .login-btn > a:hover {
    border-radius: 37px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: #1AD079;
    -webkit-box-shadow: 0px 1px 15px 0px rgba(26, 208, 121, 0.3);
    box-shadow: 0px 1px 15px 0px rgba(26, 208, 121, 0.3)
}

header .outer__header .header__right .search__wrapper {
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: relative
}

header .outer__header .header__right .search__wrapper form {
    position: absolute;
    right: -7px;
    top: 0px;
    opacity: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 300px;
    height: 50px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 4
}

header .outer__header .header__right .search__wrapper form button {
    position: absolute;
    right: 0px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    cursor: pointer;
    background-color: transparent;
    border: 0px
}

header .outer__header .header__right .search__wrapper form button svg path {
    stroke: #377DFF
}

header .outer__header .header__right .search__wrapper form input {
    border: 0px;
    outline: none;
    padding-left: 15px;
    padding-right: 45px;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    width: 100%;
    height: 50px;
    border-radius: 10px;
    background: #F0F2F4
}

header .outer__header .header__right .search__wrapper > a {
    display: -ms-inline-flexbox;
    display: inline-flex
}

header .outer__header .header__right .menu__dropdown {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 30px
}

header .outer__header .header__right .menu__dropdown .dropdown__box {
    position: absolute;
    top: 40px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    min-width: 225px;
    background: linear-gradient(134deg, #FFF 0%, rgba(224, 233, 245, 0.9) 100%);
    border: 2px solid #fff;
    z-index: 3;
    border-radius: 10px;
    -webkit-box-shadow: 0px 4px 50px rgba(109, 145, 255, 0.1);
    box-shadow: 0px 4px 50px rgba(109, 145, 255, 0.1);
    padding: 10px 0px;
    margin-left: -80px
}

header .outer__header .header__right .menu__dropdown .dropdown__box li.dropdown:hover > a:after {
    opacity: 1
}

header .outer__header .header__right .menu__dropdown .dropdown__box li.dropdown > a {
    position: relative
}

header .outer__header .header__right .menu__dropdown .dropdown__box li.dropdown > a:after {
    content: "";
    width: 8px;
    height: 30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    position: absolute;
    right: -20px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    opacity: 0;
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

header .outer__header .header__right .menu__dropdown .dropdown__box li.dropdown:hover > a {
    color: #377DFF
}

header .outer__header .header__right .menu__dropdown .dropdown__box li.dropdown:hover > a span svg {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

header .outer__header .header__right .menu__dropdown .dropdown__box li.dropdown:hover > a span svg path {
    stroke: #377DFF
}

header .outer__header .header__right .menu__dropdown .dropdown__box li.dropdown:hover > a:before {
    opacity: 1
}

header .outer__header .header__right .menu__dropdown .dropdown__box li.dropdown:hover > .dropdown__inner {
    opacity: 1;
    pointer-events: initial
}

header .outer__header .header__right .menu__dropdown .dropdown__box .dropdown__inner {
    position: absolute;
    min-width: 165px;
    max-width: 165px;
    padding-left: 20px;
    right: -165px;
    top: 0px;
    opacity: 0;
    -webkit-transition: .4s ease all;
    transition: .4s ease all;
    pointer-events: none
}

header .outer__header .header__right .menu__dropdown .dropdown__box .dropdown__inner > ul {
    list-style-type: none;
    padding: 0px;
    margin: 0px;
    background: linear-gradient(134deg, #FFF 0%, rgba(224, 233, 245, 0.9) 100%);
    border: 2px solid #fff;
    padding: 8px 0px;
    border-radius: 10px;
    -webkit-filter: drop-shadow(0px 4px 50px rgba(109, 145, 255, 0.1));
    filter: drop-shadow(0px 4px 50px rgba(109, 145, 255, 0.1))
}

header .outer__header .header__right .menu__dropdown .dropdown__box .dropdown__inner > ul li > a {
    padding: 12px 15px;
    display: block;
    text-align: left;
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    color: #2B2B2B;
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

header .outer__header .header__right .menu__dropdown .dropdown__box .dropdown__inner > ul li > a:hover {
    color: #377DFF
}

header .outer__header .header__right .menu__dropdown .dropdown__box:before {
    content: "";
    position: absolute;
    width: 20px;
    height: 10px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center;
    top: -10px;
    opacity: .4;
    right: 20px
}

header .outer__header .header__right .menu__dropdown .dropdown__box > ul {
    padding: 0px;
    list-style-type: none;
    margin: 0px
}

header .outer__header .header__right .menu__dropdown .dropdown__box > ul > li {
    display: block;
    width: 100%
}

header .outer__header .header__right .menu__dropdown .dropdown__box > ul > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    position: relative;
    margin: 0px;
    -webkit-transition: .4s ease all;
    transition: .4s ease all;
    font-size: 18px;
    font-weight: 500;
    color: #2B2B2B;
    text-decoration: none;
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 12px 20px
}

header .outer__header .header__right .menu__dropdown .dropdown__box > ul > li > a span {
    display: -ms-inline-flexbox;
    display: inline-flex;
    position: absolute;
    right: 10px
}

header .outer__header .header__right .menu__dropdown .dropdown__box > ul > li > a span svg {
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

header .outer__header .header__right .menu__dropdown .dropdown__box > ul > li > a span svg path {
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

header .outer__header .header__right .menu__dropdown .dropdown__box > ul > li > a:before {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    background: rgba(55, 125, 255, 0.2);
    opacity: 0;
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

header .outer__header .header__right .menu__dropdown .dropdown__box > ul > li > a:hover {
    color: #377DFF
}

header .outer__header .header__right .menu__dropdown .dropdown__box > ul > li > a:hover span svg path {
    stroke: #377DFF
}

header .outer__header .header__right .menu__dropdown .dropdown__box > ul > li > a:hover:before {
    opacity: 1
}

header .outer__header .header__right .menu__dropdown > a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-decoration: none;
    font-size: 20px;
    color: #377DFF;
    font-weight: 500;
    font-family: "Fira Sans", sans-serif
}

header .outer__header .header__right .menu__dropdown > a.active span {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg)
}

header .outer__header .header__right .menu__dropdown > a.active span svg path {
    stroke: #377DFF
}

header .outer__header .header__right .menu__dropdown > a span {
    -webkit-transition: .4s ease all;
    transition: .4s ease all;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 10px
}

header .outer__header .header__right .menu__dropdown > a span svg path {
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

header .outer__header .header__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

header .outer__header .header__left > .main__menu > ul {
    padding: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    list-style-type: none;
    margin: 0px;
    margin-left: 50px
}

header .outer__header .header__left > .main__menu > ul > li {
    margin-right: 40px
}

header .outer__header .header__left > .main__menu > ul > li > a {
    font-size: 20px;
    font-weight: 500;
    color: #2B2B2B;
    -webkit-transition: .4s ease all;
    transition: .4s ease all;
    text-decoration: none
}

header .outer__header .header__left > .main__menu > ul > li > a:hover {
    color: #377DFF
}

header .outer__header .header__left > .main__menu > ul > li:last-child {
    margin-right: 0px
}

header .outer__header .header__left > a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

header .outer__header .header__left > a img {
    max-width: 240px;
    height: auto
}

footer {
    background: #21325B;
    padding-top: 60px
}

footer .footer__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

footer .footer__grid .resources {
    max-width: 240px;
    width: 100%;
    padding-top: 20px
}

footer .footer__grid .resources ul {
    padding: 0px;
    list-style-type: none;
    margin: 0px
}

footer .footer__grid .resources ul > li {
    margin-bottom: 20px
}

footer .footer__grid .resources ul > li > a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 400;
    color: #fff;
    -webkit-transition: .4s ease all;
    transition: .4s ease all;
    white-space: nowrap
}

footer .footer__grid .resources ul > li > a:hover {
    color: #377DFF
}

footer .footer__grid .resources ul > li:last-child {
    margin-bottom: 0px
}

footer .footer__grid .resources > p {
    margin-top: 0px;
    margin-bottom: 50px;
    font-size: 24px;
    font-weight: 600;
    color: #fff
}

footer .footer__grid .copyright {
    max-width: 500px;
    padding-top: 20px;
    width: 100%;
    margin-right: 25px
}

footer .footer__grid .copyright .copyright__articles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

footer .footer__grid .copyright .copyright__articles > .elem {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 20px;
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

footer .footer__grid .copyright .copyright__articles > .elem:hover .desc p {
    color: #377DFF
}

footer .footer__grid .copyright .copyright__articles > .elem .desc {
    margin-top: auto;
    margin-bottom: auto
}

footer .footer__grid .copyright .copyright__articles > .elem .desc p {
    line-height: 150%;
    margin: 0px;
    font-size: 20px;
    -webkit-transition: .4s ease all;
    transition: .4s ease all;
    font-weight: 500;
    color: #fff;
    font-family: "Fira Sans", sans-serif
}

footer .footer__grid .copyright .copyright__articles > .elem .media {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 110px;
    max-width: 110px;
    border-radius: 10px;
    margin-right: 15px;
    overflow: hidden;
    min-height: 65px
}

footer .footer__grid .copyright .copyright__articles > .elem .media img {
    width: 100%;
    border-radius: 10px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

footer .footer__grid .copyright .copyright__articles > .elem:last-child {
    margin-bottom: 0px
}

footer .footer__grid .copyright > p {
    margin-top: 0px;
    margin-bottom: 50px;
    font-size: 24px;
    font-weight: 600;
    color: #fff
}

footer .footer__grid .main__footer {
    max-width: 520px;
    margin-right: 25px
}

footer .footer__grid .main__footer .desc {
    margin-top: 30px
}

footer .footer__grid .main__footer .desc > p {
    margin-top: 0px;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 150%;
    color: #fff;
    font-weight: 400
}

footer .footer__grid .main__footer .desc > p:last-child {
    margin-bottom: 0px
}

footer .footer__grid .main__footer ul {
    padding: 0px;
    list-style-type: none;
    margin: 0px;
    margin-bottom: 30px;
    margin-top: 40px
}

footer .footer__grid .main__footer ul > li {
    margin-bottom: 30px
}

footer .footer__grid .main__footer ul > li > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-decoration: none;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

footer .footer__grid .main__footer ul > li > a:hover {
    opacity: .7
}

footer .footer__grid .main__footer ul > li > a span {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 15px
}

footer .footer__grid .main__footer ul > li:last-child {
    margin-bottom: 0px
}

footer .footer__grid .main__footer > a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-transition: .4s ease all;
    transition: .4s ease all;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

footer .footer__grid .main__footer > a:hover {
    opacity: .7
}

footer .footer__grid .main__footer > a img {
    max-width: 340px;
    height: auto
}

footer .footer__bottom {
    padding: 20px 0px;
    border-top: 1px solid #FFF;
    margin-top: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

footer .footer__bottom ul {
    padding: 0px;
    list-style-type: none;
    margin: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

footer .footer__bottom ul > li {
    margin-right: 48px
}

footer .footer__bottom ul > li > a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    -webkit-transition: .4s ease all;
    transition: .4s ease all;
    font-family: "Fira Sans", sans-serif
}

footer .footer__bottom ul > li > a:hover {
    color: #377DFF
}

footer .footer__bottom ul > li:last-child {
    margin-right: 0px
}

footer .footer__bottom > p {
    margin: 0px;
    font-size: 16px;
    font-weight: 400;
    line-height: 150%;
    color: #fff
}

.articles__wrapper {
    padding-bottom: 180px
}

.articles__wrapper .article__top--ad {
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-width: 970px;
    margin-left: auto;
    margin-right: auto
}

.articles__wrapper .article__top--ad > .articles__ad {
    width: 100%;
    height: auto;
    border: 3px solid #FFFFFF;
    max-width: 970px;
    margin-left: auto;
    margin-right: auto
}

.articles__wrapper .article__top--ad > .articles__ad iframe {
    width: 100%;
    height: 100%
}

.main__articles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.main__articles .articles__grid {
    width: 100%;
    max-width: 580px;
    margin-right: 20px
}

.main__articles .middle__articles {
    max-width: 540px;
    margin-right: 20px;
    width: 85%
}

.main__articles .plate__articles + .elem__list--articles {
    margin-top: 50px;
    margin-bottom: 0px
}

.main__articles .plate__articles {
    margin-top: 20px
}

.main__articles .plate__articles:nth-child(1) {
    margin-top: 0px
}

.main__articles .plate__articles .elem__plate {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    text-decoration: none
}

.main__articles .plate__articles .elem__plate:hover .desc > h4 {
    color: #377DFF
}

.main__articles .plate__articles .elem__plate .desc {
    width: 100%
}

.main__articles .plate__articles .elem__plate .desc > h4 {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
    color: #11131F;
    -webkit-transition: .4s ease all;
    transition: .4s ease all;
    font-family: "Fira Sans", sans-serif
}

.main__articles .plate__articles .elem__plate .desc > p {
    color: #677788;
    font-size: 16px;
    line-height: 24px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical
}

.main__articles .plate__articles .elem__plate .media {
    height: 140px;
    width: 100%;
    margin-bottom: 15px
}

.main__articles .plate__articles .elem__plate .media img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 10px
}

.main__articles .plate__articles.box {
    padding: 20px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.5)
}

.main__articles .plate__articles .spacer {
    display: block;
    margin: 15px auto;
    width: 200px;
    height: 1px;
    background-color: rgba(103, 119, 136, 0.3)
}

.main__articles .big__article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    margin-bottom: 20px;
    background-color: #fff
}

.main__articles .big__article:hover .desc__ > h3 {
    color: #377DFF
}

.main__articles .big__article:last-child {
    margin-bottom: 0px
}

.main__articles .big__article .desc__ {
    padding: 25px 30px
}

.main__articles .big__article .desc__ > h3 {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 24px;
    -webkit-transition: .4s ease all;
    transition: .4s ease all;
    font-weight: 600;
    color: #11131F;
    font-family: "Fira Sans", sans-serif
}

.main__articles .big__article .desc__ > p {
    display: block;
    text-align: left;
    color: #677788;
    font-size: 17px;
    line-height: 150%
}

.main__articles .big__article .media {
    width: 100%;
    height: auto
}

.main__articles .big__article .media img {
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover
}

.main__articles .elem__list--articles {
    width: 100%;
    max-width: 580px;
    margin-right: 20px;
    margin-bottom: 60px
}

.main__articles .elem__list--articles:last-child {
    margin-bottom: 0px
}

.main__articles .elem__list--articles .text__article {
    margin-top: 20px;
    border-radius: 20px;
    background: #FFF;
    padding: 15px 25px
}

.main__articles .elem__list--articles .text__article > .elem__text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    font-size: 21px;
    color: #11131F;
    font-weight: 500;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    padding: 15px 0px;
    border-bottom: 1px solid rgba(103, 119, 136, 0.3);
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

.main__articles .elem__list--articles .text__article > .elem__text:last-child {
    border-bottom: 0px
}

.main__articles .elem__list--articles .text__article > .elem__text:hover {
    color: #377DFF
}

.main__articles .elem__list--articles .small__articles .elem__small {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    border-radius: 20px;
    background: #FFF;
    text-decoration: none
}

.main__articles .elem__list--articles .small__articles .elem__small:hover > p {
    color: #377DFF
}

.main__articles .elem__list--articles .small__articles .elem__small > p {
    -webkit-transition: .4s ease all;
    transition: .4s ease all;
    text-align: left;
    margin: 0px;
    font-size: 21px;
    font-weight: 500;
    color: #11131F;
    margin-top: auto;
    margin-bottom: auto;
    line-height: 140%;
    font-family: "Fira Sans", sans-serif
}

.main__articles .elem__list--articles .small__articles .elem__small .media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 150px;
    max-width: 150px;
    min-height: 110px;
    margin-right: 15px;
    border-radius: 10px;
    overflow: hidden
}

.main__articles .elem__list--articles .small__articles .elem__small .media img {
    width: 100%;
    border-radius: 10px;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.main__articles .elem__list--articles .small__articles .elem__small:last-child {
    margin-bottom: 0px
}

.main__articles .elem__list--articles > h2 {
    margin-top: 0px;
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
    font-size: 30px;
    font-weight: 600;
    font-family: "Fira Sans", sans-serif
}

.main__articles .elem__list--articles > h2 span {
    font-family: "Fira Sans", sans-serif
}

.main__articles .elem__list--articles > h2:before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -15px;
    width: 100%;
    height: 10px;
    background: url("articlelinebefore.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center
}

.colored {
    color: #377DFF
}

body.v__header {
    padding-top: 105px
}

.article__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
}

.article__inner .article__desc {
    max-width: 940px;
    width: 100%;
    margin-right: 40px
}

.article__inner .article__desc .article__list .spacer {
    display: block;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    min-height: 1px;
    margin: 30px auto;
    background: rgba(103, 119, 136, 0.3)
}

.article__inner .article__desc .article__list .article__ad {
    width: 100%;
    padding-bottom: 33.2%;
    border: 3px solid #FFF
}

.article__inner .article__desc .article__list .article__ad .ad {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    width: 100%;
    height: 100%
}

.article__inner .article__desc .article__list .article__ad .ad iframe {
    width: 100%;
    height: 100%
}

.article__inner .article__desc .article__list .elem__article {
    text-decoration: none;
    display: block
}

.article__inner .article__desc .article__list .elem__article > h3 {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 28px;
    font-weight: 600;
    font-weight: 600;
    color: #11131F;
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

.article__inner .article__desc .article__list .elem__article:hover > h3 {
    color: #377DFF
}

.article__inner .article__desc .article__list .elem__article > p {
    margin: 0px;
    display: block;
    text-align: left;
    font-size: 20px;
    line-height: 150%;
    color: #677788
}

.article__inner .article__desc .article__list--title {
    width: 100%;
    margin-bottom: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.article__inner .article__desc .article__list--title > h2 {
    font-size: 40px;
    margin-top: 0px;
    margin-bottom: 0px;
    font-weight: 600;
    position: relative
}

.article__inner .article__desc .article__list--title > h2:before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -15px;
    width: 100%;
    height: 14px;
    background: url("articlelinebefore.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center
}

.article__inner .article__desc .article__list--title > h2 span {
    font-weight: 600
}

.article__inner .article__desc + .side__articles {
    min-width: 300px
}

.article__inner .article__desc .desc__ .tags {
    margin-top: 45px;
    padding: 30px;
    border-radius: 30px;
    border: 3px solid #FFF;
    background: rgba(255, 255, 255, 0.25)
}

.article__inner .article__desc .desc__ .tags .elem__tag {
    margin-bottom: 20px
}

.article__inner .article__desc .desc__ .tags .elem__tag > p {
    margin-top: 0px;
    margin-bottom: 12px;
    color: #11131F;
    font-size: 20px;
    font-weight: 500;
    font-family: "Fira Sans", sans-serif
}

.article__inner .article__desc .desc__ .tags .elem__tag .tags__grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -7px
}

.article__inner .article__desc .desc__ .tags .elem__tag .tags__grid .el__tag {
    margin: 7px 7px;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    -webkit-transition: .4s ease all;
    transition: .4s ease all;
    border: 2px solid #377DFF;
    text-transform: capitalize
}

.article__inner .article__desc .desc__ .tags .elem__tag .tags__grid .el__tag:hover {
    background-color: #377DFF
}

.article__inner .article__desc .desc__ .tags .elem__tag .tags__grid .el__tag:hover p {
    color: #fff
}

.article__inner .article__desc .desc__ .tags .elem__tag .tags__grid .el__tag * {
    color: #377DFF;
    font-weight: 500
}

.article__inner .article__desc .desc__ .tags .elem__tag .tags__grid .el__tag p {
    -webkit-transition: .4s ease all;
    transition: .4s ease all;
    margin: 0px
}

.article__inner .article__desc .desc__ .tags .elem__tag:last-child {
    margin-bottom: 0px
}

.article__inner .article__desc .desc__ .source {
    border-top: 1px solid rgba(103, 119, 136, 0.3);
    padding-top: 15px;
    margin-top: 0px
}

.article__inner .article__desc .desc__ .source p {
    margin: 0px;
    font-size: 20px;
    line-height: 150%;
    color: #494E70
}

.article__inner .article__desc .desc__ .source p a {
    color: #377DFF;
    text-decoration: underline
}

.article__inner .article__desc .desc__ > h6 {
    margin-top: 40px;
    color: #11131F;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 20px
}

.article__inner .article__desc .desc__ > h6:nth-child(1) {
    margin-top: 0px
}

.article__inner .article__desc .desc__ > ul {
    margin-top: 0px;
    margin: 0px;
    margin-bottom: 15px;
    padding: 0px;
    list-style-type: none
}

.article__inner .article__desc .desc__ > ul > li {
    margin-bottom: 5px
}

.article__inner .article__desc .desc__ > ul > li:last-child {
    margin-bottom: 0px
}

.article__inner .article__desc .desc__ > ul > li ul {
    padding: 0px;
    list-style-type: none;
    margin: 0px;
    margin-top: 5px;
    padding-left: 37px
}

.article__inner .article__desc .desc__ > ul > li ul > li {
    margin-bottom: 5px
}

.article__inner .article__desc .desc__ > ul > li ul > li:last-child {
    margin-bottom: 0px
}

.article__inner .article__desc .desc__ > ul > li p {
    margin: 0px;
    font-size: 20px;
    line-height: 150%;
    color: #494E70;
    font-weight: 400
}

.article__inner .article__desc .desc__ > ul > li p span {
    min-width: 32px;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.article__inner .article__desc .desc__ .italic {
    font-style: italic
}

.article__inner .article__desc .desc__ .dark {
    color: #11131F
}

.article__inner .article__desc .desc__ .normal {
    font-style: normal
}

.article__inner .article__desc .desc__ .bold {
    font-weight: bold
}

.article__inner .article__desc .desc__ > p {
    margin-top: 0px;
    font-size: 20px;
    line-height: 150%;
    font-weight: 400;
    color: #494E70;
    margin-bottom: 15px
}

.article__inner .article__desc .desc__ > p a {
    color: #377DFF;
    text-decoration: underline
}

.article__inner .article__desc .desc__ > p:last-child {
    margin-bottom: 0px
}

.article__inner .article__desc > .media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 40px
}

.article__inner .article__desc > .media > img {
    max-width: 100%;
    height: auto;
    width: 100%;
    border-radius: 12px;
}

.article__inner .article__desc > p {
    margin-top: 0px;
    margin-bottom: 40px;
    color: #11131F;
    font-size: 20px;
    line-height: 150%;
    font-family: "Fira Sans", sans-serif
}

.article__inner .article__desc .author__article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-bottom: 25px
}

.article__inner .article__desc .author__article .socials {
    margin-left: 15px
}

.article__inner .article__desc .author__article .socials ul {
    padding: 0px;
    list-style-type: none;
    margin: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.article__inner .article__desc .author__article .socials ul > li {
    margin-right: 20px;
    display: -ms-inline-flexbox;
    display: inline-flex
}

.article__inner .article__desc .author__article .socials ul > li a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    text-decoration: none;
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

.article__inner .article__desc .author__article .socials ul > li a:hover {
    opacity: .7
}

.article__inner .article__desc .author__article .socials ul > li:last-child {
    margin-right: 0px
}

.article__inner .article__desc .author__article .date {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.article__inner .article__desc .author__article .date .profile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    text-decoration: none
}

.article__inner .article__desc .author__article .date .profile:hover > p {
    color: #377DFF
}

.article__inner .article__desc .author__article .date .profile > span {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-right: 10px
}

.article__inner .article__desc .author__article .date .profile > p {
    margin: 0px;
    font-size: 20px;
    font-weight: 500;
    color: #494E70;
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

.article__inner .article__desc .author__article .date .spacer {
    height: 50px;
    min-width: 1px;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin: 0px 20px;
    background-color: rgba(103, 119, 136, 0.3)
}

.article__inner .article__desc .author__article .date .time {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.article__inner .article__desc .author__article .date .time > span {
    display: block;
    text-align: center;
    margin-bottom: 3px;
    font-size: 18px;
    font-weight: 300;
    color: #494E70;
    white-space: nowrap
}

.article__inner .article__desc .author__article .date .time > p {
    margin: 0px;
    font-size: 18px;
    font-weight: 500;
    color: #494E70;
    white-space: nowrap
}

.article__inner .article__desc .author__article .date > span {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 15px;
    white-space: nowrap;
    font-size: 36px;
    font-weight: 600;
    color: #494E70
}

.article__inner .article__desc .title {
    margin-bottom: 15px
}

.article__inner .article__desc .title > h1 {
    line-height: 150%;
    font-size: 40px;
    font-weight: 600;
    color: #11131F;
    margin-top: 0px;
    margin-bottom: 15px
}

.side__element {
    margin-bottom: 25px
}

.side__element .side__list ul {
    padding: 0px;
    list-style-type: none;
    margin: 0px
}

.side__element .side__list ul > li {
    margin-bottom: 10px
}

.side__element .side__list ul > li > a {
    padding: 10px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    line-height: 130%;
    color: #494E70;
    display: block;
    text-align: left;
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

.side__element .side__list ul > li > a:hover {
    color: #377DFF
}

.side__element .side__list ul > li:last-child {
    margin-bottom: 0px
}

.side__element > h2 {
    margin-top: 0px;
    display: inline-block;
    margin-bottom: 30px;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    font-family: "Fira Sans", sans-serif
}

.side__element > h2 span {
    font-weight: 600
}

.side__element > h2:before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -15px;
    width: 100%;
    height: 10px;
    background: url("articlelinebefore.svg");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center
}

.side__articles {
    max-width: 300px
}

.side__articles.short {
    min-width: 200px;
    max-width: 200px
}

.side__articles.short .side__list ul li a {
    padding: 5px 0px
}

.side__articles .side__ad {
    width: 100%;
    margin-bottom: 30px
}

.side__articles .side__ad:last-child {
    margin-bottom: 0px
}

.side__articles .side__ad .ad {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 600px;
    border: 3px solid #FFFFFF;
    width: 100%
}

.side__articles .side__ad .ad iframe {
    width: 100%;
    height: 100%
}

.relative__posts {
    margin-top: 50px
}

.relative__posts .container {
    padding-left: 0px;
    padding-right: 0px
}

.relative__posts .outer__relative .grid__relative {
    display: grid;
    grid-template-columns:repeat(3, 1fr);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    grid-gap: 20px
}

.relative__posts .outer__relative .grid__relative .elem__relative {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-decoration: none;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.relative__posts .outer__relative .grid__relative .elem__relative:hover .desc > p {
    color: #377DFF
}

.relative__posts .outer__relative .grid__relative .elem__relative .desc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.relative__posts .outer__relative .grid__relative .elem__relative .desc > p {
    margin-top: 0px;
    margin-bottom: 10px;
    font-size: 24px;
    font-weight: 500;
    color: #11131F;
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

.relative__posts .outer__relative .grid__relative .elem__relative .desc > span {
    font-size: 18px;
    line-height: 140%;
    color: #677788;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical
}

.relative__posts .outer__relative .grid__relative .elem__relative > .media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 15px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.relative__posts .outer__relative .grid__relative .elem__relative > .media > img {
    height: 280px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    border-radius: 10px
}

.relative__posts .outer__relative .title {
    margin-bottom: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.relative__posts .outer__relative .title > h2 {
    margin: 0px;
    font-size: 40px;
    font-weight: 600;
    color: #11131F;
    position: relative
}

.relative__posts .outer__relative .title > h2:before {
    content: "";
    position: absolute;
    left: 0px;
    bottom: -15px;
    width: 100%;
    height: 12px;
    background: url("articlelinebefore.svg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center
}

.relative__posts .outer__relative .title > h2 span {
    font-family: "Fira Sans", sans-serif
}

.pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-top: 50px
}

.pagination ul {
    padding: 0px;
    list-style-type: none;
    margin: 0px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.pagination ul li:nth-child(1) {
    margin-right: 25px
}

.pagination ul li:last-child {
    margin-left: 25px
}

.pagination ul li.number {
    margin-right: 2px
}

.pagination ul li.number > a {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-width: 32px;
    max-width: 32px;
    min-height: 32px;
    font-size: 18px;
    color: #677788;
    font-weight: 400;
    max-height: 32px;
    border-radius: 5px
}

.pagination ul li.number > a:hover {
    background-color: #377DFF;
    border-radius: 5px;
    color: #fff
}

.pagination ul li.number > a.current {
    background-color: #377DFF;
    border-radius: 5px;
    color: #fff
}

.pagination ul li.number > a {
    margin: 0px !important
}

.pagination ul li > a {
    font-size: 18px;
    color: #677788;
    font-family: "Fira  Sans", sans-serif;
    text-decoration: none;
    -webkit-transition: .4s ease all;
    transition: .4s ease all;
    padding: 10px;
    border: 1px solid;
    border-radius: 5px;
}

.pagination ul li > a:hover {
    color: #377DFF
}

.side__articles.v__ad {
    min-width: 300px !important;
    max-width: 300px !important
}

.articles__wrapper .article__top--ad > .articles__ad {
}

@media (max-width: 1640px) {
    header .outer__header .header__right .menu__dropdown .dropdown__box {
        min-width: 160px
    }

    header .outer__header .header__right .menu__dropdown .dropdown__box > ul > li > a {
        font-size: 16px
    }

    header .outer__header .header__right .menu__dropdown .dropdown__box .dropdown__inner > ul li > a {
        font-size: 15px
    }

    header .outer__header .header__right .menu__dropdown .dropdown__box > ul > li > a {
        padding: 12px
    }

    header .outer__header .header__right .menu__dropdown .dropdown__box .dropdown__inner > ul li > a {
        padding: 12px
    }

    header .outer__header .header__right .menu__dropdown .dropdown__box .dropdown__inner {
        min-width: 155px;
        max-width: 155px
    }

    header .outer__header .header__right .menu__dropdown .dropdown__box .dropdown__inner {
        right: -154px
    }

    header .outer__header .header__right .menu__dropdown .dropdown__box {
        margin-left: -100px
    }
}

@media (max-width: 1440px) {
    header .outer__header .header__left > .main__menu > ul {
        margin-left: 30px
    }

    header .outer__header .header__left > .main__menu > ul > li > a {
        font-size: 18px
    }

    header .outer__header .header__left > .main__menu > ul > li {
        margin-right: 30px
    }
}

.tablet__menu, .mobile__menu {
    display: none
}

.small__info {
    display: none
}

header {
    -webkit-transition: .4s ease all;
    transition: .4s ease all
}

.relative__posts .outer__relative .grid__relative .elem__relative > .media {
    width: 100%
}

@media (max-width: 1340px) {
    header .outer__header .header__right .login-btn {
        margin-right: 0px
    }

    header .outer__header .header__right .login-btn > a {
        min-height: 45px;
        min-width: 120px
    }

    .article__inner .article__desc .article__list--title > h2 {
        font-size: 36px
    }

    .article__inner .article__desc .article__list .elem__article > h3 {
        font-size: 24px
    }

    .article__inner .article__desc .article__list .elem__article > p {
        font-size: 16px
    }

    .article__inner .article__desc .article__list .spacer {
        max-width: 500px
    }

    .relative__posts .outer__relative .grid__relative .elem__relative > .media > img {
        height: 215px
    }

    .relative__posts .outer__relative .title > h2 {
        font-size: 32px
    }

    .relative__posts .outer__relative .grid__relative .elem__relative .desc > p {
        font-size: 20px
    }

    .relative__posts .outer__relative .grid__relative .elem__relative .desc > span {
        font-size: 15px
    }

    .relative__posts .outer__relative .grid__relative .elem__relative > .media {
        width: 100%
    }

    .article__inner .article__desc .title > h1 {
        font-size: 32px
    }

    .article__inner .article__desc > p {
        font-size: 16px
    }

    .article__inner .article__desc .desc__ > p {
        font-size: 16px
    }

    .article__inner .article__desc .desc__ > ul > li p {
        font-size: 16px
    }

    .article__inner .article__desc .desc__ > ul > li p span {
        min-width: 27px
    }

    .article__inner .article__desc .desc__ > ul > li ul {
        padding-left: 32px
    }

    .article__inner .article__desc .desc__ > h6 {
        font-size: 24px
    }

    .article__inner .article__desc .desc__ .source p {
        font-size: 16px
    }

    .articles__wrapper {
        padding-bottom: 150px
    }

    .article__inner .article__desc + .side__articles {
        min-width: 210px
    }

    body.v__header {
        padding-top: 95px
    }

    header .outer__header .header__right .search__wrapper form {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    header .outer__header .header__right .menu__dropdown .dropdown__box {
        margin-left: -80px
    }

    .tablet__menu, .mobile__menu {
        display: -ms-inline-flexbox;
        display: inline-flex;
        margin-left: 50px
    }

    .tablet__menu > a, .mobile__menu > a {
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        min-width: 40px;
        max-width: 40px;
        min-height: 40px;
        background-color: #fff;
        border-radius: 250px;
        max-height: 40px
    }

    .tablet__menu > a.active > span > span:nth-child(1), .mobile__menu > a.active > span > span:nth-child(1) {
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 6px
    }

    .tablet__menu > a.active > span > span:nth-child(3), .mobile__menu > a.active > span > span:nth-child(3) {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        bottom: 7.5px
    }

    .tablet__menu > a.active > span > span:nth-child(2), .mobile__menu > a.active > span > span:nth-child(2) {
        opacity: 0
    }

    .tablet__menu > a > span, .mobile__menu > a > span {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: end;
        -ms-flex-align: end;
        align-items: flex-end;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: 20px;
        height: 20px;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .tablet__menu > a > span > span, .mobile__menu > a > span > span {
        position: relative;
        top: 0px;
        bottom: auto;
        -webkit-transition: .4s ease all;
        transition: .4s ease all;
        min-width: 18px;
        margin-bottom: 5px;
        min-height: 2px;
        background-color: #000
    }

    .tablet__menu > a > span > span:nth-child(2), .mobile__menu > a > span > span:nth-child(2) {
        min-width: 14px;
        max-width: 14px
    }

    .tablet__menu > a > span > span:last-child, .mobile__menu > a > span > span:last-child {
        margin-bottom: 0px
    }

    .tablet__menu > a > span > span:last-child, .mobile__menu > a > span > span:last-child {
        top: auto;
        bottom: 0px
    }

    .mobile__menu {
        display: none
    }

    header .outer__header .header__right .search__wrapper > a {
        display: none
    }

    header .outer__header .header__right .search__wrapper {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    header .outer__header .header__right .menu__dropdown {
        margin-right: 0px
    }

    header .outer__header .header__right .search__wrapper form {
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%)
    }

    header .outer__header .header__left > a img {
        max-width: 230px
    }

    header .outer__header {
        min-height: 78px
    }

    header .outer__header .header__right .menu__dropdown > a {
        font-size: 18px
    }

    header .outer__header .header__left > .main__menu > ul {
        display: none
    }

    footer .footer__grid .copyright {
        max-width: 415px
    }

    footer .footer__grid .main__footer .desc > p {
        font-size: 14px
    }

    footer .footer__bottom > p {
        font-size: 14px
    }

    footer .footer__bottom ul > li > a {
        font-size: 14px
    }

    footer .footer__bottom ul > li {
        margin-right: 35px
    }

    footer .footer__grid .main__footer ul > li > a {
        font-size: 20px
    }

    footer .footer__grid .main__footer > a img {
        max-width: 320px
    }

    footer .footer__grid .copyright > p {
        font-size: 20px;
        margin-bottom: 30px
    }

    footer .footer__grid .copyright .copyright__articles > .elem .desc p {
        font-size: 16px
    }

    footer .footer__grid .copyright .copyright__articles > .elem .media {
        min-width: 100px;
        max-width: 100px;
        min-height: 60px
    }

    footer .footer__grid .resources > p {
        font-size: 20px
    }

    footer .footer__grid .resources > p {
        margin-bottom: 30px
    }

    .main__articles .plate__articles .elem__plate .desc > h4 {
        font-size: 20px
    }

    .side__element > h2 {
        font-size: 20px
    }

    .main__articles .big__article .desc__ > p {
        font-size: 16px
    }

    .main__articles .elem__list--articles .small__articles .elem__small > p {
        font-size: 18px
    }

    .main__articles .plate__articles .elem__plate .desc > p {
        font-size: 16px
    }

    .side__element .side__list ul > li > a {
        font-size: 14px
    }

    .side__articles {
        max-width: 220px
    }

    .main__articles .middle__articles {
        max-width: 450px
    }

    header .outer__header .header__left > a {
        position: relative;
        z-index: 2
    }

    header .outer__header .header__left > .main__menu > ul > li {
        margin-right: 60px
    }

    header .outer__header .header__left > .main__menu > ul {
        margin-left: 0px
    }

    header .outer__header .header__left > .main__menu {
        position: absolute;
        top: 0px;
        padding-top: 110px;
        left: 0px;
        width: 100%;
        padding-bottom: 30px;
        border-radius: 0px 0px 50px 50px;
        border: 2px solid #FFF;
        background: linear-gradient(180deg, #FFF 0%, rgba(224, 233, 245, 0.9) 100%);
        -webkit-box-shadow: 0px 4px 50px 0px rgba(109, 145, 255, 0.3);
        box-shadow: 0px 4px 50px 0px rgba(109, 145, 255, 0.3)
    }

    header .outer__header .header__left > .main__menu > ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .small__info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-top: 50px
    }

    .small__info .bottom__ul ul {
        padding: 0px;
        list-style-type: none;
        margin: 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .small__info .bottom__ul ul > li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .small__info .bottom__ul ul > li > a {
        text-decoration: none;
        font-size: 14px;
        color: #677788;
        font-weight: 400;
        font-family: "Fira Sans", sans-serif
    }

    .small__info .bottom__ul ul li.spacer {
        margin: 0px 15px;
        height: 17px;
        width: 1px;
        background-color: #677788
    }

    .small__info > ul {
        padding: 0px;
        list-style-type: none;
        margin: 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 30px
    }

    .small__info > ul > li {
        display: -ms-inline-flexbox;
        display: inline-flex;
        margin-right: 30px
    }

    .small__info > ul > li:last-child {
        margin-right: 0px
    }

    .small__info > ul > li > a {
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    header .outer__header .header__left > .main__menu {
        top: -350px;
        -webkit-transition: .4s ease all;
        transition: .4s ease all
    }
}

.mobile__menu--box {
    display: none
}

.article__inner .relative__posts {
    display: none
}

@media (max-width: 1200px) {
    footer .footer__grid .main__footer {
        max-width: 380px
    }

    footer .footer__grid .resources {
        width: auto
    }

    .article__inner .article__desc .author__article .date .profile > p {
        font-size: 17px
    }

    .article__inner .article__desc {
        margin-right: 20px
    }

    .article__inner .article__desc .author__article .date .profile > span img {
        min-width: 35px;
        max-width: 35px
    }

    .article__inner .article__desc .title > h1 {
        font-size: 32px
    }

    .article__inner .article__desc .author__article .date > span {
        font-size: 30px
    }
}

.side__element:last-child {
    margin-bottom: 0px
}

@media (max-width: 1040px) {
    .pagination {
        margin-top: 30px
    }

    .article__inner .relative__posts {
        display: block;
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .article__inner .relative__posts .container {
        padding-left: 0px;
        padding-right: 0px
    }

    .article__inner > .article__desc {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .article__inner .side__articles {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .article__inner .relative__posts {
        margin-top: 0px;
        margin-bottom: 50px
    }

    .article__inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .article__inner .side__articles {
        min-width: 0px !important;
        max-width: calc(50% - 10px)
    }

    .article__inner > .article__desc {
        margin-right: 20px;
        max-width: calc(100% - 320px);
        margin-bottom: 50px
    }

    .article__inner .article__desc + .side__articles {
        max-width: 300px !important;
        margin-right: 0px
    }

    .article__inner .article__desc + .side__articles {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .article__inner .side__articles {
        width: calc(100% - 320px);
        max-width: calc(100% - 320px)
    }
}

@media (max-width: 991px) {
    footer .footer__grid .resources {
        padding-top: 0px
    }

    .articles__wrapper .article__top--ad > .articles__ad {
        padding-bottom: 27.8%
    }

    .main__articles .middle__articles + .side__articles {
        margin-left: auto
    }

    .article__inner .article__desc .author__article {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .article__inner .article__desc .author__article .date {
        width: 100%
    }

    .article__inner .article__desc .author__article .socials {
        margin-left: 0px;
        margin-top: 25px
    }

    .article__inner .article__desc .author__article .socials ul li {
        margin-right: 50px
    }

    .mobile__menu--box .inner__menu .top__part .menu__ > ul > li > a.login__btn {
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border-radius: 37px;
        background: #1AD079;
        border: 2px solid #1AD079;
        font-size: 17px;
        font-weight: 600;
        text-decoration: none;
        color: #fff;
        min-width: 125px;
        min-height: 45px;
        -webkit-transition: .4s ease all;
        transition: .4s ease all
    }

    .mobile__menu--box .inner__menu .top__part .menu__ > ul > li > a.login__btn:hover {
        border-radius: 37px;
        border: 2px solid rgba(255, 255, 255, 0.8);
        background: #1AD079;
        -webkit-box-shadow: 0px 1px 15px 0px rgba(26, 208, 121, 0.3);
        box-shadow: 0px 1px 15px 0px rgba(26, 208, 121, 0.3)
    }

    header .outer__header .header__right .login-btn {
        display: none
    }

    .relative__posts .outer__relative .grid__relative .elem__relative > .media > img {
        height: 180px
    }

    .mobile__menu--box {
        position: fixed;
        top: -100%;
        -webkit-transition: .6s ease all;
        transition: .6s ease all;
        display: block;
        left: 0px;
        width: 100%;
        height: 100%;
        z-index: 3;
        background-color: #E8EFF3;
        padding-top: 98px
    }

    .mobile__menu--box .inner__menu {
        width: 100%;
        height: 100%;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding-bottom: 30px
    }

    .mobile__menu--box .inner__menu .top__part {
        width: 100%;
        padding-left: 15px;
        padding-right: 15px
    }

    .mobile__menu--box .inner__menu .top__part .profile > ul {
        padding: 0px;
        list-style-type: none;
        margin: 0px;
        margin-top: 35px
    }

    .mobile__menu--box .inner__menu .top__part .profile > ul > li {
        border-bottom: 1px solid rgba(103, 119, 136, 0.3)
    }

    .mobile__menu--box .inner__menu .top__part .profile > ul > li.dropdown ul {
        padding: 0px;
        list-style-type: none;
        margin: 0px;
        margin-top: 0px;
        padding-left: 15px;
        margin-bottom: 15px
    }

    .mobile__menu--box .inner__menu .top__part .profile > ul > li.dropdown ul > li {
        margin-bottom: 15px;
        display: block
    }

    .mobile__menu--box .inner__menu .top__part .profile > ul > li.dropdown ul > li > a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        font-size: 15px;
        color: #2B2B2B;
        font-weight: 500;
        text-decoration: none;
        width: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .mobile__menu--box .inner__menu .top__part .profile > ul > li.dropdown ul > li:last-child {
        margin-bottom: 0px
    }

    .mobile__menu--box .inner__menu .top__part .profile > ul > li > a {
        padding: 12px 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        width: 100%;
        -webkit-transition: .4s ease all;
        transition: .4s ease all;
        position: relative;
        text-decoration: none;
        color: #2B2B2B;
        font-size: 18px;
        font-weight: 500
    }

    .mobile__menu--box .inner__menu .top__part .profile > ul > li > a.active {
        color: #377DFF
    }

    .mobile__menu--box .inner__menu .top__part .profile > ul > li > a.active span {
        -webkit-transform: rotate(180deg);
        transform: rotate(180deg)
    }

    .mobile__menu--box .inner__menu .top__part .profile > ul > li > a.active span svg path {
        stroke: #377DFF
    }

    .mobile__menu--box .inner__menu .top__part .profile > ul > li > a span {
        position: absolute;
        right: 0px;
        -webkit-transition: .4s ease all;
        transition: .4s ease all
    }

    .mobile__menu--box .inner__menu .top__part .profile > ul > li > a span svg path {
        -webkit-transition: .4s ease all;
        transition: .4s ease all
    }

    .mobile__menu--box .inner__menu .top__part .profile .head {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .mobile__menu--box .inner__menu .top__part .profile .head > h6 {
        margin: 0px;
        font-size: 28px;
        font-weight: 600;
        color: #377DFF;
        position: relative;
        font-family: "Fira Sans", sans-serif
    }

    .mobile__menu--box .inner__menu .top__part .profile .head > h6:before {
        content: "";
        position: absolute;
        left: 0px;
        bottom: -15px;
        width: 100%;
        height: 10px;
        background: url("articlelinebefore.svg");
        background-repeat: no-repeat;
        background-size: 100% 100%;
        background-position: center
    }

    .mobile__menu--box .inner__menu .top__part .profile .head > a {
        display: -ms-inline-flexbox;
        display: inline-flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-right: 15px;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        min-width: 40px;
        max-width: 40px;
        min-height: 40px;
        max-height: 40px;
        border-radius: 250px;
        background-color: #fff
    }

    .mobile__menu--box .inner__menu .top__part .profile .head > a img {
        max-width: 14px;
        height: auto
    }

    .mobile__menu--box .inner__menu .top__part .menu__ > ul {
        padding: 0px;
        list-style-type: none;
        margin: 0px;
        margin-top: 30px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .mobile__menu--box .inner__menu .top__part .menu__ > ul > li {
        margin-bottom: 40px
    }

    .mobile__menu--box .inner__menu .top__part .menu__ > ul > li > a {
        text-decoration: none;
        font-size: 18px;
        font-weight: 500;
        color: #2B2B2B
    }

    .mobile__menu--box .inner__menu .top__part .menu__ > ul > li > a.account {
        color: #377DFF
    }

    .mobile__menu--box .inner__menu .top__part .menu__ > ul > li:last-child {
        margin-bottom: 0px
    }

    .mobile__menu--box .inner__menu .top__part .menu__ form {
        position: relative
    }

    .mobile__menu--box .inner__menu .top__part .menu__ form > .group__input {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        position: relative
    }

    .mobile__menu--box .inner__menu .top__part .menu__ form > .group__input button {
        position: absolute;
        right: 10px;
        display: -ms-inline-flexbox;
        display: inline-flex;
        background-color: transparent;
        padding: 0px;
        border: 0px;
        outline: none;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .mobile__menu--box .inner__menu .top__part .menu__ form > .group__input button svg path {
        stroke: #377DFF
    }

    .mobile__menu--box .inner__menu .top__part .menu__ form > .group__input > input {
        width: 100%;
        height: 45px;
        padding-left: 20px;
        padding-right: 60px;
        font-size: 16px;
        color: #000;
        background-color: #fff;
        border-radius: 10px;
        border: 0px;
        outline: none
    }

    .mobile__menu--box .inner__menu .bottom__part .bottom__ul {
        margin-top: 30px
    }

    .mobile__menu--box .inner__menu .bottom__part .bottom__ul ul {
        padding: 0px;
        list-style-type: none;
        margin: 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center
    }

    .mobile__menu--box .inner__menu .bottom__part .bottom__ul ul > li > a {
        text-decoration: none;
        font-size: 14px;
        line-height: 18px;
        color: #677788;
        font-family: "Fira Sans", sans-serif
    }

    .mobile__menu--box .inner__menu .bottom__part .bottom__ul ul > li.spacer {
        min-height: 17px;
        min-width: 1px;
        background-color: #677788;
        margin: 0px 20px
    }

    .mobile__menu--box .inner__menu .bottom__part > ul {
        padding: 0px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        list-style-type: none;
        margin: 0px
    }

    .mobile__menu--box .inner__menu .bottom__part > ul > li {
        margin-right: 30px
    }

    .mobile__menu--box .inner__menu .bottom__part > ul > li:last-child {
        margin-right: 0px
    }

    header {
        background-color: #fff !important
    }

    header .outer__header .header__left > .main__menu {
        display: none !important
    }

    body.v__header {
        padding-top: 85px
    }

    .mobile__menu {
        display: -ms-inline-flexbox;
        display: inline-flex
    }

    header .outer__header .header__left > a img {
        max-width: 180px
    }

    header .outer__header {
        min-height: 68px
    }

    header .outer__header .header__right .menu__dropdown {
        display: none
    }

    .tablet__menu {
        display: none
    }

    header .outer__header .header__right .search__wrapper {
        /*display: none*/
    }

    .articles__wrapper {
        padding-bottom: 80px
    }

    footer .footer__grid {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    footer .footer__grid .main__footer {
        max-width: calc(100% - 400px);
        margin-right: 0px;
        margin-bottom: 40px
    }

    footer .footer__grid .copyright {
        max-width: 360px;
        padding-top: 0px;
        margin-bottom: 40px
    }

    footer .footer__grid .main__footer > a img {
        max-width: 280px
    }

    footer {
        padding-top: 50px
    }

    .main__articles {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .main__articles .articles__grid {
        width: calc(55% - 10px)
    }

    .main__articles .middle__articles {
        width: calc(45% - 10px);
        margin-right: 0px
    }

    .main__articles .side__articles {
        max-width: 100%;
        margin-top: 30px;
        margin-left: auto;
        margin-right: auto;
        width: 100%
    }

    .main__articles .side__articles .side__ad {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto
    }

    .main__articles .big__article .desc__ {
        padding: 15px
    }

    .main__articles .elem__list--articles {
        margin-bottom: 40px
    }

    footer .footer__grid .resources ul {
        display: grid;
        grid-template-columns:repeat(4, auto);
        grid-column-gap: 35px;
        grid-row-gap: 20px
    }

    footer .footer__grid .resources {
        max-width: 100%
    }

    footer .footer__grid .resources ul > li {
        margin-bottom: 0px
    }

    footer .footer__grid .resources {
        max-width: 100%
    }

    .main__articles .middle__articles + .side__articles {
        margin-left: 0px;
        width: calc(55% - 10px);
        min-width: 0px !important;
        max-width: 100% !important
    }

    .main__articles .middle__articles + .side__articles .side__ad {
        max-width: 300px
    }
}

@media (max-width: 991px) and (max-height: 800px) {
    .mobile__menu--box .inner__menu .top__part .menu__ > ul > li {
        margin-bottom: 30px
    }

    .mobile__menu--box .inner__menu .bottom__part .bottom__ul {
        margin-top: 15px
    }

    .mobile__menu--box .inner__menu {
        padding-bottom: 15px
    }
}

@media (max-width: 991px) and (max-height: 700px) {
    .mobile__menu--box .inner__menu .top__part .profile > ul > li > a {
        padding: 10px 0px
    }

    .mobile__menu--box .inner__menu .top__part .profile > ul > li.dropdown ul > li {
        margin-bottom: 10px
    }

    .mobile__menu--box .inner__menu .top__part .profile .head > h6 {
        font-size: 24px
    }

    .mobile__menu--box .inner__menu .top__part .profile > ul {
        margin-top: 15px
    }

    .mobile__menu--box .inner__menu .top__part .profile > ul > li > a {
        font-size: 16px
    }

    .mobile__menu--box .inner__menu .top__part .menu__ > ul > li {
        margin-bottom: 20px
    }

    .mobile__menu--box .inner__menu .bottom__part .bottom__ul {
        margin-top: 15px
    }

    .mobile__menu--box .inner__menu .top__part .menu__ > ul > li > a {
        font-size: 16px
    }

    .mobile__menu--box .inner__menu .top__part .menu__ > ul {
        margin-top: 20px
    }

    .mobile__menu--box .inner__menu {
        padding-bottom: 15px
    }
}

@media (max-width: 767px) {
    .article__inner > .article__desc {
        margin-bottom: 30px
    }

    .article__inner .article__desc + .side__articles {
        max-width: 100% !important;
        width: 100% !important
    }

    .side__articles .side__ad {
        max-width: 300px;
        margin-left: auto;
        margin-right: auto
    }

    .article__inner .side__articles {
        width: 100% !important;
        max-width: 100% !important;
        margin-top: 35px
    }

    .article__inner .article__desc .article__list .article__ad {
        padding-bottom: 39%
    }

    .articles__wrapper .article__top--ad > .articles__ad {
        padding-bottom: 29.5%
    }

    .article__inner > .article__desc {
        max-width: 100%;
        margin-right: 0px;
        width: 100%
    }

    .article__inner .side__articles {
        width: calc(100% - 320px);
        max-width: 100%
    }

    .article__inner .side__articles.v__ad {
        width: 100%
    }

    .article__inner .article__desc .article__list--title > h2 {
        font-size: 28px
    }

    .articles__wrapper .article__top--ad {
        margin-bottom: 40px
    }

    .article__inner .article__desc .article__list .elem__article > h3 {
        font-size: 20px
    }

    .article__inner .article__desc .article__list .elem__article > p {
        font-size: 14px
    }

    .article__inner .article__desc .article__list .spacer {
        margin: 20px 0px
    }

    .relative__posts .outer__relative .grid__relative {
        grid-template-columns:1fr;
        grid-row-gap: 40px
    }

    .relative__posts .outer__relative .title > h2 {
        font-size: 28px
    }

    .article__inner .article__desc .author__article {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .article__inner .article__desc .author__article .date {
        width: 100%
    }

    .article__inner .article__desc .author__article .socials {
        margin-left: 0px;
        margin-top: 25px
    }

    .article__inner .article__desc .author__article .socials ul li {
        margin-right: 50px
    }

    .article__inner .article__desc .author__article .socials ul li:last-child {
        margin-right: 0px
    }

    footer .footer__bottom {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    footer .footer__bottom ul {
        margin-bottom: 15px
    }

    footer .footer__bottom > p {
        font-size: 12px;
        line-height: 18px
    }

    .main__articles .big__article .desc__ > h3 {
        font-size: 20px
    }

    .main__articles .elem__list--articles > h2 {
        font-size: 28px
    }

    .main__articles {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .main__articles .articles__grid {
        width: 100%;
        margin-right: 0px;
        max-width: 100%;
        margin-bottom: 25px
    }

    .main__articles .middle__articles {
        width: 100%;
        max-width: 100%
    }

    .main__articles .elem__list--articles {
        max-width: 100%
    }

    .main__articles .elem__list--articles .small__articles .elem__small {
        margin-bottom: 15px
    }

    footer .footer__grid .main__footer {
        max-width: 100%
    }

    footer .footer__grid .copyright {
        max-width: 100%;
        margin-right: 0px
    }

    .main__articles .middle__articles + .side__articles {
        width: 100% !important;
        max-width: 100% !important
    }
}

@media (max-width: 680px) {
    .articles__wrapper .article__top--ad > .articles__ad {
        padding-bottom: 32%
    }
}

@media (max-width: 640px) {
    footer .footer__grid .resources ul {
        grid-template-columns:repeat(2, 1fr);
        grid-column-gap: 20px
    }

    .articles__wrapper .article__top--ad > .articles__ad {
        padding-bottom: 34%
    }
}

@media (max-width: 540px) {
    .article__inner .side__articles {
        margin-top: 0px
    }

    .articles__wrapper .article__top--ad > .articles__ad {
        padding-bottom: 38%
    }

    .article__inner .side__articles {
        width: 100%;
        max-width: 100% !important
    }

    .article__inner .article__desc + .side__articles {
        max-width: 100% !important
    }

    .side__articles .side__ad .ad {
        height: auto;
        padding-bottom: 198.8%
    }

    .article__inner .side__articles.v__ad {
        margin-bottom: 40px
    }
}

.small__image {
    display: none
}

@media (max-width: 480px) {
    .big__image {
        display: none !important
    }

    .small__image {
        display: block !important
    }

    .articles__wrapper .article__top--ad > .articles__ad {
        padding-bottom: 42%
    }

    .pagination ul li > a {
        font-size: 15px
    }

    .pagination ul li:nth-child(1) {
        margin-right: 15px
    }

    .pagination ul li:last-child {
        margin-left: 15px
    }

    .pagination ul li.number > a {
        font-size: 15px;
        min-width: 29px;
        max-width: 29px;
        min-height: 29px;
        max-height: 29px
    }

    .article__inner .article__desc .article__list .article__ad {
        padding-bottom: 43%
    }

    .article__inner .article__desc .title > h1 {
        font-size: 28px
    }

    .article__inner .article__desc .author__article .date .profile > p {
        font-size: 14px
    }

    .article__inner .article__desc .author__article .date .profile > span img {
        max-width: 30px
    }

    .article__inner .article__desc .author__article .date .spacer {
        margin: 0px 15px
    }

    .article__inner .article__desc .author__article .date .time > span {
        font-size: 14px
    }

    .article__inner .article__desc .author__article .date .time > p {
        font-size: 14px
    }

    .article__inner .article__desc .author__article .date > span {
        font-size: 28px;
        margin-right: 10px
    }

    .article__inner .article__desc + .side__articles {
        margin-right: 0px
    }

    .article__inner .article__desc + .side__articles {
        margin-bottom: 30px
    }

    .article__inner .side__articles {
        width: 100%;
        max-width: 100%
    }

    .article__inner .side__articles .side__ad {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto
    }

    footer .footer__grid .main__footer ul {
        margin-bottom: 15px
    }

    footer .footer__grid .main__footer .desc {
        margin-top: 15px
    }

    footer .footer__grid .main__footer .desc > p {
        font-size: 12px
    }

    footer .footer__grid .copyright > p {
        font-size: 16px
    }

    footer .footer__grid .resources > p {
        font-size: 16px
    }

    footer .footer__grid .resources ul > li > a {
        font-size: 14px
    }

    footer .footer__grid .main__footer ul > li > a {
        font-size: 16px
    }

    footer .footer__grid .main__footer ul > li {
        margin-bottom: 15px
    }

    footer .footer__grid .main__footer > a img {
        max-width: 240px
    }

    footer .footer__grid .copyright .copyright__articles > .elem .media {
        min-width: 80px;
        max-width: 80px
    }

    footer .footer__grid .copyright .copyright__articles > .elem .desc p {
        font-size: 14px
    }

    .main__articles .side__articles .side__ad .ad {
        height: 750px
    }

    .main__articles .big__article .desc__ > p {
        font-size: 14px;
        line-height: 20px
    }

    .main__articles .elem__list--articles .text__article > .elem__text {
        font-size: 18px
    }

    .main__articles .elem__list--articles .text__article {
        padding: 15px
    }

    .main__articles .elem__list--articles .small__articles .elem__small .media {
        min-width: 100px;
        max-width: 100px;
        min-height: 80px
    }

    .main__articles .elem__list--articles .small__articles .elem__small {
        padding: 5px
    }

    .main__articles .elem__list--articles .small__articles .elem__small > p {
        font-size: 16px;
        line-height: 24px
    }
}

@media (max-width: 400px) {
    .articles__wrapper .article__top--ad > .articles__ad {
        padding-bottom: 46%
    }

    .article__inner .article__desc .title > h1 {
        font-size: 25px
    }

    .article__inner .article__desc .author__article .socials ul li {
        margin-right: 35px
    }
}
