#wpadminbar{
    display:none!important;
}


.post-type-archive, .category, .single{
    --background: #F2F1ED;
    color:#000000;
    --accent: #22E243;
    --accent-text: #22E243;
    --gray-text: #86868B;
    --primary: #000;
    font-family: 'Nunito';
    --navbar-new-bg-color: #F6F6F6;
}

.justify-center {
    justify-content: center;
}
.items-center {
    align-items: center;
}
.flex {
    display: flex;
}
.flex-wrap{
    flex-wrap:wrap;
}

@media (max-width: 970px) {
    .md\:flex-wrap {
        flex-wrap:wrap;
    }
}

.flex-col-50{
    width:50%;
}
@media(max-width:1024px){
    .flex-col-50{
        width:100%;
    }
}
.z-10 {
    z-index: 10;
}
.inset-0 {
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
}

.absolute {
    position: absolute;
}

.blog-posts-loading {
    background-color: rgb(242 241 237 / 70%);
}

.sr-only{
    display:none;
}

.blog-posts-loading  svg{
    width:40px;
    height:40px;
}

.animate-spin {
    animation: spin 1s linear infinite;
}



@media only screen and (min-width: 1366px){
    .wrapper--in-container{
        max-width:1312px;
    }
}

.navbar-new__mid::after{
    background-color: #f6f6f6 !important;
    opacity: 1 !important;
}


@media only screen and (max-width: 768px){
    .archive .site-content {
        margin-top: 100px !important;
    }
}

.navbar-new__bot-mobile{
   /* display:none!important;*/
}
#navbar-new__bot-mobile {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

#navbar-new__bot-mobile.hidden {
  transform: translateY(-200%);
  display:none;
  opacity: 0;
  pointer-events: none;
}

.breadcrumbs{
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-transform: uppercase;
    display: flex;
    gap: 10px;
    margin-top: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.breadcrumbs .breadcrumbs {
    margin: 0 !important;
    padding: 0 !important;
}
@media only screen and (max-width: 1200px){
    .breadcrumbs{
        margin-top: 10px;
    }
}
@media only screen and (max-width: 768px){
    .breadcrumbs{
        margin-bottom: 10px;
    }
}
@media only screen and (max-width: 768px){
    .archive .breadcrumbs{
        margin-top: 50px;
    }
}
.breadcrumbs a {
    color: var(--accent-text);
    text-decoration: underline;
    text-decoration-style: solid;
    transition: .2s all ease-in-out;
}
.breadcrumbs a:hover {
  color: var(--primary);
}

.main-posts {
    display: grid;
    gap: 3rem;
    grid-template-columns: 1fr;
    margin-bottom:30px;
}
@media (min-width: 768px) {
  .main-posts {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
    margin-bottom:30px;
  }
}

.post.featured{
    grid-column: 1 / -1;
    width: 100%;
    margin-bottom: 50px;
}
@media (min-width: 768px) {
    .main-posts .post.featured {
        grid-column: 1 / -1;
  }
}
@media (max-width: 768px) {
    .main-posts .post.featured {
        margin-bottom: 0px;
  }
}

.post.half{
    width: 100%;
}
@media (max-width: 768px) {
    .post.half{
        flex-direction: column;
        display: flex;
    }
}
@media (min-width: 768px) {

  .main-posts .half:nth-of-type(2),
  .main-posts .half:nth-of-type(3) {
    grid-column: span 1;
  }
}

@media(max-width:768px){
    .post.half>a:nth-child(1){
        order:1;
    }
    .post.half>a:nth-child(2){
        order:0;
    }
    .post.half>a:nth-child(3){
        order:2;
    }
    .post.half>a:nth-child(4){
        order:3;
    }
}


.archive-title h2{
    margin:20px 0;
    font-weight: 800;
    font-size: 60px;
    line-height: 76px;
}
@media (max-width: 768px) {
    .archive-title h2{
        font-weight: 800;
        font-size: 36px;
        line-height: 42.75px;
    }
}


.post img{
    width:100%;
    border-radius:16px;
    aspect-ratio:640/416;
    object-fit: cover;
}
@media (max-width: 768px) {
    .post img{
        aspect-ratio:352/150;
    }
}


.post.featured img{
    width:100%;
    border-radius:16px;
    aspect-ratio:1312/560;
    object-fit: cover;
}
@media (max-width: 768px) {
    .post.featured img{
        aspect-ratio:352/150;
    }
}

.post-details{
    color: #86868B;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    margin:20px 0;
    display:flex;
    gap:10px;
}
@media (max-width: 768px) {
    .post-details{
        font-size: 12px;
        margin:12px 0;
    }
}

.single-blog .bsf-rt-display-postfix,.single-blog .bsf-rt-display-time, .single-blog .post-info__date{
    color: #86868B;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
}
@media (max-width: 768px) {
    .single-blog .bsf-rt-display-postfix, .single-blog .bsf-rt-display-time, .single-blog .post-info__date{
        font-size: 12px;
    }
}

.post-excerpt{
    display:block;
    margin: 10px 0;
}
@media (max-width: 768px) {
    .post-excerpt{
        margin: 10px 0 5px 0;
    }
}
.main-posts .post-excerpt, .main-posts .post-excerpt p, .posts-grid .post-excerpt, .posts-grid .post-excerpt p{
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
}
@media (max-width: 768px) {
    .main-posts .post-excerpt, .main-posts .post-excerpt p, .posts-grid .post-excerpt, .posts-grid .post-excerpt p{
        font-size: 16px;
        line-height: 24px;
    }
}


.post-read-more{
    font-weight: 800;
    font-size: 24px;
    line-height: 120%;
    text-transform: uppercase;
    text-decoration: underline;
    text-decoration-style: solid;
    color: var(--accent-text);

}
@media (max-width: 768px) {
    .post-read-more{
        font-size: 16px;
    }
}


.second-post-title{
    font-weight: 800;
    font-size: 38px;
    line-height: 120%;
    margin-top:14px;
    margin-bottom:10px;
    transition: .2s all ease-in-out;
}
.main-posts .post:hover .second-post-title {
  text-decoration: underline;
}
@media (max-width: 768px) {
    .second-post-title{
        font-size: 24px;
    }
}



.categories-filter{

}

.archive-main .archive-nav::-webkit-scrollbar {
  display: none;
}

.archive-main .archive-nav {
    overflow-x: hidden;
    -ms-overflow-style: none;  /* IE i Edge */
    scrollbar-width: none;     /* Firefox */
    margin:0;
    align-items: flex-start;
    padding:0;
    max-width:100%!important;
}
.archive-main .archive-nav.right {
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 1) 0, rgba(0, 0, 0, 1) calc(100% - 40px), rgba(0, 0, 0, 0) 100%);
}
.archive-main .archive-nav.left {
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40px, rgba(0, 0, 0, 1) 100%);
}
.archive-main .archive-nav.left.right {
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 40px, rgba(0, 0, 0, 1) calc(100% - 40px), rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 768px) {
  .archive-main .archive-nav {
    overflow: auto;
  }
}


.archive-nav ul#blog-nav{
    border:none;
    display:flex;
    gap:10px;
    align-items: flex-start;
    margin:40px 0 30px 0;
}
@media(max-width:768px){
    .archive-nav ul#blog-nav{
        margin: 10px 0;
    }
}



.archive-nav ul#blog-nav li{
    background-color:#F6F6F6;
    border-radius:100px;
    gap: 16px;
    padding: 0;
    transition: .2s all ease-in-out;
}
/*
.archive-nav ul#blog-nav  li.menu-item.more-toggle{
    display: block;
    position: absolute;
    right: 0;
    top: calc(50% - 20px);
    z-index: 10;
    background-color: #f2f1ed;
}*/

.archive-main .archive-nav ul .menu-item a,
.archive-nav li a{
    font-weight: 700;
    font-size: 18px;
    leading-trim: Cap height;
    line-height: 120%;
    letter-spacing: 0.01em;
    color: #86868B;
    padding-top: 16px;
    padding-right: 35px;
    padding-bottom: 16px;
    padding-left: 35px;
    transition: .2s all ease-in-out;
}

.archive-nav ul#blog-nav li:hover,
.archive-nav ul#blog-nav li.current,
.archive-nav ul#blog-nav li.blogAllMenuItem {
    background:var(--accent);
}

.archive-main.blogAllView .archive-nav ul .blogAllMenuItem a {
    color: #86868B !important;
}

.archive-main.blogAllView .archive-nav ul li:hover a,
.archive-main.blogAllView .archive-nav ul .current a,
.archive-main.blogAllView .archive-nav ul .blogAllMenuItem a {
    color:#000000!important;
}

.archive-main.blogAllView .archive-nav ul .blogAllMenuItem{
    box-shadow:none!important;
}

.extend-cover{
    background: linear-gradient(90deg, rgba(242, 241, 237, 0) 0%, #F2F1ED 85.6%);
    width: 20%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
}

.relative{
    position:relative;
}

.posts-grid{
    display:grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap:7rem 3rem;
    margin-bottom: 80px;
}

@media(max-width:1024px){
    .posts-grid{
        display:grid;
        grid-template-columns: 1fr 1fr ;
        margin-bottom: 60px;
    }
}

@media(max-width:768px){
    .posts-grid{
        display:grid;
        grid-template-columns: 1fr ;
        margin-bottom: 40px;
        gap:3rem 3rem;
    }
}

.blog-post{
    flex-direction: column;
    display: flex;
}
@media(max-width:768px){
    .blog-post>a:nth-child(1){
        order:2;
    }
}
@media(max-width:768px){
    .blog-post>a:nth-child(2){
        order:1;
    }
}

@media(max-width:768px){
    .blog-post>a:nth-child(3){
        order:3;
    }
}
@media(max-width:768px){
    .blog-post>a:nth-child(4){
        order:4;
    }
}

.posts-grid .post-title{
    font-weight: 800;
    font-size: 28px;
    line-height: 120%;
    margin:15px 0 10px;
}
.posts-grid .post:hover .post-title {
  text-decoration: underline;
}
@media(max-width:768px){
    .posts-grid .post-title{
        font-size: 24px;
    }
}

.posts-grid .post-excerpt{
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
}
@media(max-width:768px){
    .posts-grid .post-excerpt{
        font-size: 16px;
        line-height: 120%;
    }
}


/* pagination styles */
.archive-main .pagination{
    gap:40px;
    margin-top:90px;
}
@media(max-width:768px){
    .archive-main .pagination{
        gap: 0;
        justify-content: space-evenly;
        margin-top:40px;
        margin-bottom:60px;
    }
}
.pagination .page-numbers{
    font-weight: 600;
    font-size: 24px;
    line-height: 100%;
    transition: .2s all ease-in-out;
}
.pagination .page-numbers:hover {
  color: var(--primary);
}
@media(max-width:768px){
    .pagination .page-numbers{
        font-size: 16px;
    }
}

.pagination .page-numbers{
    color: var(--gray-text);
}

.pagination .page-numbers.current{
    color: var(--accent-text)!important;
    text-decoration:underline;
}

.prev.page-numbers{
    margin-right: 50px;
}
@media(max-width:768px){
    .prev.page-numbers{
       margin-right: 0;
    }
}
.prev-arrow {
    background-color: var(--accent);
    padding: 14px 14px 14px 11px;
    width: 48px;
    height: 48px;
    box-sizing: border-box;
    border-radius: 100px;
    vertical-align: top;
    transition: .2s all ease-in-out;
}
.prev-arrow path {
    stroke: #000;
    transition: .2s all ease-in-out;
}
.prev-arrow:hover {
    background-color: var(--primary);
}
.prev-arrow:hover path {
    stroke: #FFF;
}

.next.page-numbers{
    margin-left: 50px;
}
@media(max-width:768px){
    .next.page-numbers{
       margin-left: 0;
    }
}

.next-arrow {
    background-color: var(--accent);
    padding: 14px 11px 14px 14px;
    width: 48px;
    height: 48px;
    box-sizing: border-box;
    border-radius: 100px;
    vertical-align: top;
    transition: .2s all ease-in-out;
}
.next-arrow path {
    stroke: #000;
    transition: .2s all ease-in-out;
}
.next-arrow:hover {
    background-color: var(--primary);
}
.next-arrow:hover path {
    stroke: #FFF;
}


/* newsetter section START */
.newsletter-module{
    /*border-top: 1px solid var(--line);*/
    margin-top:100px;
}
@media(max-width:768px){
    .newsletter-module{
        margin-top:0;
    }
}

.newsletter-module .wrapper--in-container{
    gap:40px;
}

.newsletter-left-logo{
    display:flex;
    gap:50px;
    padding-top:40px;
}

.newsletter-module h2{
    font-weight: 700;
    font-size: 18px;
    line-height: 140%;
    margin-bottom: 18px!important;
}

.contact-form-newsletter {
    width: 100%;
    max-width: 100%!important;
    display: flex;
    justify-content: flex-start;
}
@media only screen and (max-width: 768px) {
    .contact-form-newsletter,.contact-form-newsletter>div {
        width:100%;
    }
}

@media only screen and (max-width: 768px) {
    .contact-form-newsletter .wpcf7-form-control-wrap, .contact-form-newsletter .email-input{
        width:100%;
        max-width: 100%;
        position:relative;
    }
}

.newsletter .newsletter-module .module-wrapper .contact-form-newsletter .wpcf7 .wpcf7-form .email-input p{
    justify-content: flex-start;
}

@media only screen and (min-width: 768px) {
    .newsletter .newsletter-module .module-wrapper .contact-form-newsletter .wpcf7 .wpcf7-form .email-input p .wpcf7-form-control-wrap input {
        max-width: 500px;
    }
}

.email-input{
    /* margin-bottom: 6px; */
    background-color: inherit;
}

.newsletter .newsletter-module .module-wrapper .contact-form-newsletter .wpcf7 .wpcf7-form .wpcf7-acceptance .wpcf7-list-item label>input[type="checkbox"]:not(:checked){
    background-color: inherit;
}

.newsletter .wpcf7-list-item {
    margin: 0 0 0 0;
}

.newsletter-submit{
    display:none;
}

.contact-form-newsletter{
    padding:0 0 0!important;
}

.newsletter-submit-lb {

}
@media(max-width:768px){
    .newsletter-submit-lb {
        position: absolute;
        right: 0;
    }
}


.newsletter label br{
    display:none;
}

.newsletter-submit-lb svg{
    background-color: #222;
    border-radius: 200px;
    color: #fff;
    cursor: pointer;
    font-weight: 700;
    height: 60px;
    width: 60px;
    margin-top: 14px;
    outline: none;
    padding: 11px 22px;
    z-index: 7;
    position:relative;
    margin-left: -30px;
    margin-top: inherit;
}


/* newsetter section END */


.footerWidgets{
    border:none;
}

/* card archive style START */
.blog-cards-section{
    gap:30px;
    border-top: 1px solid #86868B;
    padding-top:130px;
    padding-bottom:50px;
}
@media(max-width:768px){
    .blog-cards-section{
        flex-direction:column;
        margin-left:20px;
        margin-right:20px;
        padding-left:0;
        padding-right:0;
        width:calc(100% - 40px);
    }
}
.blog-card-container{
    width:100%;
    position:relative;
    border-radius:16px;
    color:#ffffff;
    border-radius:16px;
    overflow: hidden;
    padding: 46px;
}
@media(max-width:768px){
    .blog-card-container{
        padding: 38px 34px;
    }
}
.blog-card-cover{
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0;
    border: 1px solid;
    border-image-source: linear-gradient(177.71deg, #727272 1.89%, rgba(0, 0, 0, 0) 97.72%);
    opacity: 0.5;
    background-position: center;
    background-size: cover;

}
.blog-card-title{
    font-weight: 800;
    font-size: 48px;
    line-height: 120%;
    position:relative;
    color: #fff;
    margin-bottoM: 10px;
}
@media(max-width:768px){
    .blog-card-title{
        font-size: 30px;
    }
}
.blog-card-subtitle{
    position:relative;
    margin-bottom: 18px;
}
.blog-card-subtitle, .blog-card-subtitle p{
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    color: #fff;
}
@media(max-width:768px){
    .blog-card-subtitle, .blog-card-subtitle p{
        font-size: 18px;
    }
}
.blog-card-button{
    font-weight: 700;
    font-size: 32px;
    line-height: 140%;
    color:#22E243;
    position:relative;
}
@media(max-width:768px){
    .blog-card-button{
        font-size: 16px;
    }
}

.blog-card-button:hover{
    text-decoration:underline;
}
/* card archive style END */


/* blog category page START */
.archive-main .archive-category-name{
    text-align: left;
    font-weight: 800;
    font-size: 48px;
    line-height: 120%;
    margin-bottom: 20px;
    padding-bottom: 10px;
    width: auto;
    display: inline-block;
    padding-right: 10px;
    cursor: pointer;
}
@media(max-width:768px){
    .archive-main .archive-category-name{
        font-size: 36px;
        line-height: 42.75px;
        margin-top: 12px;
        margin-bottom: 10px;
    }

}

.archive-category-name svg{
    height: 17px;
    width: 17px;
}

/*.archive-main .archive-category-name:hover + .archive-nav-extend{
    display:block;
}*/

.archive-nav-extend{
    display:none;
    position: absolute;
    background-color: var(--background);
    background-color: #fff;
    border-radius: 16px;
    padding: 20px 20px;
    width: auto;
    -webkit-box-shadow: 0px 2px 24px 3px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 2px 24px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 2px 24px 3px rgba(0, 0, 0, 0.1);
    min-width: 300px;
    z-index: 10;
}
@media(max-width:768px){
    .archive-nav-extend{
        min-width: 250px;
    }
}

.archive-nav-extend >ul{
    padding:0;
    list-style-type:none;
}

.archive-nav-extend >ul a{
    font-size: 20px;
    font-weight: 600;
}
@media(max-width:768px){
    .archive-nav-extend >ul a{
        font-size: 18px;
        padding:12px 14px;
    }
}

.archive-nav-extend li.current-menu-item a{
    color:var(--accent);
    font-weight: 800;
}
.archive-nav-extend li a:hover{
    text-decoration: underline;
}

.archive-nav-extend .more-toggle{
    display:none;
}


.wrapper-posts-top{
    display:grid;
    grid-template-columns: 1fr 1fr;
    grid-gap:60px;
    margin-bottom:80px;
}

@media(max-width:768px){
    .wrapper-posts-top{
        display:grid;
        grid-template-columns: 1fr;
        grid-gap:40px;
        margin-bottom:40px;
    }
}
@media(max-width:768px){
    .archive-posts{
        grid-gap:40px;
    }
}
.wrapper-posts-top img {
    height: 100%;
    object-fit: cover;
    width: auto;
}
.wrapper-posts-top .post-thumb,.archive-posts .post-thumb  {
    border-radius: 20px;
    margin-bottom: 20px;
    object-fit: cover;
    overflow: hidden;
    width: 100%!important;
    aspect-ratio: 640 / 416!important;
    height: auto!important;

    max-height: 100%!important;
    max-width: 100%!important;
}
@media only screen and (min-width: 768px) {
    .wrapper-posts-top .post-thumb {
        margin-bottom: 30px;
    }
}
@media only screen and (max-width: 768px) {
    .wrapper-posts-top .post-thumb, .archive-posts .post-thumb  {
        margin-bottom: 16px!important;
    }
}

.wrapper-posts-top .post-title a{
    font-weight: 800;
    font-size: 38px;
    line-height: 120%;
}
@media only screen and (max-width: 768px) {
    .wrapper-posts-top .post-title a {
        font-size: 24px;
        line-height: 30.75px;
    }
}

@media only screen and (max-width: 768px) {
    .archive-posts .single-post .post-title{
        margin-bottom:8px;
    }
}

.archive-posts .post-title a{
    font-weight: 800;
    font-size: 28px;
    line-height: 120%;
}
@media only screen and (max-width: 768px) {
    .archive-posts .post-title a{
        font-size: 24px;
        line-height: 30.75px;
    }
}

.wrapper-posts-top  .post-excerpt a, .archive-posts .single-post .post-excerpt a{
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color:#000;
}
@media only screen and (max-width: 768px) {
    .wrapper-posts-top .post-excerpt a, .archive-posts .single-post .post-excerpt a{
        font-size: 16px;
        line-height: 24px;
    }
}
.archive-posts .post-excerpt{
    margin-bottom:5px!important;
}
@media only screen and (max-width: 768px) {
    .archive-posts .post-excerpt{
        margin-top:0;
    }
}

/* blog category page END */

/* single page START */
.blog-post__header__image{
    aspect-ratio: 1312 / 560;
    object-fit: cover;
    margin-top:0;
}

.blog-columns{
    display:flex;
    justify-content: space-between;
    gap:60px;
    margin-bottom:150px;
}
@media(max-width:1024px){
    .blog-columns{
        margin-bottom:90px;
    }
}
@media(max-width:768px){
    .blog-columns{
        margin-bottom:50px;
        flex-direction: column;
    }
}
.blog-content-left{
    width:calc(100% - 416px - 60px);
}
@media(max-width:1366px){
    .blog-content-left{
        width:calc(100% - 300px - 50px);
    }
}
@media(max-width:1024px){
    .blog-content-left{
        width:calc(100% - 280px - 50px);
    }
}
@media(max-width:768px){
    .blog-content-left{
        width:100%;
    }
}

.blog-columns .post-details{
    margin-top:15px;
}

/*.blog-columns .post-info{
    color: var(--gray-text);
    display:flex;
    gap:
}*/

.post-info__date{
    margin-right:0;
}
.bsf-rt-reading-time{
    margin-left:0;
}

.blog-post__title{
    font-weight: 800;
    font-size: 60px;
    line-height: 76px;
    letter-spacing: -0.01em;
}
@media(max-width:1200px){
    .blog-post__title{
        font-size: 50px;
        line-height: 63px;
    }
}
@media(max-width:768px){
    .blog-post__title{
        font-size: 36px;
        line-height: 42.75px;
    }
}

.blog-post__excerpt {
    margin-bottom: 30px;
}
.blog-post__excerpt p, .blog-post__excerpt {
    font-weight: 700;
    font-size: 28px;
    line-height: 39px;

}

.blog-post__content{
    max-width:100%;
}
@media(max-width:1366px){
    .blog-post__content{
        padding:0;
    }
}

.blog-post__content ul{
    margin-top:10px;
    margin-bottom:15px;
}


.blog-post__content p, .blog-post__content ul>li{
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color:#000;
}

.blog-post__content h1, .blog-post__content h2,.blog-post__content h3,.blog-post__content h4,.blog-post__content h5,.blog-post__content h6, .blog-post__content h1 span, .blog-post__content h2 span,.blog-post__content h3 span,.blog-post__content h4 span, .blog-post__content h5 span,.blog-post__content h6 span{
    font-weight: 700!important;
    letter-spacing: 0em;
}
.blog-post__content h2{
    font-size: 30px;
    line-height: 36px;
    margin-top: 30px;
    margin-bottom: 5px;
}
.blog-post__content h3{
    font-size: 22px;
    line-height: 34px;
    margin-top: 20px;
    margin-bottom: 2px;
}
.blog-post__content h4{
    font-size: 20px;
    line-height: 30px;
}
.blog-post__content h5, .blog-post__content h6{
    font-size: 18px;
    line-height: 30px;
}

.blog-post__content table{
    margin-top:40px;
}
@media(max-width:768px){
    .blog-post__content table{
        margin-top:30px;
    }
}


.blog-author-wrapper{
    display: flex;
    gap:30px;
    align-items: center;
    margin:40px 0 30px;

}
@media(max-width:768px){
    .blog-author-wrapper{
        gap:22px;
    }
}

.blog-author-wrapper img{
    width: 156px;
    height: 156px;
    top: 4396px;
    left: 304px;
    border-radius: 100%;
}
@media(max-width:768px){
    .blog-author-wrapper img{
        width: 86px;
        height: 86px;
    }
}


.blog-author-subtitle{
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    color:var(--gray-text);
    margin-bottom: 15px;
}
@media(max-width:768px){
    .blog-author-subtitle{
        font-size: 14px;
    }
}
.blog-author-name{
    font-weight: 700;
    font-size: 24px;
    line-height: 26px;
    color:var(--primary);
}
@media(max-width:768px){
    .blog-author-name{
        font-size: 20px;
        line-height: 24px;
    }
}
.blog-author-position{
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
    color:var(--primary);
}
@media(max-width:768px){
    .blog-author-position{
        font-size: 15px;
        line-height: 22px;
    }
}

.blog-post-tags{
    display:flex;
    gap:10px;
    margin-top:30px;
    list-style-type: none;
    flex-wrap: wrap;
}

.blog-post-tags>li{
    background: #F6F6F6;
    padding: 16px 39px;
    border-radius:100px;
}
@media(max-width:1024px){
    .blog-post-tags>li{
        padding: 10px 22px;
    }
}

.blog-post-tags>li a{
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    color:var(--gray-text);

}
@media(max-width:1024px){
    .blog-post-tags>li a{
        font-size: 14px;
    }
}

.blog-sidebar-right{
    width:416px;
}
@media(max-width:1366px){
    .blog-sidebar-right{
        width:300px;
    }
}
@media(max-width:1366px){
    .blog-sidebar-right{
        width:280px;
    }
}
@media(max-width:768px){
    .blog-sidebar-right{
        width:100%;
    }
}

.blog-sidebar-sticky{
    position: sticky;
    top: 10px;
    display:flex;
    flex-direction: column;
    gap:40px;
    width:100%;
    z-index: 999;
}

.blog-sidebar-right-toc{
    background: #F6F6F6;
    border-radius: 16px;
    padding:35px 30px 20px;
    box-sizing: border-box;
}



.toc-header{
    font-weight: 700;
    font-size: 21px;
    line-height: 130%;
}
@media(max-width:768px){
    .toc-header{
        display:flex;
        justify-content: space-between;
        color: #000;
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 130%;
    }
}

.toc-arrow{
    display:none;
}
@media(max-width:768px){
    .toc-arrow{
        display:flex;
        justify-content: center;
        align-items: center;
    }
}

/* table of content heading START */
.toc {
    padding: 0;
}
@media (max-width: 768px) {
    .toc {
        padding:0;
        margin: 20px 0;
    }
}

.toc ul {
    list-style: none;
    padding-left: 0;
}

.toc li {
    margin:28px 0;
}
@media (max-width: 768px) {
    .toc li{
        margin:20px 0;
    }
}

.toc a {
    text-decoration: none;
    color: #000;
    font-weight: 500;
    font-size: 18px;
    line-height: 26px;
}
.toc a:hover {
  text-decoration: underline;
}
@media (max-width: 768px) {
    .toc a{
        font-size: 16px;
        font-weight: 500;
        line-height: 120%;
    }
}

.toc a.active {
    font-weight: 800;
    border-left: 4px solid var(--accent);
    padding-left:10px;
    margin-left:-14px;
}


@media (max-width: 768px) {
  .blog-sidebar-right-toc {
    display: none;
    position: fixed;
    left: 15px;
    top: 15px;
    right: 15px;
    background: white;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999;
    border-top: 2px solid #eee;
    border-radius: 12px;
    background: #F6F6F6;
    box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.12);
    padding:0;
  }

  .blog-sidebar-right-toc.active {
    display: block;
  }

  .toc-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    cursor: pointer;
    padding: 25px 35px 25px;

  }

  .toc-toggle .arrow {
    transition: transform 0.3s ease;
  }

  .toc-list {
    display: none;
    max-height: 50vh;
    overflow-y: auto;
    padding: 0 35px 16px;
  }

  .blog-sidebar-right-toc.open .toc-list {
    display: block;
  }

  .blog-sidebar-right-toc.open .arrow {
    transform: rotate(180deg);
  }


}
/* table of content heading END */

/* sidebar banner START */
.blog-sidebar-right-banner{
    background: #F6F6F6;
    border-radius: 16px;
    padding: 56px 50px 40px;
    box-sizing: border-box;
}

@media(max-width:1366px){
    .blog-sidebar-right-banner{
        padding: 40px 25px 30px;
    }
}

.sidebar-banner-heading{
    font-weight: 700;
    font-size: 38px;
    line-height: 45px;
    text-align: center;
    margin-bottom: 10px;
}
@media(max-width:1366px){
    .sidebar-banner-heading{
        font-size: 32px;
        line-height: 42px;
    }
}
.sidebar-banner-content, .sidebar-banner-content p{
    font-weight: 600;
    font-size: 21px;
    line-height: 130%;
    text-align: center;
}
@media(max-width:1366px){
    .sidebar-banner-content, .sidebar-banner-content p{
        font-size: 18px;
    }
}

.sidebar-banner-btn{
    min-width:50%;
    max-width:220px;
    border-radius: 97.5px;
    padding-top: 17px;
    padding-right: 36px;
    padding-bottom: 16px;
    text-transform: uppercase;
    padding-left: 36px;
    background-color: var(--accent);
    color:var(--primary);
    font-weight: 700;
    font-size: 18px;
    line-height: 120%;
    letter-spacing: 0.01em;
    display:block;
    margin:22px auto;
    text-align:center;
}
@media(max-width:1366px){
    .sidebar-banner-btn{
        font-size: 14px;
        max-width: 190px;
    }
}
/* sidebar banner END */

.related-posts{
    grid-gap:30px;
}
@media(max-width:768px){
    .related-posts{
        display:flex;
        flex-direction: column;
        justify-items: start;
    }
}
@media(max-width:768px){
    .related-posts>article{
        display:flex;
        flex-direction: column;
        width:100%;
    }
}
@media(max-width:768px){
    .related-posts>article .post-title{
        order:1;
    }
}
@media(max-width:768px){
    .related-posts>article .post-thumb{
        order:2;
    }
}
@media(max-width:768px){
    .related-posts>article .post-excerpt{
        order:3;
    }
}
@media(max-width:768px){
    .related-posts>article .post-read-more{
        order:4;
    }
}
.related-posts-heading{
    font-weight: 800;
    font-size: 48px;
    line-height: 120%;
    margin-bottom:36px;
}
@media(max-width:768px){
    .related-posts-heading{
        font-size:36px;
    }
}

.related-posts .single-post .post-thumb{
    height: 100%;
    max-height: 280px;
    margin-bottom: 22px;
    max-width: 100%;
    width: 100%;
    aspect-ratio: 416 / 280;
    object-fit: cover;
}
@media(max-width:1024px){
    .related-posts .single-post .post-thumb{
        max-height: 220px;
    }
}
@media(max-width:768px){
    .related-posts .single-post .post-thumb{
        max-height: inherit;
    }
}

.related-posts .single-post .post-title{
    margin-bottom:10px;
}
.related-posts .single-post .post-title a{
    font-weight: 800;
    font-size: 28px;
    line-height: 120%;
}
@media(max-width:768px){
    .related-posts .single-post .post-title a{
        font-size: 24px;
    }
}

.related-posts .single-post .post-excerpt{
    margin-bottom:5px;
    color:var(--primary);
}
.related-posts .single-post .post-excerpt a{
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    color:var(--primary);
}
@media(max-width:768px){
    .related-posts .single-post .post-excerpt a{
        font-size: 16px;
        line-height:130%;
    }
}


/* single page END */



/* application card module START*/
.application-card-hr{
    border:none;
    border-top: 1px solid #86868B;
    height:0;
    width:100%;
    outline:none;
    margin-top:50px;
    margin-bottom:180px;
}
.application-card-module{
    margin-top: 130px;
    margin-bottom: 200px;
}
@media(max-width:1024px){
    .application-card-module{
        margin-bottom: 100px;
    }
}
@media(max-width:768px){
    .application-card-module{
        margin-bottom: 100px;
    }
}

.application-card-module .module-wrapper{
    padding-left:50px;
    border-radius: 16px;
}
@media(max-width:1200px){
    .application-card-module .module-wrapper{
        padding-left:35px;
    }
}
@media(max-width:768px){
    .application-card-module .module-wrapper{
        padding-left:20px;
        padding-right:20px;
    }
}
.application-card-module img{
    margin-top: -100px;
    margin-bottom: -140px;
    max-width:376px;
    max-height:788px;
    object-fit: contain;
}
@media(max-width:1024px){
    .application-card-module img{
        max-width:38%;
        margin-top: -180px;
        margin-bottom: -180px;
        max-height: inherit;
    }
}
@media(max-width:768px){
    .application-card-module img{
        max-width:100%;
        margin-top: -100px;
        margin-bottom: 0;
        margin-left:auto;
        margin-right:auto;
        height: auto;
        object-fit: inherit;
    }
}

.application-card-content{
    padding: 90px 120px 90px 50px;
    margin-top:0;
    max-width:61%;
}
@media(max-width:1200px){
    .application-card-content{
        padding: 90px 0px 90px 40px;
    }
}
@media(max-width:1024px){
    .application-card-content{
        padding: 50px 0px 50px 30px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
}
@media(max-width:768px){
    .application-card-content{
        max-width:100%;
        padding: 30px 0px 30px 10px;
    }
}

.application-card-content h2{
    font-weight: 800;
    font-size: 48px;
    line-height: 130%;
    margin-bottom:20px;
}
@media(max-width:1366px){
    .application-card-content h2{
        font-size: 40px;
    }
}
@media(max-width:1024px){
    .application-card-content h2{
        font-size: 34px;
    }
}
@media(max-width:768px){
    .application-card-content h2{
        font-size: 28px;
    }
}


.application-card-content, .application-card-content p{
    font-weight: 600;
    font-size: 32px;
    line-height: 140%;
}
@media(max-width:1366px){
    .application-card-content, .application-card-content p{
        font-size: 26px;
    }
}
@media(max-width:1024px){
    .application-card-content, .application-card-content p{
        font-size: 22px;
    }
}
@media(max-width:768px){
    .application-card-content, .application-card-content p{
        font-size: 18px;
    }
}
.application-card-content .application-btn{
    border-radius: 64px;
    padding-top: 20px;
    padding-right: 32px;
    padding-bottom: 20px;
    padding-left: 32px;
    gap: 10px;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    background-color:var(--accent);
    color:var(--primary);
    display: inline-block;
    margin-top:10px;
}

/* application card module END*/


/* high cards section START */
.blog-high-cards-section{
    gap:30px;
    padding-top:0;
    padding-bottom:50px;

}
@media(max-width:768px){
    .blog-high-cards-section{
        flex-direction:column;
        margin-left:0;
        margin-right:0;
        padding-left:0;
        padding-right:0;
        width:calc(100%);
    }
}
.blog-high-cards-section .blog-card-cover{
    opacity:0.62;

}
.blog-card-high-container{
    width:100%;
    position:relative;
    border-radius:16px;
    color:#ffffff;
    border-radius:16px;
    overflow: hidden;
    padding: 80px 18% 200px 46px;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media(max-width:1366px){
    .blog-card-high-container{
        padding: 60px 12% 160px 46px;
        min-height: 520px;
    }
}
@media(max-width:1200px){
    .blog-card-high-container{
        min-height: 460px;
        padding: 50px 46px 140px 46px;
    }
}
@media(max-width:1024px){
    .blog-card-high-container{
        min-height: 400px;
        padding: 40px 36px 80px 36px;
    }
}
@media(max-width:768px){
    .blog-card-high-container{
        padding: 38px 34px;
        min-height: 300px;
    }
}

.blog-card-high-container .blog-card-title{
    font-weight: 800;
    font-size: 48px;
    line-height: 130%;
    letter-spacing: -0.023em;
    max-width:80%;
}
@media(max-width:1200px){
    .blog-card-high-container .blog-card-title{
        font-size: 40px;
    }
}
@media(max-width:1024px){
    .blog-card-high-container .blog-card-title{
        font-size: 36px;
    }
}
@media(max-width:768px){
    .blog-card-high-container .blog-card-title{
        font-size: 30px;
        line-height: 120%;
    }
}

.blog-card-high-container .blog-card-subtitle, .blog-card-high-container .blog-card-subtitle p{
    font-weight: 600;
    font-size: 32px;
    line-height: 140%;
}
@media(max-width:1200px){
    .blog-card-high-container .blog-card-subtitle, .blog-card-high-container .blog-card-subtitle p{
        font-size: 28px;
    }
}
@media(max-width:1024px){
    .blog-card-high-container .blog-card-subtitle, .blog-card-high-container .blog-card-subtitle p{
        font-size: 24px;
    }
}
@media (max-width: 768px) {
    .blog-card-high-container .blog-card-subtitle, .blog-card-high-container .blog-card-subtitle p{
        font-size: 18px;
    }
}
/* high cards section END */

.archive-posts .single-post .post-thumb img, .related-posts .single-post .post-thumb img, .search-posts-list .single-post .post-thumb img{
    border-radius:16px;
}



/* newsletter */
.single-blog .newsletter .module-heading{
    font-weight: 700;
    margin-bottom: 18px !important;
}
.single-blog .breadcrumbs span{
    max-width: 40ch;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.single-blog .app-store-list__single-store p{
        margin-left: 10px;        font-size: 2rem;    font-weight: 600;
        margin-bottom: unset;
}

.single-post a:hover .post-title {
  text-decoration: underline;
}

.blog-post__content table,
.blog-post__content ol,
.blog-post__content ul {
  color: var(--primary) !important;
}

.archive-main {
  max-width: 100% !important;
}

.single-blog .app-store-list__single-store a .single-store__img img {
  filter: invert(100%);
}

@media (min-width: 1100px) and (max-width: 1910px) {
  .blog-main {
    zoom: 0.8;
  }
}

  .section-newsletter    .wpcf7-response-output{
    margin-top: unset !important;  
        font-weight: normal;
    display: block;
    font-size: 14px;
    text-align: center;
      color: #dc3232 !important;
  }
   .section-newsletter    .wpcf7-not-valid-tip{
    font-weight: normal;
    display: block;
    font-size: 12px;
    text-align: center;
    display: none !important;
    }
@media (max-width:768px){
    .single-blog .site-content,.post-type-archive-blog .site-content{
        overflow-x: unset;
    }
    .newsletter-left-logo{
        justify-content: center;
    }
    .newsletter-module {
        text-align: center;
    }
    .newsletter{
        margin-bottom: 40px;
    }
    .section-newsletter .wpcf7-acceptance{
            margin-top: 11px;
    display: block;

    }
     .section-newsletter    .wpcf7-response-output{
    font-weight: normal;
    display: block;
    font-size: 12px;
    text-align: center;
    margin-top: 70px !important;  
      color: #dc3232 !important;
    }
     .section-newsletter    .wpcf7-not-valid-tip{

    }
         .section-newsletter .wpcf7-submit {
            margin-top: 30px !important;
         }
}
