.questiontxt {
    font-size: clamp(26px, 5vw, 42px);
    color: #fff;
    font-family: 'Myriad Pro Bold';
}

.contenttxt {
    font-size: clamp(20px, 3vw, 36px);
    color: #fff;
    font-family: 'Myriad Pro Semibold'
}

.sectiontxt {
    font-size: clamp(16px, 3vw, 24px);
    color: #fff;
    font-family: 'Myriad Pro Regular';
}

.instructiontxt {
    font-size: clamp(16px, 3vw, 20px);
    color: #fff;
    font-family: 'Myriad Pro Light';
}


.buttontxt {
    font-size: clamp(22px, 3vw, 32px);
    font-family: 'Myriad Pro Bold'
}

.dot {
    height: clamp(20px, 2vw, 25px);
    width: clamp(20px, 2vw, 25px);
    background-color: rgba(255, 131, 0, 0.3);
    border-radius: 50%;
    display: inline-block;
    margin: 0 5px;
}

.dot-done {
    display: flex;
    justify-content: center;
    align-items: center;
    height: clamp(20px, 2vw, 25px);
    width: clamp(20px, 2vw, 25px);
    background-color: rgba(255, 131, 0, 1);
    border-radius: 50%; /* Makes it a circle */
    font-size: 18px; /* Adjust the font size of the icon */
    cursor: pointer;
}

a {
    cursor: pointer;
}

.navbar-toggler:focus {
    box-shadow: unset
}

.txt-footer {
    font-size: clamp(13px, 3vw, 17px);
    color: #fff;
    font-family: 'Myriad Pro Light';
}


@media(min-width: 768px) {
    .content-bg {
        background-image: url('Images/bg_desktop.png');
        background-position: top center;
        background-size: 100% auto;
        background-repeat: no-repeat;
    }
}

@media(max-width: 767.98px) {
    .content-bg {
        background-image: url('Images/bg.png');
        background-position: top center;
        background-size: 100% auto;
        background-repeat: no-repeat;
    }
}

body {
    background-color: #e68b7d
}

@media (max-width: 991.98px) {
    .offcanvas-body {
        background-color: #8e1558
    }

    .offcanvas-header {
        background-color: #8e1558;
        color: #fff
    }
}

.btn-glow {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

    .btn-glow:hover {
        box-shadow: 0 0 10px #fff;
        transform: scale(1.1);
    }

.nav-link {
    position: relative;
    display: inline-block;
    color: white;
    text-decoration: none;
    padding: 5px 0px !important;
    font-size: 20px;
}

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 100%;
        height: 3px;
        background-color: white;
        transform: translateX(-50%) scaleX(0);
        transform-origin: center;
        transition: transform 0.3s ease;
    }

    .nav-link:hover::after {
        transform: translateX(-50%) scaleX(1);
    }
