/*
Theme Name: techno
Template:   astra
Version:    1.0
License:    GNU General Public License v2 or later
*/

.ast-primary-header-bar {
    background-color: #000;
}

.menu-item > .menu-link {
    color: #FFF !important;
}

.entry-content p {
    text-align: justify;
}

.catalog_section .elementor-container { 
 flex-wrap: wrap; 
 justify-content: center; 
}
 
/* MAGICAL CSS Rule */ 
.catalog_section.elementor-row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
 
.catalog_section .elementor-top-column{
    width:25% !important;
}
/* Media Query - Tablet */
@media (min-width: 768px) and (max-width: 1024px) {
 .catalog_section .elementor-top-column{
 width: 33% !important; /* or whatever you like */
 }
}
 
/* Media Query - Mobile */
@media (max-width: 767px) {
 .catalog_section .elementor-top-column {
 width: 100% !important; /* or whatever you like */
 }
}
 
/* Merged Media Query - Tablet and Mobile */
@media (min-width: 1px) and (max-width: 767px) {
 .catalog_section.elementor-top-column {
 width: 100%;
 }
}
