/* Header */
.rick-logo h1 a{
	font-size: 40px;
}
.rick-header-container .rick-logo h1 {
    margin-bottom: 0;
}
.rick-logo img{
        max-width:146px !important;
    }
@media(max-width: 768px){
    .rick-logo a img{
        max-width:130px !important;
    }
}
.rick-single-sidebar{
	position: sticky;
    top: 100px !important;
    align-self: start;
}
.rick-custom-header {
    position: fixed;
/* 	padding-top: 10px; */
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: transparent; 
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}
.rick-logo{
	margin-bottom: 8px;
}
.rick-custom-header.scrolled {
    background: #ffffff;
/*     padding-top: 10px; */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #eee;
/* 	    padding-bottom: 8px; */
}

.rick-header-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 11px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rick-logo img {
/*     height: 60px; */
/*     width: auto; */
    transition: height 0.3s ease;
}

.scrolled .rick-logo img {
    height: 50px; 
}

.rick-header-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

.rick-auth-link {
    text-decoration: none;
    color: #111827;
    font-weight: 500;
    font-size: 14px;
    transition: color 0.3s;
}
.scrolled .rick-auth-link {
    color: #000;
}

.rick-toggle-container {
    position: relative;
    width: 250px;
    height: 48px;
}

.rick-toggle-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ef5b0c;
    border: 4px solid #ef5b0c; 
    border-radius: 30px;
    cursor: pointer;
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.rick-toggle-input {
    display: none !important;
}

.rick-toggle-text {
    flex: 1;
    z-index: 2;
    font-weight:500;
    font-size: 14px;
    text-align: center;
    transition: color 0.3s ease;
}
.rick-toggle-text:first-child { color: #000; } 
.rick-toggle-text:last-child { color: #fff; } 

.rick-toggle-switch {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: #fff;
    border-radius: 24px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.rick-toggle-input:checked + .rick-toggle-label .rick-toggle-switch {
    transform: translateX(100%);
}
.rick-toggle-input:checked + .rick-toggle-label .rick-toggle-text:first-child { color: #fff; }
.rick-toggle-input:checked + .rick-toggle-label .rick-toggle-text:last-child { color: #000; }
@media (max-width: 880px) {
    .rick-header-container {
        padding: 10px 15px;
		margin-bottom: -20px;
    }
    
    .rick-logo img {
        height:20px;
    }
	.rick-logo h1 a {
    font-size: 16px;
}

    .rick-header-actions {
        gap: 15px;
    }

    .rick-toggle-container {
        width: 180px; 
        height: 35px;
    }

    .rick-toggle-text {
        font-size: 11px;
    }

    .rick-auth-link {
        font-size: 12px;
    }
	.rick-custom-header {
	padding-top: 0px;
        padding-bottom: 10px;
}
	.rick-custom-header.scrolled {
    padding-top: 0px;
                padding-bottom: 20px;
}
}

/* Footer */
.custom-site-footer{
	background-color: #FCFBF7;
	padding: 60px 10px 0 10px;
}
.footer-logo h1 a{
	font-size: 40px;
}
.footer-top-row{
	display: flex;
    justify-content: space-between;
    font-family: inherit;
    margin-bottom: 28px;
}
.footer-links-grid {
    list-style: none;
    padding: 0;
    margin: 0;
    column-count: 2;
    column-gap: 90px;
/*     max-width: 500px; */
}

#page .footer-bottom {
	padding: 0;
}
.footer-logo{
    margin-bottom: 20px;
}

.footer-links-grid li {
    margin-bottom: 12px;
    break-inside: avoid; 
}

.footer-links-grid li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    display: block;
}

.footer-heading {
    color: #e66b27;
    font-size: 20px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.footer-bottom p{
	text-align: center;
	color: black;
    font-size: 14px;
    font-family: inherit;
}

.footer-bottom p a{
	color: black;
}

.footer-brand{
	display: flex;
    flex-direction: column;
    gap: 0;
    justify-content: flex-start;
}
/* .footer-logo h1{
	margin-bottom: 12px;
} */

.footer-divider{
	background-color: black;
    height: 1px;
	margin-bottom: 10px;
}
.footer-social-icons a i {
    background: #e66b27;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

@media(max-width: 880px){
	.footer-links-grid {
    column-gap: 60px;
	}
	.footer-links-grid li a {
    font-size: 14px;
}
	.footer-heading {
    font-size: 15px;
}
	.footer-divider {
    margin-bottom: 15px;
}
	.footer-bottom p {
    font-size: 12px;
}
	.footer-logo h1{
	margin-bottom: 15px;
}
	.footer-logo h1 a {
    font-size: 30px;
}
}

@media(max-width: 767px){
	.custom-site-footer {
    padding: 20px 10px 0 10px;
}
	.footer-logo{
		text-align: center;
	}
	.footer-top-row {
    display: flex;
    /* justify-content: space-between; */
    font-family: inherit;
    margin-bottom: 18px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 30px;
}
	.footer-heading{
		text-align: center;
	}
	.footer-links-grid {
    column-count: 1;
		    text-align: center;
}
	
}

@media(max-width: 540px){
	.footer-bottom p {
    font-size: 10px;
}
}