body {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
}

.federo {
    font-family: "Federo", sans-serif;
}

.waterfall {
    font-family: "Waterfall", sans-serif;
}

.suranna {
    font-family: "Suranna", sans-serif;
}

.blue-text {
    color: #1E76BA;
}

.gradient-border {
    display: inline-block;
    padding: 5px 30px;
    width: fit-content;

    font-size: 1rem;
    font-weight: 600;
    color: #000;

    border: 2px solid transparent;
    border-radius: 38px;
    margin-inline: auto;

    background: linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(90deg, #ED679A, #1E76BA) border-box;
}

.gradient-text {
    display: inline-block; /* important */
    background: linear-gradient(90deg, #1E76BA, #FD679A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.hero {
    position: relative;
    padding-inline: 0;
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bg-light-blue {
    background-color: #5ca9f0;
}

.bg-pink {
    background-color: #f2a6e7;
}

.bg-yellow {
    background-color: #fbe285;
}

.bg-dark-blue {
    background-color: #1e75bc;
}

.section-margin {
    margin-top: 70px !important;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    translate: 0 5%;
}

.bg-light-blue .hero::before {
    background: linear-gradient(
            to top,
            #5CA9F0 0%,
            #5CA9F0 20%,
            rgba(255, 255, 255, 0) 100%
    );
}

.bg-pink .hero::before {
    background: linear-gradient(
            to top,
            #F2A6E7 0%,
            #F2A6E7 20%,
            rgba(255, 255, 255, 0) 100%
    );
}

.bg-yellow .hero::before {
    background: linear-gradient(
            to top,
            #FBE285 0%,
            #FBE285 20%,
            rgba(255, 255, 255, 0) 100%
    );
}

.bg-dark-blue .hero::before {
    background: linear-gradient(
            to top,
            #1E75BC 0%,
            #1E75BC 20%,
            rgba(255, 255, 255, 0) 100%
    );
}

.custom-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 59px;
    padding: 30px;
    left: 50%;
    translate: -50% -20%;
    width: 80%;
    color: #0E5388;

    box-shadow: inset 0 -2px 6px 0 rgba(10, 37, 64, 0.35),
    0 30px 60px -30px rgba(0, 0, 0, 0.30),
    0 50px 100px -20px rgba(50, 50, 93, 0.25);
}

@media (min-width: 768px) {
    .gradient-border {
        display: inline-block;
        padding: 10px 60px;
        width: fit-content;

        font-size: 1.5rem;
        font-weight: 600;
        color: #000;

        border: 2px solid transparent;
        border-radius: 38px;
        margin-inline: 0;

        background: linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(90deg, #ED679A, #1E76BA) border-box;
    }

    .hero::before {
        content: "";
        position: absolute;
        inset: 0;
        translate: 20%;
    }

    .bg-light-blue .hero::before {
        background: linear-gradient(
                to left,
                #5CA9F0 0%,
                #5CA9F0 20%,
                rgba(255, 255, 255, 0) 100%
        );
    }

    .bg-pink .hero::before {
        background: linear-gradient(
                to left,
                #F2A6E7 0%,
                #F2A6E7 20%,
                rgba(255, 255, 255, 0) 100%
        );
    }

    .bg-yellow .hero::before {
        background: linear-gradient(
                to left,
                #FBE285 0%,
                #FBE285 20%,
                rgba(255, 255, 255, 0) 100%
        );
    }

    .bg-dark-blue .hero::before {
        background: linear-gradient(
                to left,
                #1E75BC 0%,
                #1E75BC 20%,
                rgba(255, 255, 255, 0) 100%
        );
    }

    .section-margin {
        margin-top: 100px !important;
    }

    .img-container {
        margin-bottom: 250px;
    }

    .custom-card {
        position: absolute;
        background: #FFFFFF;
        border-radius: 59px;
        padding: 40px;
        left: 80%;
        translate: -50% -80%;
        width: 32vw;
        color: #0E5388;

        box-shadow: inset 0 -2px 6px 0 rgba(10, 37, 64, 0.35),
        0 30px 60px -30px rgba(0, 0, 0, 0.30),
        0 50px 100px -20px rgba(50, 50, 93, 0.25);
    }
}