/************
* Footer Styling
* This section styles the footer of the site, including a top bar, main menu, slide-in menu, etc.
************/

/** START - Footer Section **/

/* Media query for screens larger than 981px */
@media (min-width: 981px) {
    /* Styling for footer columns in light and dark themes */
    .et-l.et-l--footer .footer-light .footer-terms-bar .et_pb_column,
    .et-l.et-l--footer .footer-dark .footer-terms-bar .et_pb_column,
	.footer-alt .footer-terms-bar .et_pb_column {
        display: flex;
        flex-direction: row;
        justify-content: center;
    }
}

/* Styling for text and links in the footer */
.et-l.et-l--footer .footer-light .footer-header h2,
.et-l.et-l--footer .footer-dark .footer-header h2,
.footer-alt .footer-header h2 {
	font-family: 'Inter';
	font-size: .875rem;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
}

.et-l.et-l--footer .footer-light .et_pb_text_inner,
.et-l.et-l--footer .footer-light .et_pb_text_inner a {
    color: #000000;
    line-height: 1.8em;
    font-size: 0.875rem;
    transition: all 300ms ease;
}

.et-l.et-l--footer .footer-dark .et_pb_text_inner,
.et-l.et-l--footer .footer-dark .et_pb_text_inner a,
.footer-alt .et_pb_text_inner a,
.footer-alt .et_pb_text_inner {
    color: #FFFFFF;
    line-height: 1.8em;
    font-size: 0.875rem;
    transition: all ease 300ms;
}

/* Hover effects for text and links in the footer */
/* .et-l.et-l--footer .footer-light .et_pb_text_inner:hover, */
.et-l.et-l--footer .footer-light .et_pb_text_inner a:hover,
/* .et-l.et-l--footer .footer-dark .et_pb_text_inner:hover, */
.et-l.et-l--footer .footer-dark .et_pb_text_inner a:hover,
.footer-alt .et_pb_text_inner a:hover {
    color: #FFD23F;
}

/* Styling for additional text and links in the footer */
.et-l.et-l--footer .footer-light .footer-terms-bar .et_pb_text_inner,
.et-l.et-l--footer .footer-light .footer-terms-bar .et_pb_text_inner a {
    color: rgba(0,0,0,.35);
    line-height: 1.8em;
    font-size: 0.75rem;
}

.et-l.et-l--footer .footer-dark .footer-terms-bar .et_pb_text_inner,
.et-l.et-l--footer .footer-dark .footer-terms-bar .et_pb_text_inner a {
    color: rgba(256,256,256,.4);
    line-height: 1.8em;
    font-size: 0.75rem;
}
.footer-alt .footer-header h2,
.footer-alt .footer-terms-bar .et_pb_text_inner a,
.footer-alt .footer-terms-bar .et_pb_text_inner {
    color: #FFFFFF;
}

/* Media query for screens smaller than 981px */
@media (max-width: 981px) {
    /* Adjusting font size and margin for links in the footer */
    .et-l.et-l--footer .footer-dark .et_pb_text_inner a,
    .et-l.et-l--footer .footer-light .et_pb_text_inner a,
    .et-l.et-l--footer .footer-dark .icon-one-line a, 
    .et-l.et-l--footer .footer-light .icon-one-line a,
    .et-l.et-l--footer .footer-dark .footer-terms-bar .et_pb_text_inner a,
    .et-l.et-l--footer .footer-light .footer-terms-bar .et_pb_text_inner a,
	.footer-alt .et_pb_text_inner a,
	.footer-alt .icon-one-line a,
	.footer-alt .et_pb_text_inner a {
        font-size: 1rem;
        margin-bottom: 20px !important;
    }
    /* Adjusting margin for footer header */
    .et-l.et-l--footer .footer-header {
        margin-bottom: 20px !important;
    }
}

/** END - Footer Section **/
