.twitter path {
    fill: #4CD2FF;
    stroke: none;
}

.play-fill-white {
    fill: #227BB7;
    stroke: none;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar,
#snackbar_error {
    visibility: hidden;
    /* Hidden by default. Visible on click */
    min-width: 250px;
    /* Set a default minimum width */
    margin-left: -125px;
    /* Divide value of min-width by 2 */
    background-color: #333;
    /* Black background color */
    color: #fff;
    /* White text color */
    text-align: center;
    /* Centered text */
    border-radius: 2px;
    /* Rounded borders */
    padding: 16px;
    /* Padding */
    position: fixed;
    /* Sit on top of the screen */
    z-index: 1;
    /* Add a z-index if needed */
    left: 50%;
    /* Center the snackbar */
    bottom: 30px;
    border-radius: 10px;
    /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show,
#snackbar_error.show {
    visibility: visible;
    /* Show the snackbar */
    /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
However, delay the fade out process for 2.5 seconds */
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@keyframes fadein {
    from {
        bottom: 0;
        opacity: 0;
    }

    to {
        bottom: 30px;
        opacity: 1;
    }
}

@-webkit-keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}

@keyframes fadeout {
    from {
        bottom: 30px;
        opacity: 1;
    }

    to {
        bottom: 0;
        opacity: 0;
    }
}


/* scrollbar */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    -webkit-border-radius: 10px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.5);
}

::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.3);
}


/* trusted slider  */
.swiper-container {
    overflow: hidden;
}


/* tools section */
#tools-you-learn .tools-image {
    text-align: center;
}

#tools-you-learn .tools-image img {
    width: auto;
    height: auto;
    max-height: 100px;
}

.enroll-btn {
    position: relative;
    z-index: 2;
}

.faq {
    background: #fff !important;
}

.cta .content-wrapper .content img {
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding: 4px;
    width: 40px;
    height: 40px;
    border: 1px solid #ffffff;
}


.fixed-counter .button-div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.fixed-counter .button-div p {
    font-size: 16px;
}

.page-counter .button-div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.button-div p {
    border-radius: 30px;
}

.fixed-counter .counter-div h2 {
    font-size: 25px;
    margin-bottom: 5px;
}

.enroll-btn {
    display: flex;
    gap: 10px;
}

.enroll-btn p {
    color: #fff;
    background: #174888;
    cursor: pointer;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.enroll-btn p:hover {
    transform: translateY(-2px);
}

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

.cta-button form .PaymentButton--dark.svelte-ekc7fv.svelte-ekc7fv {
    background: #fff !important;
    color: #174888 !important;
    box-shadow: 0 3px 10px rgb(255 255 255 / 20%);
    border: 1px solid #fff;
}

.cta-button form .PaymentButton-contents.svelte-ekc7fv.svelte-ekc7fv {
    padding: 0 !important;
}

.cta-button form .PaymentButton-text.svelte-ekc7fv.svelte-ekc7fv {
    font-size: 16px !important;
    font-weight: 600 !important;
}

.cta .content-wrapper {
    padding-left: 20px;
}

footer .footer-menu {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

header a.bg-btnAccent {
    background: #3e94dd;
    transition: 0.3s ease;

}

header a.bg-btnAccent:hover {
    background: #174888;
    transition: 0.3s ease;
    box-shadow: 0 0px 10px 2px rgb(23 72 136 / 27%);
}



footer .nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
}

footer .nav-link .line {
    color: #174888;
}

footer .nav-link a:hover {
    color: #174888;
}

header .nav-link a:hover {
    color: #174888;
}



.offer h2 {
    text-shadow: 2px 5px 5px #1748888c;
    gap: 5px;
}
span.off {
    transform: translate(8px, -30px);
}

@keyframes zoom-in {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

.zoom-in {
    animation: zoom-in 2s infinite;
}

/* Safari only */
@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
        .cta .bottom-div {
            margin-top: 30px;
        }
    }
}


@media(min-width:991px) {

    .PaymentButton-text {
        font-size: 18px !important;
        font-weight: 500;
        white-space: nowrap;
        font-style: normal;
        font-family: 'Outfit', sans-serif;
    }

}


@media(max-width:767px) {
    .title br {
        display: none !important;
    }
    p br{
        display: none;
    }
    .banner .content-inner .grid p{
        text-align: left;
    }

    .main-title {
        font-size: 40px !important;
    }

    .main-title br {
        display: none;
    }

    .why-elegance .main-title img {
        max-width: 200px;
    }

    #why-this-course {
        text-align: center;
    }

    .guided {
        text-align: center;
    }

    .cta {
        text-align: center;
    }

    .content.text-left {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .banner .content-inner {
        text-align: center;
        gap: 2rem;
    }

    .guided {
        text-align: center;
    }

    #why-this-course {
        text-align: center;
    }

    .page-counter .container {
        width: 100%;
    }

    .cta .content-wrapper {
        padding-left: 0;
    }

    .why-elegance .content .item {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        gap: 20px;
    }
    #tools-you-learn {
        text-align: center !important;
    }

}

@media(max-width:480px) {

    .main-title {
        font-size: 32px !important;
        line-height: 2.3rem;
    }

    .page-counter {
        text-align: center;
    }
    .page-counter .button-div {
        flex-direction: column;
    }
    .page-counter .counter-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
        gap: 0;
    }
    .counter-box .price {
        text-align: center;
        justify-content: center;
    }
    #tools-you-learn .tools-image {
        max-width: 160px;
    }

    .download-brochure .input-container .rounded-input {
        width: auto;
    }

    .trustedby-slider .swiper-wrapper {
        padding: 0 25px;
    }

    .master-business #content1 {
        text-align: center;
    }

    .bottom-text p {
        font-size: 2rem;
        line-height: 2.5rem;
    }


}



/* mobile counter css */
@media(max-width:480px) {
    .page-counter.mobile {
        display: block;
        position: fixed;
        bottom: 0;
        width: 100%;
        z-index: 9999;
    }

    footer#contact {
        margin-bottom: 3rem !important;
    }

    .page-counter.mobile .button-div p {
        border-radius: 8px;
    }

    .page-counter.mobile .PaymentButton--dark.svelte-ekc7fv.svelte-ekc7fv {
        color: #fff !important;
        background: #174888 !important;
        display: flex !important;
        align-items: center !important;
        border-radius: 10px !important;
        height: auto !important;
        min-width: auto !important;
        transition: 0.3s ease;
        padding: 2px 5px !important;
        width: auto !important;
        max-width: fit-content !important;
        min-width: 0;
    }

    .page-counter.mobile .PaymentButton-contents.svelte-ekc7fv.svelte-ekc7fv {
        padding: 3px !important;
        margin: 1px 0;
        width: fit-content;
    }

    .page-counter.mobile .PaymentButton-text.svelte-ekc7fv.svelte-ekc7fv {
        font-size: 13px !important;
        font-weight: 500;
        padding: 2px 5px;
    }

    .page-counter.mobile .bottom-div p {
        font-size: 16px;
    }

    .counter-fade-up {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .counter-fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }
    .batch{
        text-align: left;
    }
}


@media(min-width:0px) and (max-width:301px) {
.page-counter.mobile .bottom-div p {
    font-size: 13px !important;
}
.page-counter.mobile .bottom-div p {
    font-size: 13px;
}
}

@media(min-width:302px) and (max-width:389px) {
.page-counter.mobile .bottom-div p {
    font-size: 14px;
}
}

@media(min-width:0px) and (max-width:390px) {
    .page-counter.mobile .top-div {
        display: flex;
        justify-content: space-between;
        padding: 8px;
    }
    

    .page-counter.mobile .button-div {
        gap: 4px;
        flex-direction: row;
    }

    .page-counter.mobile .button-div p {
        font-size: 12px;
        padding: 2px 5px;
    }

    .page-counter.mobile .PaymentButton-text {
        font-size: 12px !important;
        font-weight: 500;
    }
    .page-counter.mobile .PaymentButton--dark.svelte-ekc7fv.svelte-ekc7fv {
        padding: 0!important;
    }
}

@media(min-width:384px) and (max-width:480px) {
    .page-counter.mobile .top-div {
        display: flex;
        justify-content: space-between;
        padding: 8px;
    }

    .page-counter.mobile .button-div {
        gap: 4px;
        flex-direction: row;
    }
    .page-counter.mobile .batch {
        text-align: left;
    }

    .page-counter.mobile .batch h2 {
        font-size: 20px;
    }

    .page-counter.mobile .button-div p {
        font-size: 13px;
        padding: 2px 8px;
        border-radius: 8px;
    }
    .page-counter.mobile .bottom-div p {
        font-size: 17px;
    }
}