/* responsive media */

/* Service Section */

@media screen and (max-width: 1500px) {
    .service-area {
        padding: 80px;
    }

    .service-section .heading h2 {
        font-size: 50px;
    }

    .service-section .service-content .service-item {
        column-gap: 40px;
    }

    /* app-download section */

    .app-download-content {
        padding: 80px;
    }
}

@media screen and (max-width:1350px) {
    .blog-section .blog-content {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width:1200px) {
    .img-wrapper {
        width: 350px;
    }
    .img-wrapper img {
        position: relative;
        top: 0;
        max-width: 100%;
    }

    .service-section .service-content .service-item {
        column-gap: 30px;
    }

    .service-section .service-content .service-item .content-row h4 {
        font-size: 24px;
    }
}


@media screen and (max-width: 991px) {
    .banner-content {
        grid-template-columns: 1fr;
    }
    .img-wrapper {
       display: none;
    }

    .service-section .service-content {
        grid-template-columns: repeat(1, 1fr);
        gap: 50px;
    }

    /* banner-section */
	.banner-section .title {
		font-size: 3rem;
	}

    /* app-download section */

    .app-download-content {
        flex-direction: column;
    }

    .content-column {
        width: calc(100%);
    }

    /* BLog section */
    .posts-box-grid .posts-box-inner {
        flex-direction: column;
    }
    .posts-box-grid .left-part, .posts-box-grid .right-part {
        width: 100%;
    }
    .posts-box-grid .right-part .posts-box-item {
        max-width: 100%;
    }
    .posts-box-grid .left-part .blog-card .blog-img {
        min-height: 450px;
        max-height: 450px;
    }
}

@media screen and (max-width:768px) {
    .service-section .heading h2 {
        font-size: 30px;
        line-height: 40px;
    }

    .service-section .service-content .service-item {
        align-items: flex-start;
    }

    .service-section .service-content .service-item span {
        width: 50px;
        height: 50px;
        padding: 5px;
    }

    .blog-section .blog-img img {
        width: 100%;
        height: 100%;
        border-top-left-radius: 10px;
        border-top-right-radius: 10px;
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0;
    }

    .blog-section .blog-item {
        grid-template-columns: 1fr;
    }

}


/* app download section */

@media screen and (max-width:620px) {
    .content-area h2 {
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 20px;
    }

    .content-area .social-app-link a {
        padding: 10px;
    }
}

@media screen and (max-width:575px) {
    .posts-box-grid .right-part .posts-box-item {
        width: 100%;
        flex-basis: 100%;
    }
    .posts-box-grid .left-part .blog-card .blog-img {
        min-height: 300px;
        max-height: 300px;
    }
}


@media screen and (max-width:480px) {
    .content-area .social-app-link {
        flex-direction: column;
        row-gap: 10px;
    }

    .content-area .social-app-link a {
        padding: 10px 30px;
    }

    .service-section .service-content {
        gap: 30px;
    }

    .service-section .service-content .content-row {
        row-gap: 0px;
    }

    .service-section .service-content .service-item .content-row h4 {
        line-height: 1.2;
    }

    .banner-section .title {
        font-size: 36px;
        line-height: 1.3;
    }
}