@font-face {
    font-family: 'Poppins';
    src: url('/font/Poppins-Medium.woff2') format('woff2'),
    url('/font/Poppins-Medium.woff') format('woff');
    /* Add other font formats here if available */
}



body {
    font-family: Arial, sans-serif;
}

h1, h2, h3,h4,h5{
    font-family: 'Poppins', sans-serif;
}


/* Background Colors */
.bg-pink {
    background-color: #E70581;
    color: #FFFFFF;
}

.bg-dark-pink {
    background-color: #B40364;
}

.bg-light-blue {
    background-color: #6AD5F2;
    color: #FFFFFF;
}

.bg-green {
    background-color: #b5ce2f;
    color: #FFFFFF;
}

.bg-green-darker {
    background-color: #96AB26;
    color: #FFFFFF;
}



.bg-gray {
    background-color: #2E2E2E;
    color: #FFFFFF;
}

/* Banner Styling */
.banner,
.banner h2,
.banner-text,
.banner-text h1 {
    color: #FFFFFF;
}

.banner-text {
    text-align: left;
}

.banner-text h1 {
    font-size: 2rem;
}

@media (min-width: 1200px) {
    .banner-text h1 {
        font-size: 4rem;
    }
}

.banner h2 {
    font-size: 2rem;
}

@media (min-width: 1200px) {
    .banner h2 {
        font-size: 2.8rem;
    }
}

.cut-out-image {
    max-width: 70%;
    margin: auto;
}

@media (min-width: 1200px) {
    .cut-out-image {
        margin-bottom: -100px;
        max-width: unset;
    }
}

.banner-text-bottom p {
    font-size: 1.3rem;
}

@media (min-width: 1200px) {
    .banner-text-bottom p {
        font-size: 1.6rem;
    }
}

/* Section Styling */
section h3 {
    font-size: 2rem;
}

@media (min-width: 1200px) {
    section h3 {
        font-size: 2.8rem;
    }
}

section p {
    font-size: 1.4rem;
}

@media (min-width: 1200px) {
    section p {
        font-size: 1.6rem;
    }
}

section ul,
section ol {
    font-size: 1.4rem;
    list-style-position: inside;

}

@media (min-width: 1200px) {
    section ul,
    section ol {
        font-size: 1.6rem;
        text-indent: -1em;
        padding-left: 1em;
    }
}

/* Step Item Styling */
.step-item {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    background-color: #E70581;
    color: #FFFFFF;
    font-size: 6rem;
    text-align: center;
    line-height: 150px;
    margin: 0 auto;
    display: block;
    border: solid 2px #FFFFFF;
}

@media (min-width: 1200px) {
    .step-item {
        width: 250px;
        height: 250px;
        line-height: 250px;
    }
}

.step-pic {
    width: 150px;
    height: 150px;
}

@media (min-width: 1200px) {
    .step-pic {
        width: 250px;
        height: 250px;
    }
}

/* Responsive Styles */
@media (max-width: 991px) {
    ul,
    ol {
        padding: 0;
    }
}



.txt-rem{
     font-size: 2rem;
}
