body {
    margin: 0;
    padding: 0;
    background-color: #3e4bb4;
}

h1 {
    color: rgba(255, 255, 255, 0.5); /* White (#FFF) with 50% opacity */
    font-size: 80pt;
}

h2 {
    color: #D751A3;
    font-size: 30pt;
}

h3 {
    color: #fff;
    font-size: 20pt;
}

li {
    color: #fff;
    font-size: 20pt;
}

.align-center {
    text-align: center;
}

.align-left {
    text-align: left;
}

.align-right {
    text-align: right;
}

.background-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: url("../img/background.png");
    background-size: cover;
}

.btn-show-more {
    background-color: rgba(0, 0, 0, 0);
    border-color: #fff;
    border-radius: 30px;
    border-width: 3px;
    color: #fff;
    font-size: 18pt;
    padding-left: 50px;
    padding-right: 50px;
}

.btn-show-more:active, .btn-show-more:hover {
    background-color: rgba(0, 0, 0, 0);
    border-color: #FC72D8;
    border-radius: 30px;
    border-width: 3px;
    color: #fff;
    font-size: 18pt;
    padding-left: 50px;
    padding-right: 50px;
}

.btn-sp {
    background-color: rgba(205, 82, 165, 0.5); /* #CD52A5 with 50% opacity */
    border-color: #CD52A5;
    border-radius: 30px;
    border-width: 3px;
    color: #fff;
    font-size: 18pt;
    padding-left: 50px;
    padding-right: 50px;
}

.btn-sp:active, .btn-sp:hover {
    background-color: #CD52A5;
    border-color: #fff;
    border-radius: 30px;
    border-width: 3px;
    color: #fff;
    font-size: 18pt;
    padding-left: 50px;
    padding-right: 50px;
}

.card-image {
    position: absolute;
    top: -30%; /* Adjust as needed to position the image halfway across the top edge */
    left: 50%;
    transform: translateX(-50%);
    width: 128px; /* Adjust width of the image as needed */
    height: auto; /* Maintain aspect ratio */
    z-index: 1; /* Ensure the image is above the card body */
}

.container {
    position: relative;
    z-index: 1;
}

.extra-content {
    display: none; /* Initially hide extra content */
}

.img-for-mobile {
    display: none;
}

.modal-header {
    background-color: #CD52A5;
}

.modal-title {
    color: #fff;
}

.p-sp {
    color: #fff;
    font-size: 20pt;
}

.roboto-thin {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: normal;
}

.roboto-light {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: normal;
}

.roboto-regular {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.roboto-medium {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: normal;
}

.roboto-bold {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: normal;
}

.roboto-black {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.roboto-thin-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 100;
    font-style: italic;
}

.roboto-light-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 300;
    font-style: italic;
}

.roboto-regular-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 400;
    font-style: italic;
}

.roboto-medium-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    font-style: italic;
}

.roboto-bold-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    font-style: italic;
}

.roboto-black-italic {
    font-family: "Roboto", sans-serif;
    font-weight: 900;
    font-style: italic;
}

.sp-card {
    background-color: rgba(242, 81, 190, 0.5); /* F251BE with 50% opacity */
    border-radius: 30px;
    height: 15rem;
    border: 0;
}

.sp-ml5 {
    margin-left: 8rem;
}

.sp-mt-5 {
    margin-top: -5rem;
}

.sp-mt-4 {
    margin-top: -4rem;
}

.sp-terms {
    font-size: 18pt;
    color: rgba(255, 255, 255, 0.5); /* White (#FFF) with 50% opacity */
}

.span-main {
    font-size: 20pt;
    color: #fff;
}

.span-pink {
    color: #FC72D8;
}

.span-required {
    color: #CD52A5;
}

.span-sp {
    font-size: 110pt;
    color: #FC72D8;
}

.span-sp-block {
    font-size: 28pt;
    color: #fff;
}

.span-sp-feature {
    font-size: 30pt;
    color: #fff;
    padding-left: 30pt;
    line-height: 2;
}

.span-sp-small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 18pt;
}

.span-sp-sub {
    font-size: 28pt;
    color: #fff;
}

.span-white {
    color: #fff;
}

.vr {
    color: #fff;
    height: 20rem;
    width: 6px;
    opacity: 1;
}

/* Extra small devices (phones, 600px and down) */
@media (max-width: 600px) {
    h1 {
        font-size: 40pt;
    }

    h2 {
        font-size: 30pt;
    }

    h3 {
        font-size: 20pt;
    }

    li {
        font-size: 14pt;
    }

    .btn-sp {
        margin-top: 20px;
    }

    .container {
        padding: 1rem;
    }

    .col-sm-center {
        text-align: center;
    }

    .img-for-desktop {
        display: none;
    }

    .img-for-mobile {
        display: block;
    }

    .me-3 {
        width: 40px;
    }

    .p-sp {
        font-size: 20pt;
    }

    .pb-5 {
        padding-bottom: 1.5rem !important;
    }

    .pt-5 {
        padding-top: 1.5rem !important;
    }

    .span-main {
        font-size: 15pt;
    }

    .span-sp {
        font-size: 70pt;
    }

    .span-sp-feature {
        font-size: 18pt;
        padding-left: 0pt;
    }

    .span-sp-sub {
        font-size: 18pt;
    }
}

@media (min-width: 320px) and (max-width: 480px) {
    h1 {
        font-size: 28pt;
    }

    h1.h1-sub {
        font-size: 26pt;
    }

    h2 {
        font-size: 28pt;
    }

    h3 {
        font-size: 20pt;
    }

    li {
        font-size: 14pt;
    }

    .btn-sp {
        margin-top: 20px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .btn-sp:active, .btn-sp:hover {
        margin-top: 20px;
        padding-left: 40px;
        padding-right: 40px;
    }

    .card-image {
        top: -30%; /* Adjust as needed to position the image halfway across the top edge */
        width: 72px; /* Adjust width of the image as needed */
    }

    .container {
        padding: 1rem;
    }

    .col-sm-center {
        text-align: center;
    }

    .img-for-desktop {
        display: none;
    }

    .img-for-mobile {
        display: block;
    }

    .me-3 {
        width: 40px;
    }

    .p-5 {
        padding: 1.5rem !important;
    }

    .p-sp {
        font-size: 16pt;
    }

    .pb-5 {
        padding-bottom: 1.5rem !important;
    }

    .pt-5 {
        padding-top: 1.5rem !important;
    }

    .sp-card {
        height: 7rem;
    }

    .span-main {
        font-size: 15pt;
    }

    .sp-ml5 {
        margin-left: 0rem;
    }

    .sp-mt-5 {
        margin-top: -2.5rem;
    }

    .sp-mt-4 {
        margin-top: -2rem;
    }

    .span-sp {
        font-size: 50pt;
    }

    .span-sp-block {
        font-size: 16pt;
        color: #fff;
    }

    .span-sp-feature {
        font-size: 18pt;
        padding-left: 0pt;
    }

    .span-sp-small {
        font-size: 8pt;
    }

    .span-sp-sub {
        font-size: 9pt;
    }

    .vr {
        width: 2px;
        height: 9rem;
    }
}


@media (min-width: 480px) and (max-width: 768px) {
    h1 {
        font-size: 40pt;
    }

    h2 {
        font-size: 30pt;
    }

    h3 {
        font-size: 20pt;
    }

    li {
        font-size: 14pt;
    }

    .btn-sp {
        margin-top: 20px;
    }

    .container {
        padding: 1rem;
    }

    .col-sm-center {
        text-align: center;
    }

    .img-for-desktop {
        display: none;
    }

    .img-for-mobile {
        display: block;
    }

    .me-3 {
        width: 40px;
    }

    .p-sp {
        font-size: 20pt;
    }

    .pb-5 {
        padding-bottom: 1.5rem !important;
    }

    .pt-5 {
        padding-top: 1.5rem !important;
    }

    .span-main {
        font-size: 15pt;
    }

    .span-sp {
        font-size: 70pt;
    }

    .span-sp-feature {
        font-size: 18pt;
        padding-left: 0pt;
    }

    .span-sp-sub {
        font-size: 18pt;
    }
}
