@import url('https://api.fontshare.com/v2/css?f[]=general-sans@300,400,500,600,700&display=swap');
body {
    font-family: 'General Sans', sans-serif;
}

.bg_purple {
    background-color: #280533;
}

h2.main-title {
    font-size: 49px;
    text-transform: uppercase;
}

.btn_bg {
    background-color: #FA8432;
}

.icon-circle {
    width: 89px;
    height: 50px;
    background-color: #FA8432;
    /* Background color */
    border-radius: 50%;
    /* Makes it a circle */
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.icon-circle span {
    line-height: 1;
}

.text-light {
    color: #f8f9fa !important;
}

.text-muted {
    color: #ced4da !important;
}

.f-15 {
    font-size: 15px;
}

.img-80 {
    max-width: 85%;
    height: auto;
}

.bg-gray {
    background-color: #f1f1f1;
    /* Gray background */
    border-radius: 10px;
    /* Rounded corners */
}

.feature-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.feature-icon {
    width: 180px;
    /* Fixed width for the left side */
}

.feature-content {
    flex: 1;
    text-align: left;
    /* Align text to the left */
}

.feature-icon i {
    color: #FA8432;
    /* Orange icon color */
}

.feature-box h5 {
    margin-top: 10px;
    font-weight: bold;
}

/* Blur background when modal is shown */

body.modal-open .content {
    filter: blur(5px);
    transition: filter 0.3s ease;
}

.navbar-light .navbar-nav .nav-link {
    color: #000;
    font-weight: 500;
    margin: 0px 9px;
}

.rounded-circle {
    border-radius: 50% !important;
    margin-top: -76px;
}

.modal-content {
    padding: 20px 0;
    border-radius: 20px;
}

div#ageModal {
    backdrop-filter: blur(15px);
}

.modal-footer {
    border: none !important;
}

@media only screen and (max-width: 768px) {
    .icon-circle {
        width: 70px;
        height: 50px;
    }
    .d-flex.align-items-start.mb-4 {
        margin-top: 38px;
    }
    .testimonial-box {
        margin-bottom: 59px !important;
    }
    .banner_image {
        margin-top: 20px;
    }
}