/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 16 2025 | 01:29:46 */
/* --- Main Footer Styles (Mobile-First) --- */

/* Wrapper for padding and universal styling */
.footer-main-wrapper {
    width: 100%;
    padding: 50px 20px;
    box-sizing: border-box;
    font-family: sans-serif;
    overflow-x: hidden; /* Prevents accidental horizontal scroll on mobile */
}

/* 
  Mobile Layout (Default):
  - A single, centered column for easy reading on small screens.
*/
.footer-columns-container {
    display: flex;
    flex-direction: column; /* Stacks columns vertically on mobile */
    align-items: center;   /* Centers the content */
    text-align: center;
    gap: 40px;             /* Space between sections */
    max-width: 1200px;     /* Prevents content from stretching too wide */
    margin: 0 auto;        /* Centers the container */
}

.footer-column h3 {
    color: #ffffff;
    font-family: serif;
    font-weight: bold;
    font-size: 1.5em;
    margin-bottom: 20px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    color: #cccccc;
    text-decoration: none;
}

/* Logo container styling */
.footer-logo-container {
    text-align: center;
    width: 100%;
    margin-top: 50px;
}

/* Tagline styling */
.footer-tagline {
    text-align: center;
    max-width: 600px;
    margin: 30px auto;
    color: #a0a0a0;
    font-size: 1em;
    line-height: 1.6;
    border-top: 1px solid #444;
    padding-top: 30px;
}

/* Bottom copyright bar */
.footer-bottom-bar {
    text-align: center;
    width: 100%;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #a0a0a0;
    font-size: 0.9em;
}

.footer-bottom-bar a {
    color: #e0b43c;
    text-decoration: none;
}

/* 
  Tablet & Desktop Layout (Triggers on screens 768px and wider)
  - This is the key to fixing the iPad Pro layout.
*/
@media (min-width: 768px) {
    .footer-columns-container {
        flex-direction: row;        /* Switches to a row for the three-column layout */
        justify-content: space-between; /* Creates even spacing */
        align-items: flex-start;    /* Aligns content to the top */
        text-align: left;           /* Aligns text to the left */
        gap: 30px;                  /* Defines the gap between columns */
    }

    .footer-column {
        flex: 1; /* Allows columns to grow and shrink evenly */
    }

    /* Adds the vertical separator line ONLY on wider screens */
    .footer-column:not(:first-child) {
        border-left: 1px solid #555;
        padding-left: 30px; /* Adjusted padding for better tablet view */
    }
}







/* Manual Override */

.footer-main-wrapper {
	padding: 0px;
	
}


.footer-widget-area{
	padding-bottom: 0px !important;
}











