@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

:root {
    --primary-color: #C40808;
    --secondary-color: #FAE013;
    --other-color: #F17E00;
    --light-color: #DD2A1B;
    --dark-color: #141515;
    --white-color: #ffffff;
    --black-color: #000000;
    --bg-color: #f8f9fa;
}

body {
    font-family: "Jost", sans-serif;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    background-color: var(--white-color);
}

a {
    text-decoration: none;
    color: inherit;
}

.pulse {
    animation: pulse-animation 2s infinite;
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.7);
    }

    100% {
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

.btnMan {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: color 0.5s;
    z-index: 1;
    border-radius: 3rem;
    font-weight: 500;
    color: var(--white-color);
    background: var(--light-color);
}

.btnMan:before {
    content: "";
    position: absolute;
    z-index: -1;
    background: var(--secondary-color);
    height: 150px;
    width: 250px;
    border-radius: 50%;
}

.btnMan:hover {
    color: var(--black-color);
}

.btnMan:before {
    top: 100%;
    left: 100%;
    transition: all 0.7s;
}

.btnMan:hover:before {
    top: -30px;
    left: -30px;
}

.btnMan:active:before {
    background: var(--theme-color);
    transition: background 0s;
}


/* Top header */
/* ====================================== */
header {
    background-color: var(--primary-color);
    color: var(--white-color);
    padding: 10px 0;
}

.social-box {
    width: 30px;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--white-color);
    color: var(--primary-color);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
}

.social-box img {
    width: 24px;
    height: 24px;
}

.social-box:hover {
    background-color: var(--secondary-color);
    color: var(--white-color);
}

/* ================================ 
Navbar Section 
=================================== */

.navbar {
    position: relative;
    /* box-shadow: 0 0 10px rgba(0, 0, 0, 0.068); */
    z-index: 999;
    background-color: #f9f0f0;
}

.navbar .navbar-brand>img {
    height: 80px;
}

.navbar .nav-link {
    font-size: 20px;
    transition: all 0.2s ease-in-out;
    position: relative;
    overflow: hidden;
    padding: 8px 10px !important;
    margin: 0 5px;
    /* margin-left: 2rem; */
}

.navbar .nav-link::after {
    content: "";
    position: absolute;
    bottom: 6px;
    left: 0;
    width: 0;
    transition: all 0.25s ease-in-out;
    height: 2px;
    background-color: var(--primary-color);
}

.navbar .nav-link:hover::after {
    width: 100%;
}

.navbar .nav-link:hover {
    color: var(--primary-color);
}

/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: #ffffff;
    /* backdrop-filter: blur(30px); */
    transition: all ease-in-out 0.2s;
    box-shadow: 0 -2px 20px 5px #3d3d3d21;
    animation: fadeInDown 0.45s ease-in-out;
}

@keyframes fadeInDown {
    0% {
        top: -30%;
    }

    50% {
        top: -15%;
    }

    100% {
        top: 0;
    }
}

@media all and (min-width: 992px) {
    .navbar .dropdown-menu-end {
        right: 0;
        left: auto;
        min-height: auto !important;
        border-radius: 0;
    }



    .navbar .dropdown-menu {
        display: block;
        opacity: 1;
        transform: translateY(20px);
        transition: all .3s ease-in;
        visibility: hidden;
        min-width: 22rem;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: .3s;
        border: 0;
        padding: 10px;
        min-width: 5rem;
        left: 50%;
        transform: translate(-50%, 0);
        margin-top: 0;
        border-radius: 5px;
        box-shadow: 0 10px 20px rgba(15, 39, 125, 0.4);
    }

    .navbar .dropdown-menu .dropdown-submenu.dropend .dropdown-menu {
        left: 100%;
        right: 0;
        top: -8px;
        border-radius: 0;
        /* box-shadow: none; */
    }

    .navbar .dropdown-submenu:hover>.dropdown-menu,
    .navbar .dropdown:hover>.dropdown-menu {
        opacity: 1;
        /* transform: scaleY(1); */
        visibility: visible;
    }

    .dropdown-menu a,
    .dropdown-submenu a {
        color: var(--black-color);
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 6px 15px;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: var(--fw-500);
    }

    .dropdown-menu a:hover,
    .dropdown-submenu a:hover,
    .dropdown-menu a:focus,
    .dropdown-submenu a:focus {
        color: var(--primary-color);
    }
}

.banenr {
    position: relative;
}

.banner .count-down {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0);
    z-index: 10;
}

.yg-wdt-para-section-title-1 {
    margin-bottom: 0;
    position: relative;
}

.yg-wdt-para-title-onlyLeft-imgIco-2 {
    position: absolute;
    top: 0;
    left: 0;
}

.yg-wdt-para-title-onlyRight-imgIco-3 {
    position: absolute;
    top: 0;
    right: 0;
}

.yg-wdt-para-title-onlyLeft-imgIco-2 img,
.yg-wdt-para-title-onlyRight-imgIco-3 img {
    width: 30px;
    height: 30px;
}

/* Gallery */
.galleryBox {
    aspect-ratio: 2 / 1.5;
    /* e.g., 380x342 */
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.galleryBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.galleryBox .bottomPart {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: calc(100% - 40px);
    opacity: 1;
    transition: 0.3s
}

.galleryBox .zoom {
    position: absolute;
    width: 50px;
    height: 50px;
    line-height: 50px;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 3px rgb(0 0 0 / .3);
    font-size: 20px;
    text-align: center;
    border-radius: 1rem;
    opacity: 0
}

.galleryBox:hover .zoom {
    opacity: 1
}

.videoMain {
    background: url(../images/service-shape-1.png) no-repeat center bottom;
    background-size: contain;
    position: relative;
}

.videoPanel {
    position: relative;
    margin-top: -130px;
}

.playbutton {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: var(--white-color);
}

.teamMain {
    position: relative;
    background: #C40808 url(../images/pattern.png);
}

.teamBox {
    position: relative;
    /* overflow: hidden; */
    transition: 0.3s;
    aspect-ratio: 1 / 1;
    background: url(../images/teambg.png) no-repeat center center;
    background-size: 100% 100%;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 1.75rem;
    text-align: center;
}

.teamBox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.aboutArtist .artist {
    position: relative;
    padding: 40px;
}

.aboutArtist .artist:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    border-radius: 80px 80px 80px 0;
    z-index: -1;
}

.aboutArtist .artist:after {
    content: "";
    position: absolute;
    left: 8px;
    top: 8px;
    bottom: 8px;
    right: 8px;
    border: 8px double var(--white-color);
    border-radius: 70px 70px 70px 0;
    z-index: -1;
}

.accolade .inner-contain {
    padding: 20px 20px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    background-color: #ffffff;
    /* backdrop-filter: blur(5px); */
    box-shadow: 4px 6px 30px rgba(0, 0, 0, 0.096);
    gap: 24px;
    transition: all 0.25s ease-in-out;
}

.accolade .inner-contain img {
    height: 100px;
}

.accolade .inner-contain h4 {
    font-size: 18px;
    font-weight: 600;
}

.accolade .inner-contain:hover {
    transform: translateY(-10px);
}

.poupContent {
    max-width: 900px;
    font-size: 0.85rem;
}


footer ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

footer ul li a {
    display: flex;
    align-items: center;
    transition: all 0.25s;
    font-size: 14px;
    position: relative;
    margin: 0 1rem;
}

footer ul li a::before {
    content: "-";
    position: absolute;
    left: -1.15rem;
    font-size: 20px;
    color: var(--white-color);
}

footer ul li:first-child a::before{
    display: none;
}

footer ul li a:hover {
    color: var(--primary-color);
}

footer .copy {
    border-top: 1px solid #c0000052;
    padding: 12px 0;
}

footer .copy p {
    font-weight: 500;
}





.inner-banner {
    width: 100%;
    width: 100%;
    height: 250px;
    background: linear-gradient(rgba(12, 70, 70, 0.259), rgba(12, 70, 70, 0.259)),
        url(../images/innerbanner.jpg) no-repeat center;
    background-size: cover;
}

.inner-banner .overlay {
    background: #0c464642;
    backdrop-filter: blur(1px);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-color);
}

.inner-banner .overlay h1 {
    font-size: 36px;
    font-weight: 700;
}

.contact-page .info-contain {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 1px 5px 10px rgba(0, 0, 0, 0.068);
    border: 1px dashed #ddd;
}

.icon-con {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: var(--white-color);
    background-color: var(--secondary-color);
    display: grid;
    place-items: center;
    font-size: 26px;
}

.contact-page h6 {
    font-size: 18px;
    letter-spacing: 0.5px;
}

.about-content {
    position: relative;
    z-index: 1;
    border-radius: 1rem;
    overflow: hidden;
    max-width: 500px;
    float: left;
    margin: 0 35px 10px 0;
}

.about-content::after {
    content: "";
    position: absolute;
    left: 20px;
    top: 20px;
    bottom: 20px;
    right: 20px;
    border: 8px double var(--white-color);
    /* border-radius: 70px 70px 70px 0;
    z-index: -1; */
}



.blogListMain {
    position: relative;
    overflow: hidden;
    background-color: var(--bs-gray-200);
}

.blogListMain .upperBox {
    height: 220px;
    position: relative;
}

.blogListMain .upperBox .timePt {
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 3rem;
    font-size: 12px;
    display: inline-table;
}

.rounded-img {
    border-top-left-radius: 0.625rem !important;
    border-top-right-radius: 0.625rem !important;
}

.blogListMain h3 {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.blogListMain p {
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    font-size: 0.85rem;
}


@media(max-width:800px){
    header{
        display: none;
    }
    .btnMan{
        padding: 0.5rem 1rem;
    }
    .navbar .nav-link{
        margin: 0;
    }
    footer ul{
        flex-wrap: wrap;
    }
    .teamBox{
        padding: 1rem;
    }
    .inner-banner{
        height: 150px;
        text-align: center;
    }
    .inner-banner .overlay h1{
        font-size: 24px;
    }
    .banner .count-down {
        position: relative;
        bottom: 20px;
        left: 0;
        transform: inherit;
        z-index: 10;
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }
    .flipdown.flipdown__theme-dark .rotor-group-heading:before {
        color: #000000;
    }
}