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

:root {
    --white-color: #fff;
    --black-color: #151111;
    --theme-color: #df2526;
    --theme-dark: #661b18;
    --yellow: #fff400;
}

*,
html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 15px;
    color: var(--black-color);
    margin: 0;
    padding: 0;
    font-weight: 400;
    font-family: "Noto Sans", sans-serif;
}

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

ul,
ol {
    margin: 0;
    padding: 0;
    list-style: none;
}

p {
    font-family: var(--base);
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--heading);
}

.sticky {
    background: #fff;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    position: fixed !important;
    width: 100%;
    top: 0;
    z-index: 999;
}
.bg-gray{
    background: #d1d1d1;
}
.tag-title {
    font-size: 2rem;
    padding-right: 40px;
    padding-left: 40px;
    position: relative;
    font-weight: 600;
}

.tag-title:before,
.tag-title:after {
    width: 30px;
    height: 2px;
    background: var(--theme-color);
    content: '';
    position: absolute;
    top: calc(50% + 1px);
}

.tag-title:before {
    left: 0;
}

.tag-title:after{
    right: 0;
}
.slick-slide{
    margin: 0 0.625rem;
}
.bg-gradient2 {
    background: linear-gradient(90deg, var(--theme-color) 0%, var(--yellow) 100%);
}

/* HEADER */
/* ================================================= */
header {
    padding-top: 0.625rem;
    padding-bottom: 2.5rem;
    position: relative;
    background-color: var(--black-color);
    color: var(--white-color);
}

.menubg {
    background-color: var(--white-color);
    justify-content: space-between;
    align-items: center;
    border-radius: 0.625rem;
}

/* Navbar section */
.navbar {
    position: absolute;
    top: 90px;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: transparent;
}

.navbar .navbar-brand>img {
    width: 100px;
}

.navbar .nav-link {
    text-decoration: none;
    color: var(--theme-color);
    margin: 0 20px;
    font-size: 16px;
    position: relative;
    text-transform: uppercase;
    font-weight: 500;
}


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

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

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

/* navbar on scroll animation */
.navbar.scroll-on {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 16px 0;
    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;
}

.scroll-on .nav-item .nav-link {
    color: #121212;
}



.scroll-on .dropdown-menu a,
.scroll-on .dropdown-submenu a {
    color: var(--footer-color);
    transition: all 0.25s ease-in-out;
}

.scroll-on .dropdown-menu a:hover,
.scroll-on .dropdown-submenu a:hover {
    color: var(--theme-color);
}

@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-end a i {
        background-color: var(--bs-gray-500);
        color: var(--white-color);
        font-size: 0.6rem;
        min-width: 1.1rem;
        height: 1.1rem;
        line-height: 1.1rem;
        border-radius: var(--bs-border-radius-xl);
        text-align: center;
        margin-right: 0.5rem;
    }

    .navbar .dropdown-menu-end a:hover i {
        background-color: var(--bs-link-hover-color);
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        opacity: 0;
        visibility: hidden;
        transition: 0.3s;
        margin-top: 16px;
        min-width: 14rem;
        border-radius: 0;
        border: 0;
        box-shadow: -2px 3px 10px rgba(0, 0, 0, 0.1);
    }

    .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(--theme-color);
        background-color: var(--white-color);
    }
}

/* Banner */
.banner .slick-slide {
    margin: 0;
}

.banner .slick-prev {
    left: 40px;
}

.banner .slick-next {
    right: 40px;
}



.whatsapp {
    position: fixed;
    right: 10px;
    bottom: 70px;
    z-index: 999;
    animation: animate 2s linear infinite;
}

.whatsapp i {
    margin: 5px;
    color: #fff;
    background: #01c92c;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 7px 0 0;
    font-size: 36px;
    border-radius: 3px;
    display: inline-block;
}

@keyframes animate {
    0% {
        transform: scale(1.1);
    }

    50% {
        transform: scale(0.9);
    }

    0% {
        transform: scale(1.1);
    }
}

.phone {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 999;
    animation: animate 4s linear infinite;
}

.phone i {
    margin: 5px;
    color: #fff;
    background: #565656;
    width: 50px;
    height: 50px;
    text-align: center;
    padding: 13px 0 0;
    font-size: 26px;
    border-radius: 3px;
    display: inline-block;
}

/* Event Panel */
/* ==================================== */
.eventPanel{
    position: relative;
    /* background: url(../images/eventbanner.jpg) center no-repeat; */
    background: #edf1fc;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Event List */
.eventListMain{
    position: relative;
    overflow: hidden;
}
.eventListMain .upperBox{
    height: 300px;
    position: relative;
    overflow: hidden;
}
.eventListMain .upperBox .timePt{
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    font-size: 14px;
    display: inline-table;
    border-radius: 10px 10px 0 0;
}

/* Gallery Panel */
/* ===================================== */
.galleryBox {
    height: 300px;
    position: relative;
    display: block;
    overflow: hidden;
    cursor: pointer;
    transition: 0.3s;
}

.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 5px rgba(0, 0, 0, 0.3);
    font-size: 20px;
    text-align: center;
    border-radius: 100%;
    opacity: 0;
}

.galleryBox:hover .zoom {
    opacity: 1;
}

.portBox img{
    height: 200px;
}
/* Footer Panel */
/* ========================== */
footer {
    position: relative;
}

footer .logo {
    height: 100px;
}

footer a {
    color: var(--white);
}

footer ul {
    display: flex;
    flex-direction: column;
    padding: 0;
    list-style: none;
    margin: 0;
}

footer ul li {
    margin-bottom: 0.625rem;
}
footer ul li a:hover{
    color: var(--yellow);
}


/* Inner Banner */
.innerBanner {
    min-height: 190px;
    position: relative;
    text-align: center;
}

/* contact page */
.contactDetails{
    border-width: 5px;
    border-style: solid;
}
.contactSchedule{
    position: relative;
}
.contactForm{
    background: #f2f2f2;
}
.contactForm .textBox{
    width: 100%;
    border: 0;
    position: relative;
    outline: none;
    min-height: 60px;
    /* border-radius: 5px; */
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.15);
    padding: 10px 10px 10px 60px;
    font-size: 18px;
}
.contactForm .form-group i{
    position: absolute;
    left: 20px;
    z-index: 1;
    top: 10px;
    font-size: 1.15rem;
}
/* Get In Touch */
.getInTouchHome{
    outline-width: 10px;
    outline-style: solid;
    outline-color: rgba(0,0,0,0.1);
}

.get-detail li{
    flex: 1;
}

.get-detail li:last-child {
    padding-bottom: 0;
}

.get-detail li i {
    padding: 0.75rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}