/* iske andr 2 add left right me or bich me mainbox aayega */
.tools-container {
	display: flex;
	justify-content: space-between;
	/* Ads ko corners pe bhej dega */
	align-items: flex-start;
	width: 100%;
	/* Full page width */
	max-width: 100%;
	/* Ensure it takes full space */
	gap: 20px;
}

.toolAd {
	width: 200px;
	/* Ad ka width */
	height: 500px;
	margin: 10px 2px;
	flex-shrink: 0;
	z-index: 2;
}

.pageBottomAd {
    display: none;
}

 
@media ( max-width : 950px) {
	.left-tool-ad {
		display: none;
	}
	.toolAd {
		flex-shrink: 0;
	}
	.right-tool-ad {
		height: 400px;
	}
}



@media (max-width: 700px) {
    .tools-container {
        flex-direction: column;
        align-items: center;
    }

    .toolAd {
        display: none;
    }

    .pageBottomAd {
        display:flex;
        max-width: 100%;   
        width: 400px;
        height: 180px;     
        max-height: 200px;
        margin: 8px auto;
    }

}
