.blog-area {
    background-color: var(--white);
    margin-top: 0;
    padding-bottom: 0;
}

.dark .blog-area {
    background-color: var(--black)
}

.blog-area .section-title {
    max-width: 420px
}

.blog-area .section-header {
    display: grid;
    gap: 30px 60px;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between
}

@media only screen and (max-width: 767px) {
    .blog-area .section-header {
        grid-template-columns:1fr
    }
}

.blog-area .blogs-wrapper-box {
    margin-top: 90px
}

@media only screen and (max-width: 1399px) {
    .blog-area .blogs-wrapper-box {
        margin-top:70px
    }
}

@media only screen and (max-width: 1199px) {
    .blog-area .blogs-wrapper-box {
        margin-top:50px
    }
}

.blog-area .blogs-wrapper {
    display: grid;
    gap: 55px 35px;
    grid-template-columns: repeat(3, 1fr)
}

@media only screen and (max-width: 991px) {
    .blog-area .blogs-wrapper {
        grid-template-columns:repeat(2, 1fr);
        gap: 55px 30px
    }
}

@media only screen and (max-width: 767px) {
    .blog-area .blogs-wrapper {
        grid-template-columns:repeat(1, 1fr);
        gap: 45px 30px
    }
}

.blog:hover .thumb:before {
    top: -2px
}

.blog:hover .thumb::after {
    bottom: -2px
}

.blog:hover .thumb img {
    transform: scale(1.1)
}

.blog .thumb {
    border-radius: 20px;
    overflow: hidden;
    position: relative
}

@media only screen and (max-width: 1199px) {
    .blog .thumb {
        border-radius:10px
    }
}

.blog .thumb:before {
    position: absolute;
    content: url(../imgs/shape/img-s-95.webp);
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    top: -60px;
    transition: all .5s
}

.dark .blog .thumb:before {
    content: url(../imgs/shape/img-s-95-dark.webp)
}

.blog .thumb::after {
    position: absolute;
    content: url(../imgs/shape/img-s-94.webp);
    z-index: 1;
    left: 50%;
    transform: translateX(-50%);
    bottom: -60px;
    transition: all .5s
}

.dark .blog .thumb::after {
    content: url(../imgs/shape/img-s-94-dark.webp)
}

.blog .thumb img {
    width: 100%;
    transition: all .5s
}

.blog .title {
    font-size: 30px;
    line-height: 1.2
}

@media only screen and (max-width: 1919px) {
    .blog .title {
        font-size:26px
    }
}

@media only screen and (max-width: 1399px) {
    .blog .title {
        font-size:23px
    }
}

@media only screen and (max-width: 1199px) {
    .blog .title {
        font-size:20px
    }
}

.blog .content {
    padding-inline-start:49px;border-inline-start:1px solid var(--border);max-width: 460px;
    margin-inline-start:auto;margin-top: 43px
}

@media only screen and (max-width: 1399px) {
    .blog .content {
        padding-inline-start:29px;
        margin-top: 33px
    }
}

@media only screen and (max-width: 1199px) {
    .blog .content {
        padding-inline-start:0;
        margin-top: 23px;
        border-inline-start:0}
}

@media only screen and (max-width: 767px) {
    .blog .content {
        max-width:100%
    }
}

.blog .meta {
    font-size: 14px;
    text-transform: uppercase;
    padding: 12px 16px;
    border: 1px solid var(--border);
    display: inline-block;
    border-radius: 40px
}

@media only screen and (max-width: 1199px) {
    .blog .meta {
        font-size:12px;
        padding: 8px 14px
    }
}

.blog .meta-list {
    display: flex;
    gap: 5px;
    margin-top: 17px
}






.work-area .section-title {
    font-size: 270px;
    line-height: 1.2;
    display: inline-block;
    font-family: var(--font_teko);
    position: relative
}

@media only screen and (max-width: 1199px) {
    .work-area .section-title {
        font-size:50px
    }
}

@media only screen and (max-width: 991px) {
    .work-area .section-title {
        font-size:40px
    }
}

@media only screen and (max-width: 767px) {
    .work-area .section-title {
        font-size:35px
    }
}

.work-area .section-title span {
    font-size: 30px;
    font-weight: 400;
    position: absolute;
    top: 0;
    inset-inline-start: 0;
    margin-top: 20px
}

@media only screen and (max-width: 1199px) {
    .work-area .section-title span {
        position:static;
        font-size: inherit;
        font-weight: 700
    }
}

.work-area .section-title span:after {
    position: absolute;
    content: "";
    width: 300px;
    height: 1px;
    background-color: var(--primary);
    top: 50%;
    transform: translateY(-50%);
    inset-inline-start: calc(100% + 30px)
}

@media only screen and (max-width: 1199px) {
    .work-area .section-title span:after {
        display:none
    }
}

.work-area .section-header {
    text-align: center
}
