/**
 * Theme Name:     Infinity Web Experts
 * Author:         the WordPress team
 * Template:       twentytwentyfive
 * Text Domain:	   infinity-web-experts
 * Description:    Twenty Twenty-Five emphasizes simplicity and adaptability. It offers flexible design options, supported by a variety of patterns for different page types, such as services and landing pages, making it ideal for building personal blogs, professional portfolios, online magazines, or business websites. Its templates cater to various blog styles, from text-focused to image-heavy layouts. Additionally, it supports international typography and diverse color palettes, ensuring accessibility and customization for users worldwide.
 */


body { background-color: #fff !important;}

body,p,a,li,ul {font-family: Barlow,Sans-Serif !important;}

h1, h2, h3, h4, h5, h6, .uagb-button__link, .uagb-heading-text {
    font-family: Barlow,Sans-Serif !important;
}

a {text-decoration:none !important;}

h1 {font-size:55px !important;font-weight:600 !important;}
h2 {font-size:38px !important;font-weight:600 !important;}
h3 {font-size:36px !important;font-weight:600 !important;}
h4 {font-size:22px !important;font-weight:600 !important;}
h5 {font-size:20px !important;font-weight:600 !important;}
p {font-size:18px !important;font-weight:500 !important;}
li, ul {font-size: 18px !important;}

.has-global-padding {
    padding-right: 0px !important;
    padding-left: 0px !important;
}

:where(.wp-site-blocks *:focus) {
    outline-width: 0px !important;
    outline-style: none !important;
}

@media only screen and (max-width: 782px) {
    button.wp-block-navigation__responsive-container-open {
        background-color: #018a7e;
		color:white;
        padding: 5px;
    }
}


html .formcraft-css .powered-by
 {
    display: none !important;
}



/*
====================================
1. General Container & Grid Setup
====================================
*/
.location-container {
    /* Existing desktop/large screen setup */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/*
====================================
2. Mobile Responsiveness (Forcing 2 Columns)
====================================
*/
/* Targeting screens up to 480px wide (most typical mobile phones) */
@media (max-width: 480px) {
    .location-container {
        /* *** CRUCIAL CHANGE for 2-column layout on mobile *** */
        /* This forces exactly 2 equally sized columns. */
        grid-template-columns: 1fr 1fr;
        
        /* Adjust gap and padding for smaller screens */
        gap: 10px;
        padding: 10px; 
    }

    .location-box {
        /* Slightly smaller padding/font for compactness */
        padding: 8px 12px;
        font-size: 15px;
    }

    .location-box i {
        font-size: 15px;
    }
}

/* ====================================
3. Remaining Styles (No Change)
====================================
*/
.location-box {
    border: 2px solid #018A7E;
    border-radius: 10px;
    padding: 12px 24px;
    background-color: #018A7E;
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
}

.location-box a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    width: 100%;
}

.location-box i {
    margin-right: 10px;
    font-size: 18px;
}

.location-box:hover {
    background-color: #20201F;
    border-color: #103D3A;
}