@import url('https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap');

:root {
    --primary: #642571;
    --darkprimary: #4a1c53;
    --lightprimary: #6425711a;
    --gray: #727885;
}

.sticky-header {
    position: sticky;
    top: 0;
}

body {
    font-family: "Mukta", sans-serif;
}

.primary {
    color: var(--primary);
}

.primarybg {
    background-color: var(--primary);
    color: #fff;
}

nav {
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
}

nav ul li {
    font-size: 24px;
    color: #fff;
}

nav ul li:hover {
    color: #e6227b;
}

.active {
    color: #e6227b;
    font-weight: bold;
}

h1,
h2,
h3,
h4,
h5 {
    color: #333333;
}

h1 {
    font-size: 38px;
    font-weight: bold;
}

h3 {
    font-size: 26px;
    font-weight: bold;
}

h4 {
    font-size: 24px;
    font-weight: 600;
}

h5 {
    font-size: 22px;
    font-weight: 600;
}

p {
    font-size: 22px;
    color: #666666;
}

small span {
    color: #202020;
}

.limited-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}


.trendingbg {
    border-left: 5px solid var(--primary);
    background-color: var(--lightprimary);
    color: var(--primary);
    height: 52px;
}

.primarybtn {
    background-color: var(--darkprimary);
    padding: 5px 10px;
    color: #fff;
    border-radius: 5px;
    transition: 0.3s;
}

.primarybtn:hover {
    background-color: var(--primary);
}

.straight_line {
    width: 100%;
    height: 1px;
    background-color: #666666;
}

.description p {
    text-align: justify;
    margin: 10px 0;
    line-height: 2;
}

.description img {
    width: auto;
    height: auto;
    max-height: 100%;
    object-fit: cover;
}

figure {
    display: flex;
    justify-content: center;
    max-height: 300px;
    width: 100%;
    border-top: 0.5px solid #9b9b9b;
    border-bottom: 0.5px solid #9b9b9b;
    margin: 10px 0;
}

figure a {
    display: flex;
    justify-content: center;
}

figure img {
    height: 100%;
    padding: 10px 0;
}

footer .box {
    background-color: var(--primary);
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    width: 100%;
    text-align: center;
}



footer .box p,
footer .box h4 {
    color: white;
}

figcaption {
    display: none;
}

@media(max-width:720px) {
    .container {
        padding: 0 10px;
    }

    .primarybtn {
        font-size: 12px;
    }

    h1 {
        font-size: 28px;
        font-weight: bold;
    }

    h3 {
        font-size: 24px;
        font-weight: bold;
    }

    h4 {
        font-size: 22px;
        font-weight: bold;
    }

    h5 {
        font-size: 20px;
        font-weight: bold;
    }

    p {
        font-size: 20px;
    }

}

.ui-autocomplete {
    z-index: 10000000;
    background-color: #ffffff;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    padding: 5px 0;
}

.ui-autocomplete .ui-menu-item:hover {
    background-color: #f5f5f5;
    color: #333333;
}

.autocomplete {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    outline: none;
}

.autocomplete:focus {
    border-color: #642571;
    box-shadow: 0 0 0 1px #642571;
}
