a {
    text-decoration: none;
}

/* Css starts here */
@media only screen and (max-width: 767px) {
    .txt_offerings {
        font-size: 18px;
    }

    .txt_explore {
        font-size: 12px;
    }

    .txt_offerings::before,
    .txt_offerings::after {
        display: none;
    }
}

.offer-unlisted-sha {
    margin-top: -18px;
    margin-left: 40px;
    margin-right: 40px;
}

.f-20 {
    font-size: 20px;
    font-weight: 700;
}

.f-14 {
    font-size: 14px;
    color: #6E6E6E;
}

.form-card {
    border-radius: 10px;
    padding: 24px;
    border: none;
    box-shadow: 0px 16px 24px 0px #00000014;
}

.form-label {
    font-size: 14px;
}

.form-control {
    height: 48px;
    font-size: 14px;
    font-weight: 400;
    color: #9D9D9D;
}

.form-control:focus {
    color: #6e6e6e;
    background-color: #fff;
    border-color: #e2e2e2 !important;
    outline: 0;
    box-shadow: none !important;
}

.txt_login {
    color: #ED1164;
    text-decoration: none;
    padding-left: 5px;
    font-size: 12px;
    font-weight: 700;
}

.txt_login:hover {
    color: #ED1164;
}

.f-12 {
    font-size: 12px;
}

.send-cta {
    color: #fff;
    padding: 12px;
    width: 100%;
    background-color: #97144D;
    font-size: 16px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 8px;
    display: block;
}

.off-main-card {
    padding: 48px;
    border: none;
}

/*carosol css*/
.scroll-container {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.scroll-container::-webkit-scrollbar {
    display: none;
}

.card-stock {
    width: 216px;
    margin-right: 15px;
    flex-shrink: 0;
    border: 1px solid #f9f9f9 !important;
    box-shadow: 0px 0px 2px 0px #0000001A;
}

.card.card-stock:hover {
    box-shadow: 0px 24px 40px 0px #00000014;
    transition: box-shadow 0.3s ease;
}

.carousel-wrapper {
    position: relative;
}

.carousel-control {
    position: relative;
    margin-top: 6%;
    transform: translateY(-50%);
    z-index: 1;
    background-color: #ffffff;
    color: #B4B4B4;
    border: none;
    padding: 0.5rem 1rem;
    cursor: pointer;
}

.carousel-control.prev {
    left: 0;
}

.carousel-control.next {
    right: 0;
}

.carousel-control.next:hover {
    color: #ED1164;
}

.carousel-control.prev:hover {
    color: #ED1164;
}

.carousel-dots {
    text-align: center;
    margin-top: 1rem;
}

.carousel-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #B4B4B4;
    border-radius: 50%;
    margin: 0 0px;
    cursor: pointer;
}

.carousel-dot.active {
    background-color: #ED1164;
    width: 16px;
    border-radius: 4px;
    height: 6px;
}

.card.blink {
    border: 4px solid #145599;
    animation: blink-border 1s infinite;
}

@keyframes blink-border {

    0%,
    100% {
        border-color: #145599;
    }

    50% {
        border-color: #007bff;
    }
}