/* Articles & Interviews All */
.hero-section{
    padding: 120px 0;
}
.site-heading{
    line-height: 112.5%; 
    letter-spacing: -0.8px;
    text-transform: capitalize;
    margin: 0;
}
.hero-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
}
.dropdown {
    position: relative;
}
.dropdown-btn {
    display: flex;
    height: 46px;
    padding: 13px 24px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 13px;
    border: 1px solid #E8EBEC;
    color: #000;
    font-size: 12px;
    font-weight: 500;
    line-height: 17px;
    text-transform: uppercase;
    cursor: pointer;
}
.ai-all .dropdown-btn {
    width: 184px;
}
.dropdown .dropdown-icon {
    transition: all 0.3s;
}
.dropdown.open .dropdown-icon {
    rotate: 180deg;
}
.dropdown-list {
    display: none;
    position: absolute;
    width: 100%;
    padding: 0;
    margin: 0;
    border: 1px solid #E8EBEC;
    z-index: 10000;
    background: #ffffff;
}

.dropdown-list.show {
    display: flex;
    flex-direction: column;
}
.dropdown-list .dropdown-item {
    padding: 10px 20px;
    color: #000;
    font-size: 12px;
    font-weight: 500;
    line-height: 17px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}
.dropdown-list .dropdown-item:hover{
    background: #D82928;
    color: #ffffff;
}
.ads-section.ads-top {
    margin-top: -43px;
}
.ads-section .ads-box {
    display: flex;
    flex-direction: row;
    justify-content: center;
}
.ads-section .ads-box img {
    max-width: 100%;
}
.categories-section {
    margin-top: 85px;
}
.categories-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30.29px 30px ;
}
.categories-list .categories-item {
    width: calc(calc(100% - 120px) / 5);
    border: 1.5px solid rgba(100, 120, 130, 0.30);
    transition: all 0.3s;
    min-height: 280px;;
}
.categories-list .categories-item:hover{
    background: #D82928;
    border-color: #D82928;
}
.categories-list .categories-item a {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 44.9px 42.031px;
}
.categories-list .categories-item .icon{
    height: 54.506px;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.categories-list .categories-item .icon img{
    transition: all 0.3s;
}
.categories-list .categories-item:hover .icon img {
    filter: brightness(0) invert(1);
}
.categories-list .categories-item .name{
    font-family: 'Cardo';
    color: #000;
    font-size: clamp(26px, 1.743vw, 30.122px);
    font-weight: 400;
    line-height: 125%;
    padding: 0;
    margin: 0;
    transition: all 0.3s;
}
.categories-list .categories-item:hover .name{
    color: #ffffff;
}
.articles-section {
    margin-top: 100px;
    margin-bottom: 129px;
}
.articles-section .container {
    max-width: 1708px;
}
.articles-section .articles-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px 0;
}
.articles-list .list-item {
    width: calc(100% / 4);
    
}
.list-item{
    transition: all 0.3s;
}
.list-item:hover {
    background: #FFF;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
}
.list-item a,
.articles-list .list-item a {
    display: flex;
    flex-direction: column;
    gap: 38px;
    padding: 20px;
}
.articles-list .list-item .item-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.list-item .item-image{
    position: relative; 
    overflow: hidden;
}
.articles-list .list-item .item-image:before {
    content: "";
    position: absolute;
    background: #000;
    background-image: url(../images/arrow-up-right.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px;
    width: 62px;
    height: 62px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s;
    opacity: 0;
    visibility: hidden;
}
.articles-list .list-item:hover .item-image:before{
    opacity: 1;
    visibility: visible;
}
.list-item .item-image img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.articles-list .list-item .item-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}
.articles-list .item-content .info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}
.info .date,
.articles-list .item-content .info .date {
    color: #D82928;
    font-size: 14px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 2.1px;
    text-transform: uppercase;
    margin: 0;
}
.info .author,
.articles-list .item-content .info .author {
    color: rgba(117, 117, 117, 0.75);
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}
.item-content .name,
.articles-list .item-content .name {
    margin: 14px 0 0 0 ;
    font-family: 'Cardo';
    color: #000;
    font-size: 24px;
    font-weight: 400;
    line-height: 125%;
}
.articles-section .pagination {
    margin-top: 72px;
}
.ai-all .about-caa {
    margin-top: 150px;
}
@media(max-width: 1360px){
    .categories-list .categories-item a {
        padding: 36px;
    }
}
@media(max-width: 1280px){
    .categories-list .categories-item {
        width: calc(calc(100% - 90px) / 4);
        min-height: 240px;
    }
    .categories-list .categories-item a {
        padding: 30px;
    }
    .articles-list .list-item {
        width: calc(100% / 3);
    }
    
}
@media(max-width: 1024px){
    .hero-section {
        padding: 80px 0;
    }
    .articles-section,
    .ai-all .about-caa{
        margin-top: 80px;
    }
}
@media(max-width: 981px){
    .hero-section {
        padding: 60px 0;
    }

    .categories-section,
    .articles-section,
    .ai-all .about-caa,
    .articles-section .pagination {
        margin-top: 60px !important;
    }
    .categories-list {
        gap: 24px;
    }
    .categories-list .categories-item {
        width: calc(calc(100% - 24px * 2) / 3);
    }
    .articles-list .list-item {
        width: 50%;
    }
    .ads-section.ads-top {
        margin: 0;
    }

}

@media(max-width: 767px){
    .hero-section {
        padding: 40px 0;
    }
    .hero-wrap {
        flex-direction: column;
        gap: 30px;
        align-items: unset;
    }
    .hero-wrap .dropdown {
        margin: 0 0 0 auto;
    }
    .categories-section, 
    .articles-section,
    .articles-section .pagination,
    .ai-all .about-caa {
        margin-top: 40px !important;
    }
    .categories-list .categories-item a {
        padding: 24px;
    }
    .categories-list .categories-item {
        width: calc(calc(100% - 24px) / 2);
    }
    .list-item a,
    .articles-list .list-item a {
        padding: 12px;
        gap: 24px;
    }
    .articles-list .item-content .info {
        gap: 8px 16px;
        flex-wrap: wrap;
    }
    .item-content .name,
    .articles-list .item-content .name {
        font-size: 20px;
    }
    .articles-section .articles-list {
        gap: 24px 0;
    }

}
@media(max-width: 520px){
    .categories-list .categories-item {
        width: calc(100%);
    }
    .articles-list .list-item {
        width: 100%;
    }
}

/* Articles & Interviews Category */

.site-sub-heading{
    color: #D82928;
    font-size: 20px;
    font-weight: 700;
    line-height: 36px; /* 180% */
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 10px 0;
}
.ai-category .hero-section {
    padding: 97px 0 89px;
}
.box-dropdown {
    gap: 20px;
}
.ai-category .box-dropdown{
    margin-bottom: 1px;
}
.ai-category .ads-section.ads-top {
    margin-top: -11px;
}

.articles-interview {
    margin-top: 81px;
    margin-bottom: 80px;
}
.articles-interview .container {
    max-width: 1708px;
}
.articles-interview-wrap {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 19px;
    padding-right: 20px;
}
.articles-interview .articles-main {
    width: calc(974 / 1648 * 100%);
}
.articles-interview .list-item {
    transition: all 0.3s;
    position: relative;
}
.list-item .item-image{
    position: relative;
    transition: all 0.3s;
}
.articles-interview .articles-item .item-image::before,
.articles-interview .articles-main .list-item::before,
.list-item a::before,
.ibss-posts .list-item .item-image::before{
    content: "";
    position: absolute;
    background: #000;
    background-image: url(../images/arrow-up-right.svg);
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.3s;
    background-size: 16px;
    width: 45px;
    height: 45px;
    opacity: 0;
    visibility: hidden;
}
.articles-interview .articles-main .list-item::before{
    bottom: 0;
    right: 0;
}
.articles-interview .articles-item .list-item:hover .item-image::before,
.articles-interview .articles-main .list-item:hover::before, 
.list-item:hover a::before,
.ibss-posts .list-item:hover .item-image::before{
    opacity: 1;
    visibility: visible;
}
.articles-interview .list-item:hover {
    background: #FFF;
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.15);
}
.articles-interview .articles-item {
    width: calc(655 / 1648 * 100%);
}
.articles-interview .list-item a {
    padding: 20px;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
}
.articles-interview .articles-main .item-image {
    width: calc(378 / 934 * 100%);
    position: relative;
    flex-shrink: 0;
    height: max-content;
}
.articles-interview .articles-main .item-image img {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
}

.articles-interview .articles-main .item-content {
    width: calc(516 / 934 * 100%);
    flex-shrink: 0;
}
.articles-interview .articles-main .item-content{
    padding-top: 15px;
}
.articles-interview .articles-main .info {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
}
.articles-interview .articles-main .date {
    color: #D82928;
    font-size: 12px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin: 0;
}
.articles-interview .articles-main .list-item .name {
    color: #000;
    font-family: Cardo;
    font-size: clamp(24px, 1.852vw, 32px);
    font-weight: 400;
    line-height: 125%;
    margin: 0;
    max-width: 95%;
}
.articles-interview .articles-main .desc {
    color: rgba(55, 53, 53, 0.80);
    font-size: 16px;
    font-weight: 400;
    line-height: 145%;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.articles-interview .articles-main .author {
    color: rgba(117, 117, 117, 0.75);
    font-size: 11px;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}
.articles-interview .articles-item a {
    align-items: center;
    gap: 38px;
}
.articles-interview .articles-item .item-image {
    width: 115px;
    flex-shrink: 0;
    position: relative;
}
.articles-interview .articles-item .item-image::before{
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #D82928;
}
.articles-interview .articles-item .item-image img {
    display: block;
    object-fit: cover;
    object-position: center;
    width: 100%;
}
.articles-interview .articles-item .item-content {
    width: calc(100% - 115px);
    display: flex;
    flex-direction: column;
    gap: 13px;
}
.list-item .info {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 26px;
}
.list-item .info > p{
    margin: 0;
}
.articles-interview .articles-item .date {
    color: #D82928;
    font-size: 11px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 1.65px;
    text-transform: uppercase;
}
.min-read-small{
    color: rgba(117, 117, 117, 0.75);
}
.articles-interview .articles-item .min-read-small {
    color: rgba(117, 117, 117, 0.75);
    font-size: 11px;
    font-weight: 400;
    line-height: 140%;
}
.articles-interview .articles-item .author {
    color: rgba(117, 117, 117, 0.75);
    font-size: 11px;
    font-weight: 400;
    line-height: 140%;
}
.list-item .info .name,
.articles-interview .articles-item .item-content .name {
    color: #000;
    font-family: Cardo;
    font-size: clamp(20px, 1.389vw, 24px);
    font-weight: 400;
    line-height: 125%;
    margin: 0;
}

.ai-category .articles-section {
    margin-top: 80px;
    margin-bottom: 100px;

}

@media(max-width: 1360px){
    .articles-interview-wrap{
        padding: 0;
    }
    .list-item .info {
        gap: 20px;
    }
    .articles-interview .articles-item a {
        gap: 30px;
    }
}
@media(max-width: 1280px){
    .articles-interview .articles-item a {
        gap: 24px;
    }
    .list-item .info {
        gap: 8px 16px;
        flex-wrap: wrap;
    }
    
}
@media(max-width: 981px){
    .site-sub-heading{
        font-size: 16px;
    }
    .articles-interview .articles-item a {
        gap: 20px;
    }
    .articles-interview-wrap {
        flex-direction: column;
    }
    .articles-interview .articles-main,
    .articles-interview .articles-item {
        width: 100%;
    }
    .ai-category .hero-section{
        padding: 60px 0;
    }
    .ai-category .articles-section,
    .articles-interview{
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }
    .ai-category .ads-section.ads-top {
        margin-top: 0;
    }
    
    

}
@media(max-width: 767px){
    .ai-category .hero-section{
        padding: 40px 0;
    }
    .articles-interview .list-item a {
       padding: 12px;
    }
    .ai-category .articles-section,
    .articles-interview{
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }
    .ai-category .box-dropdown {
        justify-content: flex-end;
    }
    .ai-category .box-dropdown .dropdown {
        margin: 0;
    }

}
@media(max-width: 520px){
    .articles-interview .list-item a {
        flex-direction: column;
    }
    .articles-interview .articles-main .item-image,
    .articles-interview .articles-main .item-content,
    .articles-interview .articles-item .item-image,
    .articles-interview .articles-item .item-content{
        width: 100%;
    }


}

/* IBSS Surveys Page */
.ibss-surveys .hero-section {
    padding: 88px 0 0;
}
.ibss-surveys .hero-wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: 30px;
}
.ibss-surveys .heading-content {
    max-width: calc(1211 / 1628 * 100%);
}
.ibss-surveys .heading-content .site-desc {
    margin: 35px 0 0 0;
}
.ibss-surveys .box-dropdown {
    margin: 5px 22px 0 0;
}
.overall-survey {
    margin: 124px 0 100px;
}
.overall-survey-list {
    gap: 40px;
}
.overall-survey-list .list-item  {
    width: calc(calc(100% - 40px) / 2);
    background: #F3F4F5;
    position: relative;
    box-shadow: none;
}
.overall-survey-list .list-item a:before {
    opacity: 1;
    visibility: visible;
    right: 0;
    bottom: 0;
}
.overall-survey-list .list-item a {
    padding: 64px 84px;
    display: flex;
    flex-direction: column;
    gap: 0;
}
.overall-survey-list .list-item:hover a:before{
    background-color: #D82928;
}
.overall-survey-list .list-item .q-market {
    color: #000;
    font-family: Cardo;
    font-size: clamp(32px, 2.778vw, 48px);
    font-weight: 400;
    line-height: 118%;
    letter-spacing: -0.48px;
    text-transform: capitalize;
    margin: 0;
}
.overall-survey-list .list-item .item-content {
    margin-top: 41px;
}
.overall-survey-list .list-item .q-market span {
    color: #D82928;
}
.overall-survey-list .list-item .info {
    display: flex;
    flex-direction: row;
    gap: 25px;
}
.overall-survey-list .list-item .info .date {
    font-size: 14px;
    letter-spacing: 2.1px;
}
.overall-survey-list .list-item .info .min-read-small,
.overall-survey-list .list-item .info .author {
    font-size: 12px;
}
.overall-survey-list .list-item .name {
    margin: 12px 0;
    color: #000;
    font-family: Cardo;
    font-size: clamp(24px, 1.852vw, 32px);
    font-weight: 400;
    line-height: 125%;
}
.ibss-posts {
    margin: 100px 0 126px;
}
.ibss-posts .min-read{
    padding: 10px 18px 10px 20px;
}
.ibss-posts .container {
    max-width: 1708px;
}
.ibss-posts .ibss-lists {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 40px 0;
}
.ibss-posts .ibss-lists .list-item{
    width: calc(100% / 4);
}
.ibss-posts .pagination {
    margin-top: 67px;
}
.ibss-surveys .about-caa {
    margin-top: 124px;
}
.ibss-posts .list-item .item-image::before{
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #D82928;
}
.ibss-single .articles-latest {
    margin-top: 84px;
    margin-bottom: 73px;
}

@media(max-width: 1280px){
    .ibss-posts .ibss-lists .list-item {
        width: calc(100% / 3);
    }
    .overall-survey-list .list-item a {
        padding: 50px 40px;
    }
    .overall-survey-list .list-item .info{
        gap: 16px;
    }
    .overall-survey {
        margin: 100px 0;
    }
    
}
@media(max-width: 981px){
    .ibss-posts .ibss-lists .list-item {
        width: calc(100% / 2);
    }
    .overall-survey-list .list-item .item-content{
        margin-top: 32px;
    }
    .overall-survey,
    .ibss-posts {
        margin-top: 80px !important;
        margin-bottom: 80px !important;
    }
    .ibss-posts .pagination {
        margin-top: 60px !important;
    }
    .ibss-surveys .about-caa {
        margin-top: 30;
    }
}
@media(max-width: 880px){
    .ibss-posts .ibss-lists .list-item {
        width: calc(100% / 2);
    }
    .overall-survey-list .list-item a {
        padding: 40px !important;
    }
    .overall-survey-list {
        gap: 32px;
        flex-direction: column;
    }
    .overall-survey-list .list-item {
        width: 100%;
    }
    .overall-survey,
    .ibss-posts {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }
    .overall-survey-list .list-item .info {
        gap: 8px 16px;
        flex-direction: row;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    
    
}
@media(max-width: 767px){
    .ibss-posts .ibss-lists{
        gap: 24px 0;
    }
    .ibss-surveys .hero-wrap {
        flex-direction: column;
    }
    .ibss-surveys .heading-content{
        max-width: 100%;
    }
    .overall-survey,
    .ibss-posts {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }
    .ibss-posts .pagination {
        margin-top: 40px !important;
    }
    .ibss-surveys .about-caa {
        margin-top: 0 !important;
    }
    .overall-survey-list .list-item a {
        padding: 50px 30px;
    }

}
@media(max-width: 520px){
    .ibss-posts .ibss-lists .list-item {
        width: 100%;
    }
}

/* IBSS Surveys - Single */
.ibss-single .hero-section {
    padding: 75px 0 0;
}
.hero-section .top-content {
    flex-direction: row;
    align-items: center;
    gap: 73px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.top-content .site-sub-heading {
    margin: 0;
}
.top-content .list-categories {
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 20px;
}
.top-content .list-categories .item {
    display: inline-flex;
    padding: 10px 15px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: rgba(232, 235, 236, 0.65);
    color: #000;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    text-transform: uppercase;
}
.ibss-single .site-heading {
    line-height: 1;
    max-width: calc(1113 / 1628 * 100%);
}
.ibss-content-wrap .ibss-content {
    padding-top: 40px;
    flex-direction: column;
    gap: 40px;
}
.ibss-content .author {
    color: rgba(117, 117, 117, 0.75);
    font-size: 16px;
    font-weight: 400;
    line-height: 140%;
}
.ibss-content .author .author-name {
    font-weight: 700;
}
.ibss-single .sidebar-single{
    margin-top: -9.317vw;
}
.ibss-single-content .inner-single {
    padding: 0;
    border: none;
}
.content-body p {
    color: rgba(55, 53, 53, 0.80);
    font-family: Roboto;
    font-size: 20px;
    font-weight: 400;
    line-height: 145%;
    margin: 0 0 18px 0;
}
.content-body a{
    color: #D82928;
    font-size: inherit;
    line-height: inherit;
    font-weight: 700;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
}
.content-body img.aligncenter{
    display: block;
    margin: 65px 20px ;
}
.content-body p:last-child,
.content-body img:last-child{
    margin-bottom: 0;
}
.content-navigation {
    flex-direction: row;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: nowrap;
    margin-top: 25px;
}
.content-navigation .navigation-btn {
    width: 50%;
    background: rgba(232, 235, 236, 0.50);
}
.navigation-btn a{
    height: 100%;
}
.navigation-btn.next a {
    flex-direction: row-reverse;
    text-align: right;
}
.content-navigation .icon {
    width: 82px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #E8EBEC;
    flex-shrink: 0;
    transition: all 0.3s;
}
.content-navigation .navigation-btn:hover .icon{
    background: #D82928;
}
.content-navigation .navigation-btn .icon path{
    transition: all 0.3s;
}
.content-navigation .navigation-btn:hover .icon path{
    fill: #ffffff;
}
.content-navigation .content{
    padding: 23.5px 40px;
}
.content-navigation .content .text {
    margin: 0 0 8px 0;
    color: #D82928;
    font-size: 12px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}
.content-navigation .content .name {
    color: #000;
    font-size: 20px;
    font-weight: 400;
    line-height: 145%;
    margin: 0;
}
.single-thumbnail img {
    display: block;
    margin: 0 auto;
    width: 100%;
}
.articles-latest-top {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    padding: 0 20px;
    margin-bottom: 45px;
}
.articles-latest-top .site-title{
    color: #000;
    font-family: "Cardo", serif;
    font-size: clamp(48px, 4.167vw, 72px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.72px;
    text-transform: capitalize;
    margin: 0;
}
.articles-latest .articles-interview-wrap {
    align-items: center;
}
.advertise-wrap {
    flex-direction: row;
    align-items: stretch;
}
.advertise-section .advertise-left {
    width: calc(834 / 1628 * 100%);
}
.advertise-section .advertise-left img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}
.advertise-section {
    margin-bottom: 74px;
}
.advertise-section .advertise-right {
    width: calc(794 / 1628 * 100%);
    padding: 64px 50px;
    background: #D01F26;
}
.advertise-section .advertise-right .title {
    color: #FFF;
    font-size: 20px;
    font-weight: 700;
    line-height: 140%;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0;
}
.advertise-section .advertise-right .content {
    color: #FFF;
    font-size: 20px;
    font-weight: 400;
    line-height: 145%;
    margin: 20px 0 0 0;
}
.advertise-section .btn-ev {
    margin-top: 25px;
}
.advertise-section .btn-ev a{
    color: #ffffff;
}
.advertise-section .btn-ev a .btn-ev_icon,
.advertise-section .btn-ev a::after {
    background: #000000;
}

@media(min-width: 1740px){
    .ibss-single .sidebar-single {
        margin-top: -161px;
    }
}
@media(max-width: 1200px){
    
    .content-navigation .content {
        padding: 20px;
    }
    .articles-latest-top{
        padding: 0;
    }
    .content-navigation .icon {
        width: 60px;
    }
    .content-navigation{
        gap: 32px;
        margin-top: 0;
    }
    .content-navigation .content .name {
        font-size: 18px;
    }
}
@media(max-width: 981px){
    .content-navigation{
        flex-direction: column;
    }
    .content-navigation .navigation-btn{
        width: 100%;
    }
    .hero-section .top-content {
        gap: 40px;
    }
    .ibss-single .sidebar-single{
        margin-top: 40px;
    }
    .ibss-single .site-heading {
        max-width: 100%;
    }
    .advertise-section {
        margin-bottom: 60px !important;
    }
    .ibss-single .hero-section{
        padding: 60px 0 0;
    }
    .content-body p {
        font-size: 18px;
    }
    .advertise-section .advertise-right .title,
    .advertise-section .advertise-right .content {
        font-size: 18px;
    }
    .advertise-section .advertise-left,
    .advertise-section .advertise-right{
        width: 50%;
    }
    .advertise-section .advertise-right{
        padding: 40px;
    }
}
@media(max-width: 767px){
    .articles-latest-top{
        margin-bottom: 30px;
    }
    .ibss-single .sidebar-single{
        margin-top: 0;
    }
    .hero-section .top-content {
        gap: 20px;
    }
    .content-navigation{
        flex-direction: row;
        gap: 20px;
    }
    .content-navigation .content .name {
        font-size: 16px;
    }
    .advertise-section {
        margin-bottom: 40px !important;
    }
    .advertise-wrap {
        flex-direction: column;
    }
    .advertise-section .advertise-left,
    .advertise-section .advertise-right{
        width: 100%;
    }
    
    .advertise-section .advertise-right .title,
    .advertise-section .advertise-right .content {
        font-size: 16px;
    }
}

@media(max-width: 520px){
    .content-navigation {
        flex-direction: column;
    }
    .advertise-section .advertise-right {
        padding: 40px 20px;
    }
}

/* popup */
html.pum-open.pum-open-overlay.pum-open-scrollable body>:not([aria-modal=true]){
	padding: 0 !important;
}
#popmake-71011 {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    margin: 0 !important;
	width: 85%
}
#popmake-71011 .popmake-title {
    letter-spacing: -0.657px;
    font-size: clamp(36px, 4.345vw, 65.573px);
    line-height: 1;
	margin-bottom: 16px;
}
#popmake-71011 .pum-content p {
    color: rgba(255, 255, 255, 0.80);
    text-align: center;
    font-family: inherit;
    font-size: clamp(18px, 1.587vw, 24px);
    font-weight: 400;
    line-height: 145%;
}
#popmake-71011 .pum-content p:not(:last-child) {
    margin-bottom: 16px;
}
#popmake-71011 .pum-close {
    color: transparent;
    font-size: 0;
}
#popmake-71011 .pum-close:before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    background: url(/wp-content/uploads/2025/06/close-popup.svg);
    background-size: 13px;
    background-position: center;
    background-repeat: no-repeat;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
@media(max-width: 981px){
	#popmake-71011 {
		padding: 50px;
	}
}
@media(max-width: 767px){
	#popmake-71011 {
		padding: 40px;
	}
	#popmake-71011 .pum-close {
		width: 35px;
		height: 35px;
	}
}
@media(max-width: 375px){
	#popmake-71011 {
		padding: 40px 20px;
	}
	#popmake-71011 .pum-close {
		width: 30px;
		height: 30px;
	}
}