html,
body {
    overflow-x: hidden;
}

.privacy-policy-section {
    padding: 20px 0;
    background: #fff;
}

.privacy-policy {
    margin: 20px 0;
    background: #FCFCFC;
    padding: 20px;
    height: 70vh;
    overflow-y: scroll;
    border-radius: 10px;
}

.privacy-policy p {
    font-size: 16px;
    white-space: pre-line;
}

.privacy-policy h1 {
    margin: 30px 0;
    font-size: 36px;
    font-weight: 700;
    line-height: 40px;
    color: #232323;
}

.privacy-policy-section .privacy-policy::-webkit-scrollbar {
    width: 3px;
    height: 57px;
}

.privacy-policy-section .privacy-policy::-webkit-scrollbar-track {
    background: #EDFAF8;
}

.privacy-policy-section .privacy-policy::-webkit-scrollbar-thumb {
    background: #FC4C9E;
    border-radius: 10px;
}

.shape-left {
    position: absolute;
    top: 34%;
}

.ellipse-top {
    position: absolute;
    top: 92px;
    left: 15%;
    z-index: -1;
}

.shape-right {
    position: absolute;
    right: 0;
    top: 55%;
}

.format-para {
    margin-bottom: 15px;
}

.format-para p {
    margin: 0;
}

.hamburger-menu {
    display: none;
}

.menu-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 20px;
    color: #fff;
    font-weight: 500;
}

.menu-content {
    background-color: white;
    height: 100vh;
    width: 250px;
    position: fixed;
    top: 0;
    left: -250px;
    transition: left 0.3s ease;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    z-index: 100;
}

.menu-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* .menu-content ul li {
    } */

.menu-content ul li a {
    text-decoration: none;
    color: gray;
    display: block;
    background: #fff;
    border-bottom: 1px solid #eee;
    font-size: 18px;
    font-weight: 400;
    border-radius: 0;
}

.menu-content ul li a.active {
    color: #FC4C9E;
    font-weight: 700;
}

.menu-content ul li a:hover {
    background: #eee;
    color: #FC4C9E;
}

.close-icon {
    font-size: 24px;
    cursor: pointer;
    padding: 10px;
    text-align: right;
}

@media only screen and (max-width: 800px) {
    .hamburger-menu {
        display: block;
    }

    .bannersection {
        display: none;
    }

    .privacy-policy {
        height: auto;
    }
}

.active-footer-link {
    color: #FC4C9E;
}