﻿body {
}
.heading {
    color: #33B247;
    font-size:32px;
}

h4 {
    font-size: 1em !important;
}

.hidden {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}

.visible {
    max-height: 500px; /* Adjust as needed */
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.5s ease-in;
}



.toggle-header {
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    padding: 5px 5px 5px 5px;
    border-radius: 8px;
    color: blue;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: #0056b3;
}
.toggle-header:hover {
    background: #e9ecef;
}

.toggle-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out, padding 0.3s;
    padding: 0 15px;
    box-shadow: -4px 0px 8px -2px #33B247;
}

.toggle-content.show {
    max-height: 1000px; /* Adjust as needed */
    opacity: 1;
    padding-top: 10px;
    padding-bottom: 10px;
}

.icon {
    font-size:13px;
    margin-left:5px;
    transition: transform 0.3s;
}

.icon.rotate {
    transform: rotate(180deg);
}

.rightsection div.goldenbox {
    background: url('../img/bg_goldenbox.jpg') 0 0 repeat-x;
    color:white;
    border-radius:8px;
}
.rightsection div.box, .rightsection div.goldenbox {
    padding: 1px 15px 15px 15px;
}
.rightsection div.graybox {
    border-radius:8px;
    color:white;
    padding: 5px 25px 0px 5px;
    background: url(../img/bg_graybox.jpg) 0 0 repeat-x;
}

.rightsection div.box, .rightsection div.goldenbox {
    padding: 1px 15px 15px 15px;
}


.RefinanceBox {
    background: #f4f9ec;
    border-radius: 8px;
}

    .RefinanceBox h2 {
        font-size: 18px;
        color: #33B247;
        font-weight: 600;
    }

    .RefinanceBox ul {
        list-style: none; /* Remove default bullets */
    }

.RefinanceBox ul li {
    position: relative;
    padding-left: 25px; /* Space for custom bullet */
}
.RefinanceBox ul {
    padding-left: 0px !important;
}

.RefinanceBox ul li::before {
    content: "●";
    font-size: 16px;
    color: orange;
    position: absolute;
    left: 0;
    top: 0;
}
.innerLeft a {
    color: #33B247 !important;
}
