@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Background color & fonts */
body,
body.theme-lumapps {
	font-family: "Montserrat", sans-serif;
	background-image: linear-gradient(-52deg,#F6F5FA 90%,#fefeff 98%) !important;
}

/* Widget Title */
.widget-header__title,
.widget-footer__link {
    text-transform: uppercase !important;
}
/* Alert Message */
.widget--shared-a-alert-message .content-block-title a {
    text-transform: uppercase;
    color: #240085 !important;
    font-size: 18px !important;
}

/* Footer */
.footer-escp {
    background-color: #240085;
    padding: 24px 8px;
    box-sizing: border-box;
    width: 100%;
}
.footer-content {
    width: 100%;
    max-width: 1152px; /* Default max-width for screens larger than 1279px */
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer-left {
    display: flex;
    align-items: center;
}
.footer-left img {
    width: 130px;
    height: auto;
    margin-left: 8px;
}
.footer-right {
    display: flex;
    align-items: center;
}
.social-icon {
    display: inline-flex !important;
    justify-content: center;
    align-items: center;
    width: 27px;
    height: 27px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background-color: transparent;
    color: #ffffff;
    margin-left: 24px;
    font-size: 14px;
    text-decoration: none;
    transition: border-color 0.3s, background-color 0.3s;
}
.social-icon:hover {
    border-color: #EEC343;
    background-color: rgba(255, 255, 255, 0.2);
}
@media (max-width: 1279px) {
    .footer-content {
        max-width: 984px;
    }
}
@media (max-width: 1023px) {
    .footer-content {
        max-width: 100%;
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-right {                
        margin: 0 auto;
        margin-top: 32px;
    }
    .footer-left {
        margin: 0 auto;
    }
    .social-icon {
        margin-left: 12px;
    }            
}