/**
Theme Name: Astra Child
Author: NodeIZ
Author URI: https://nodeiz.com/
Description: Astra is the fastest, fully customizable & beautiful theme suitable for blogs, personal portfolios and business websites. It is very lightweight (less than 50KB on frontend) and offers unparalleled speed. Built with SEO in mind, Astra comes with schema.org code integrated so search engines will love your site. 
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

/* DCDNA CSS */

.mbA_0 * {
	margin-bottom: 0 !important;
}

/* Grid 3 Cols in Row 1 & 2 Cols in Row 2 */

.ct_grid, .grid-3-2,
.ct_grid > .e-con-inner {
  grid-template-columns: repeat(6, 1fr) !important; /* Example: 6 columns of equal width */
}
.grid-3-2 .item-1, .grid-3-2 .item-2, .grid-3-2 .item-3 {
    /* Each item spans 2 of the 6 columns (2/6 = 1/3 of the width) */
    grid-column: span 2;
}
.grid-3-2 .item-4 {
    grid-column: 1 / span 3; /* Item 4 spans columns 1 & 2 (2/3 width) */
}
.grid-3-2 .item-5 {
    grid-column: 4 / span 3; /* Item 5 takes column 3 (1/3 width) */
}

/* Disable Equal Height of Grid Columns bcs of large Content in one of Columns */

.uneven_grid {
	grid-template-rows: unset !important;
}

/* Double Quotes */

.double_bquotates .elementor-blockquote::before,
.double_bquotates .elementor-blockquote .elementor-blockquote__content::after {
    width: 30px;
	height: 30px;
}

.double_bquotates .elementor-blockquote {
    display: flex;
    gap: 10px;
}
.double_bquotates .elementor-blockquote .elementor-blockquote__content {
    display: inline-block;
}
.double_bquotates .elementor-blockquote .elementor-blockquote__content::after {
    color: #f9fafa;
    content: "“";
    display: inline-block;
    font-family: Times New Roman,Times,serif;
    font-weight: 700;
    line-height: 1;
    font-size: calc(0.5px * 100);
    transform: rotate(180deg);
    margin-left: 10px;
	position: absolute;
}
.double_bquotates .elementor-blockquote .e-q-footer {
    display: none;
}

/* Media Quries */

@media only screen and (max-width: 767px) {
	.ct_grid, .grid-3-2,
	.ct_grid > .e-con-inner {
		grid-template-columns: repeat(1, 1fr) !important; /* Example: 1 columns of equal width */
	}
	.ct_grid .item-1, .ct_grid .item-2, .ct_grid .item-3, .ct_grid .item-4, .ct_grid .item-5 {
		/* Each item spans 1 of the 6 columns (100% width) */
		grid-column: span 1;
	}

} /* max-with: 767px */
