html {
    scroll-behavior: smooth;
}
body,
html {
    font-weight: 500;
    color: var(--dark);
    font-size: 18px;
    background-color: #f2f2f2;
    font-family: "Centra No2", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    line-height: 1.4;
    overflow-x: hidden;
}
h6 {
    font-size: 16px;
}
h5 {
    font-size: 18px;
}
h4 {
    font-size: 21px;
}
h3 {
    font-size: 24px;
}
h2 {
    font-size: 27px;
}
h1 {
    font-size: 2rem;
}
hr {
    margin-top: 0;
}
@media (min-width: 1500px) {
    .container {
        max-width: 1350px;
    }
}
nav.news-by-tags a {
    background-color: #e0e0e0;
    border-radius: 8px;
    margin: 0.25rem 0.5rem;
    padding: 0.25rem 0.4rem;
}
#latest-preloader-area {
    height: 80px;
}
div#preloader {
    position: fixed;
    left: 0;
    top: 0;
    text-align: center;
    z-index: 999999999999999999;
    width: 100%;
    height: 100%;
    background-color: #fff;
    overflow: visible;
    font-size: 50px;
    color: #fb0;
}
div#preloader .tr-preloader {
    display: inline-block;
}
div#preloader .tr-preloader {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -50px;
    margin-top: -50px;
}
.latest-preloader img {
    margin-left: 2px;
    height: 80%;
}
/*switch mode css start*/
#switch-mode {
    position: fixed;
    top: 48%;
    left: 0;
    width: 50px;
    text-align: center;
    z-index: 9999;
    cursor: pointer;
    background: black;
    opacity: 0.8;
    border-radius: 0 3px 3px 0;
    padding: 5px;
}
#switch-mode .sm-text {
    font-size: 9px;
    color: var(--border-color);
    text-transform: uppercase;
    line-height: 1.1em;
    display: block;
    margin: 2px 0;
}
#switch-mode .sm-button {
    overflow: hidden;
    width: 60%;
    margin: 8px auto;
    position: relative;
    border-radius: 20px;
    background: var(--gray);
    height: 10px;
}
#switch-mode .sm-button span {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-color);
    position: absolute;
    top: 0;
    left: 0;
}
#switch-mode.active .sm-button span {
    background: var(--blue);
    left: auto;
    right: 0;
}
#switch-mode.active .sm-button {
    background: var(--gray-dark);
}
/*switch mode css end*/

/*scroll to top btn css start*/
.scrollToTop {
    background-color: var(--primary-color);
    position: fixed;
    bottom: 10px;
    right: 30px;
    z-index: 100;
}
.scrollToTop a {
    top: 31px;
    padding-left: 10px;
    font-size: 25px;
    display: block;
    color: #fff;
    height: 40px;
    width: 34px;
}
.scrollToTop a:hover {
    color: var(--yellow);
}
/*scroll to top btn css end*/

/*breadcrumb css start*/
.breadcrumb,
.breadcrumb h1 {
    background: transparent;
    flex-wrap: nowrap;
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 10px;
    padding: 0;
    white-space: nowrap;
    width: 100%;
}
.breadcrumb h1 {
    display: inline;
    font-weight: 500;
}
.breadcrumb li.breadcrumb-item.active {
    color: var(--dark);
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.breadcrumb-item a,
.breadcrumb-item.active,
.breadcrumb-item+.breadcrumb-item::before {
    color: var(--blue);
}
/*breadcrumb css end*/

/*news card css start*/
.card-group {
    display: grid;
    column-gap: 3px;
    row-gap: 10px;
    grid-template-columns: repeat(3, 1fr);
}
.card-group-author {
    grid-template-columns: repeat(5, 1fr);
}
.card .card-body {
    padding: 0.75rem;
}
.card .card-footer {
    background-color: transparent;
    border: none;
    padding: 0 0.75rem 0.75rem;
}
.card h3 {
    font-size: 16px;
    margin: 0;
}
.card .card-title {
    font-size: 16px;
}
.card .card-text {
    color: var(--gray);
    font-size: 14px;
    font-weight: 400;
}
.card .card-text:not(time) {
    color: var(--blue);
    font-weight: 500;
}
@media (max-width:1499px) {
    .card-group {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width:1199px) {
    .card-group {
        grid-template-columns: repeat(2, 1fr);
    }
    .card-group .card:nth-child(15) {
        display: none;
    }
}
@media (max-width:991px) {
    .card h3 {
        font-size: 0.95rem;
    }
}
@media (max-width:767px) {
    .card-group {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width:575px) {
    .card-group {
        display: flex;
        gap: 0;
    }
}
/*news card css end*/

/*post content css start*/
.tagсloud__post a.tag__post {
    border-radius: 8px;
    margin: 0.25rem 0.25rem;
    padding: 0.2rem 0.75rem 0.25rem;
    position: relative;
}
.tagсloud__post a.tag__post::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 4px;
    border: 1px solid #484848;
    pointer-events: none;
    transform: skewX(-15deg);
    z-index: 0;
}
header.entry-header {
    padding: 0.75rem 1.5rem;
}
header.entry-header h1 {
    font-size: 1.8rem;
}
.entry-meta {
    font-size: 15px;
    font-weight: 400;
}
.entry-content {
    padding: 2rem 4rem;
}
.entry-content p {
    text-align: justify;
}
.entry-content a {
    color: var(--blue);
}
.entry-content ul, .entry-content ol {
    padding: 0;
    margin-bottom: 18px;
    list-style-position: inside;
}
.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-bottom: 18px;
}
.paragraph {
    font-weight: 400;
}
.paragraph .table-wrapper {
    overflow-x: auto;
    width: 100%;
}

.paragraph table p {
    text-align: left;
    margin: 0;
}

.paragraph table th p,
.paragraph table thead p {
    font-weight: bold;
    text-align: center;
}

@media (max-width: 767px) {
    .paragraph table p {
        font-size: 0.75rem;
    }
}

.img-wrapper__post {
    margin: 0 -2.5rem;
}
Закинь в стили, пожалуйста
.img-wrapper__post img {
width: 100%;
}
@media (max-width: 1399px) {
    .entry-content {
        padding: 1.5rem 3.5rem;
    }
    .img-wrapper__post {
        margin: 0rem -3.5rem;
    }
}
@media (max-width: 1199px) {
    .entry-content {
        padding: 1.5rem 2.5rem;
    }
    .img-wrapper__post {
        margin: 0rem -2.5rem;
    }
}
@media (max-width: 991px) {
    .entry-content {
        padding: 1rem 2rem;
    }
    .img-wrapper__post {
        margin: 0 -2rem;
    }
}
@media (max-width:767px) {
    header.entry-header h1 {
        font-size: 1.5rem;
    }
}
@media (max-width: 575px) {
    .entry-content {
        padding: 1rem 1.5rem;
    }
    .img-wrapper__post {
        margin: 0 -1.5rem;
    }
}
.post-details .entry-meta {
    margin: 15px 0 20px;
}
.post-details .entry-meta ul li,
.post-details .entry-meta ul li a {
    color: #a19e9e;
}
.post-details .entry-meta ul li i {
    margin-right: 5px;
}
.post-details .entry-meta ul li a:hover {
    color: var(--primary-color);
}
.post-details .entry-title {
    font-size: 16px;
}
.post-details .sg-socail li {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 15px;
}
.post-details .sg-socail li a {
    padding: 5px 15px;
    color: #707070;
    display: block;
    border-radius: 4px;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}
.post-details .sg-socail li a span {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 5px;
}
.post-details .input-group-addon {
    position: absolute;
    left: 30px;
    font-size: 16px;
    padding: 0;
    color: #bfbdbd;
    border: 0;
    top: 42px;
    background-color: transparent;
}
/*post content css end*/

/*post page aside css start*/
nav.category-news ul {
    padding: 0;
}
nav.category-news li {
    font-size: 14px;
    line-height: 1.3;
    list-style-type: none;
}
nav.category-news li:not(:last-child){
    padding: 0 0 1.5rem 0;
}
nav.category-news li span.time__news {
    font-weight: 400;
    margin-right: 1rem;
}
nav.category-news svg {
    color: #a19e9e;
    transform: scale(-0.85, 0.85) translateY(-2px);
}
nav.category-news span.comments-count__news {
    color: #a19e9e;
}
.text-news-block .card {
    background: transparent;
    border: none;
    border-radius: 0;
}
.text-news:not(:last-child) {
    border-bottom: 1px var(--border-color) solid;
}
.text-news h3 {
    font-size: 15px;
}
.text-news-block {
    position: sticky;
    bottom: 0;
}
.text-news-block .text-news time {
    font-size: 15px;
}
.text-news-block .panels {
    padding: 0.75rem 1.5rem;
}
.text-news-block .tab {
    text-align: center;
}
.text-news-block .tab:first-child {
    width: 60%;
}
.text-news-block .tab:last-child {
    width: 40%;
}

@media (max-width: 991px) {
    .text-news-block .see-more_btn {
        background-color: var(--border-color);
        padding: 0.5rem 1rem;
    }
}
/*post page aside css end*/

/*top news css start*/
.top-news {
    border: 1px solid var(--border-color);
    border-radius: 0.25rem;
    /* max-height: 520px; */
}
.top-news header {
    background: linear-gradient(180deg, transparent 0, black);
    bottom: 1px;
    border-radius: 0 0 0.25rem 0.25rem;
    height: 45%;
    position: absolute;
    width: calc(100% - 2px);
}
.top-news h3 a {
    position: absolute;
    bottom: 32px;
    left: 18px;
    right: 18px;
    color: white;
    font-weight: 700;
}
.top-news img {
    max-height: 600px;
}
.latest-news .card--horizontal .card-title,
.news-by-tags .card--horizontal .card-title,
.newswire-section .card--horizontal .card-title,
.search-result .card--horizontal .card-body p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: break-spaces;
}
.news-by-tags .card--horizontal img,
.newswire-section .card--horizontal img {
    height: 145px;
}
@media (max-width:991px) {
    .top-news {
        margin-right: 0rem;
    }
    .latest-news .card--horizontal img {
        min-height: 120px;
    }
}
@media (max-width:767px) {
    .top-news header {
        height: 80%;
    }
    article.top-news h3 a {
        bottom: 15px;
    }
}
@media (max-width:575px) {
    .latest-news .card--horizontal .card-body {
        padding: 0.4rem 0.35rem;
        margin: 0 0.4rem;
    }
    .latest-news .card--horizontal .card-title {
        color: black;
        line-height: 1.3;
    }
    .top-news h2 a {
        font-size: 1rem;
    }
    .newswire-section .card--horizontal img {
        height: 220px;
    }
}
/*top news css end*/

/*category, subcategory news block and newswire css start*/
.newswire,
.category-name,
.subcategory-name {
    display: flex;
    justify-content: space-between;
    background-color: #e9e8e8;
    border-radius: 4px;
}
.newswire h2,
.category-name h2,
.subcategory-name h2 {
    margin: auto 0rem auto 1rem;
}
.newswire>a,
.category-name>a,
.subcategory-name>a,
.see-more_btn {
    padding: 1rem;
    background-color: var(--yellow);
    border: none;
    border-radius: 4px;
    font-weight: 700;
}
.see-more_btn {
    margin-left: auto;
    margin-right: auto;
    padding: 1rem 2.5rem;
    text-align: center;
}
.subcategory-news .card--horizontal .d-flex {
    bottom: 0.75rem;
    right: 0.75rem;
}
.card--vertical .card-img {
    height: 190px;
}
@media (max-width:575px) {
    .newswire h2,
    .category-name h2,
    .subcategory-name h2 {
        font-size: 22px;
    }
    .card--vertical .card-img {
        height: 220px;
    }
}
/*category, subcategory news block and newswire css end*/

/*tabs css start*/
.warpper{
    width: 100%;
    display:flex;
    flex-direction: column;
    align-items: flex-start;
}
.radio{
    display:none;
}
.tabs {
    width: 100%;
    white-space: nowrap;
    overflow-x: hidden;
}
.tabs h2 {
    font-size: 1rem;
}
.tab{
    cursor: pointer;
    padding: 10px 20px;
    margin: 0;
    background:var(--border-color);
    display: inline-block;
    color:var(--dark);
    border-radius:3px 3px 0px 0px;
}
.panels{
    background:white;
    min-height:200px;
    width:100%;
    border-radius:3px;
    overflow:hidden;
    padding: 15px;
}
.panel{
    display:none;
    animation: fadein .8s;
}
@keyframes fadein {
    from {
        opacity:0;
    }
    to {
        opacity:1;
    }
}
.panel-title{
    font-size:1.5em;
    font-weight:bold;
    margin-bottom: 0.5rem;
}
/*tabs css end*/

/*author profile css start*/
.author-section {
    padding-bottom: 50px;
}
.author-section .author-form-content {
    margin-top: 80px;
}
.author-section input[type="file"] {
    display: none;
}
.author-section input[type="file"] + label {
    cursor: pointer;
    color: #fff;
    padding: 5px 20px;
    border-radius: 4px;
    margin-top: 20px;
    margin-bottom: 50px;
    background-color: #616161;
}
.author-info .active {
    margin-bottom: 15px;
    font-size: 12px;
    color: #292e34;
    position: relative;
    padding-left: 20px;
}
.author-info .active:before {
    position: absolute;
    content: "";
    left: 0;
    top: 2px;
    width: 12px;
    height: 12px;
    border-radius: 100%;
    background-color: #08c268;
}
.author-info .sg-social {
    margin-top: 20px;
}
.author-info .sg-social li {
    margin-right: 15px;
}
.author-info .sg-social li:last-child {
    margin-right: 0;
}
.author-info .sg-social li a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    display: block;
    text-align: center;
    border-radius: 100%;
    color: #80909c;
    font-size: 18px;
    border: 1px solid #80909c;
}
.author-info .sg-social li a:hover {
    color: #fff;
    background-color: var(--primary-color);
}
.author-menu li {
    margin-bottom: 10px;
}
.author-menu li a {
    border: 0;
    border-radius: 0;
    display: block;
    color: var(--dark);
    padding: 10px 20px;
}
.author-menu li a:hover,
.author-menu li.active a {
    background-color: #f2f4f6;
}
#latest-preloader-area-profile img {
    margin-left: 6% !important;
    height: 80% !important;
}
@media (max-width: 767px) {
    .author-section .author-form-content {
        margin-top: 30px;
    }
}
/*author profile css end*/

/*user profile css start*/
.account-content {
    width: 500px;
    margin: 50px 0 80px;
    border-radius: 10px;
    overflow: hidden;
    display: inline-block;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -ms-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    -o-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
}
.account-content h1 {
    font-size: 18px;
    font-weight: 600;
    text-align: left;
    margin-bottom: 0;
    padding: 10px 20px;
    background-color: #f1f2f3;
}
.account-content .ragister-form {
    padding: 30px;
}
.account-content .form-control:focus {
    border-color: var(--primary-color);
}
.account-content button {
    width: 100%;
    font-size: 14px;
    font-weight: 600;
    height: 45px;
    color: #fff;
    margin: 20px 0;
    border-radius: 4px;
    text-transform: uppercase;
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}
.account-content button:hover {
    color: var(--primary-color);
    background-color: transparent;
}
.account-content form .form-group a {
    text-align: right;
    display: block;
    margin-bottom: 15px;
}
.account-content .middle-content a {
    color: #c40622;
}
.account-content .middle-content a:hover {
    color: var(--primary-color);
}
.account-content .middle-content span {
    display: inline-block;
    font-size: 16px;
    font-weight: 700;
    color: #a19e9e;
    position: relative;
    text-transform: uppercase;
}
.account-content .middle-content span:after,
.account-content .middle-content span:before {
    position: absolute;
    content: "";
    top: 10px;
    width: 35px;
    height: 1px;
    background-color: #a19e9e;
}
.account-content .middle-content span:before {
    left: -50px;
}
.account-content .middle-content span:after {
    right: -50px;
}
.account-content .buttons {
    margin-top: 30px;
}
.account-content .buttons a {
    display: block;
    text-align: left;
    padding: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    background-color: #f5f8fa;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid #d8e2e9;
    border-radius: 4px;
}
.account-content .buttons span {
    color: #fff;
    width: 60px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    display: inline-block;
    font-size: 20px;
    margin-right: 20px;
    margin-top: -1px;
    margin-bottom: -1px;
    border-radius: 4px 0 0 4px;
}
.account-content .buttons .facebook {
    color: #2d4373;
}
.account-content .buttons .facebook span {
    color: #fff;
    border-right: 1px solid #fff;
    background-color: #2d4373;
}
.account-content .buttons .google-plus {
    color: #c9070d;
}
.account-content .buttons .google-plus span {
    color: #fff;
    border-right: 1px solid #fff;
    background-color: #c9070d;
}
.user-info h3 {
    font-size: 16px;
    color: #292e34;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid #d8e2e9;
}
.user-info ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: -5px;
    margin-right: -5px;
}
.user-info ul li {
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 5px;
    width: 58px;
}
.user-info ul li a {
    display: block;
    position: relative;
}
.user-info ul li a:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-color: rgba(0, 0, 0, 0.38);
}
.user-info ul li a span {
    position: absolute;
    font-size: 14px;
    color: #fff;
    left: 0;
    top: 50%;
    z-index: 999;
    width: 100%;
    opacity: 0;
    text-align: center;
    margin-top: -10px;
}
.user-info ul li a:hover span,
.user-info ul li a:hover:before {
    opacity: 1;
}
.user-info .following {
    margin-bottom: 50px;
}
/*user profile css end*/

/*breaking news css start*/
.breaking-content span {
    display: inline-block;
    min-width: 150px;
    color: #fff;
    padding: 10px 15px;
    text-align: center;
    margin-right: 5px;
    background-color: var(--primary-color);
}
.sg-breaking-news {
    margin-bottom: 30px;
    position: relative;
}
.sg-breaking-news .gallery-turner {
    position: absolute;
    right: 0;
    top: -5px;
    bottom: inherit;
}
.sg-breaking-news .gallery-turner a {
    color: #000;
    font-size: 20px;
}
.sg-breaking-news .gallery-turner .next {
    margin-right: 10px;
}
.sg-breaking-news .gallery-turner a:hover {
    color: var(--primary-color);
}
.sg-breaking-news .sg-post {
    background-color: transparent;
    padding: 0;
    margin-bottom: 15px;
    box-shadow: none;
}
.sg-breaking-news .sg-post .entry-content {
    padding: 0;
}
.sg-breaking-news .sg-post .entry-title {
    font-size: 16px;
}
@media (min-width: 992px) and (max-width: 1199px) {
    .breaking-content span {
        height: 47px;
    }
}
@media (max-width: 991px) {
    .breaking-content span {
        min-width: 90px;
        font-size: 12px;
        padding: 6px 10px;
        margin-right: 4px;
    }
}
@media (max-width: 575px) {
    .breaking-content span {
        min-width: 70px;
        font-size: 10px;
        height: 44px;
        padding: 4px 10px;
    }
}
/*breaking news css end*/

/*search page css start*/
.search-content .form-control {
    padding: 10px 20px;
}
.search-content .sg-search button {
    top: 10px;
}
.search-result .card--horizontal .card-body {
    padding: 1rem 1.5rem;
}
.search-result .card--horizontal .entry-meta .global-list li a,
.search-result .card--horizontal .card-body p {
    color: var(--gray);
    font-weight: 400;
}
.search-content .search-form span {
    color: var(--gray);
    font-size: 0.85rem;
    margin-left: 0.5rem;
}
.search-content .search-form input {
    background-color: white;
}
/*search page end start*/

.sg-light .ragister-account h1, .sg-light .ragister-account label, .sg-light .ragister-account p {
    color: #000 !important;
}
.rss-content-actual-link {
    display: block;
    float: left;
    width: 100%;
    margin-top: 30px;
    text-align: right;
}
.rss-content-actual-link a.btn.btn-primary{
    font-size: 10px;
    padding: 8px 16px;
    letter-spacing: 2px;
}
.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus,
.form-control:focus,
a:active,
a:focus,
button,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 0;
    text-decoration: none;
    box-shadow: none;
}
.btn-primary:not(:disabled):not(.disabled).active,
.btn-primary:not(:disabled):not(.disabled).active:focus,
.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled):active:focus,
.show > .btn-primary.dropdown-toggle,
.show > .btn-primary.dropdown-toggle:focus {
    outline: 0;
    box-shadow: none;
    background-color: transparent;
}
.form-control {
    border-radius: 4px;
    padding: 7px 20px;
    height: 100%;
}
.form-control:focus {
    border-color: var(--primary-color);
}
.bg-white {
    background-color: #fff;
}
.select-options li:last-child {
    border-bottom: 0;
}
.sg-post {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -ms-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -o-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
}
.post-style-2 .entry-content,
.sg-post .entry-content.absolute {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 20px;
    z-index: 1;
    color: #fff;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjE4JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEzIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjM2JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjMzIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjcwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjc0Ii8+CiAgICA8c3RvcCBvZmZzZXQ9Ijg3JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjkxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.13) 18%, rgba(0, 0, 0, 0.33) 36%, rgba(0, 0, 0, 0.74) 70%, rgba(0, 0, 0, 0.91) 87%, #000 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.13) 18%, rgba(0, 0, 0, 0.33) 36%, rgba(0, 0, 0, 0.74) 70%, rgba(0, 0, 0, 0.91) 87%, #000 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.13) 18%, rgba(0, 0, 0, 0.33) 36%, rgba(0, 0, 0, 0.74) 70%, rgba(0, 0, 0, 0.91) 87%, #000 100%);
    width: 100%;
}
.post-style-2:hover .entry-content,
.sg-post:hover .entry-content.absolute {
    padding-top: 50%;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIwJSIgeTI9IjEwMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjE4JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjEzIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjM2JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjMzIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjcwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjc0Ii8+CiAgICA8c3RvcCBvZmZzZXQ9Ijg3JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjkxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.2) 18%, rgba(0, 0, 0, 0.42) 36%, rgba(0, 0, 0, 0.85) 70%, rgba(0, 0, 0, 0.95) 87%, #000 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.2) 18%, rgba(0, 0, 0, 0.42) 36%, rgba(0, 0, 0, 0.85) 70%, rgba(0, 0, 0, 0.95) 87%, #000 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, 0.2) 18%, rgba(0, 0, 0, 0.42) 36%, rgba(0, 0, 0, 0.85) 70%, rgba(0, 0, 0, 0.95) 87%, #000 100%);
}
.sg-post:hover .entry-thumbnail img {
    -webkit-transition: all 0.3s ease 0s;
    -khtml-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    -ms-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    -webkit-transform: scale(1.1);
    -khtml-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}
.entry-thumbnail {
    overflow: hidden;
}
.entry-thumbnail img {
    width: 100%;
}
.aside .global-list .card .entry-thumbnail img {
    min-height: 120px;
    height: 100%;
}
.sg-post.featured-post .entry-content a {
    color: #fff;
}
.sg-post.featured-post .entry-title {
    font-size: 32px;
    animation-delay: 0.7s;
    -webkit-animation-delay: 0.7s;
}
.sg-post.featured-post .entry-meta {
    animation-delay: 0.9s;
    -webkit-animation-delay: 0.9s;
}
@media (max-width: 767px) {
    .sg-post.featured-post .entry-title {
        font-size: 18px;
    }
    .sg-post.featured-post .entry-content a {
        font-size: 16px !important;
    }
}
.entry-header {
    position: relative;
}
.sg-post .entry-title {
    font-size: 20px;
    font-weight: 500;
}
.entry-meta ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
.entry-meta ul li {
    margin-right: 20px;
    position: relative;
}
.entry-meta ul li:after {
    position: absolute;
    content: "";
    right: -10px;
    top: 4px;
    width: 1px;
    height: 15px;
    background-color: #aaa;
}
.sg-post.featured-post .entry-meta ul li:after {
    background-color: #fff;
}
.entry-meta ul li:last-child:after {
    display: none;
}
.entry-meta ul li:last-child {
    margin-right: 0;
}
.entry-meta li i {
    margin-right: 10px;
}
.entry-meta li a:hover {
    color: var(--primary-color);
}
.medium-post-style-1,
.post-style-1 {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
}
.post-style-1 .entry-thumbnail {
    max-width: 220px;
}
.sg-post.post-style-1 {
    margin-bottom: 15px;
}
.medium-post-style-1 .entry-thumbnail {
    width: 350px;
}
.video-icon {
    width: 65px;
    height: 65px;
    text-align: center;
    font-size: 20px;
    display: inline-block;
    margin-bottom: 10px;
    line-height: 65px;
    border-radius: 100%;
    overflow: hidden;
}
.video-icon a {
    color: #fff;
    display: block;
    background-color: var(--primary-color);
}
.video-icon a:hover {
    color: var(--primary-color);
    background-color: #fff;
}
.entry-header .video-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -32px;
    margin-top: -32px;
}
.sg-widget {
    margin-bottom: 30px;
}
.sg-widget .sg-post.featured-post img {
    max-height: 230px;
}
.widget-title {
    font-weight: 500;
    color: #fff;
    font-size: 14px;
    padding: 8px 20px;
    margin-bottom: 20px;
    text-transform: uppercase;
    background-color: var(--primary-color);
}
.widget-social ul {
    padding: 30px 30px 10px;
    overflow: hidden;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -ms-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -o-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
}
.widget-social ul li {
    width: 50%;
    float: left;
    margin-bottom: 20px;
    font-size: 12px;
    overflow: hidden;
    text-align: center;
}
.widget-social ul li:nth-child(odd) {
    padding-right: 10px;
}
.widget-social ul li:nth-child(even) {
    padding-left: 10px;
}
.widget-social ul li a {
    display: block;
    color: #fff;
    height: 35px;
    line-height: 35px;
}
.widget-social ul li span {
    width: 40px;
    height: 35px;
    line-height: 35px;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 20px;
    float: left;
}
.categories-widget ul {
    padding: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -ms-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -o-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
}
.categories-widget ul li {
    margin-bottom: 15px;
}
.categories-widget ul li:last-child {
    margin-bottom: 0;
}
.categories-widget ul li span {
    float: right;
}
.sg-widget .sg-post.featured-post .entry-title {
    font-size: 16px;
}
.tagcloud {
    margin-top: 30px;
}
.tagcloud a {
    display: inline-block;
}
.sg-widget .tagcloud {
    padding: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -ms-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -o-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
}
.sg-widget .tagcloud a {
    font-size: 14px;
    color: #4a4a4a;
    background-color: #d9d9d9;
    padding: 5px 15px;
    display: inline-block;
    margin: 5px 0;
    margin-right: 10px;
}
.sg-widget .tagcloud a:hover {
    color: #fff;
    background-color: var(--primary-color);
}
.sg-widget .entry-content p {
    font-weight: 500;
}
.sg-widget .entry-content .video-icon a:hover {
    color: var(--primary-color);
}
.contact-form,
.sg-comments-area {
    padding: 30px;
    background-color: #fff;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -ms-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -o-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
}
.contact-form {
    margin-bottom: 30px;
}
.contact-form .btn.btn-primary {
    font-size: 12px;
    padding: 10px 20px;
    letter-spacing: 1px;
}
.post-style-2 img {
    height: 210px;
}
.post-style-2 .entry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    color: #fff;
    padding: 20px;
}
.post-style-2 .entry-title a {
    color: #fff;
}
.radio-form label,
.sg-widget label {
    position: relative;
    padding-left: 35px;
    display: block;
    color: #000;
    font-weight: 400;
    margin-bottom: 20px;
    cursor: pointer;
}
.radio-form input[type="radio"],
.sg-widget input[type="radio"] {
    width: 0;
    height: 0;
    display: none;
}
.radio-form label:before,
.sg-widget label:before {
    position: absolute;
    color: #9e9e9e;
    font-size: 24px;
    content: "\f096";
    font-family: FontAwesome;
    left: 0;
    top: -5px;
}
.radio-form input[type="radio"]:checked + label:before,
.sg-widget input[type="radio"]:checked + label:before {
    content: "\f046";
    color: var(--primary-color);
}
.radio-form h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}
.sg-widget .btn.btn-primary {
    font-size: 10px;
    padding: 5px 15px;
    margin-right: 10px;
}
.progress {
    height: 13px;
    font-size: 10px;
    background-color: #fff;
}
.progress-bar {
    border-radius: 0 5px 5px 0;
    background-color: var(--primary-color);
}
.search-content .sg-search {
    margin-left: 0;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -ms-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -o-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
}
.search-content .sg-search button {
    right: 15px;
}
.search-content .sg-post.small-post {
    margin-bottom: 30px;
}
.pagination {
    display: inline-block;
    background-color: #fff;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -moz-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -ms-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    -o-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.075);
}
.pagination > li {
    display: inline-block;
}
.pagination > li > a,
.pagination > li > span {
    border: 0;
    font-size: 18px;
    font-weight: 700;
    border-radius: 0;
    padding: 10px 20px;
    display: block;
    float: none;
    position: relative;
    color: var(--primary-color);
    background-color: #ffff;
}
.pagination > li.active > a,
.pagination > li > a:hover {
    color: #fff;
    background-color: var(--primary-color);
}
.contact-form label,
.ragister-form label {
    color: #84868a;
    font-size: 14px;
    font-weight: 400;
}
.contact-form textarea.form-control {
    height: 120px;
    resize: none;
}
.contact-form input::-webkit-input-placeholder,
.ragister-form input::-webkit-input-placeholder {
    color: #afb3b7;
}
.contact-form input::-moz-placeholder,
.ragister-form input::-moz-placeholder {
    color: #afb3b7;
}
.contact-form input:-ms-input-placeholder,
.ragister-form input:-ms-input-placeholder {
    color: #afb3b7;
}
.contact-form input:-moz-placeholder,
.ragister-form input:-moz-placeholder {
    color: #afb3b7;
}
.sg-comments-area .media {
    display: block;
}
.sg-comments-area {
    margin-bottom: 30px;
}
.sg-comments-area .section-title {
    margin-bottom: 30px;
}
.commenter-avatar {
    width: 50px;
    height: 50px;
}
.children .commenter-avatar {
    width: 40px;
    height: 40px;
}
.comment-box {
    overflow: hidden;
    line-height: 28px;
    border-bottom: 1px solid #eae7e7;
    padding-bottom: 20px;
}
.comment-box .comment-meta {
    overflow: hidden;
    margin-bottom: 5px;
}
.comment-meta .sg-date {
    float: right;
}
.comment-meta .url {
    font-size: 18px;
}
textarea.form-control {
    height: 120px;
    resize: none;
    padding: 15px 20px;
}
.comment-list > li:last-child .comment-box {
    border-bottom: 0;
    padding-bottom: 0;
}
.btn.btn-primary:before,
.entry-content,
.entry-content.absolute,
.entry-thumbnail img,
.form-control,
.select-options li,
.slick-arrow,
.user-info ul li a span,
.user-info ul li a:before,
a,
button {
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
}

/* /site/css/responsive.min.css */
@media (min-width: 992px) and (max-width: 1199px) {
    .sg-search form {
        width: 160px;
    }
    .section-content.search-content .sg-search form {
        width: 100%;
    }
    .video-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        margin-bottom: 5px;
    }
    .news-ticker li {
        padding: 0 0;
    }
    .sg-post .entry-content.absolute {
        padding: 10px;
    }
}
@media (max-width: 991px) {
    .medium-post-style-1 {
        display: block;
    }
    .medium-post-style-1 .entry-thumbnail {
        width: 100%;
    }
    .video-icon {
        width: 50px;
        height: 50px;
        line-height: 50px;
        margin-bottom: 5px;
    }
    .news-ticker .slick-arrow {
        margin-top: -17px;
    }
    .footer-widget .entry-content {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    .section-content.search-content .sg-search {
        position: initial;
        width: 100%;
    }
    .section-content.search-content .sg-search form {
        width: 100%;
    }
    .sg-social.mr-md-5 {
        margin-right: 15px !important;
    }
    .news-ticker li {
        padding: 4px 0;
        font-size: 12px;
    }
}
@media (min-width: 991px) {
    .sg-post.featured-post.style_1 .entry-header .image-thumb {
        height: 458px;
    }
    .sg-post .entry-content.block {
        height: 82px;
    }
}
@media (min-width: 768px) and (max-width: 991px) {
    .entry-header .video-icon.block {
        left: 53%;
    }
    .video-icon.x-small-block {
        top: 68%;
    }
}
@media (max-width: 767px) {
    .sg-post.featured-post .entry-title {
        font-size: 18px;
    }
    .sg-post.featured-post .entry-content a {
        font-size: 16px !important;
    }
    .sg-post.small-post.mb-0 {
        margin-bottom: 30px !important;
    }
    .user-info .following {
        margin-bottom: 20px;
    }
    .sg-post.featured-post .entry-title {
        font-size: 16px;
    }
    .sg-post.featured-post .entry-content a {
        font-size: 14px !important;
    }
    .entry-header .video-icon.block {
        width: 50px !important;
        height: auto;
        line-height: 50px !important;
        left: 52%;
        top: 50%;
    }
    .entry-header .video-icon.large-block {
        width: 50px;
        height: auto;
        line-height: 50px;
        left: 52%;
        top: 50%;
    }
    .entry-header .video-icon.small-block {
        width: 50px;
        height: auto;
        line-height: 50px;
        left: 52%;
        top: 50%;
    }
}
@media (max-width: 575px) {
    .sg-post {
        margin-bottom: 15px;
    }
    .sg-post.featured-post .entry-title {
        font-size: 12px;
    }
    .account-content {
        width: 100%;
        margin: 20px 0 50px;
    }
    .sg-post.small-post.mb-0 {
        margin-bottom: 15px !important;
    }
    .account-content {
        width: 100%;
    }
    .d-flex {
        display: flex !important;
    }
    .entry-header .video-icon {
        width: 50px !important;
        height: auto;
        line-height: 50px !important;
        left: 50%;
        top: 50%;
    }
    .entry-header .video-icon.block {
        width: 50px !important;
        height: auto;
        line-height: 50px !important;
        left: 50%;
        top: 50%;
    }
    .entry-header .video-icon.large-block {
        width: 50px;
        height: auto;
        line-height: 50px;
        left: 50%;
        top: 50%;
    }
    .entry-header .video-icon.small-block {
        width: 50px;
        height: auto;
        line-height: 50px;
        left: 50%;
        top: 50%;
    }
    .entry-header .video-icon.x-small-block {
        width: 25px !important;
        height: auto;
        line-height: 25px !important;
        top: 70%;
        left: 65%;
    }
}
@media (max-width: 485px) {
    .comment-meta .sg-date {
        display: block;
        float: none;
    }
    .comment-list .children {
        padding-left: 0;
    }
    .medium-post-style-1,
    .post-style-1 {
        display: block;
    }
    .post-style-1 .entry-thumbnail {
        max-width: 100%;
    }
    .account-content .buttons a {
        font-size: 12px;
        letter-spacing: 0;
    }
    .account-content .buttons span {
        margin-right: 10px;
    }
    .account-content .ragister-form {
        padding: 30px 20px;
    }
    .entry-header .video-icon {
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -32px;
        margin-top: -32px;
    }
    .video-icon {
        text-align: center;
        font-size: 15px;
        display: inline-block;
        border-radius: 100%;
        overflow: hidden;
    }
    .entry-header .video-icon.x-small-block {
        width: 50px !important;
        height: auto;
        line-height: 50px !important;
        left: 50%;
        top: 50%;
    }
}

.social-content .thumb > blockquote,
.social-content .thumb > iframe,
.social-content .thumb > div {
    margin: 0 auto !important;
}
.sg-page-content {
    margin: -1rem 1rem 0 1rem;
}

.sg-page-content--big {
    margin-top: 6rem;
}

.sg-page-content--big-ads {
    margin-top: 3.65rem;
}

.sg-page-content--big:has(.advertising-banner) {
    margin-top: 3.65rem;
}

@media (max-width: 575px) {
    .sg-page-content {
        margin-top: 0;
    }
    .sg-page-content--big {
        margin-top: 3rem;
    }
}

.contact-form .message ul {
    list-style: none;
    padding: 0;
}

.contact-form .message.error {
    color: #FF0000FF;
}

.contact-form .message.success {
    color: #008000FF;
}

.advertising-banner {
    height: 100%;
    width: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.advertising-banner__top {
    height: 6rem;
    background-size: 140% 6rem;
}

.advertising-banner__side {
    position: fixed;
    height: 100vh;
    top: 67px;
    max-width: 8.3333333%;
}

@media(min-width: 1681px) {
    .advertising-banner__top {
        background-size: auto 6rem;
    }

    .advertising-banner__side {
        max-width: 10%;
    }

    .col-xxl-2 {
        -ms-flex:0 0 10%;
        flex:0 0 10%;
        max-width:10%
    }

    .col-xxl-8 {
        -ms-flex:0 0 80%;
        flex:0 0 80%;
        max-width:80%
    }
}

.advertising-banner__side.left {
    left: 0;
}

.advertising-banner__side.right {
    right: 0;
}

.main-container-spasings {
   margin-top: 67px;
}

@media(max-width: 400px) {
    .advertising-banner__top {
        display: none;
    }
    .advertising-banner__top_small {
        display: block;
    }
}

.mobile {
    display: none;
}

@media (max-width:1280px) {
    .advertising-banner__top {
        background-size: 150% 6rem;
    }
    .advertising-banner__side {
        display: none;
    }
    .sg-page-content {
        margin: -1rem 0 0 0;
    }
    .sg-page-content--big-ads {
        margin-top: 3rem;
    }
}

@media (max-width:1199px) {
    .advertising-banner__side {
        top: 55px;
    }
    .sg-page-content--big:has(.advertising-banner) {
        margin-top: 3rem;
    }
}

@media(max-width: 1000px) {
    .advertising-banner__top {
        background-size: 150% 4.5rem;
    }
}

@media (max-width:767px) {
    .desktop {
        display: none;
    }
    .mobile {
        display: block;
    }
    .advertising-banner__top {
        background-size: 100% 6rem;
    }
}

@media (max-width:576px) {
    .advertising-banner {
        margin-top: 0;
    }
}

.advertising-banner__top_small {
    display: none;
    width: 100%;
    background: url('../../images/mobile-top-banner.jpg') center/100% 100%;
}

@media(max-width: 500px) {
    .advertising-banner__top {
        display: none;
    }

    .advertising-banner__top_small {
        display: block;
        height: 5rem;
    }
}

@media(max-width: 400px) {
    .advertising-banner__top_small {
        display: block;
        height: 4rem;
    }
}
