@font-face {
    font-family: 'Neue Haas Grotesk Display Pro';
    src: url('../fonts/NeueHaasDisplay-Roman.eot');
    src: url('../fonts/NeueHaasDisplay-Roman.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueHaasDisplay-Roman.woff2') format('woff2'),
        url('../fonts/NeueHaasDisplay-Roman.woff') format('woff'),
        url('../fonts/NeueHaasDisplay-Roman.svg#NeueHaasDisplay-Roman') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Neue Haas Grotesk Display Pro Bold';
    src: url('../fonts/NeueHaasDisplay-Bold.eot');
    src: url('../fonts/NeueHaasDisplay-Bold.eot?#iefix') format('embedded-opentype'),
        url('../fonts/NeueHaasDisplay-Bold.woff2') format('woff2'),
        url('../fonts/NeueHaasDisplay-Bold.woff') format('woff'),
        url('../fonts/NeueHaasDisplay-Bold.svg#NeueHaasDisplay-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

:root{
    --Titillium: "Titillium Web", sans-serif;
    --NeueHaas: "Neue Haas Grotesk Display Pro";
    --NeueHaasBold: "Neue Haas Grotesk Display Pro Bold";
    --Primary: #0000FF;
    --Primary-55: rgba(0, 0, 255, 0.55);
    --Secondary: #D0FF00;
    --White: #FFFFFF;
    --White-80: rgba(255, 255, 255, 0.8);
    --White-35: rgba(255, 255, 255, 0.35);
    --Black: #000000;
    --Black-03: rgba(0, 0, 0, 0.03);
    --Black-08: rgba(0, 0, 0, 0.08);
    --Black-12: rgba(0, 0, 0, 0.12);
    --Black-18: rgba(0, 0, 0, 0.18);
    --Black-35: rgba(0, 0, 0, 0.35);
    --Black-55: rgba(0, 0, 0, 0.55);
    --Black-60: rgba(0, 0, 0, 0.6);
    --Black-80: rgba(0, 0, 0, 0.8);
    --gray: #E6E6E6;
    --gray-light: #E4E4E4;
    --Bikini-red: #D91B34;
}

body, html{
    scroll-behavior: smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: var(--White);
    font-family: var(--Titillium);
    font-size: 16px;
    font-weight: normal;
    color: var(--Black);
    margin: 0;
    padding: 0;
}
a{
    transition: all 0.5s ease-in-out;
}
a, a:hover, a:focus{
    text-decoration: none;
}
img{
    display: block;
    max-width: 100%;
    object-fit: cover;
}
ul{
    padding: 0;
    margin: 0;
}
li{
    list-style: none;
}
h1, h2, h3, h4, h5, h6{
    margin: 0;
}
p{
    margin: 0;
}
.header-logo.header-menu, .slick-slide > div, .news-slider-line,.footer-logo {
    line-height: 0.5;
}
.container{
    max-width: 1474px;
    margin: 0 auto;
    padding: 0 20px;
}
.primary-btn{
    background-color: var(--Black);
    border: none;
    border-radius: 30px;
    color: var(--White);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    padding: 8px 16px;
    text-transform: uppercase;
    max-width: max-content;
    width: 100%;
}
.primary-btn:hover{
    background-color: var(--Primary);
    color: var(--White);
}
.primary-btn svg path,
.primary-btn svg rect{
    transition: all 0.5s ease-in-out;
}
.primary-btn:hover svg path{
    stroke: var(--White);
}
.primary-btn:hover svg rect{
    fill: var(--White);
}

.secondary-btn{
    background-color: var(--Black);
    border: none;
    border-radius: 0;
    color: var(--White);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    padding: 16px 20px;
    text-transform: uppercase;
    max-width: max-content;
    width: 100%;
}
.secondary-btn:hover{
    background-color: var(--Primary);
    color: var(--White);
}

.news-slider-prev-btn,
.tech-slider-prev-btn,
.marketing-slider-prev-btn,
.creative-slider-prev-btn{
    background-color: transparent;
    border: 1px solid var(--Black);
    border-radius: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 32px;
    width: 64px;
}
.news-slider-prev-btn.slick-disabled,
.tech-slider-prev-btn.slick-disabled,
.marketing-slider-prev-btn.slick-disabled,
.creative-slider-prev-btn.slick-disabled{
    opacity: 0.35;
}
.news-slider-next-btn,
.tech-slider-next-btn,
.marketing-slider-next-btn,
.creative-slider-next-btn{
    background-color: transparent;
    border: 1px solid var(--Black);
    border-radius: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 32px;
    width: 64px;
}
.news-slider-next-btn.slick-disabled,
.tech-slider-next-btn.slick-disabled,
.marketing-slider-next-btn.slick-disabled,
.creative-slider-next-btn.slick-disabled{
    opacity: 0.35;
}

.heading{
    color: var(--Black);
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}



/* Topbar CSS */

.topbar{
    background-color: var(--Black);
    padding: 6px 0;
}
.topbar-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.topbar-left p{
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    color: var(--White);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 4px;
    text-transform: uppercase;
    margin: 0;
}
.topber-businessinsider{
    color: var(--White);
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 4px;
}
.topbar-right ul{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 24px;
    margin: 0;
    padding: 0;
}
.topbar-right ul li{
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
    color: var(--White);
    text-transform: uppercase;
    list-style: none;
}
.topbar-right ul li .topbar-date{
    color: var(--White);
}
.topbar-right ul li .topber-see-categories{
    color: var(--White);
    text-decoration: underline;
}

/* Topbar CSS */

/* Header CSS */

header{
    position: sticky;
    top: 0;
    z-index: 99;
}
.header-bg,
.header-blue{
    background-color: var(--White);
}
.header{
    background-color: var(--White);
    padding: 0;
}
.header-row{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.header-menu{
    width: 43%;
}
.header-logo.header-menu {
    text-align: center;
    width: 14%;
}
.header-logo a{
    display: inline-block;
    margin: 0 auto;
}
.header-menu ul{
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 0;
    padding: 0;
}
.header-menu ul li{
    list-style: none;
}
.header-menu ul li.submenu{
    position: relative;
}
.header-menu ul li a,
.header-menu ul li.submenu > a{
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
    color: var(--Black);
    display: flex;
    align-items: center;
    gap: 2px;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 28px 0;
}
.header-menu ul li.submenu > ul{
    background-color: var(--White);
    display: flex;
    align-items: start;
    justify-content: start;
    flex-direction: column;
    gap: 8px;
    min-width: 200px;
    max-width: 200px;
    position: absolute;
    top: calc(100% + 30px);
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
    padding: 10px 16px;
}
.header-menu ul li.submenu:hover ul{
    top: 100%;
    opacity: 1;
    visibility: visible;
}
.header-menu ul li.submenu > ul li a{
    color: var(--Black);
}
.header-menu ul li.submenu > ul li a:hover{
    color: var(--Black);
}
.header-logo a img{
    max-height: 50px;
}
.menu-right{
    min-width: 33.33%;
    position: relative;
}
.menu-right.header-menu ul{
    justify-content: end;
}
.searchbar-btn{
    background-color: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    padding: 0;
}
.searchbar-box{
    display: none;
    background-color: var(--White);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 99;
}
.searchbar-box-inner{
    display: flex;
    align-items: center;
    justify-content: end;
    height: 100%;
    max-width: 400px;
    margin: 0 0 0 auto;
    width: 100%;
}
.searchbar-box-inner form{
    width: 100%;
}
.searchbar-box-inner .form-group{
    display: flex;
    width: 100%;
}
.searchbar-box-inner .form-group input{
    background-color: var(--Black-08);
    border: 0;
    border-radius: 0;
    color: var(--Black);
    font-family: var(--Titillium);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    outline: none;
    height: 48px;
    padding: 8px 20px;
    width: 100%;
}
.searchbar-box-inner .form-group input::placeholder{
    color: var(--Black);
}
.searchbar-box-btn{
    background-color: var(--Black-08);
    border: none;
    border-radius: 0;
    color: var(--White);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--Titillium);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    padding: 10px;
    text-transform: uppercase;
    height: 48px;
    max-width: 48px;
    width: 100%;
}


.toggle-menu{
    display: none;
}
.header-mobile-menu{
    overflow: hidden;
}
.header-mobile-menu-inner{
    background-color: var(--White);
    border-inline-start: 1px solid var(--color-border-primary);
    height: 100%;
    max-width: 425px;
    overflow-y: scroll;
    overscroll-behavior-y: contain;
    position: fixed;
    right: 0;
    top: 0;
    padding: 50px 30px 40px 30px;
    scrollbar-width: none;
    transform: translateX(calc(100% + 80px));
    transition: transform 0.45s ease-in-out, opacity 0.45s ease-in-out;
    width: calc(100% - 20px);
    z-index: 999;
}
.header-mobile-menu-inner.menu-open{
    opacity: 1;
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
}
.offcanvas-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    height: 100%;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 99;
    inset-inline-start: 0;
    opacity: 0;
    visibility: hidden;
    backdrop-filter: blur(10px);
}
.offcanvas-overlay.overlay-open {
    opacity: 1;
    visibility: visible;
}
.offcanvas-close{
    background-color: transparent;
    border: 0;
    border-radius: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    height: 20px;
    width: 20px;
}
.offcanvas-close img{
    width: 16px;
}
.searchbar-mobile .form-group{
    display: flex;
    width: 100%;
}
.searchbar-mobile .form-group input{
    background-color: var(--Black-03);
    border: 0;
    border-radius: 0;
    color: var(--Black-35);
    font-family: var(--Titillium);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    outline: none;
    height: 48px;
    padding: 8px 20px;
    width: 100%;
}
.searchbar-mobile .form-group input::placeholder{
    color: var(--Black-35);
}
.searchbar-mobile-box-btn{
    background-color: var(--Black);
    border: none;
    border-radius: 0;
    color: var(--White);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--Titillium);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    padding: 10px;
    text-transform: uppercase;
    height: 48px;
    max-width: 48px;
    width: 100%;
}


.menu-mobile{
    margin: 30px 0 0;
}
.menu-mobile > ul > li{
    margin: 0 0 10px;
}
.menu-mobile > ul > li:last-child{
    margin: 0;
}
.navmenu-link{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navmenu-link a,
.navmenu-submenu > a{
    color: var(--Black);
    font-size: 18px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.submenu-toggle{
    background-color: var(--Black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    width: 30px;
}
.submenu-toggle.active{
    transform: rotate(180deg);
}
.submenu-list{
    display: none;
    padding: 10px;
}
.submenu-list li{
    margin: 0 0 5px;
}
.submenu-list li:last-child{
    margin: 0;
}
.submenu-list li a{
    color: var(--Black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Header CSS */

/* Hero CSS */

.hero{
    background-color: var(--White);
    margin: -80px 0 0;
    /* padding: 120px 0 40px; */
    padding: 80px 0 40px;
}
.hero-slider{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.hero-thumb-box-inner{
    display: flex;
}
.hero-img{
    width: calc(100% - 408px);
}
.hero-img img{
    height: 100%;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.hero-content{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 20px;
    max-width: 408px;
    padding: 0 0 0 40px;
    width: 100%;
}
.hero-copy{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.hero-subheading{
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: var(--Black);
    letter-spacing: 1px;
    text-transform: uppercase;
}
.hero-heading{
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--Black);
}
.hero-description{
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: normal;
    color: var(--Black);
    letter-spacing: 1px;
}
.hero-btn .primary-btn{
    background-color: var(--Primary);
    color: var(--White);
}
.hero-btn .primary-btn:hover{
    background-color: var(--Black);
    color: var(--White);
}
.hero-btn .primary-btn svg path{
    stroke: var(--White);
    transition: all 0.5s ease-in-out;
}
.hero-btn .primary-btn svg rect{
    fill: var(--White);
    transition: all 0.5s ease-in-out;
}
.hero-thumb .slick-track{
    display: flex;
}


.hero-nav{
    padding: 0 58px;
}
.hero-nav .slick-track{
    display: flex;
}
.hero-nav .slick-slide{
    height: auto;
}
.hero-nav .slick-slide > div{
    height: 100%;
}
.hero-nav-box{
    height: 100%;
    padding: 0 10px;
}
.hero-nav-box-inner{
    background-color: var(--White);
    cursor: pointer;
    display: flex;
    gap: 20px;
    height: 100%;
    padding: 20px;
}
.hero-nav .slick-current .hero-nav-box-inner{
    background-color: var(--Primary);
}
.hero-nav-content{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.hero-nav-heading{
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: var(--Black);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.hero-nav-read-more{
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: var(--Black);
    max-width: max-content;
    width: 100%;
}
.hero-nav-img{
    max-width: 96px;
    min-width: 96px;
    width: 100%;
}
.hero-nav .slick-prev{
    background-color: transparent;
    background-image: url(../images/prev-arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px 16px;
    border: 1px solid var(--White);
    font-size: 0;
    left: 0;
    height: 48px;
    width: 48px;
}
.hero-nav .slick-next{
    background-color: transparent;
    background-image: url(../images/next-arrow-white.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 16px 16px;
    border: 1px solid var(--White);
    font-size: 0;
    right: 0;
    height: 48px;
    width: 48px;
}
.hero-nav .slick-prev::before,
.hero-nav .slick-next::before{
    display: none;
}

/* Hero CSS */

/* Latest News CSS */

.latest-news{
    padding: 40px 0 0;
}
.news-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin: 0 0 40px;
}
.news-title-left{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}
.news-slider-btn-group{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.news-slider-btn-mobile{
    display: none;
}


.post-slider-block .latest-news-row{
    display: flex;
    flex-direction: column;
    gap: 0;
}
.post-slider-block .news-slider-box {
    padding: 0 20px;
}


.news-slider{
    overflow: hidden;
    padding: 0 0 60px;
}
.news-slider .slick-list{
    margin: 0 -20px;
}
.news-slider .slick-track{
    display: flex;
}
.latest-news-row{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}
.news-slider-box{
    padding: 0;
}
.news-slider-box-inner{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.news-slider-img img{
    height: 250px;
    width: 100%;
}
.news-slider-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.news-slider-heading{
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    color: var(--Black);
}
.news-slider-description{
    font-family: var(--NeueHaas);
    font-size: 16px;
    font-weight: 500;
    line-height: normal;
    color: var(--Black-80);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.netty-team{
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: var(--Black);
}
.news-slider-line{
    margin: 60px 0 0;
}
.news-slider-line img{
    min-height: 12px;
}

/* Latest News CSS */

/* Article CSS */

.article{
    padding: 60px 0 80px;
}
.article-row{
    display: flex;
    gap: 40px;
}
.article-list{
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 68%;
}


.article-list-row{
    overflow: hidden;
    margin: -20px 0 0;
}
.article-list-row-inner{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
.article-list-row .article-slider-box{
    width: 50%;
}
.article-slider-box-line{
    background-color: var(--Black-12);
    height: 1px;
    margin: 60px 0;
    width: 100%;
}
.article-slider-box-line:last-child{
    margin: 60px 0 0;
}
.article-slider-img img{
    height: 170px;
    width: 100%;
}
.article-list-row .article-slider-img img{
    height: 250px;
    width: 100%;
}
.article-slider-box-btn{
    margin: 60px 0 0;
    padding: 0 20px;
    text-align: center;
    width: 100%;
}
.article-slider-box-btn .primary-btn{
    margin: 0 auto;
}
.remaing-posts .article-list-row .article-slider-box{
    width: 33.33%;
}
.remaing-posts .article-list-row{
    margin: 60px 0 0;
}


.artical-category{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.artical-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.artical-title-left{
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 20px;
}
.artical-slider-btn-group{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.artical-slider-btn-mobile{
    display: none;
}
.tech-slider,
.marketing-slider,
.creative-slider{
    border-bottom: 1px solid var(--Black-12);
    overflow: hidden;
    padding: 0 0 60px;
}
.tech-slider .slick-list,
.marketing-slider .slick-list,
.creative-slider .slick-list{
    margin: 0 -20px;
}
.tech-slider .slick-track,
.marketing-slider .slick-track,
.creative-slider .slick-track{
    display: flex;
}
.article-slider-box{
    padding: 0 20px;
}
.article-slider-box-inner{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.article-slider-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.article-slider-heading{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--Black);
}
.article-netty-team{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--Black);
}


.article-right{
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 32%;
}
.most-popular{
    background-color: var(--Black);
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
    position: sticky;
    top:60px;
}
.most-popular-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}
.most-popular-heading{
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    color: var(--White);
    text-transform: uppercase;
}
.most-popular-heading span{
    display: block;
}
.most-popular-icon{
    background-color: var(--Primary);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    width: 64px;
}
.most-popular-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.most-popular-single{
    border-bottom: 1px solid var(--White-35);
    display: flex;
    gap: 20px;
    padding: 0 0 20px;
}
.most-popular-single:last-child{
    border: none;
    padding: 0;
}
.most-popular-number{
    background-color: var(--White);
    color: var(--Black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    color: var(--Black);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    height: 40px;
    min-width: 40px;
}
.most-popular-content{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.most-popular-single-heading{
    color: var(--White);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}
.most-popular-netty-team{
    color: var(--Primary);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.sponsored-sport{
    /* background-color: var(--Primary); */
    color: var(--White);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* min-height: 470px; */
}
.sponsored-sport a{
    color: var(--White);
}

/* Article CSS */

/* Subscribe CSS */

.subscribe{
    background-color: var(--Primary);
    background-image: url(../images/subscribe-bg.png);
    background-repeat: no-repeat;
    background-position: right;
    background-size: auto 100%;
    padding: 40px 0;
}
.subscribe-row{
    display: flex;
    align-items: end;
    gap: 80px;
    max-width: 938px;
}
.subscribe-title{
    max-width: 420px;
    width: 100%;
}
.subscribe-heading{
    color: var(--White);
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
}
.subscribe-form{
    width: 100%;
}
.subscribe-form .form-group{
    display: flex;
    width: 100%;
}
.subscribe-form .form-group input{
    background-color: var(--White);
    border: 0;
    border-radius: 0;
    color: var(--Black);
    font-family: var(--Titillium);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    outline: none;
    height: 48px;
    padding: 8px 20px;
    width: 100%;
}
.subscribe-form .form-group input::placeholder{
    color: var(--Black);
}
.subscribe-form-btn{
    background-color: var(--Black);
    border: none;
    border-radius: 0;
    color: var(--White);
    cursor: pointer;
    font-family: var(--Titillium);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    padding: 12px 20px;
    text-transform: uppercase;
}

/* Subscribe CSS */

/* Winners CSS */

.winners{
    background-color: var(--Black);
    padding: 80px 0;
}
.winners-row{
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.winners-heading{
    font-size: 48px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 1px;
    color: var(--White);
    text-align: center;
    max-width: 1078px;
    margin: 0 auto;
}
.winners-heading span{
    color: var(--Primary);
    font-weight: 600;
}
.featured-winners{
    display: flex;
    gap: 40px;
    width: 100%;
}
.featured-winners-left{
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: calc(100% - 360px);
}
.featured-winners-heading{
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    color: var(--Primary);
    text-transform: uppercase;
}
.winners-slider{
    overflow: hidden;
    width: 100%;
}
.winners-slider .slick-list{
    margin: 0 -10px;
}
.winners-slider .slick-track{
    display: flex;
}
.winners-slider-box{
    padding: 0 10px;
}
.winners-slider-box-inner{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.winners-slider-content{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.winners-info{
    display: flex;
    gap: 12px;
}
.winners-img img{
    border: 1px solid var(--White);
    border-radius: 50%;
    height: 40px;
    width: 40px;
}
.winners-info-box{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.winners-name{
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    color: var(--White);
}
.awardswinner-text ul{
    display: flex;
    align-items: center;
    gap: 10px;
}
.awardswinner-text ul li{
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    color: var(--White);
    position: relative;
}
.awardswinner-text ul li::after{
    background-color: var(--White);
    border-radius: 2px;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -6px;
    content: "";
    margin: auto 0;
    height: 2px;
    width: 2px;
}
.awardswinner-text ul li:last-child:after{
    display: none;
}
.awardswinner-text ul li.awardswinner{
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--Primary);
}
.winners-info-copy{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.winners-info-heading{
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: var(--White);
}
.winners-tag{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--Primary);
}
.winners-btn-group{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.winners-btn-group .primary-btn{
    background-color: var(--Primary);
    color: var(--White);
}
.winners-btn-group .primary-btn:hover{
    background-color: var(--White);
    color: var(--Black);
}
.winners-btn-group .primary-btn svg path{
    stroke: var(--Black);
    transition: all 0.5s ease-in-out;
}
.winners-btn-group .primary-btn svg rect{
    fill: var(--Black);
    transition: all 0.5s ease-in-out;
}
.winners-slider-btn-group{
    display: flex;
    align-items: center;
    gap: 8px;
}
.winners-slider-prev-btn{
    background-color: transparent;
    border: 1px solid var(--White);
    border-radius: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 32px;
    width: 64px;
}
.winners-slider-prev-btn.slick-disabled{
    opacity: 0.35;
}
.winners-slider-next-btn{
    background-color: transparent;
    border: 1px solid var(--White);
    border-radius: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 32px;
    width: 64px;
}
.winners-slider-next-btn.slick-disabled{
    opacity: 0.35;
}


.netty-awards-box{
    background-color: var(--Primary);
    background-image: url(../images/award-trophy.png);
    background-repeat: no-repeat;
    background-position: center right;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 30px;
    min-height: 556px;
    padding: 24px;
    max-width: 320px;
    width: 100%;
}
.netty-awards-box-title{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.netty-awards-box-heading{
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
    color: var(--Black);
    max-width: 200px;
}
.netty-awards-box-subheading{
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    color: var(--Black);
    max-width: 220px;
}
.netty-awards-digital{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.netty-awards-digital .primary-btn:hover{
    background-color: var(--Primary);
}

/* Winners CSS */

/* Footer CSS */

.footer{
    border-top: 1px solid var(--gray);
    overflow: hidden;
}
.footer-row{
    display: flex;
}
.footer-logo-subscribe{
    border-right: 1px solid var(--Black-12);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
    padding: 80px 40px 80px 0;
    max-width: 440px;
    width: 100%;
}
.footer-logo-box{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    gap: 40px;
}
.footer-logo img{
    max-height: 60px;
}
.footer-logo-box p{
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--Black);
    max-width: 222px;
    text-align: center;
}
.footer-subscribe-box{
    background-color: var(--Black);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    width: 100%;
}
.footer-subscribe-box-heading{
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    color: var(--White);
    text-align: center;
}
.footer-subscribe-box .form-group{
    display: flex;
    position: relative;
    width: 100%;
}
.footer-subscribe-box .form-group input{
    background-color: var(--White);
    border: 0;
    border-radius: 0;
    color: var(--Black);
    font-family: var(--Titillium);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    outline: none;
    height: 48px;
    padding: 8px 20px;
    width: 100%;
}
.footer-subscribe-box .form-group input::placeholder{
    color: var(--Black);
}
.footer-subscribe-box .form-group .footer-subscribe-btn{
    background-image: url(../images/subscribe-btn-arrow.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-color: var(--Primary);
    border: none;
    border-radius: 0;
    color: var(--Black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--Titillium);
    font-size: 0;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    padding: 0;
    text-transform: uppercase;
    min-height: 48px;
    min-width: 48px;
    height: 48px;
    width: 48px;
}
.footer-subscribe-box .wpcf7-spinner {
    display: none;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    margin: auto 0;
}
.footer-subscribe-box .wpcf7 form .wpcf7-response-output{
    color: var(--White);
    margin: 10px 0 0 0;
}
.footer-subscribe-box .submitting .wpcf7-spinner{
    display: block;
}

.footer-right{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% - 440px);
}
.footer-widget-area{
    display: flex;
    gap: 40px;
    padding: 80px 0 40px 40px;
}
.footer-menu{
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 35%;
}
.footer-menu-heading{
    color: var(--Primary);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-menu ul{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.footer-menu ul li{
    list-style: none;
    display: block;
    line-height: 1;
}
.footer-menu ul li a{
    color: var(--Black);
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.footer-menu ul li a:hover{
    color: var(--Primary);
}
.footer-contact{
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 30%;
}
.footer-contact-info{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.footer-email{
    color: var(--Black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    max-width: max-content;
    word-break: break-all;
    width: 100%;
}
.footer-contact-info ul{
    display: flex;
}
.footer-contact-info ul li a{
    border: 1px solid var(--gray);
    border-right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
.footer-contact-info ul li:last-child a{
    border-right: 1px solid var(--gray);
}
.copyright{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 40px 0 40px 40px;
    position: relative;
}
.copyright::after{
    background-color: var(--gray);
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 1px;
    width: 100vw;
}
.copyright p{
    color: var(--Black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
}
.copyright-menu ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}
.copyright-menu ul li a{
    color: var(--Black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Footer CSS */


/*========= About Us Page =========*/

/* Breadcrumb CSS */

.breadcrumb{
    background-image: url(../images/breadcrumb-bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
    margin: -80px 0 0;
    padding: 80px 0 0;
}
.breadcrumb-row{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}
.breadcrumb-heading{
    color: var(--White);
    font-size: 72px;
    font-weight: 600;
    line-height: 1.1;
    text-align: center;
}
.breadcrumb-heading span{
    display: block;
}

/* Breadcrumb CSS */

/* About Us CSS */

.about-us{
    padding: 80px 0 60px;
}
.about-us-row{
    display: flex;
    gap: 80px;
}
.about-us-img{
    width: 47%;
}
.about-us-content{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 60px;
    width: 53%;
}
.about-us-heading{
    color: var(--Black);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
}
.about-us-copy{
    display: flex;
    gap: 40px;
}
.about-us-text,
.about-us-text p{
    color: var(--Black-80);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    max-width: 336px;
}

/* About Us CSS */

/* Journalistic CSS */

.journalistic{
    padding: 60px 0 80px;
}
.journalistic-row{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.journalistic-heading{
    color: var(--Black);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
}
.journalistic-heading span{
    color: var(--Black);
    display: block;
}
.journalistic-list{
    overflow: hidden;
}
.journalistic-list-inner{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
.journalistic-box{
    margin: 40px 0 0;
    padding: 0 20px;
    width: 33.33%;
}
.journalistic-box-inner{
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
    min-height: 450px;
    padding: 40px;
    transition: all 0.5s ease-in-out;
}
.journalistic-box-inner:hover{
    background-color: var(--Black);
}
.journalistic-box-number{
    background-color: var(--Primary);
    color: var(--White);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
}
.journalistic-box-content{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.journalistic-box-heading{
    color: var(--Black);
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
    transition: all 0.5s ease-in-out;
}
.journalistic-box-inner:hover .journalistic-box-heading{
    color: var(--White);
}
.journalistic-box-content p{
    color: var(--Black-80);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    transition: all 0.5s ease-in-out;
}
.journalistic-box-inner:hover .journalistic-box-content p{
    color: var(--White);
}

/* Journalistic CSS */

/* Sedut CSS */

.sedut{
    background-color: var(--Black);
    padding: 80px 0;
}
.sedut-row{
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.sedut-heading{
    color: var(--White);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    max-width: 840px;
}
.sedut-bottom{
    display: flex;
    gap: 80px;
}
.sedut-bottom-img{
    width: 50%;
}
.sedut-bottom-img img{
    min-height: 280px;
}
.sedut-bottom-list{
    display: flex;
    align-items: center;
    gap: 40px;
    width: 50%;
}
.sedut-bottom-box{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.sedut-bottom-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.sedut-bottom-content h4{
    color: var(--White);
    font-size: 20px;
    font-weight: 600;
    line-height: 30px;
}
.sedut-bottom-content p{
    color: var(--White);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.sedut-bottom-button .secondary-btn{
    background-color: var(--Primary);
    color: var(--White);
}
.sedut-bottom-button .secondary-btn:hover{
    background-color: var(--White);
    color: var(--Black);
}

/* Sedut CSS */

/* News CSS */

.about-news .news-slider{
    padding: 0 0 80px 0;
}

/* News CSS */

/* Writer Press CSS */

.writer-press{
    background-color: var(--Black);
    position: relative;
    z-index: 9;
}
.writer-press::after{
    background-color: var(--Primary);
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    height: 100%;
    width: calc(50% + 1px);
    z-index: -9;
}
.writer-press-row{
    display: flex;
    width: 100%;
}
.writer{
    background-image: url(../images/writer-bg.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    width: 50%;
}
.writer-inner{
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 400px;
    padding: 60px 0;
}
.writer-heading{
    color: var(--White);
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}
.writer-inner p{
    color: var(--White-80);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.writer .secondary-btn{
    background-color: var(--Primary);
    color: var(--White);
}
.writer .secondary-btn:hover{
    background-color: var(--White);
    color: var(--Black);
}
.press{
    background-image: url(../images/press-bg.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    width: 50%;
}
.press-inner{
    display: flex;
    flex-direction: column;
    gap: 32px;
    max-width: 400px;
    padding: 60px 0 60px 40px;
}
.press-inner .secondary-btn:hover{
    color: var(--Black);
}
.press-heading{
    color: var(--White);
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}
.press-inner p{
    color: var(--White);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}
.press .secondary-btn:hover{
    background-color: var(--White);
}
.press .secondary-btn svg path{
    transition: all 0.5s ease-in-out;
}
.press .secondary-btn:hover svg path{
    stroke: var(--Black);
}

/* Writer Press CSS */

/* Advertising */

.advertising{
    padding: 60px 0;
}
.advertising-row{
    display: flex;
    flex-direction: column;
}
.advertising-top{
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 0 0 80px 0;
    position: relative;
}
.advertising-top::after{
    background-image: url(../images/megaphone.png);
    background-repeat: no-repeat;
    position: absolute;
    top: 0;
    right: 0;
    content: "";
    height: 100%;
    width: 400px;
}
.advertising-heading{
    color: var(--Black);
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}
.advertising-heading span{
    display: block;
}
.statistics-list{
    display: flex;
    gap: 80px;
    width: calc(100% - 400px);
}
.statistics-single{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.statistics-single span{
    color: var(--Black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}
.statistics-price{
    color: var(--Black);
    font-size: 60px;
    font-weight: 400;
    line-height: 1;
}
.advertising-list{
    overflow: hidden;
}
.advertising-list-inner{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}
.advertising-box{
    padding: 0 10px;
    margin: 0 0 20px;
    width: 25%;
}
.advertising-box-inner{
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    min-height: 343px;
    height: 100%;
    padding: 40px;
}
.advertising-box-heading{
    color: var(--Black);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
}
.advertising-box-inner p{
    color: var(--Black-80);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.collaborate-box .advertising-box-inner{
    background-color: var(--Primary);
    background-image: url(../images/collaborate-plan.png);
    background-repeat: no-repeat;
    background-position: left bottom;
    border: none;
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: unset;
    gap: 10px;
}
.collaborate-box .advertising-box-inner span{
    color: var(--White);
    font-weight: 600;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Advertising */

/*========= About Us Page =========*/


/*========= Advertise Page =========*/

/* Advertising */

.perspiciatis{
    padding: 80px 0 60px;
}
.perspiciatis-row{
    display: flex;
    flex-direction: column;
    gap: 80px;
}
.perspiciatis-heading{
    color: var(--Black);
    font-weight: 400;
    font-size: 36px;
    line-height: 1.2;
    max-width: 878px;
    margin: 0 auto;
}
.perspiciatis-list{
    background-color: var(--Black);
    display: flex;
    padding: 80px 0;
}
.perspiciatis-single{
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 80px;
}
.perspiciatis-price-box{
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.perspiciatis-small-heading{
    color: var(--White);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}
.perspiciatis-price{
    color: var(--White);
    font-size: 72px;
    font-weight: 400;
    line-height: 1;
}
.perspiciatis-copy p{
    color: var(--White);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

/* Advertising */

/* Placements CSS */

.placements{
    padding: 60px 0;
}
.placements-row{
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.placements-title{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    max-width: 732px;
    margin: 0 auto;
    text-align: center;
}
.placements-heading{
    color: var(--Black);
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}
.placements-title p{
    color: var(--Black-80);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.placements-main-tabs{
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
}
.placements-tabs{
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    gap: 40px;
    overflow-x: auto;
    overflow-y: hidden;
    width: 100%;
}
.placements-tabs .tab-link{
    color: var(--Black-60);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    padding: 12px 0;
    text-transform: uppercase;
    position: relative;
    white-space: nowrap;
}
.placements-tabs .tab-link.placements-active{
    color: var(--Black);
}
.placements-tabs .tab-link.placements-active::after{
    background-color: var(--Primary);
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    height: 2px;
    width: 100%;
}
.placements-wrapper .placements-tab-content{
    display: none;
}
.placements-wrapper .placements-tab-content.placements-active{
    display: block;
}


.banner-main-tabs{
    display: flex;
    gap: 40px;
}
.banner-tab-wrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 50px;
    max-width: 320px;
    width: 100%;
}
.banner-wrapper{
    width: calc(100% - 360px);
}
.banner-tabs{
    display: flex;
    flex-direction: column;
}
.banner-tabs .banner-tab-link{
    color: var(--Black);
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    padding: 16px 20px;
}
.banner-tabs .banner-tab-link.banner-active{
    background-color: var(--Black-03);
}
.banner-tab-btn{
    background-color: var(--Black);
    color: var(--White);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    padding: 20px;
    text-transform: uppercase;
}
.banner-tab-btn:hover{
    background-color: var(--Primary);
    color: var(--White);
}
.banner-tab-btn svg path{
    transition: all 0.5s ease-in-out;
}
.banner-tab-btn:hover svg path{
    stroke: var(--White);
}
.banner-tab-content{
    background-color: var(--Black-03);
    display: none;
    padding: 60px;
}
.banner-tab-content.banner-active{
    display: block;
}
.banner-info{
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 640px;
    margin: 0 auto;
}
.banner-box-copy{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.banner-box-heading{
    color: var(--Black);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
}
.banner-box-copy p{
    color: var(--Black-80);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

/* Placements CSS */

/* Demographics Traffic CSS */

.demographics-traffic{
    padding: 60px 0 80px;
}
.demographics-traffic-row{
    display: flex;
    gap: 80px;
}
.demo-traffic-box{
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: 50%;
}
.demo-traffic-title{
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 40px;
}
.demo-traffic-left{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.demo-traffic-heading{
    color: var(--Black);
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}
.demo-traffic-left p{
    color: var(--Black-80);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    max-width: 400px;
}
.demo-traffic-icon img{
    max-height: 144px;
}
.demo-traffic-info{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.featured-stats-list{
    border: 1px solid var(--gray-light);
    display: flex;
    gap: 40px;
    padding: 40px;
}
.featured-stats-single{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    text-align: center;
    width: 33.33%;
}
.featured-stats-price{
    color: var(--Black);
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
}
.featured-stats-small-heading{
    color: var(--Black);
    font-family: var(--NeueHaasBold);
    font-size: 18px;
    font-weight: bold;
    line-height: 24px;
}
.gender-box{
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
}
.gender-box-heading{
    color: var(--Black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.gender-progress{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.gender-progress-copy{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}
.gender-progress-copy span{
    color: var(--Black);
    font-family: var(--NeueHaasBold);
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}
.gender-progressbar{
    background-color: var(--Primary);
    height: 16px;
    position: relative;
    width: 100%;
}
.gender-progressbar-upper{
    background-color: var(--Black);
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 50%;
}
.location-visitor{
    display: flex;
    gap: 20px;
}
.location-visitor-single{
    border: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
    width: 50%;
}
.location-visitor-heading{
    color: var(--Black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.location-visitor-single ul{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.location-visitor-single ul li{
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 0 0 16px;
}
.location-visitor-name{
    color: var(--Black);
    font-family: var(--NeueHaasBold);
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}
.location-visitor-value{
    color: var(--Black);
    font-family: var(--NeueHaas);
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
}
.traffic-box .demo-traffic-left p{
    max-width: 480px;
}

/* Demographics Traffic CSS */

/* Writer Press CSS */

.work-together .writer{
    background-image: url(../images/work-plan.png);
    background-repeat: no-repeat;
    background-position: 90% bottom;
}

/* Writer Press CSS */

/*========= Advertise Page =========*/

/*========= Author Bio Page =========*/

/* Author Bio CSS */

.auther-bio{
    position: relative;
}
.auther-bio-row{
    display: flex;
    width: 100%;
}
.auther-bio-img{
    max-width: 500px;
    width: 100%;
}
.auther-bio-img img{
    height: 100%;
    object-fit: cover;
}
.auther-bio-right{
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 80px 0 80px 80px;
    width: calc(100% - 500px);
}
.auther-bio-top{
    border-bottom: 1px solid var(--gray-light);
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 0 0 40px;
}
.auther-bio-title{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.auther-bio-name{
    color: var(--Black);
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}
.auther-post{
    color: var(--Black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
}
.auther-bio-content{
    display: flex;
    align-items: start;
    gap: 40px;
}
.auther-bio-copy{
    width: calc(100% - 360px);
}
.auther-bio-copy p{
    color: var(--Black-80);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.auther-bio-contact{
    background-color: var(--Black);
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
    max-width: 320px;
    width: 100%;
}
.auther-bio-contact-heading{
    color: var(--White);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.auther-bio-contact ul{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.auther-bio-contact ul li a{
    color: var(--White);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.auther-artical{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.auther-artical-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.auther-artical-heading{
    color: var(--Black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.auther-articles-btn-group{
    display: flex;
    align-items: center;
    gap: 8px;
}
.auther-artical-prev-btn{
    background-color: transparent;
    border: 1px solid var(--Black);
    border-radius: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 24px;
    width: 48px;
}
.auther-artical-prev-btn.slick-disabled{
    opacity: 0.35;
}
.auther-artical-next-btn{
    background-color: transparent;
    border: 1px solid var(--Black);
    border-radius: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 24px;
    width: 48px;
}
.auther-artical-next-btn.slick-disabled{
    opacity: 0.35;
}
.auther-artical-prev-btn img,
.auther-artical-next-btn img{
    width: 12px;
}
.auther-artical-slider{
    overflow: hidden;
}
.auther-artical-slider .slick-list{
    margin: 0 -20px;
}
.auther-artical-slider .slick-track{
    display: flex;
}
.auther-artical-box{
    padding: 0 20px;
}
.auther-artical-box-inner{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.auther-artical-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.auther-artical-box-heading{
    color: var(--Black);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.1;
}
.auther-artical-netty-team{
    color: var(--Black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
}
.auther-artical-btn-mobile{
    display: none;
}

/* Author Bio CSS */

/* Become Writer CSS */

.become-writer{
    background-color: var(--Primary);
    background-image: url(../images/become-writer-bg.png);
    background-repeat: no-repeat;
    background-position: bottom right;
}
.become-writer-row{
    display: flex;
    align-items: end;
    gap: 32px;
}
.become-writer-img{
    display: flex;
    justify-content: center;
    width: 50%;
}
.become-writer-form{
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 0;
    width: 50%;
}
.become-writer-heading{
    color: var(--White);
    font-size: 48px;
    font-weight: 400;
    line-height: 1;
}
.become-writer-heading span{
    display: block;
}
.become-writer-form-box{
    max-width: 444px;
    width: 100%;
}
.become-writer-form-box .form-group{
    display: flex;
    width: 100%;
}
.become-writer-form-box .form-group input{
    background-color: var(--White);
    border: 0;
    border-radius: 0;
    color: var(--Black);
    font-family: var(--Titillium);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    outline: none;
    height: 48px;
    padding: 8px 20px;
    width: 100%;
}
.become-writer-form-box .form-group input::placeholder{
    color: var(--Black);
}
.become-writer-form-btn{
    background-color: var(--Black);
    border: none;
    border-radius: 0;
    color: var(--White);
    cursor: pointer;
    font-family: var(--Titillium);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    padding: 12px 20px;
    text-transform: uppercase;
}

/* Become Writer CSS */

/*========= Author Bio Page =========*/

/*========= Contact Us Page =========*/

/* Contact Us CSS */

.contact-us-row{
    display: flex;
}
.contact-us-left{
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 80px 40px 80px 0;
    width: 50%;
}
.contact-us-title{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.contact-us-heading{
    color: var(--Black);
    font-size: 72px;
    font-weight: 600;
    line-height: 1;
}
.contact-us-title p{
    color: var(--Black);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    max-width: 400px;
}
.contact-us-form form{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.contact-us-form .form-group-row{
    display: flex;
    gap: 20px;
}
.contact-us-form .form-group-row .form-group{
    width: 50%;
}
.contact-us-form .form-group{
    margin: 0 0 20px;
}
.contact-us-form .form-group label{
    color: var(--Black);
    display: block;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0 0 12px;
    width: 100%;
}
.contact-us-form .form-group input{
    background-color: var(--Black-03);
    border: none;
    border-bottom: 1px solid var(--gray-light);
    border-radius: 0;
    color: var(--Black-35);
    font-family: var(--NeueHaas);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    height: 48px;
    outline: none;
    padding: 12px;
    width: 100%;
}
.contact-us-form .form-group input::placeholder,
.contact-us-form .form-group textarea::placeholder{
    color: var(--Black-35);
}
.contact-us-form .form-group textarea{
    background-color: var(--Black-03);
    border: none;
    border-bottom: 1px solid var(--gray-light);
    border-radius: 0;
    color: var(--Black-35);
    font-family: var(--NeueHaas);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    height: 96px;
    outline: none;
    padding: 12px;
    resize: none;
    width: 100%;
}
.contact-us-social{
    display: flex;
    justify-content: space-between;
    gap: 30px;
}
.contact-social-box{
    background-color: var(--Primary);
    display: flex;
    gap: 40px;
    padding: 12px 20px;
}
.contact-us-info{
    display: flex;
    align-items: center;
    gap: 40px;
}
.contact-us-info li{
    position: relative;
}
.contact-us-info li::after{
    background-color: var(--White-35);
    position: absolute;
    top: 0;
    right: -19.5px;
    content: "";
    height: 100%;
    width: 1px;
}
.contact-us-info li a{
    color: var(--White);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.connect-social{
    display: flex;
    align-items: center;
    gap: 12px;
}
.connect-social li a{
    display: block;
}
.contact-us-btn{
    background-color: var(--Black);
    border: none;
    border-radius: 0;
    color: var(--White);
    cursor: pointer;
    font-family: var(--Titillium);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    padding: 16px 20px;
    text-transform: uppercase;
    transition: all 0.5s ease-in-out;
}
.contact-us-btn:hover{
    background-color: var(--Primary);
    color: var(--White);
}
.contact-us-right{
    background-color: var(--Primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 50%;
}
.contact-us-right img{
    max-height: 360px;
}
.contact-us-right::after{
    background-image: url(../images/contact-form-line-left.png);
    background-repeat: no-repeat;
    background-position: left;
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 60px;
    width: 100%;
}
.contact-us-right::before{
    background-image: url(../images/contact-form-line-right.png);
    background-repeat: no-repeat;
    background-position: right;
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    height: 60px;
    width: 100%;
}

/* Contact Us CSS */

/* Press Kit CSS */

.press-kit{
    background-color: var(--Primary);
}
.press-kit-row{
    display: flex;
    align-items: center;
    gap: 60px;
}
.press-kit-img{
    display: flex;
    justify-content: center;
    width: 50%;
}
.press-kit-img img{
    min-height: 270px;
}
.press-kit-right{
    width: 50%;
}
.press-kit-right-inner{
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 40px 0;
    max-width: 540px;
}
.press-kit-right-inner .secondary-btn:hover{
    color: var(--Black);
}
.press-kit-heading{
    color: var(--White);
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}
.press-kit-right p{
    color: var(--White);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.press-kit-right-inner .secondary-btn:hover{
    background-color: var(--White);
}
.press-kit-right-inner .secondary-btn svg path{
    transition: all 0.5s ease-in-out;
}
.press-kit-right-inner .secondary-btn:hover svg path{
    stroke: var(--Black);
}

/* Press Kit CSS */

/* Faq CSS */

.faq{
    padding: 80px 0;
}
.faq-row{
    display: flex;
    flex-direction: column;
    gap: 60px;
}
.faq-heading{
    color: var(--Black);
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    text-align: center;
}
.faq-heading span{
    color: var(--Black);
    display: block;
}
.faq-list{
    max-width: 840px;
    margin: 0 auto;
    width: 100%;
}
.faq-boxs{
    border: 1px solid var(--gray-light);
    margin: 0 0 20px;
    padding: 40px;
    width: 100%;
}
.faq-title{
    background: transparent;
    border: none;
    border-radius: 0;
    color: var(--Black);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: var(--Titillium);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    padding: 0;
    transition: all 0.5s ease-in-out;
    text-align: left;
    width: 100%;
}
.faq-title.active{
    color: var(--Black);
}
.faq-title svg{
    transition: all 0.5s ease-in-out;
    min-height: 12px;
    min-width: 12px;
    height: 12px;
    width: 12px;
}
.faq-title svg path{
    transition: all 0.5s ease-in-out;
}
.faq-title.active svg{
    transform: rotate(180deg);
}
.faq-title.active svg path{
    stroke: var(--Black);
}
.faq-body{
    display: none;
}
.faq-body-inner{
    color: var(--Black-80);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    padding: 40px 0 0;
}
.faq-body-inner p{
    margin: 0 0 16px;
}
.faq-body-inner p:last-child{
    margin: 0;
}

/* Faq CSS */

/*========= Contact Us Page =========*/

/*========= Search Results Page =========*/

.search-results-ct{
    padding: 80px 0;
}
.search-results-row{
    display: flex;
    flex-direction: column;
}
.search-results-top{
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 40px;
    text-align: center;
    margin: 0 0 60px;
}
.search-results-heading{
    color: var(--Black);
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
}
.search-results-form{
    max-width: 640px;
    margin: 0 auto;
    width: 100%;
}
.search-results-form .form-group{
    display: flex;
    width: 100%;
}
.search-results-form .form-group input{
    background-color: var(--Black-03);
    border: 0;
    border-bottom: 1px solid var(--gray-light);
    border-radius: 0;
    color: var(--Black);
    font-family: var(--Titillium);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    outline: none;
    height: 48px;
    padding: 8px 20px;
    width: 100%;
}
.search-results-form .form-group input::placeholder{
    color: var(--Black);
}
.search-results-form-btn{
    background-color: var(--Black);
    border: none;
    border-radius: 0;
    color: var(--White);
    cursor: pointer;
    font-family: var(--Titillium);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    padding: 12px 20px;
    text-transform: uppercase;
}
.search-results-show{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0 60px;
}
.search-results-count{
    color: var(--Black-80);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 1px;
    margin: 0;
}
.search-results-count span{
    font-family: var(--NeueHaasBold);
    color: var(--Black);
}

.search-results-list{
    overflow: hidden;
}
.search-results-list-inner{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px;
}
.search-results-box{
    margin: 0 0 60px;
    padding: 0 20px;
    width: 33.33%;
}
.search-results-box-inner{
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.search-results-img img{
    height: 250px;
    width: 100%;
}
.search-results-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.search-results-box-heading{
    color: var(--Black);
    font-size: 32px;
    font-weight: 600;
    line-height: 1;
}
.search-results-content p{
    color: var(--Black-80);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.06px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.netty-team-search-results{
    color: var(--Black);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}
.search-results-btn-box{
    display: flex;
    align-items: center;
    justify-content: center;
}
.search-results-btn-box .secondary-btn{
    background-color: var(--Black);
}
.search-results-btn-box .secondary-btn:hover,
.search-results-btn-box .secondary-btn:focus{
    background-color: var(--Primary);
    color: var(--White);
}

/*========= Search Results Page =========*/

/*========= Article Single Page =========*/

/* Article Ads Top CSS */

.article-ads-top{
    background-color: var(--White);
    padding: 10px 0;
}
.article-ads-top-row{
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Article Ads Top CSS */

/* Article Single CSS */
.article-single.non-article-interview::after {
    background-color: var(--White);
}
.article-single.non-article-interview .article-single-heading,
.article-single.non-article-interview .article-single-written ul li,
.article-single.non-article-interview .article-single-written-netty span{
    color: var(--Black);
}
.article-single{
    /* background-image: url(../images/article-single-bg.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top center; */
    background-color: var(--White);
    padding: 40px 0 0;
    position: relative;
    z-index: 9;
}
.article-single::after{
    background-color: var(--Black);
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    height: 100%;
    width: 100%;
    z-index: -9;
}
.article-single::before{
    background-color: var(--White);
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    height: 80px;
    width: 100%;
    z-index: -8;
}
.article-single-row{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.article-post-daily .article-single-heading{
    color: var(--Black);
}
.article-single-heading{
    color: var(--White);
    font-size: 48px;
    font-weight: 600;
    line-height: 1.1;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.article-single-written{
    display: flex;
    align-items: center;
    justify-content: center;
}
.article-single-written ul{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.article-single-written ul li{
    color: var(--White);
    font-size: 12px;
    font-weight: 600;
    line-height: 1.1;
}
.article-single-written-netty span{
    color: var(--White);
}
.article-single-date{
    text-transform: uppercase;
}
.article-single-img{
    text-align: center;
}
.article-single-img img{
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* Article Single CSS */

/* Article Post Content CSS */

.article-post-content{
    padding: 80px 0;
}
.article-post-content-row{
    display: flex;
    gap: 40px;
}
.article-post-content-row:not(:has(.article-post-right)) {
    display:flex;
    justify-content: center;
}
.article-post-left{
    display: flex;
    flex-direction: column;
    gap: 60px;
    width: calc(100% - 360px);
}

.artcle-post-content-detail h2:first-child{
    color: var(--Black);
    font-family: var(--Titillium);
    font-size: 36px;
    font-weight: 400;
    font-style: italic;
    line-height: 1.2;
}

.article-post-heading{
    color: var(--Black);
    font-size: 36px;
    font-weight: 400;
    line-height: 1.2;
    max-width: 800px;
}
.article-post-key{
    background-color: var(--Black-03);
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
    margin: 45px 0;
}
.article-post-key .article-post-key-box ul li{
    list-style: none;
    margin: 0;
}
.article-post-key-box{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.article-post-info .article-post-key .article-post-key-box-heading{
    color: var(--Black);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 0px;
}
.article-post-key-box ul{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.article-post-key-box ul li{
    border-bottom: 1px solid var(--Black-12);
    color: var(--Black-80);
    font-family: var(--NeueHaas);
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    padding: 0 0 16px;
}
.article-post-key-box ul li:last-child{
    border-bottom: 0;
    padding: 0;
}
.article-post-key-ads-inner{
    background-color: var(--Black-18);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100px;
}
.article-post-key-ads-inner p{
    color: var(--Black);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}
.article-post-info{
    color: var(--Black-80);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.article-post-info h3,
.article-post-info h2{
    color: var(--Black);
    font-family: var(--Titillium);
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin: 0 0 20px;
}
.article-post-info p{
    color: var(--Black-80);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    margin: 0 0 20px;
}
.article-post-info h1,
.article-post-info h3,
.article-post-info h4,
.article-post-info h5,
.article-post-info h6{
    font-family: var(--Titillium);
    font-weight: 400;
    line-height: 1.2;
    color: var(--Black);
}
.article-post-info ul,
.article-post-info ol,
.article-post-info h1,
.article-post-info h3,
.article-post-info h4,
.article-post-info h5,
.article-post-info h6,
.article-post-info a,
.article-post-info strong,
.article-post-info b{
    margin: 0 0 20px;
}
.article-post-info a{
    color: var(--Black);
    text-decoration: underline;
}
.article-post-info strong,
.article-post-info b{
    font-family: var(--NeueHaasBold);
    font-weight: bold;
}
.article-post-info ul li{
    list-style: disc inside;
    margin: 0 0 8px;
}
.article-post-info ol li{
    list-style: auto inside;
    margin: 0 0 8px;
}
.article-post-info ul li:last-child,
.article-post-info ol li:last-child{
    margin: 0;
}

.article-post-info h2:last-child,
.article-post-info p:last-child,
.article-post-info ul:last-child,
.article-post-info ol:last-child,
.article-post-info h1:last-child,
.article-post-info h3:last-child,
.article-post-info h4:last-child,
.article-post-info h5:last-child,
.article-post-info h6:last-child,
.article-post-info a:last-child,
.article-post-info strong:last-child,
.article-post-info b:last-child{
    margin: 0;
}


.article-post-update{
    display: flex;
}
.article-post-update-left{
    background-color: var(--Primary);
    background-image: url(../images/post-update-form-bg.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px;
    width: 50%;
}
.article-update-block-only .article-post-update-left{
    width: 100%;
}
.article-post-update-heading{
    color: var(--Black);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    max-width: 212px;
}
.article-post-update-form .form-group{
    display: flex;
    max-width: 442px;
    width: 100%;
}
.article-post-update-form .form-group input{
    background-color: var(--White);
    border: 0;
    border-radius: 0;
    color: var(--Black);
    font-family: var(--Titillium);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    outline: none;
    height: 48px;
    padding: 8px 20px;
    width: 100%;
}
.article-post-update-form .form-group input::placeholder{
    color: var(--Black);
}
.article-post-form-btn{
    background-color: var(--Black);
    border: none;
    border-radius: 0;
    color: var(--White);
    cursor: pointer;
    font-family: var(--Titillium);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    padding: 12px 20px;
    text-transform: uppercase;
}
.article-post-update-right{
    background-color: var(--Black);
    background-image: url(../images/typewriter-2.png);
    background-repeat: no-repeat;
    background-position: top right;
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 32px;
    width: 50%;
}
.article-update-block-only .article-post-update-right{
    display: none;
}
.article-post-become-heading{
    color: var(--White);
    font-size: 24px;
    font-weight: 600;
    line-height: 1;
    max-width: 212px;
}
.article-post-become-heading span{
    display: block;
}
.article-post-update-right .secondary-btn{
    background-color: var(--Primary);
    color: var(--White);
}
.article-post-update-right .secondary-btn:hover{
    background-color: var(--White);
}
.about-author{
    background-color: var(--Black);
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px;
}
.about-author-left{
    display: flex;
    align-items: center;
    gap: 16px;
    width: 100%;
}
.about-author-left img{
    border-radius: 50%;
    object-fit: cover;
    height: 40px;
    width: 40px;
}
.about-author-info{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.about-author-name{
    color: var(--White);
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.about-author-post{
    color: var(--White);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
}
.about-author-right{
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 0 0 0 auto;
    width: calc(100% - 56px);
}
.about-author-copy p{
    color: var(--White);
    font-family: var(--NeueHaas);
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}
.about-author-btn{
    color: var(--White);
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}
.article-post-right{
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 320px;
    width: 100%;
    position: sticky;
    top: 100px;
    align-self: flex-start;
}
.post-sponsored-spot-inner{
    /* background-color: var(--Black-18); */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    /* min-height: 400px; */
}
.post-sponsored-spot-inner p{
    color: var(--Black);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
}


.article-post-content.article-post-daily{
    padding-top: 40px;
}
.article-post-content-title{
    padding: 0 2px 0 0;
    width: calc(100% - 360px);
}
.article-post-content-title .article-single-heading{
    margin: 0 0 36px 0;
    max-width: 100%;
    text-align: left;
}
.artcle-content-box-img{
    padding: 0 0 60px;
}
.artcle-content-box-img img{
    width: 100%;
}
.article-post-daily .article-post-info p,
.article-post-daily .article-post-info ul,
.article-post-daily .article-post-info ol,
.article-post-daily .article-post-info h1,
.article-post-daily .article-post-info h3,
.article-post-daily .article-post-info h4,
.article-post-daily .article-post-info h5,
.article-post-daily .article-post-info h6,
.article-post-daily .article-post-info a,
.article-post-daily .article-post-info strong,
.article-post-daily .article-post-info b{
    margin: 0 0 20px;
}
.article-post-daily .article-post-info ul li:last-child,
.article-post-daily .article-post-info ol li:last-child{
    margin: 0;
}
.article-post-daily .article-post-info h2:last-child,
.article-post-daily .article-post-info p:last-child,
.article-post-daily .article-post-info ul:last-child,
.article-post-daily .article-post-info ol:last-child,
.article-post-daily .article-post-info h1:last-child,
.article-post-daily .article-post-info h3:last-child,
.article-post-daily .article-post-info h4:last-child,
.article-post-daily .article-post-info h5:last-child,
.article-post-daily .article-post-info h6:last-child,
.article-post-daily .article-post-info a:last-child,
.article-post-daily .article-post-info strong:last-child,
.article-post-daily .article-post-info b:last-child{
    margin: 0;
}


/* Article Post Content CSS */

/* Related Articles CSS */

.related-articles{
    background-color: var(--Black);
    padding: 80px 0;
}
.related-articles-row{
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.related-articles-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}
.related-articles-top .heading{
    color: var(--White);
}
.related-articles-btn-group{
    display: flex;
    align-items: center;
    gap: 8px;
}
.related-articles-prev-btn{
    background-color: transparent;
    border: 1px solid var(--White);
    border-radius: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 32px;
    width: 64px;
}
.related-articles-prev-btn.slick-disabled{
    opacity: 0.35;
}
.related-articles-next-btn{
    background-color: transparent;
    border: 1px solid var(--White);
    border-radius: 32px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    height: 32px;
    width: 64px;
}
.related-articles-next-btn.slick-disabled{
    opacity: 0.35;
}
.related-articles-slider{
    overflow: hidden;
}
.related-articles-slider .slick-list,
.related-articles-slider-daily .slick-list{
    margin: 0 -20px;
}
.related-articles-slider .slick-track,
.related-articles-slider-daily .slick-track{
    display: flex;
}
.related-articles-box{
    padding: 0 20px;
}
.related-articles-box-inner{
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.related-articles-img img{
    height: 180px;
    width: 100%;
}
.related-articles-content{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.related-articles-box-heading{
    color: var(--White);
    font-size: 20px;
    font-weight: 600;
    line-height: 1;
}
.related-articles-read{
    color: var(--White);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.1;
}
.related-articles-btn-mobile{
    display: none;
}

/* Related Articles CSS */


/* CMS Page template */
.cms-section {
    margin: 80px 0;
}
.cms-section .cms-content {
    display: flex;
    flex-direction: column;
    row-gap: 15px;
    line-height:1.5;
}
.cms-section .cms-content ol,
.cms-section .cms-content ul{
    padding-left:30px;
}
.cms-section .cms-content ol li,
.cms-section .cms-content ul li {
  list-style: unset;
}
.cms-section h1.cms-heading-title{
    color: var(--Black);
    font-size: 48px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 40px;
}

/* CMS Page template */

/*========= Article Single Page =========*/


.topbar-center{
    text-align: center;
    width: 100%;
}
.topbar-center p{
    color: var(--White);
    font-size: 14px;
}


.post-pagination {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
}

.post-pagination .page-numbers {
    background: #000000;
    padding: 10px 20px;
    color: #fff;
    line-height: 1;
    height: 38px;
    width: auto;
    font-weight: 700;
    border: 1px solid #000000;
}

.post-pagination  span.page-numbers.current, .post-pagination  .page-numbers:hover {
    background: transparent;
    color: #000;
}



/* 19-02-2024 */
.error404 .main-content {
	margin-top: 0;
	padding: 0;
}

.error404 header.page-header {
	text-align: center;
	padding: 125px 0 50px;
}

.error404 header.page-header h4 {
	font-size: 20px;
	font-weight: 700;
	line-height: 20px;
	letter-spacing: 0em;
	color: var(--Black);
	margin: 0;
}

.error404 header.page-header .page-title {
	font-family: Titillium Web;
	font-size: 48px;
	font-weight: 600;
	line-height: 48px;
	letter-spacing: 0em;
	text-align: center;
	color: var(--Black);
	margin: 24px 0;
	padding: 0;
    text-transform: uppercase;
}
.error404 .banner-bottom {
    margin: 0 auto;
    display: flex;
    justify-content: center;
}
.error404 .banner-bottom .btn {
	font-size: 18px;
	font-weight: 600;
	line-height: 27px;
	letter-spacing: 0em;
	border-radius: 0;
	margin-right: 16px;
}

.error404 .banner-bottom .btn:last-child {
	margin-right: 0;
}

.error404 .recommened-companies-post button.slick-prev.slick-arrow {
	left: calc(100% - 100px);
}

.error404 .recommened-companies-post button {
	left: calc(100% - 50px);
}


@media only screen and (max-width: 1440px){
    /*========= Author Bio Page =========*/

    /* Author Bio */
    .auther-bio .container{
        padding: 0 20px 0 0;
    }
    /* Author Bio */

    /*========= Contact Us Page =========*/

    /* Contact Us */
    .contact-us .container{
        padding: 0 0 0 20px;
    }
    /* Contact Us */

    .error404 .home-blog-left h2 {
		font-size: 46px;
		line-height: 52px;
	}
    .error404 .blog-home-section .home-blog-left p
    {
        font-size: 28px;
        line-height: 32px;
    }
}
@media only screen and (max-width: 1439px){
    /*========= Home Page =========*/

    /* Hero */
    .hero-heading{
        font-size: 46px;
    }
    /* Hero */

    /* Latest News */
    .news-slider-heading{
        font-size: 30px;
    }
    /* Latest News */
}
@media only screen and (max-width: 1365px){
    /*========= Home Page =========*/

    .header-menu ul{
        gap: 30px;
    }

    /* Hero */
    .hero-heading{
        font-size: 42px;
    }
    /* Hero */

    /* Latest News */
    .news-slider-heading{
        font-size: 28px;
    }
    /* Latest News */

    /*========= About Us Page =========*/

    /* About Us */
    .about-us-row{
        gap: 60px;
    }
    .about-us-content{
        gap: 40px;
    }
    .about-us-heading{
        font-size: 32px;
        line-height: 1.1;
    }
    /* About Us */

    /* Sedut */
    .sedut-bottom{
        gap: 60px;
    }
    .sedut-bottom-list{
        gap: 30px;
    }
    .sedut-bottom-box{
        gap: 30px;
    }
    /* Sedut */

    /* Writer Press */
    .writer,
    .press{
        background-size: 50% auto;
    }
    /* Writer Press */

    /* Advertising */
    .statistics-list{
        gap: 60px;
        width: calc(100% - 320px);
    }
    .advertising-top::after {
        width: 320px;
        background-size: 320px auto;
        background-position: right bottom;
    }
    /* Advertising */

    /*========= Advertise Page =========*/

    /* Perspiciatis */
    .perspiciatis-single {
        padding: 0 60px;
    }
    /* Perspiciatis */

    /* Demographics Traffic */
    .demographics-traffic-row {
        gap: 60px;
    }
    /* Demographics Traffic */

    /* Writer Press */
    .work-together .writer{
        background-size: 50% auto;
    }
    /* Writer Press */

    /*========= Author Bio Page =========*/

    /* Author Bio */
    .auther-bio-right{
        padding: 60px 0 60px 60px;
    }
    .auther-artical-slider .slick-list {
        margin: 0 -10px;
    }
    .auther-artical-box {
        padding: 0 10px;
    }
    /* Author Bio */

    /*========= Contact Us Page =========*/

    /* Contact Us */
    .contact-us-heading{
        font-size: 62px;
    }
    /* Contact Us */

    /*========= Article Single Page =========*/

    /* Article Post Content */
    .article-post-update-right {
        background-size: 220px 100%;
    }
    .error404 .home-blog-left h2 {
		font-size: 46px;
		line-height: 56px;
	}
    .error404 .blog-home-section .home-blog-left p {
		font-size: 26px;
		line-height: 30px;
		margin-bottom: 28px;
	}
    /* Article Post Content */
}
@media only screen and (max-width: 1279px){
    /*========= Home Page =========*/

    /* Header */
    .header-menu ul{
        gap: 20px;
    }
    .header-menu ul li.submenu > ul{
        min-width: 170px;
        max-width: 170px;
    }
    .header-menu ul li a,
    .header-menu ul li.submenu > a{
        font-size: 14px;
    }
    /* Header */

    /* Hero */
    .hero{
        margin: -77px 0 0;
    }
    .hero-content{
        padding: 0 0 0 30px;
    }
    .hero-heading{
        font-size: 32px;
    }
    .hero-description{
        font-size: 14px;
    }
    /* Hero */

    /* Latest News */
    .news-slider .slick-list {
        margin: 0 -15px;
    }
    /* .news-slider-box {
        padding: 0 15px;
    } */
    .news-slider-heading{
        font-size: 24px;
    }
    /* Latest News */

    /* Article */
    .article-row{
        gap: 30px;
    }
    .tech-slider .slick-list,
    .marketing-slider .slick-list,
    .creative-slider .slick-list{
        margin: 0 -10px;
    }
    .article-slider-box {
        padding: 0 10px;
    }
    .article-slider-heading{
        font-size: 18px;
    }
    .most-popular{
        padding: 20px;
    }
    .most-popular-icon{
        height: 54px;
        width: 54px;
    }
    .most-popular-single-heading{
        font-size: 18px;
    }
    .most-popular-heading{
        font-size: 28px;
    }
    /* Article */

    /* Subscribe */
    .subscribe-heading{
        font-size: 42px;
    }
    /* Subscribe */

    /* Winners */
    .winners-heading{
        font-size: 42px;
    }
    .winners-info-heading{
        font-size: 18px;
    }
    .winners-btn-group {
        margin: auto 0 0;
    }
    .featured-winners{
        gap: 30px;
    }
    .featured-winners-left {
        width: calc(100% - 350px);
    }
    .netty-awards-box-heading{
        font-size: 42px;
    }
    /* Winners */

    /* Footer */
    .footer-logo-subscribe{
        max-width: 360px;
        padding: 60px 20px 60px 0;
    }
    .footer-right {
        width: calc(100% - 360px);
    }
    .footer-widget-area {
        padding: 60px 0 20px 20px;
        gap: 20px;
    }
    .footer-menu{
        width: 30%;
    }
    .footer-menu ul li a {
        letter-spacing: 0.5px;
    }
    .footer-contact{
        width: 40%;
    }
    /* .footer-email{
        font-size: 14px;
    } */
    .copyright {
        padding: 30px 0 30px 20px;
    }
    .copyright-menu ul{
        gap: 20px;
    }
    /* Footer */

    /*========= About Us Page =========*/

    /* Breadcrumb */
    .breadcrumb-row {
        min-height: 350px;
    }
    .breadcrumb-heading{
        font-size: 66px;
    }
    /* Breadcrumb */

    /* About Us */
    .about-us-row {
        gap: 40px;
    }
    .about-us-heading{
        font-size: 28px;
    }
    .about-us-content {
        gap: 30px;
    }
    .about-us-copy {
        gap: 20px;
    }
    /* About Us */

    /* Journalistic */
    .journalistic-heading{
        font-size: 42px;
    }
    .journalistic-list-inner{
        margin: 0 -10px;
    }
    .journalistic-box {
        margin: 20px 0 0;
        padding: 0 10px;
    }
    .journalistic-box-inner{
        min-height: 400px;
        padding: 20px;
    }
    .journalistic-box-content{
        gap: 26px;
    }
    .journalistic-box-heading{
        font-size: 28px;
    }
    /* Journalistic */
    
    /* Sedut */
    .sedut-row{
        gap: 60px;
    }
    .sedut-heading{
        font-size: 32px;
        max-width: 770px;
    }
    .sedut-bottom {
        gap: 40px;
    }
    .sedut-bottom-list {
        gap: 20px;
    }
    /* Sedut */

    /* Advertising */
    .statistics-list {
        gap: 40px;
        width: calc(100% - 260px);
    }
    .statistics-price{
        font-size: 48px;
    }
    .advertising-top::after {
        width: 260px;
        background-size: 260px auto;
    }
    .advertising-box {
        width: 33.33%;
    }
    .advertising-box-inner{
        padding: 30px;
    }
    /* Advertising */

    /*========= Advertise Page =========*/

    /* Perspiciatis */
    .perspiciatis-single {
        padding: 0 40px;
    }
    .perspiciatis-price {
        font-size: 62px;
    }
    /* Perspiciatis */

    /* Placements */
    .banner-tab-content {
        padding: 40px;
    }
    .placements-main-tabs {
        gap: 30px;
        padding: 30px;
    }
    .banner-main-tabs {
        gap: 30px;
    }
    .banner-wrapper {
        width: calc(100% - 350px);
    }
    /* Placements */

    /* Demographics Traffic */
    .demographics-traffic-row {
        gap: 50px;
    }
    .featured-stats-list,
    .gender-box,
    .location-visitor-single{
        gap: 30px;
        padding: 20px;
    }
    .featured-stats-price{
        font-size: 38px;
    }
    .featured-stats-small-heading{
        font-size: 16px;
        line-height: 20px;
    }
    /* Demographics Traffic */

    /*========= Author Bio Page =========*/

    /* Author Bio */
    .auther-bio-right {
        gap: 30px;
        padding: 40px 0 40px 40px;
        width: calc(100% - 400px);
    }
    .auther-bio-img {
        max-width: 400px;
        width: 100%;
    }
    .auther-artical-slider .slick-list {
        margin: 0 -10px;
    }
    .auther-artical-box {
        padding: 0 10px;
    }
    .auther-bio-content{
        gap: 30px;
        flex-direction: column;
    }
    .auther-bio-copy{
        width: 100%;
    }
    .auther-bio-contact{
        max-width: 100%;
    }
    .auther-bio-title{
        gap: 10px;
    }
    .auther-bio-name{
        font-size: 38px;
    }
    .auther-bio-top{
        gap: 30px;
        padding: 0 0 30px;
    }
    .auther-artical-box-heading{
        font-size: 18px;
    }
    .auther-artical-netty-team{
        font-size: 14px;
    }
    .auther-bio-copy p{
        font-size: 16px;
        line-height: 20px;
    }
    .become-writer-heading{
        font-size: 42px;
    }
    /* Author Bio */

    /*========= Contact Us Page =========*/

    /* Contact Us */
    .contact-us-left{
        gap: 40px;
        padding: 40px 40px 40px 0;
    }
    .contact-us-title{
        gap: 20px;
    }
    .contact-us-heading {
        font-size: 48px;
    }
    .contact-us-form form{
        gap: 10px;
    }
    .contact-us-social{
        flex-direction: column-reverse;
    }
    /* Contact Us */

    /* Press Kit */
    .press-kit-right-inner{
        gap: 16px;
        padding: 30px 0;
    }
    /* Press Kit */

    /*========= Search Results Page =========*/

    /* Search Results */
    .search-results-top{
        gap: 30px;
        margin: 0 0 40px;
    }
    .search-results-heading{
        font-size: 42px;
    }
    .search-results-show{
        margin: 0 0 40px;
    }
    .search-results-list-inner{
        margin: 0 -10px;
    }
    .search-results-box{
        margin: 0 0 40px;
        padding: 0 10px;
    }
    .search-results-box-inner{
        gap: 20px;
    }
    .search-results-box-heading{
        font-size: 26px;
    }
    .search-results-content{
        gap: 12px;
    }
    /* Search Results */

    /*========= Article Single Page =========*/

    /* Article Post Content */
    .article-post-content-row{
        gap: 30px;
    }
    .article-post-left{
        width: calc(100% - 350px);
    }
    .article-post-heading{
        font-size: 32px;
        line-height: 1.1;
    }
    .article-post-update-right {
        background-size: 220px 100%;
    }
    .article-post-key{
        padding: 30px;
    }
    .article-post-update{
        flex-direction: column;
    }
    .article-post-update-left{
        width: 100%;
    }
    .article-post-update-right{
        background-size: auto;
        width: 100%;
    }
    /* Article Post Content */

    /* cms */
    .cms-section h1.cms-heading-title{
        font-size: 42px;
        margin-bottom: 30px;
    }
    /* cms */

    .article-list-row .article-slider-box {
        padding: 0 20px;
    }
    .post-slider-block .news-slider-box {
        padding: 0 15px;
    }
}
@media only screen and (max-width: 1024px){
    /*========= Home Page =========*/

    /* Header */
    .header,
    .header-row{
        min-height: 80px;
    }
    .menu-left,
    .menu-right{
        display: none;
    }
    .toggle-menu{
        display: block;
    }
    .toggle-menu-btn{
        background-color: transparent;
        border: none;
        border-radius: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 6px;
        height: 30px;
        width: 30px;
    }
    .toggle-menu-btn span{
        background-color: var(--Black);
        width: 100%;
        height: 2px;
    }

    /* Header */

    /* Hero */
    .hero {
        margin: -80px 0 0;
    }
    /* Hero */

    .latest-news-row {
        grid-template-columns: 1fr 1fr;
    }
}
@media only screen and (max-width: 991px){
    /*========= Home Page =========*/

    /* Hero */
    .hero{
        /* padding: 120px 0 60px; */
        padding: 80px 0 60px;
    }
    .hero-heading {
        font-size: 28px;
    }
    /* Hero */

    /* Latest News */
    .latest-news {
        padding: 60px 0 0;
    }
    /* Latest News */

    /* Article */
    .article {
        padding: 60px 0;
    }
    .article-row{
        gap: 40px;
        flex-direction: column;
    }
    .article-list{
        gap: 40px;
        width: 100%;
    }
    .article-right{
        width: 100%;
    }
    /* Article */

    /* Subscribe */
    .subscribe-row{
        gap: 40px;
    }
    .subscribe-heading {
        font-size: 36px;
    }
    /* Subscribe */

    /* Winners */
    .winners {
        padding: 60px 0;
    }
    .winners-row{
        gap: 60px;
    }
    .winners-heading {
        font-size: 36px;
    }
    .featured-winners-left {
        width: 100%;
    }
    .netty-awards-box{
        max-width: 100%;
    }
    .featured-winners{
        flex-direction: column;
    }
    /* Winners */

    /* Footer */
    .footer-logo-subscribe {
        max-width: 320px;
    }
    .footer-right {
        width: calc(100% - 320px);
    }
    .footer-widget-area{
        flex-wrap: wrap;
        gap: 20px;
    }
    .footer-menu{
        gap: 16px;
        padding: 0 10px 0 0;
        width: 50%;
    }
    .footer-menu ul{
        gap: 10px;
    }
    .footer-contact{
        gap: 16px;
        margin: 30px 0 0;
        width: 100%;
    }
    .copyright {
        padding: 20px 0 20px 20px;
    }
    .copyright-menu ul {
        gap: 16px;
    }
    .copyright-menu ul li a{
        font-size: 14px;
        letter-spacing: 0;
    }
    /* Footer */

    /*========= About Us Page =========*/

    /* Breadcrumb */
    .breadcrumb-row {
        min-height: 320px;
    }
    .breadcrumb-heading{
        font-size: 62px;
    }
    /* Breadcrumb */

    /* About Us */
    .about-us {
        padding: 60px 0 30px;
    }
    .about-us-row{
        flex-direction: column;
    }
    .about-us-img,
    .about-us-content{
        width: 100%;
    }
    .about-us-img img{
        width: 100%;
    }
    .about-us-text{
        max-width: 100%;
        width: 50%;
    }
    .about-us-text p{
        max-width: 100%;
    }
    /* About Us */

    /* Journalistic */
    .journalistic {
        padding: 30px 0 60px;
    }
    .journalistic-box{
        width: 50%;
    }
    /* Journalistic */

    /* Sedut */
    .sedut {
        padding: 60px 0;
    }
    .sedut-row {
        gap: 40px;
    }
    .sedut-heading {
        font-size: 30px;
        max-width: 720px;
    }
    .sedut-bottom{
        flex-direction: column;
    }
    .sedut-bottom-img,
    .sedut-bottom-list{
        width: 100%;
    }
    .sedut-bottom-img img{
        width: 100%;
    }
    /* Sedut */

    /* Writer Press */
    .writer-inner{
        padding: 60px 20px 60px 0;
    }
    .writer-heading,
    .press-heading{
        font-size: 28px;
    }
    .press-inner{
        padding: 60px 0 60px 20px;
    }
    /* Writer Press */

    /* Advertising */
    .advertising{
        padding: 60px 0 40px;
    }
    .advertising-top{
        gap: 40px;
        padding: 0 0 40px 0;
    }
    .advertising-heading{
        font-size: 42px;
    }
    .statistics-price {
        font-size: 38px;
    }
    .statistics-list {
        width: calc(100% - 160px);
    }
    .advertising-top::after {
        width: 160px;
        background-size: 160px auto;
    }
    .advertising-box {
        width: 50%;
    }
    /* Advertising */

    /*========= Advertise Page =========*/

    /* Perspiciatis */
    .perspiciatis {
        padding: 60px 0 40px;
    }
    .perspiciatis-row{
        gap: 60px;
    }
    .perspiciatis-list{
        padding: 60px 0;
    }
    .perspiciatis-single {
        padding: 0 16px;
    }
    .perspiciatis-price {
        font-size: 48px;
    }
    /* Perspiciatis */

    /* Placements */
    .placements {
        padding: 40px 0;
    }
    .banner-main-tabs{
        flex-direction: column;
    }
    .banner-tab-wrapper{
        gap: 40px;
        max-width: 100%;
    }
    .banner-wrapper{
        width: 100%;
    }
    /* Placements */

    /* Demographics Traffic */
    .demographics-traffic {
        padding: 40px 0 60px;
    }
    .demographics-traffic-row{
        flex-direction: column;
    }
    .demo-traffic-box{
        width: 100%;
    }
    /* Demographics Traffic */

    /*========= Author Bio Page =========*/

    /* Author Bio */
    .auther-bio .container{
        padding: 0;
    }
    .auther-bio-row{
        flex-direction: column;
    }
    .auther-bio-img{
        max-width: 100%;
    }
    .auther-bio-img img{
        width: 100%;
        max-height: 600px;
    }
    .auther-bio-right{
        padding: 40px 20px;
        width: 100%;
    }
    .auther-bio-content{
        flex-direction: unset;
    }
    /* Author Bio */

    /*========= Contact Us Page =========*/

    /* Contact Us */
    .contact-us .container{
        padding: 0;
    }
    .contact-us-row{
        flex-direction: column;
    }
    .contact-us-left{
        padding: 40px 20px;
        width: 100%;
    }
    .contact-social-box{
        max-width: max-content;
        width: 100%;
    }
    .contact-us-right{
        padding: 60px 20px;
        width: 100%;
    }
    .contact-us-right::before,
    .contact-us-right::after{
        height: 50px;
    }
    /* Contact Us */

    /* Press Kit */
    .press-kit-row{
        gap: 30px;
    }
    .press-kit-right-inner{
        gap: 16px;
        padding: 30px 0;
    }
    .press-kit-heading{
        font-size: 28px;
    }
    .press-kit-right p{
        font-size: 16px;
        line-height: 20px;
    }
    /* Press Kit */

    /* Faq */
    .faq{
        padding: 60px 0 40px 0;
    }
    .faq-heading{
        font-size: 42px;
    }
    .faq-title{
        font-size: 18px;
    }
    .faq-boxs{
        padding: 30px;
    }
    .faq-body-inner {
        font-size: 16px;
        line-height: 20px;
        padding: 30px 0 0;
    }
    /* Faq */

    /*========= Search Results Page =========*/

    /* Search Results */
    .search-results-ct{
        padding: 60px 0;
    }
    .search-results-box{
        width: 50%;
    }
    /* Search Results */

    /*========= Article Single Page =========*/

    /* Article Single */
    .article-single-row{
        gap: 30px;
    }
    .article-single-heading {
        font-size: 42px;
        max-width: 700px;
    }
    /* Article Single */

    /* Article Post Content */
    .article-post-content{
        padding: 60px 0;
    }
    .article-post-content-row{
        flex-direction: column;
    }
    .article-post-left{
        gap: 40px;
        width: 100%;
    }
    
    /* .article-post-info p{
        margin: 0 0 40px;
    } */
    .about-author{
        padding: 30px;
    }
    .article-post-right{
        max-width: 100%;
    }
    /* Article Post Content */

    /* Related Articles */
    .related-articles{
        padding: 60px 0;
    }
    /* Related Articles */

    .article-post-content-title {
        width: 100%;
    }

    .error404 header.page-header {
		padding: 50px 0 30px;
	}

	.error404 header.page-header .page-title {
		font-size: 26px;
		line-height: 28px;
		margin: 20px 0;
	}

	.error404 .banner-bottom .btn {
		font-size: 16px;
		line-height: 24px;
		margin-right: 6px;
	}

	.error404 .recommened-companies-post button {
		top: -58px;
	}

	.error404 .recommened-companies-post button.slick-prev.slick-arrow {
		left: calc(100% - 90px);
	}
}
@media only screen and (max-width: 767px){

    /*========= Header =========*/
    .header-logo a img{
        max-height: 40px;
    }
    /*========= End header =========*/

    /*========= Home Page =========*/

    /* Topbar */
    .topbar-left p,
    .topbar-right ul li{
        font-size: 12px;
    }
    .topbar-right ul{
        gap: 16px;
    }
    /* Topbar */

    /* Hero */
    .hero{
        /* padding: 120px 0 0; */
        padding: 80px 0 0;
    }
    .hero-thumb-box-inner{
        flex-direction: column;
        gap: 30px;
    }
    .hero-img{
        width: 100%;
    }
    .hero-content{
        max-width: 100%;
        padding: 0;
        width: 100%;
    }
    .hero-heading {
        font-size: 36px;
    }
    /* Hero */

    /* Latest News */
    .news-slider {
        padding: 0 0 40px 0;
    }
    .latest-news-row {
        grid-template-columns: 1fr;
    }
    .news-slider-btn-group{
        display: none;
    }
    .news-slider-btn-mobile{
        display: flex;
        margin: 0 0 20px;
    }
    .news-title-left{
        justify-content: space-between;
        width: 100%;
    }
    .news-slider-img img{
        height: auto;
    }
    /* Latest News */

    /* Article */
    .artical-title-left{
        justify-content: space-between;
        width: 100%;
    }
    .artical-slider-btn-group{
        display: none;
    }
    .artical-slider-btn-mobile{
        border-bottom: 1px solid var(--Black-12);
        display: flex;
        padding: 0 0 20px;
    }
    .has-large-font-size{
        font-size: 32px !important;
        line-height: 1.3 !important;
    }
    .tech-slider,
    .marketing-slider,
    .creative-slider {
        border-bottom: 0;
        overflow: hidden;
        padding: 0 0 0;
    }
    .article-slider-img img{
        height: 400px;
    }
    .article-list-row .article-slider-img img{
        height: auto;
    }
    /* Article */

    /* Subscribe */
    .subscribe {
        background-position: right bottom;
        background-size: auto 50%;
    }
    .subscribe-row{
        flex-direction: column;
    }
    .subscribe-title{
        max-width: 100%;
    }
    /* Subscribe */

    /* Winners */
    .winners-heading {
        font-size: 32px;
    }
    .winners-slider-img img{
        width: 100%;
    }
    /* Winners */

    /* Footer */
    .footer-row{
        flex-direction: column;
    }
    .footer-logo-subscribe{
        border-right: 0;
        border-bottom: 1px solid var(--Black-12);
        max-width: 100%;
        padding: 40px 0;
    }
    .footer-right{
        width: 100%;
    }
    .footer-widget-area{
        padding: 40px 0;
    }
    .copyright{
        border-top: 1px solid var(--Black-12);
        padding: 20px 0;
    }
    .copyright::after{
        display: none;
    }
    /* Footer */

    /*========= About Us Page =========*/

    /* Breadcrumb */
    .breadcrumb-row {
        min-height: 280px;
    }
    .breadcrumb-heading{
        font-size: 52px;
    }
    /* Breadcrumb */

    /* Journalistic */
    .journalistic-heading {
        font-size: 36px;
    }
    .journalistic-box {
        width: 100%;
    }
    .journalistic-box-inner {
        min-height: 350px;
    }
    .sedut-heading {
        font-size: 28px;
        max-width: 670px;
    }
    /* Journalistic */

    /* Latest News */
    .about-news .news-slider {
        padding: 0 0 40px 0;
    }
    /* Latest News */

    /* Writer Press */
    .writer-press::after{
        display: none;
    }
    .writer-press .container{
        padding: 0;
    }
    .writer-press-row{
        flex-direction: column;
    }
    .writer{
        padding: 0 20px;
        width: 100%;
    }
    .writer-inner{
        padding: 60px 0;
        max-width: 100%;
    }
    .writer-inner p{
        max-width: 400px;
    }
    .press{
        position: relative;
        padding: 0 20px;
        width: 100%;
    }
    .press::after{
        background-color: var(--Primary);
        position: absolute;
        top: 0;
        right: 0;
        content: "";
        height: 100%;
        width: 100%;
        z-index: -9;
    }
    .press-inner{
        padding: 60px 0;
        max-width: 100%;
    }
    .press-inner p{
        max-width: 400px;
    }
    /* Writer Press */

    /* Advertising */
    .advertising-heading {
        font-size: 36px;
    }
    .statistics-list{
        flex-wrap: wrap;
        gap: 0;
        width: 100%;
    }
    .statistics-single{
        padding: 0 16px 0 0;
        width: 25%;
    }
    .statistics-single:last-child{
        padding-right: 0;
    }
    .advertising-top {
        padding: 0 0 40px 0;
    }
    .advertising-top::after {
        display: none;
        /* width: 100px;
        background-size: 100px auto;
        height: 100px;
        top: auto;
        bottom: 0; */
    }
    .advertising-box {
        width: 100%;
    }
    /* Advertising */

    /*========= Advertise Page =========*/

    /* Perspiciatis */
    .perspiciatis-row {
        gap: 40px;
    }
    .perspiciatis-heading{
        font-size: 32px;
    }
    .perspiciatis-list {
        flex-direction: column;
        gap: 40px;
        padding: 40px 0;
    }
    .perspiciatis-single{
        gap: 20px;
    }
    /* Perspiciatis */

    /* Placements */
    .placements-row{
        gap: 40px;
    }
    .placements-title{
        gap: 20px;
    }
    .placements-heading{
        font-size: 42px;
    }
    .placements-main-tabs{
        padding: 20px;
    }
    .banner-tab-content {
        padding: 20px;
    }
    /* Placements */

    /*========= Author Bio Page =========*/

    /* Author Bio */
    .auther-bio-content {
        flex-direction: column;
    }
    /* Author Bio */

    /* Become Writer */
    .become-writer{
        background-position: top right;
        background-size: auto 28%;
    }
    .become-writer-row{
        flex-direction: column-reverse;
    }
    .become-writer-img{
        width: 100%;
    }
    .become-writer-img img{
        max-width: 400px;
        margin: 0 auto;
        width: 100%;
    }
    .become-writer-form{
        padding: 40px 0 0;
        width: 100%;
    }
    /* Become Writer */

    /*========= Contact Us Page =========*/

    /* Contact Us */
    .contact-us-heading {
        font-size: 42px;
    }
    /* Contact Us */

    /* Press Kit */
    .press-kit-row{
        background-image: url(../images/contact-mic-mobile.png);
        background-position: bottom right;
        background-size: 80px auto;
        background-repeat: no-repeat;
        flex-direction: column-reverse;
        padding: 40px 0;
    }
    .press-kit-right{
        width: 100%;
    }
    .press-kit-img{
        width: 100%;
    }
    .press-kit-right-inner{
        padding: 0;
    }
    .press-kit-right-inner p{
        width: calc(100% - 80px);
    }
    .press-kit-img{
        display: none;
    }
    /* Press Kit */

    /* Faq */
    .faq-row{
        gap: 40px;
    }
    .faq-heading {
        font-size: 36px;
    }
    .faq-boxs {
        padding: 20px;
    }
    .faq-body-inner{
        padding: 20px 0 0;
    }
    /* Faq */

    /*========= Search Results Page =========*/

    /* Search Results */
    .search-results-heading {
        font-size: 36px;
    }
    .search-results-box-heading {
        font-size: 24px;
    }
    .search-results-content p{
        font-size: 16px;
        line-height: 20px;
    }
    /* Search Results */

    /*========= Article Single Page =========*/

    /* Article Single */
    .article-single-heading {
        font-size: 36px;
        max-width: 600px;
    }
    /* Article Single */

    /* Article Post Content */
    .article-post-heading {
        font-size: 28px;
    }
    .article-post-key {
        gap: 30px;
        padding: 20px;
    }
    .article-post-key-box{
        gap: 30px;
    }
    .article-post-info h2{
        font-size: 28px;
        line-height: 1.1;
    }
    /* Article Post Content */

    /* Related Articles */
    .related-articles-slider .slick-list {
        margin: 0 -10px;
    }
    .related-articles-box {
        padding: 0 10px;
    }
    /* Related Articles */

    /* cms */
    .cms-section {
        margin: 40px 0 80px;
    }
    .cms-section h1.cms-heading-title{
        font-size: 36px;
        margin-bottom: 20px;
    }
    /* cms */

    .article-list-row{
        margin: 0;
    }
    .article-slider-box-line{
        display: none;
    }
    .article-list-row .article-slider-box {
        border-bottom: 1px solid var(--Black-12);
        padding: 0 20px 40px;
        margin: 0 0 40px;
        width: 100%;
    }
    .article-list-row .article-slider-box:last-child{
        margin: 0;
    }
    .article-slider-box-inner {
        gap: 20px;
    }
    .article-slider-box-btn{
        margin: 0;
    }
    .artcle-content-box-img {
        padding: 0 0 40px;
    }
    .remaing-posts .article-list-row .article-slider-box {
        width: 100%;
    }
    .related-articles-img img{
        height: 400px;
    }
}
@media only screen and (max-width: 575px){
    .heading{
        font-size: 26px;
    }
    /*========= Home Page =========*/

    /* Topbar */
    .topbar-row{
        flex-direction: column;
        gap: 6px;
    }
    /* Topbar */

    /* Header */
    .header-mobile-menu-inner{
        padding: 50px 20px 40px;
    }
    /* Header */

    /* Hero */
    .hero-nav-box-inner{
        padding: 16px;
    }
    .hero-nav {
        gap: 16px;
        padding: 0 46px;
    }
    .hero-nav .slick-prev,
    .hero-nav .slick-next{
        height: 36px;
        width: 36px;
    }
    .hero-nav-img {
        max-width: 70px;
        min-width: 70px;
    }
    .hero-nav-box{
        padding: 0;
    }
    /* Hero */

    /* Article */
    .most-popular-heading {
        font-size: 26px;
    }
    /* Article */

    /* Winners */
    .winners-heading {
        font-size: 28px;
    }
    .featured-winners-heading{
        font-size: 26px;
    }
    .netty-awards-box{
        padding: 20px;
    }
    /* Winners */

    /* Footer */
    .footer-widget-area{
        gap: 30px;
    }
    .footer-menu{
        width: 100%;
    }
    .footer-contact{
        margin: 0;
    }
    .copyright{
        flex-direction: column;
        gap: 4px;
    }
    /* Footer */

    /*========= About Us Page =========*/

    /* Breadcrumb */
    .breadcrumb-row {
        min-height: 220px;
    }
    .breadcrumb-heading{
        font-size: 42px;
    }
    /* Breadcrumb */

    /* About Us */
    .about-us-copy{
        flex-direction: column;
    }
    .about-us-text{
        width: 100%;
    }
    .about-us-text,
    .about-us-text p {
        font-size: 16px;
        line-height: 20px;
    }
    /* About Us */

    /* Journalistic */
    .journalistic-heading {
        font-size: 34px;
    }
    .journalistic-box-heading {
        font-size: 26px;
    }
    .sedut-heading{
        font-size: 26px;
        line-height: 1.1;
    }
    .sedut-bottom-list{
        flex-direction: column;
        gap: 30px;
    }
    .sedut-bottom-box {
        gap: 20px;
    }
    .sedut-bottom-content{
        gap: 10px;
    }
    .journalistic-box-content p{
        font-size: 16px;
        line-height: 20px;
    }
    /* Journalistic */

    /* Sedut */
    .sedut-bottom-content p{
        font-size: 16px;
        line-height: 20px;
    }
    /* Sedut */

    /* Writer Press */
    .writer,
    .press {
        background-size: 150px auto;
    }
    /* Writer Press */

    /* Advertising */
    .advertising-top {
        padding: 0 0 20px 0;
    }
    .statistics-single{
        margin: 0 0 20px;
        width: 50%;
    }
    .advertising-box-inner{
        min-height: 320px;
        padding: 20px;
    }
    .advertising-box-inner p{
        font-size: 16px;
        line-height: 20px;
    }
    /* Advertising */

    /*========= Advertise Page =========*/

    /* Perspiciatis */
    .perspiciatis-heading {
        font-size: 28px;
        line-height: 1.1;
    }
    .perspiciatis-copy p{
        font-size: 16px;
        line-height: 20px;
    }
    /* Perspiciatis */

    /* Placements */
    .placements-title p,
    .banner-box-copy p{
        font-size: 16px;
        line-height: 20px;
    }
    /* Placements */

    /* Demographics Traffic */
    .demo-traffic-title,
    .demo-traffic-left{
        gap: 20px;
    }
    .demo-traffic-icon img {
        max-height: 80px;
    }
    .demo-traffic-heading{
        font-size: 24px;
    }
    .demo-traffic-left p{
        font-size: 16px;
        line-height: 20px;
    }
    .demo-traffic-box{
        gap: 40px;
    }
    .featured-stats-list{
        flex-wrap: wrap;
        gap: 0;
        padding: 20px 20px 0;
    }
    .featured-stats-single{
        align-items: start;
        padding: 0 10px 20px 0;
        width: 50%;
    }
    .featured-stats-price {
        font-size: 32px;
    }
    .featured-stats-small-heading {
        font-size: 14px;
    }
    .location-visitor{
        flex-direction: column;
    }
    .location-visitor-single{
        width: 100%;
    }
    /* Demographics Traffic */

    /* Writer Press */
    .work-together .writer {
        background-size: 150px auto;
    }
    /* Writer Press */

    /*========= Author Bio Page =========*/

    /* Author Bio */
    .auther-bio-img img {
        max-height: 450px;
    }
    .auther-bio-name {
        font-size: 32px;
    }
    /* Author Bio */

    /* Become Writer */
    .become-writer{
        background-position: top right;
        background-size: auto 28%;
    }
    .become-writer-row{
        flex-direction: column-reverse;
    }
    .become-writer-img{
        width: 100%;
    }
    .become-writer-img img{
        max-width: 400px;
        margin: 0 auto;
    }
    .become-writer-form{
        padding: 40px 0 0;
        width: 100%;
    }
    .become-writer-heading {
        font-size: 36px;
    }
    /* Become Writer */

    /*========= Contact Us Page =========*/

    /* Contact Us */
    .contact-us-heading {
        font-size: 36px;
    }
    .contact-us-title p{
        font-size: 16px;
        line-height: 20px;
    }
    .contact-us-form .form-group-row{
        flex-direction: column;
        gap: 0;
    }
    .contact-us-form .form-group-row .form-group{
        width: 100%;
    }
    .contact-social-box{
        flex-direction: column;
        gap: 20px;
        max-width: 100%;
    }
    .contact-us-info{
        flex-direction: column;
        gap: 12px;
        align-items: start;
    }
    .contact-us-info li::after{
        display: none;
    }
    .connect-social li a img{
        width: 24px;
    }
    /* Contact Us */

    /* Press Kit */
    .press-kit-heading {
        font-size: 26px;
    }
    /* Press Kit */

    /* Faq */
    .faq-heading {
        font-size: 34px;
    }
    .faq-boxs {
        padding: 16px;
    }
    .faq-body-inner{
        padding: 16px 0 0;
    }
    /* Faq */

    /*========= Search Results Page =========*/

    /* Search Results */
    .search-results-heading {
        font-size: 32px;
    }
    .search-results-count{
        font-size: 16px;
        line-height: 20px;
    }
    .search-results-box {
        width: 100%;
    }
    .search-results-img img{
        height: auto;
        width: 100%;
    }
    /* Search Results */

    /*========= Article Single Page =========*/

    /* Article Single */
    .article-single-heading {
        font-size: 32px;
    }
    /* Article Single */

    /* Article Post Content */
    .article-post-heading {
        font-size: 26px;
    }
    .article-post-key {
        padding: 16px;
    }
    .article-post-key-box ul li{
        font-size: 16px;
        line-height: 20px;
    }
    .article-post-info p{
        font-size: 18px;
    }
    .has-large-font-size{
        font-size: 30px !important;
        line-height: 1.3 !important;
    }
    .article-post-update-left{
        gap: 20px;
        padding: 20px;
    }
    .article-post-info h3, .article-post-info h2{
        font-size: 28px;
    }
    .article-post-update-heading,
    .article-post-become-heading{
        font-size: 22px;
    }
    .article-post-update-right{
        background-size: 130px 100%;
        gap: 20px;
        padding: 20px;
    }
    .about-author {
        padding: 20px;
    }
    .about-author-right{
        width: 100%;
    }
    .about-author-copy p{
        font-size: 16px;
        line-height: 20px;
    }
    /* Article Post Content */

    /* Related Articles */
    .related-articles-row{
        gap: 30px;
    }
    .related-articles-top .heading{
        font-size: 22px;
    }
    .related-articles-top{
        gap: 20px;
    }
    .related-articles-prev-btn{
        width: 54px;
    }
    .related-articles-next-btn{
        width: 54px;
    }
    .related-articles-img img {
        height: 250px;
    }
    /* Related Articles */

    /* cms */
    .cms-section h1.cms-heading-title{
        font-size: 32px;
    }
    /* cms */
    .article-slider-img img{
        height: 250px;
    }

	.error404 .banner-bottom .btn {
		width: 100%;
		margin: 0 0 10px;
	}
}

.error404 header.page-header.head-404 {
    min-height: calc(100vh - 33px - 80px  - 500px);
}