﻿
/* ----------------------------------------------------------------
Typography
-----------------------------------------------------------------*/
:root {
    --beige: #f8f2ea;
    --black: #231f20;
    --red: #8a0c1e;
    --dark-red: #830012;
    --light-purple: #C5BCCF;
    --gray: #6c6d70;
    --dark-gray: #444545;
    --dark-beige: #e2cbac;
    --link-clr: #231f20;
    --link-hover: #8a0c1e;
    /*    --blue: #1798A6;
    --light: #f2f2f2;
    --gold-sec: #C68B66;*/
    --font-80: 80px;
    --font-70: 70px;
    --font-60: 60px;
    --font-50: 50px;
    --font-40: 40px;
    --font-30: 30px;
    --font-26: 26px;
    --font-24: 24px;
    --font-22: 22px;
    --font-20: 20px;
    --font-18: 18px;
    --font-16: 16px;
    --font-15: 15px;
    --font-13: 13px;
    --px-100: 100px;
    --px-80: 80px;
    --px-70: 70px;
    --px-60: 60px;
    --px-50: 50px;
    --px-40: 40px;
    --px-30: 30px;
    --px-20: 20px;
    --stagger: 0.08s; /* delay between letters */
    --duration: 3s; /* duration for each letter */
    --ease: cubic-bezier(.25,.8,.25,1);
    --start-x: 80vw; /* how far to start from the right */
}

.letter {
    display: inline-block;
    transform: translateX(var(--start-x));
    /*opacity:0;
    */ /*animation: slideIn var(--duration) var(--ease) forwards;
    animation-delay: calc(var(--i) * var(--stagger));     */
    -webkit-transform: translateX(var(--start-x));
    -moz-transform: translateX(var(--start-x));
    -ms-transform: translateX(var(--start-x));
    -o-transform: translateX(var(--start-x));
}

.swiper-slide-active .letter {
    animation: slideIn var(--duration) forwards;
    animation-delay: calc(var(--i) * var(--stagger));
}

@keyframes slideIn {
    to {
        transform: translateX(0);
        opacity: 1;
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
    }
}

@font-face {
    font-family: 'Gotham-Thin';
    src: url('../fonts/Gotham-Thin.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Light';
    src: url('../fonts/Gotham-Light.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Book';
    src: url('../fonts/Gotham-Book.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Medium';
    src: url('../fonts/Gotham-Medium.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Bold';
    src: url('../fonts/Gotham-Bold.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Gotham-Black';
    src: url('../fonts/Gotham-Black.otf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BarlowCondensed-Regular';
    src: url('../fonts/BarlowCondensed-Regular.ttf');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'BarlowCondensed-MediumItalic';
    src: url('../fonts/BarlowCondensed-MediumItalic.ttf');
    font-weight: 500;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'BarlowCondensed-SemiBoldItalic';
    src: url('../fonts/BarlowCondensed-SemiBoldItalic.ttf');
    font-weight: 600;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'weblysleekuil';
    src: url('../fonts/weblysleekuil.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'weblysleekuisb-Bold';
    src: url('../fonts/weblysleekuisb.ttf');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

html, body {
    scroll-behavior: smooth;
}

body {
    color: var(--black);
    line-height: 1.5;
    font-family: "Gotham-Book", sans-serif;
    font-size: var(--font-18);
}

a {
    text-decoration: none;
    color: var(--link-clr);
}

    a:hover, .link:hover:after {
        color: var(--link-hover);
        border-color: var(--link-hover);
    }

h1, h2, h3, h4, h5, h6 {
    font-family: 'Gotham-Medium';
}

section {
    overflow: hidden;
}

img {
    max-width: 100%;
}

/* ----------------------------------------------------------------
	Basic
-----------------------------------------------------------------*/
.container-ewb {
    max-width: 1555px;
    margin: auto;
    padding: 0 30px;
}

.home-slider {
    display: block;
}

.clear {
    clear: both;
    display: block;
    font-size: 0px;
    height: 0px;
    line-height: 0;
    width: 100%;
    overflow: hidden;
}

::selection {
    background: var(--dark-red);
    color: #fff;
    text-shadow: none;
}

::-moz-selection {
    background: var(--dark-red); /* Firefox */
    color: #fff;
    text-shadow: none;
}

::-webkit-selection {
    background: var(--dark-red); /* Safari */
    color: #fff;
    text-shadow: none;
}

:active, :focus {
    outline: none !important;
}

p:last-child {
    margin: 0;
}

p.strong, p strong {
    font-family: 'Gotham-Medium';
    font-weight: 100 !important;
}

.link {
    position: relative;
    font-size: var(--font-22);
}

    .link:after {
        position: absolute;
        content: "";
        bottom: 0;
        left: 1px;
        width: 100%;
        border-bottom: 1px solid var(--dark-gray);
    }

.bg-img {
    background-repeat: no-repeat !important;
    background-size: cover;
    background-position: center;
}

/* aos */
.aos-animate[data-aos] {
    transition-delay: .2s
}

[data-aos='fade-start'] {
    transform: translateX(-150px);
    transition: 1s;
    opacity: 0
}

[data-aos='fade-end'] {
    transform: translateX(150px);
    transition: 1s;
    opacity: 0
}

[data-aos*="fade-up"] {
    transform: translateY(100px);
    transition: 1s;
    opacity: 0;
}


[data-aos*="fade-bottom"] {
    transform: translateY(-50px);
    transition: 1s;
    opacity: 0
}

[data-aos='fade-in'] {
    transition: 1s;
    opacity: 0
}

.aos-animate[data-aos*='fade'] {
    transform: inherit;
    opacity: 1
}

.aos-animate[data-aos]:nth-child(2), .fadeInBottom:nth-child(2) {
    transition-delay: 500ms;
}

.aos-animate[data-aos]:nth-child(3), .fadeInBottom:nth-child(3) {
    transition-delay: 700ms;
}

.aos-animate[data-aos]:nth-child(4), .fadeInBottom:nth-child(4) {
    transition-delay: 800ms;
}

.aos-animate[data-aos]:nth-child(5), .fadeInBottom:nth-child(5) {
    transition-delay: 1000ms;
}

.aos-animate[data-aos]:nth-child(6), .fadeInBottom:nth-child(6) {
    transition-delay: 1200ms;
}

.aos-animate[data-aos]:nth-child(7) {
    transition-delay: 1400ms;
}

.aos-animate[data-aos]:nth-child(8) {
    transition-delay: 1600ms;
}

.aos-animate[data-aos]:nth-child(9) {
    transition-delay: 1800ms;
}

.aos-animate[data-aos]:nth-child(10) {
    transition-delay: 2000ms;
}

.aos-animate[data-aos]:nth-child(11) {
    transition-delay: 2200ms;
}

.aos-animate[data-aos]:nth-child(12) {
    transition-delay: 2400ms;
}


/* ----------------------------------------------------------------
Helper Classes + margins + paddings + Animations
-----------------------------------------------------------------*/
.red-clr {
    color: var(--red);
}

    .red-clr:after {
        border-color: var(--red);
    }

.dark-gray-clr {
    color: var(--dark-gray);
}

.white-clr {
    color: #fff;
}

.beige-bg {
    background-color: var(--beige);
}

.py-100 {
    padding-top: var(--px-100);
    padding-bottom: var(--px-100);
}

.py-80 {
    padding-top: var(--px-80);
    padding-bottom: var(--px-80);
}

.mt-80 {
    margin-top: var(--px-80);
}

.mb-80 {
    margin-bottom: var(--px-80);
}

.py-70 {
    padding-top: var(--px-70);
    padding-bottom: var(--px-70);
}

.mt-70 {
    margin-top: var(--px-70);
}

.mb-70 {
    margin-bottom: var(--px-70);
}

.py-60 {
    padding-top: var(--px-60);
    padding-bottom: var(--px-60);
}

.mt-60 {
    margin-top: var(--px-60);
}

.mb-60 {
    margin-bottom: var(--px-60);
}

.py-50 {
    padding-top: var(--px-50);
    padding-bottom: var(--px-50);
}

.mt-50 {
    margin-top: var(--px-50);
}

.mb-50 {
    margin-bottom: var(--px-50);
}

.py-40 {
    padding-top: var(--px-40);
    padding-bottom: var(--px-40);
}

.mt-40 {
    margin-top: var(--px-40);
}

.mb-40 {
    margin-bottom: var(--px-40);
}

.py-30 {
    padding-top: var(--px-30);
    padding-bottom: var(--px-30);
}

.mt-30 {
    margin-top: var(--px-30);
}

.mb-30 {
    margin-bottom: var(--px-30);
}

.py-20 {
    padding-top: var(--px-20);
    padding-bottom: var(--px-20);
}

.mt-20 {
    margin-top: var(--px-20);
}

.mb-20 {
    margin-bottom: var(--px-20);
}

/* --------------------------------------
Page Elements
--------------------------------------- */
#wrapper {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}


.elc-btn, .elc-btn:visited, .elc-btn:focus {
    color: var(--blue-btn);
    text-align: center;
    display: inline-block;
    /* width: 180px; */
    -webkit-border-radius: 5px;
    border-radius: 5px;
    padding: 8px 20px;
    background-color: #fff;
    text-transform: uppercase;
    border: 1px solid var(--gray);
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: .3s;
    transition: .3s;
    position: relative;
    cursor: pointer
}

    .elc-btn:before {
        position: absolute;
        inset: 0;
        width: 0;
        content: "";
        background: linear-gradient(45deg,var(--red),var(--red));
        transition: .5s;
        opacity: .3
    }

    .elc-btn:hover:before {
        width: 100%;
        opacity: 1
    }

    .elc-btn span {
        position: relative
    }

    .elc-btn:hover {
        color: #fff;
        border-color: var(--red);
        box-shadow: 0 2px 8px #3333337f;
        cursor: pointer
    }

.section-ttl {
    font-size: var(--font-50);
    font-weight: 400;
    position: relative;
}

.img-box {
    overflow: hidden;
}

    .img-box img {
        -webkit-transition: 0.5s;
        transition: 0.5s;
        -moz-transition: 0.5s;
        -ms-transition: 0.5s;
        -o-transition: 0.5s;
    }

    .img-box:hover img {
        transform: scale(1.1);
    }

@media screen and (max-width:1199px) {
    :root {
        --font-80: 70px;
        --font-70: 60px;
    }
}

@media screen and (max-width:991px) {
    :root {
        --font-80: 65px;
        --font-70: 55px;
        --font-60: 60px;
        --font-50: 40px;
        --font-40: 30px;
        --font-30: 25px;
        --font-26: 24px;
        --font-24: 22px;
        --font-22: 20px;
        --font-20: 18px;
        --font-18: 17px;
        --font-16: 15px;
        --font-15: 14px;
        --font-13: 12px;
        --px-80: 50px;
        --px-60: 40px;
        --px-50: 30px;
        --px-40: 25px;
        --px-30: 20px;
    }
}

@media screen and (max-width:767px) {
    :root {
        --font-80: 55px;
        --font-70: 45px;
        --font-50: 30px;
        --font-40: 25px;
        --font-22: 18px;
        --font-18: 16px;
    }
}

@media screen and (max-width:575px) {
    :root {
        --font-80: 45px;
        --font-70: 42px;
        --font-50: 30px;
        --font-40: 25px;
        --font-22: 17px;
        --font-18: 15px;
    }
}

/* ----------------------------------------------------------------
Header
-----------------------------------------------------------------*/

/* topbar */
#header {
    position: absolute;
    z-index: 100;
    width: 100%;
}

.header-wrap {
    background: linear-gradient(to bottom, black, transparent);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topRight-header {
    display: flex;
    align-items: center;
}

.drop-item .drop-item-a {
    color: var(--dark-gray);
}
/*
.drop-menu-footer {
    display: flex;
    justify-content: center;
    background: var(--light-purple);
}

.drop-menu-footer-a {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}

.drop-item-a-f:hover {
    background: rgb(0 0 0 / 17%);
    background: #ffffff47;
    color: var(--dark-gray);
}

.drop-menu-footer-a svg {
    width: 30px;
}

.drop-item-a-f {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--dark-gray);
    padding: 5px 15px;
}

    .drop-item-a-f img {
        width: 45px;
        transition: 0.3s;
        margin-right: 10px;
    }
    */
.topbar-content .topbar-item:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgb(35 36 36 / 20%);
    z-index: 0;
    transition: 0.3s;
    transform: translateY(-90%);
    opacity: 0;
}

.topbar-content .topbar-item > * {
    position: relative;
    z-index: 10;
}

.search-btn {
    width: 50px;
    /* margin-left: 15px; */
    cursor: pointer;
    padding: 8px 10px;
    margin-right: 10px;
}

    .search-btn img {
        margin: 0;
    }

.desktop-menu .drop1-item {
    font-size: var(--font-24);
    letter-spacing: 1px;
    font-family: 'Gotham-Light';
    text-transform: uppercase;
    color: #fff;
}

    .desktop-menu .drop1-item span {
        position: relative;
    }

.desktop-menu .drop:not(:last-child) .drop1-item span:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    border-right: 1px solid #fff;
    right: -20px;
    top: 0;
}

/*============
   Menu
============*/
.standard-logo {
    padding: 20px 10px;
    display: inline-block;
    transition: 0.3s;
}

.head-links-container {
    margin: auto;
}

.drop1-item {
    padding: 8px 20px;
    display: inline-block;
    /* background-position: 0; */
    /* transition: background-position 5s; */
    font-size: var(--font-22);
}

.drop-item-a img {
    width: 45px;
    transition: 1s;
    margin-bottom: 15px;
}

.drop-item-a span {
    margin-right: 5px;
}

.standard-logo img, .footer-logo img {
    max-width: 100%;
}

@media (max-width:992px) {
    .standard-logo img {
        max-width: 90%;
    }
}

/*****  sticky menu ******/
#header.sticky-header {
    background: rgb(46 46 46 / 85%);
    box-shadow: 0 0 10px #333;
    position: fixed;
    top: 0;
}

.sticky-header .standard-logo img {
    height: 90px;
    transition: 0.5s;
    width: 100%;
}

.sticky-header .standard-logo {
    padding: 5px;
}

.sticky-header .drop1-item {
    font-size: 19px;
}

.mobile-menue-open {
    overflow: hidden;
}

.drop-menu .container-ewb {
    padding: 0;
}

.main-menu-items .row, .main-menu-items .col-xl-3 {
    margin: 0;
    padding: 0;
}

.drop-item {
    font-size: 16px;
}

#primary-menu-trigger {
    cursor: pointer;
    position: relative;
    display: flex;
    flex-direction: column;
    width: 58px;
    height: 46px;
    justify-content: space-between;
    padding: 10px;
}

.hamburger-icon {
    /* width: 100%; */
    background: #fff;
    height: 2px;
    display: inline-block;
    margin-bottom: 1px;
    right: 0;
}

.mobile-overlay {
    background: rgb(0 0 0 / 30%);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    backdrop-filter: blur(6px);
}

.mobile-menu-style .mobile-overlay {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    background: #e2cbac;
    /* background: linear-gradient(0deg, var(--blue), #E5BEC3, #C6BBD0, #C68B66); */
    /* background: var(--dark-gray); */
    border-left: 4px solid var(--beige);
    position: fixed;
    right: -500px;
    top: 0;
    bottom: 0;
    padding-top: 40px;
    width: 500px;
    max-width: 100%;
    overflow-y: scroll;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
    z-index: 11;
}

    .mobile-menu.openMenu {
        right: 0;
    }

.mob-logo-menu {
    text-align: center;
    display: block;
    margin-bottom: 20px;
}

    .mob-logo-menu a {
        display: inline-block;
    }

.drop1-item {
    display: block;
    /* background: rgb(187 172 109 / 20%); */
    /* background: linear-gradient(0deg, #fefefe30, transparent); */
    /* background: linear-gradient(0deg, rgb(130 130 130 / 50%), transparent); */
    /* box-shadow: 0 0 4px 2px rgb(51 51 51 / 05%); */
    position: relative;
    transition: 0.3s;
}

.main-menu-items {
    font-family: 'Gotham-Medium';
}

    .main-menu-items .drop1-item:hover {
        background: rgb(248 242 234 / 60%);
    }

.drop-item-a {
    padding: 10px;
    display: block;
    perspective: 300px;
    transform: rotateX(70deg);
    transform-origin: top;
    opacity: 0;
    transition: 0.8s;
    border-bottom: 1px solid #d9d9d9;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    border-left: 6px solid #ffffff82;
    border-bottom: 1px solid #ffffff82;
}

.drop-item .drop-item-a:last-child {
    /* border-bottom:0; */
}

.open .drop-item-a {
    transform: initial;
    opacity: 1;
}

.drop-menu {
    opacity: 0;
    visibility: hidden;
    height: 0;
    transition: 0.3s;
}

.open .drop-menu {
    opacity: 1;
    visibility: visible;
    height: auto;
}

.has-menu .drop1-item:before {
    content: "";
    position: absolute;
    top: calc(50% - 7px);
    right: 16px;
    height: 15px;
    width: 15px;
    border: 2px solid transparent;
    border-bottom-color: var(--black);
    border-right-color: var(--black);
    transform: rotate(45deg);
    transition: .3s;
    border-radius: 2px;
}

.has-menu.open .drop1-item:before {
    transform: rotate(225deg);
    margin-top: 5px;
}

.drop-item-a:hover {
    background: #ffffff82;
    color: var(--blue);
}

.drop-item-a img, .drop-item-a-f img {
    margin: 0;
    margin-right: 10px;
    width: 30px;
}

.drop-item-a-f {
    justify-content: flex-start;
    background: var(--light-purple);
    border-bottom: 1px solid #ffffff4a;
}

.drop-item-a-f {
    padding: 10px 15px;
}

/* close */
.close-mobile-panel {
    width: 35px;
    height: 35px;
    display: block;
    position: absolute;
    margin-bottom: 25px;
    top: 12px;
    right: 10px;
    border: 1px solid transparent;
    transition: 0.2s;
    cursor: pointer;
}

    .close-mobile-panel:hover {
        border-color: var(--dark-gray);
    }

    .close-mobile-panel:before {
        content: "";
        width: 2px;
        height: 100%;
        position: absolute;
        right: 15px;
        top: 1px;
        /* right: 0; */
        background-color: var(--dark-gray);
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .close-mobile-panel:after {
        content: '';
        width: 2px;
        height: 100%;
        position: absolute;
        right: 15px;
        top: 1px;
        background-color: var(--dark-gray);
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

.drop-menu-footer {
    display: none;
}


.langBtn {
    font-family: weblysleekuil;
    font-size: 23px;
    font-weight: 600;
    border-radius: 3px;
    padding: 5.5px 13px;
    transition: 0.3s;
    color: #fff;
}

    .langBtn:hover {
        background: #c9c9c92e;
        color: #fff;
    }

/*************  Search  *************/
.search-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(64,64,64,.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transition: 300ms;
    padding: 25px;
    color: #fff;
    backdrop-filter: blur(46px);
}

    .search-popup.open {
        opacity: 1;
        visibility: visible
    }

.search-close {
    position: absolute;
    top: 15px;
    right: 15px;
    fill: #fff;
    width: 50px !important;
    height: 50px;
    padding: 15px;
    cursor: pointer;
    border: 1px solid transparent
}

    .search-close:hover {
        border-color: var(--dark-beige);
        fill: var(--dark-beige);
    }

.search-box {
    width: 100%;
    max-width: 700px;
    margin: 15px;
    display: flex;
    opacity: 0;
    transform: translateY(100px);
    transition: 1.5s;
    transition-delay: 100ms;
    position: relative;
    border-radius: 90px;
    overflow: hidden
}

.search-bar {
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 32px;
    font-size: 20px;
    width: 100%;
    color: #000;
    border-radius: 90px;
    background: #fff
}

    .search-bar:focus::placeholder {
        opacity: 0
    }

.search-box .search-btn {
    background: #bea482;
    display: flex;
    cursor: pointer;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
    padding-left: 4px;
    margin: 0;
    border: 0;
    width: 66px;
}

.search-btn svg {
    fill: #fff;
    padding: 18px;
    width: 54px;
    height: 54px;
    transform: rotateY(180deg);
    padding: 14px;
}

.search-popup span {
    display: block;
    font-size: 30px;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(100px);
    transition: 1.5s;
    /* animation-name: slideUp; */
    /* animation-duration: 1s; */
    /* animation-fill-mode: forwards; */
}

.search-popup.open .search-box, .search-popup.open span {
    transform: inherit;
    opacity: 1;
}

.search-box {
    transition-delay: .5s
}

.search-btn:hover {
    background: #c9c9c92e;
    border-radius: 3px;
}

.search-box .search-btn:hover {
    background: var(--gray);
    border-radius: 0;
}
/*==================================
                Footer 
 */

.footer-top {
    color: #fff;
    /* background: #978b58 url(../images/Footer-BG-pattern.png); */
    /* background: #978b58 url(../images/Footerr.jpg); */
    /* padding: 55px 0; */
    position: relative
}


footer {
    background: var(--black);
    color: #fff
}

.footer-ttl {
    /* font-size: 25px; */
    font-weight: bold;
    margin-bottom: 30px
}

.q-soc-container {
    display: flex;
    flex-wrap: wrap;
    padding-top: 11px
}

.q-soc-item {
    display: flex;
    height: 55px;
    width: 55px;
    background: #fff;
    border-radius: 100%;
    margin-left: 10px;
    margin-bottom: 10px;
    position: relative;
    overflow: hidden
}

    .q-soc-item svg {
        height: 100%;
        width: 100%;
        padding: 12px;
        fill: #b4975a;
        z-index: 2;
        transition: .3s
    }

    .q-soc-item:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        background: #b4975a;
        border-radius: 100%;
        z-index: 1;
        transition: .3s;
        transform: scale(0);
        -webkit-transform: scale(0);
        -moz-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
    }

    .q-soc-item:hover:before, .q-soc-item:hover svg {
        fill: white;
        transform: inherit
    }

.ltr {
    direction: ltr;
    display: inline-block
}

.footer-bottom {
    background: var(--black);
    color: #b9b9b9;
    text-align: center;
    /* padding: 27px 15px; */
    transform: scaleY(0);
    transform-origin: bottom;
    opacity: 0;
    transition: .6s;
    font-size: var(--font-15);
}

.aos-animate .footer-bottom {
    transform: inherit;
    opacity: 1
}

.footer-bottom-content a {
    color: #fff;
    transition: 0.3s;
}

.footer-link {
    display: block;
    /* color: #d1d0ca; */
    color: #fff;
    padding: 4px 8px;
    padding-right: 26px;
    position: relative;
    overflow: hidden;
    transition: .2s;
    font-size: var(--font-16);
}

.footer-links-container {
    /* margin: -.5rem; */
    font-size: var(--font-16);
}

.footer-link:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #c68b663b;
    box-shadow: 0 0 0 4px #C68B66;
    z-index: 1;
    transform: skewX(40deg) translateX(-110%);
    width: 120%;
    transition: .6s
}

.footer-link * {
    z-index: 2;
    position: relative
}
/*
.footer-link:hover:before {
  transform: skewX(40deg) translateX(-24%);
  -webkit-transform: skewX(40deg) translateX(-24%);
  -moz-transform: skewX(40deg) translateX(-24%);
  -ms-transform: skewX(40deg) translateX(-24%);
  -o-transform: skewX(40deg) translateX(-24%);
}*/

.footer-link:hover {
    color: #fff
}

.footer-link span {
    transition: .3s;
    /* display: block; */
    padding-bottom: 3px;
}
    /*
.footer-link:hover span {
  transform: translateX(5px);
}
*/
    .footer-link span:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        right: 0;
        background: var(--dark-beige);
        z-index: 1;
        width: 0%;
        height: 2px;
        transition: .45s
    }

    .footer-link span:hover:before {
        width: 100%
    }

.footer-icon {
    position: relative;
    padding-right: 35px
}

    .footer-icon img {
        width: 24px;
        height: 24px;
        position: absolute;
        top: 0;
        right: 0
    }

    .footer-icon a {
        color: #fff
    }

.footer-top > * {
    position: relative;
    z-index: 2
}

.footer-style-2 {
    background-position: center;
    background-size: cover;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    aspect-ratio: 7;
}

.footer-logo img {
    width: 400px;
}
/**/
.footer-social {
    display: flex;
    margin-bottom: 15px;
}

.social-item {
    display: inline-block;
    /* width: 42px; */
    /* height: 42px; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px;
    margin-right: 5px;
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

    .social-item img {
        width: 27px;
        height: 27px;
    }

    .social-item.youtube img {
        width: 33px;
    }

    .social-item:before {
        content: "";
        position: absolute;
        bottom: 100%;
        left: 0;
        width: 100%;
        height: 100%;
        background: var(--blue);
        transition: 0.3s;
    }

    .social-item:hover:before {
        bottom: 0;
    }

.youtube:before {
    background: #bb0000;
}

.instagram:before {
    background-color: #bc2a8d;
    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.facebook:before {
    background-color: #3b5998
}

.linkedIn:before {
    background-color: #007bb6;
}

.twitter:before {
    background-color: #000;
}


.social-item:hover img {
    filter: brightness(10);
}

@media (max-width:991px) {
    .footer-social {
        justify-content: center;
    }
}

/************************************************/

.ann-box {
    border: 1px solid var(--dark-beige);
    background: var(--beige);
    padding: var(--px-30);
    border-radius: 4px;
    box-shadow: 0 8px 20px 7px #dcdcdc;
    overflow: hidden;
}

.ann-date-box {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.ann-date {
    background: var(--dark-beige);
    padding: 10px 20px;
    font-family: 'Gotham-Black';
    border-radius: 50px;
    color: #444545;
    width: 200px;
    text-align: center;
}

.ann-info {
    font-size: var(--font-22);
}

@media (min-width:575px) {
    .ann-box .elc-btn {
        min-width: 180px;
    }
}



/************* Home Slider ***************/

/**  Slider  **/
.home-slider-container {
    position: relative;
}

.home-slider-item {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
    position: relative;
    min-height: 400px;
}

.home-video {
    height: 100%;
}

.home-video {
    padding-bottom: 42%;
    overflow: hidden;
    position: relative;
    background-position: center;
    background-size: cover;
}

.home-tag {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    object-fit: cover;
    object-position: top;
    filter: brightness(1.3) contrast(1.1);
}

.home-slider-ttl-box {
    padding: 0 40px;
    color: #fff;
    width: 100%;
}

    .home-slider-ttl-box a {
        display: flex;
        background: rgb(35 36 36 / 90%);
        padding: 20px 40px 120px;
        border-radius: 30px 30px 0 0;
        align-items: center;
    }

.ttl-icon {
    width: 40px !important;
    margin-left: 26px;
}

.w-30 {
    width: 30px;
}

.home-slider-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    z-index: 11;
}

.slider-ttl {
    color: #fff;
    margin: 0;
    margin-bottom: 9%;
    padding-left: 17%;
    font-family: 'BarlowCondensed-MediumItalic';
    letter-spacing: 2px;
}

.slider-ttl-1 {
    font-size: var(--font-70);
    font-style: italic;
    /* font-family: 'Gotham-Bold'; */
    text-shadow: 3px 4px 4px #00000094;
}

.slider-ttl-2 {
    font-size: var(--font-80);
    color: #ffffea;
    padding-left: 3%;
    text-shadow: 3px 4px 4px #00000094;
    font-style: italic;
    white-space: nowrap;
    opacity: 0;
}
/* .line-before {
    position: relative;
    display: inline-block;
}

.line-before:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    left: calc(-100% + -30px);
    background: linear-gradient(271deg, white, transparent);
    top: 47%;
} */

.home-slider .owl-nav .owl-prev,
.home-slider .owl-nav .owl-next {
    position: absolute;
    left: 15px;
    top: 43%;
    top: calc(50% - 35px);
    opacity: 0;
    -webkit-transition: all 0.4s ease-out;
    transition: all 0.4s ease-out;
    width: 65px;
    height: 65px;
    padding: 30px;
    cursor: pointer;
    z-index: 1000;
}

.owl-arrow {
    width: 100%;
    height: 100%;
    padding: 7px;
}

.home-slider .owl-nav .owl-next {
    left: auto;
    right: 15px;
}

    .home-slider .owl-nav .owl-prev:hover,
    .home-slider .owl-nav .owl-next:hover {
        background: var(--gold-sec) !important;
    }

.home-slider .home-slider:hover .owl-prev {
    left: 0px;
    opacity: 1;
}

.home-slider .home-slider:hover .owl-next {
    right: 0px;
    opacity: 1;
}

@media only screen and (min-width:1200px) {
    .home-slider .owl-nav .owl-prev {
        left: 30px;
    }

    .home-slider .owl-nav .owl-next {
        right: 30px;
    }

    .home-slider:hover .owl-prev {
        left: 50px;
        opacity: 1;
    }

    .home-slider:hover .owl-next {
        right: 50px;
        opacity: 1;
    }
}

@media (max-width:1399px) {
    .slider-ttl {
        /* line-height: 1.2; */
        /* margin-bottom: 15px; */
        /* font-size: 35px; */
    }
}

@media (max-width:1199px) {
    .slider-ttl {
        /* font-size: 30px; */
    }

    .w-30 {
        width: 20px;
    }
}


@media (max-width:991px) {
    .topbar-item-txt {
        display: none;
    }

    .home-slider-ttl-box a {
        padding-left: 30px;
        padding-right: 30px;
        padding-bottom: 100px;
    }

    .home-slider-item {
        height: auto;
        aspect-ratio: 1.5;
    }

    .slider-ttl {
        margin-bottom: 5%;
        padding-left: 7%;
    }

    .slider-ttl-2 {
        padding-left: 5%;
    }

    .home-Box-ttl {
        font-size: 25px;
    }

    .ttl-icon {
        margin-left: 20px;
    }
}

@media (max-width:767px) {
    .home-slider-ttl-box a {
        padding-left: 25px;
        padding-right: 25px;
        padding-bottom: 80px;
    }

    .home-slider-item {
        /* height: 450px; */
    }

    .w-30 {
        width: 10px;
    }

    .ttl-icon {
        width: 35px !important;
    }

    .home-slider-ttl-box {
        padding: 0 30px;
    }

    .slider-ttl {
        margin-bottom: 5%;
        padding-left: 3%;
    }

    .slider-ttl-2 {
        padding-left: 3%;
    }

    .home-Box-ttl {
        font-size: 20px;
    }

    .home-slider-ttl-box p {
        font-size: 16px;
        margin: auto;
        text-align: center;
    }
}

@media (max-width:575px) {
    .home-slider-ttl-box a {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 40px;
    }

    .slider-ttl {
        padding-left: 0;
    }

    .ttl-icon {
        width: 30px !important;
    }

    .home-slider-ttl-box {
        padding: 0 25px;
    }
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: rgb(0 0 0 / 8%); */
    /* background: rgb(51 51 51 / 50%); */
    /* filter: brightness(1.05) contrast(1.05); */
    z-index: 10;
}
/*************  Sliders Buttons  *************/

.swiper-button-prev:after {
    content: "" !important;
    transition: all .4s ease-out;
    width: 55px;
    height: 55px;
    padding: 30px;
    cursor: pointer;
    z-index: 1000;
    background: url(/images/longArrow-prev.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 57%;
    border-radius: 50%;
    box-shadow: 0 6px 10px 2px #3333334d
}

.swiper-button-next:after {
    content: "" !important;
    transition: all .4s ease-out;
    width: 55px;
    height: 55px;
    padding: 30px;
    cursor: pointer;
    z-index: 1000;
    background: url(./img/longArrow-next.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 57%;
    border-radius: 50%;
    box-shadow: 0 6px 10px 2px #3333334d
}

.swiper-button-prev:hover:after {
    background-color: var(--light);
    transform: translate(-5px)
}

.swiper-button-next:hover:after {
    background-color: var(--light);
    transform: translate(5px)
}

.swiper-button-prev:after {
    background: transparent url(/images/A-L.svg) center no-repeat;
    box-shadow: none;
    transition: .3s;
    background-size: 40%
}

.swiper-button-next:after {
    background: transparent url(/images/A-R.svg) center no-repeat;
    box-shadow: none;
    transition: .3s;
    background-size: 40%
}

.swiper-button-next:hover:after {
    background-color: #0003
}

.swiper-button-prev:hover:after {
    background-color: #0003
}

@media (min-width: 992px) {

    .swiper-button-prev {
        left: 20px
    }

    .swiper-button-next {
        right: 20px
    }
}

@media (min-width: 1200px) {
    .swiper-button-prev {
        left: 72px
    }

    .swiper-button-next {
        right: 72px
    }
}

/**  ***  **/

.white-arrow {
    background: url(../images/white-Arrow.svg) no-repeat right top;
    background-size: contain;
    width: 30px;
    height: 20px;
    margin-right: auto;
    min-width: 30px;
}


/********* Home card sections **********/
.section-header {
    margin-bottom: var(--px-40);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.container-fluid {
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width:1200px) {

    .container-fluid {
        padding-left: 50px;
        padding-right: 50px;
    }
}

.homebox-item {
    border: 1px solid var(--light-purple);
    transition: 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

    /*.homebox-item a {
        display: block;*/
    /* position: relative; */
    /*height: 100%;
    }*/

    .homebox-item:hover {
        /*box-shadow: 0 0 0 8px white, 0 0 0 10px var(--blue), 0 0px 20px 10px rgba(0, 0, 0,0);*/
        transform: scale(1.03);
        box-shadow: 0 0 25px 2px #33333347;
        background: var(--beige);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }

.card-img img {
    width: 100%;
    transition: 0.3s;
}

.card-info {
    display: flex;
    flex-direction: column;
    padding: 30px 30px;
    position: relative;
    color: var(--gray);
    transition: 0.3s;
}

.event-date, .event-time {
    display: flex;
    margin-bottom: 0.5rem;
    font-family: 'Gotham-Medium';
    font-size: var(--font-16);
    align-items: center;
}

.event-abstract {
    font-size: var(--font-15);
    margin-top: var(--px-20);
    font-family: 'Gotham-Medium';
}

.card-icon {
    display: flex;
    margin-bottom: 0.5rem;
}

    .card-icon img {
        width: 23px;
        margin-right: 10px;
    }

.card-ttl {
    color: var(--dark-gray);
    font-size: var(--font-24);
    transition: 0.3s;
    margin-bottom: 25px;
}

.homebox-item:hover .card-ttl,
.homebox-item:hover .event-abstract {
    color: var(--black);
}

.card-content {
    /* position: relative; */
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-btn {
    margin-top: auto;
    padding: 0 var(--px-30) var(--px-30);
}

.event-abstract p {
    margin-bottom: 4px;
}


.card-img {
    overflow: hidden;
    border-radius: 0;
}

.homebox-item:hover .card-img img {
    transform: scale(1.1);
}

/****** Full Banners ********/
.full-bg-img {
    overflow: hidden;
}

.txt-content {
    position: relative;
    z-index: 2;
}

.bg-img-bnr {
    background-repeat: no-repeat !important;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.bg-img-txt {
    color: #fff;
}

.bg-img-ttl {
    font-size: var(--font-50);
    font-weight: 400;
    position: relative;
    color: #fff;
    text-shadow: 0 0 3px #000;
}

.bg-img-txt p {
    font-size: 22px;
    margin-top: 15px;
    text-shadow: 0 0 3px #000;
}

.overly-bnr {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(51 51 51 / 40%);
    z-index: 1;
}

.left-txt {
    text-align: center;
}

@media (min-width:992px) {
    .left-txt {
        text-align: left;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/***********************ELC*/

.play-bnr {
    padding-top: 6.5%;
}

    .play-bnr img {
        width: 70px;
    }

.half-box-info {
    padding: var(--px-60);
    background: rgb(226 203 172 / 90%);
}

    .half-box-info p {
        font-family: 'Gotham-Medium';
        font-size: var(--font-22);
    }

p.box-q {
    font-size: var(--font-30);
    margin-bottom: var(--px-30);
}

.home-block-item {
    padding-top: 35%;
    height: 100%;
    display: flex;
    align-items: flex-end;
}

.home-block-ttl {
    padding: var(--px-20) var(--px-30);
    background: rgb(226 203 172 / 90%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.home-block-item-overlay {
    position: relative;
    padding: var(--px-50);
    height: 100%;
    display: flex;
    align-items: center;
}

.home-block-ttl-overlay {
    z-index: 1;
}

    .home-block-ttl-overlay h2 {
        color: #fff;
    }

    .home-block-ttl-overlay p {
        color: #fff;
        font-family: 'Gotham-Medium';
        font-size: var(--font-22);
    }

.home-block-item-overlay .overly-bnr {
    background: rgb(51 51 51 / 80%);
}

.icons-block-box {
    background: var(--beige);
    padding: var(--px-40);
}

.icons-block-box {
}

.icon-box {
    text-align: center;
}

.icon-img {
    margin-bottom: var(--px-30);
}

    .icon-img img {
        max-width: 160px;
    }

.icon-ttl {
    font-size: var(--font-30);
}

.icons-block-ttl {
    font-size: var(--font-40);
    padding-left: var(--px-60);
}

@media (max-width:768px) {
    .icons-block-ttl {
        padding: 0;
        margin-bottom: 40px;
    }
}

.icons-block-ttl-col {
    display: flex;
    align-items: center;
}

.map {
    height: 500px;
}

.social-item.youtube img {
    width: 33px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

    .contact-info a {
        color: #fff;
    }

.content-ttl h2 {
    font-size: var(--font-40);
}

.content-ttl {
}

ul {
    list-style: none;
}

    ul li {
        position: relative;
        font-family: 'Gotham-Medium';
        margin-bottom: 10px;
    }

        ul li:before {
            content: "";
            position: absolute;
            left: -28px;
            top: 4px;
            border: 1px solid;
            border-radius: 50%;
            width: 15px;
            height: 15px;
            background: #fff;
        }


/***********************ELC end*/
body.scroll .desk:before {
    width: 100%;
    transition: 2s
}

.footer-style {
    /* position: absolute; */
    /* z-index: 1; */
    /* height: 160px; */
    /* width: 270px; */
    /* opacity: .3; */
    /* top: 40px; */
    /* left: 5%; */
    /* background-repeat: no-repeat; */
    /* opacity: 0; */
    /* transform: translateX(-100%) scale(2); */
    transition: 3s;
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    height: 17px;
    position: relative;
    width: 0;
    transition: 3s;
    /*width: 100%;*/
    opacity: 0.5;
    background: var(--dark-beige);
}

.aos-animate .footer-style {
    width: 100%;
    opacity: 1;
}

@keyframes moveBackground {
    to {
        /*background-position: -30%;*/
        left: 100%;
    }
}

.aos-animate .footer-style:before {
    content: "";
    position: absolute;
    top: 0;
    left: -190px;
    /*right: 0;*/
    height: 17px;
    /*width: 100%;*/
    background: linear-gradient(45deg, transparent, #fff2d5, transparent);
    background: linear-gradient(45deg, transparent, #D29E0E, transparent);
    background: linear-gradient(45deg, transparent, var(--beige), transparent);
    /*background: #fff;*/
    /*transform: rotate(139deg);*/
    /*background-color: #ffffffbd;*/
    /*background-size: 30%;background-repeat: no-repeat;*/
    /*background-position: 200%;*/
    transition: .1s;
    animation: moveBackground 8s 3s infinite;
    width: 20%;
    -webkit-animation: moveBackground 8s 3s infinite;
}

.footer-logo {
    /* padding-top: 20px; */
    /* margin-top: 10px; */
}

.footer-logos {
    margin-top: 34px;
}

    .footer-logos img {
        width: 65px;
        margin-right: 8px;
    }

.footer-subscribe {
    /* margin-top: 15px; */
}

    .footer-subscribe .footer-ttl {
        margin-bottom: 15px;
    }

    .footer-subscribe p {
        color: #d1d0ca;
    }

.footer-bottom-end a {
    padding: 15px;
    display: inline-block;
}

.footer-bottom-first {
    /* padding-top: 10px; */
    padding-bottom: 15px;
}

.footer-bottom-content {
    border-top: 1px solid;
}

@media (min-width:992px) {

    .footer-bottom-first {
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: left;
    }
}

@media (max-width:1199px) {
}


@media(max-width: 1199px) {

    .footer-extend {
        display: none;
        padding: 15px
    }

    .footer-style {
        /* height: 80px; */
        /* opacity: .1 !important; */
    }

    .footer-ttl {
        font-size: 16px;
        margin: 0;
        padding: 11px 0;
        border-bottom: 1px solid rgba(255,255,255,.329);
        position: relative;
        transition: .3s
    }

    .footer-top {
        padding: 30px 0
    }

    .footer-ttl:before {
        content: "";
        position: absolute;
        top: calc(50% - 7px);
        height: 10px;
        width: 10px;
        transform: rotate(45deg);
        border: 1px solid transparent;
        border-bottom-color: #fff;
        border-right-color: #fff;
        right: 3px;
        transition: .3s
    }

    .footer-open .footer-ttl:before {
        transform: rotate(225deg);
        margin-top: 5px;
        right: 15px;
    }

    .footer-open .footer-ttl {
        padding: 11px 15px;
        border-bottom-color: rgba(255,255,255,.1)
    }

    .footer-acc-block.footer-open {
        background: rgba(255,255,255,.078);
        box-shadow: 0 6px 25px rgba(0,0,0,.071)
    }

    .footer-acc-block {
        transition: .3s
    }

    .footer-logos-box {
        text-align: center;
    }
}

@media(min-width: 1200px) {
    .footer-extend {
        display: block !important
    }
}


.contact-info .icon img {
    width: 20px;
    height: 20px;
    margin-right: 5px;
}

.contact-info a {
    margin-bottom: 10px;
    transition: 0.3s;
}

footer a:hover {
    color: var(--dark-beige);
}
/****  Subpages / Banner *****/
.banner {
    padding-top: 20%;
    padding-bottom: 6%;
    text-align: center;
    position: relative;
    height: 430px;
    display: flex;
    filter: brightness(1.05) contrast(1.15);
}

    .banner:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgb(0 0 0 / 50%), rgb(0 0 0 / 10%), rgb(0 0 0 / 20%));
    }

.page-ttl {
    color: #fff;
    margin: 0;
    font-size: var(--font-50);
}

.banner-content {
    position: relative;
    width: 100%;
    margin: auto;
}


@media (min-width:992px) {
    .banner {
        padding-top: 15%;
        padding-bottom: 0;
        text-align: center;
        position: relative;
        height: 100vh;
        display: flex;
    }
}

/***************************************/


.next-event-item {
    border: 1px solid var(--light-purple);
    background: var(--beige);
}

    .next-event-item .event-btn {
        margin: 0;
    }

    .next-event-item .card-ttl {
        font-size: var(--font-30);
    }

    .next-event-item .event-abstract {
        font-size: var(--font-20);
        color: var(--dark-gray);
    }

    .next-event-item .card-img {
        height: 100%;
        position: relative;
    }

        .next-event-item .card-img img {
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

.live-video-box {
    position: relative;
}

.live-icon {
    display: none;
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 29px);
}

.video-ttl {
    text-align: center;
    margin-top: 10px;
}

.youtube-item {
    border: 1px solid var(--light-purple);
    transition: 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.youtube-img {
    position: relative;
    filter: brightness(1.05) contrast(1.05);
}

.play-icon {
    position: absolute;
    top: calc(50% - 25px);
    left: calc(50% - 25px);
}

.youtube-ttl {
    padding: 15px 20px;
}

/*************************************************/
/* ...existing code... */
.schedule-section .section-ttl {
    margin-bottom: 28px;
}

/* Desktop table */
.schedule-table {
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 3px;
    overflow: hidden;
}

.schedule-head {
    background: var(--beige);
    color: var(--red);
    font-weight: 700;
    padding: 22px 20px;
    border-right: 1px solid rgba(0,0,0,0.04);
}

    .schedule-head:last-child {
        border-right: 0;
    }

.schedule-cell {
    background: rgba(245,244,243,0.9);
    padding: 26px 20px;
    border-top: 1px solid rgba(0,0,0,0.03);
    color: var(--dark-gray);
    font-family: 'Gotham-Medium';
    font-size: var(--font-16);
}

    .schedule-cell:nth-child(4n+1) { /* first column cells left padding tweak */
    }


@media (min-width:768px) {
    .timings {
        background: #fff;
        padding: var(--px-50);
        border: 1px solid var(--light-purple);
    }

    .schedule-card .card-body {
        display: flex;
        padding: 0;
    }

    .day-time {
        display: flex;
        width: 50%;
    }

    .schedule-card {
        border: 0;
        margin-top: 10px;
        font-size: var(--font-18);
    }

    .sched-item {
        padding: 10px 20px;
        background: #f8f7f9;
        position: relative;
        font-family: 'Gotham-Medium';
        color: #444550;
    }

        .sched-item span {
            /* background: #f8f9fa; */
            display: block;
        }

        .sched-item:not(.sched-contact):after {
            position: absolute;
            content: "";
            width: 10px;
            height: 100%;
            background: #fff;
            top: 0;
            right: 0;
        }
}
/* Mobile cards */
.sched-head {
    background: var(--beige);
    color: #911e2b;
}

@media (max-width:767px) {
    .schedule-card {
        border: 1px solid rgba(0,0,0,0.06);
        border-radius: 6px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.04);
        margin-bottom: 20px;
    }

        .schedule-card .card-body {
            padding: 18px;
        }

    .sched-day {
        color: var(--dark-gray);
        font-size: 16px;
        /* background: var(--beige); */
        color: #911e2b;
    }

    .sched-time {
        color: var(--dark-gray);
        font-weight: 700;
        text-align: right;
        color: #911e2b;
    }

    .sched-event {
        color: var(--dark-gray);
        font-size: 15px;
        /* margin-top: 4px; */
        position: relative;
    }

    .sched-contact {
        font-size: 14px;
        color: var(--gray);
    }

    /* Small visual polish */
    .schedule-section .schedule-table .schedule-cell,
    .schedule-section .schedule-table .schedule-head {
        min-height: 68px;
        display: flex;
        align-items: center;
    }

    .day-time {
        display: flex;
        justify-content: space-between;
    }
}









/* Responsive tweaks */
@media (max-width: 991px) {
    .schedule-head {
        padding: 16px;
        font-size: 14px;
    }

    .schedule-cell {
        padding: 16px;
        font-size: 14px;
    }
}

@media (max-width: 575px) {
    .schedule-section {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}
/* ...existing code... */

/* ----------------------------------------------------------------
Upcoming events listing styles
-----------------------------------------------------------------*/
.upcoming-grid .event-card {
    border: 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .18s ease, box-shadow .18s ease;
}

    .upcoming-grid .event-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 36px rgba(0,0,0,0.12);
    }

.event-img {
    height: 160px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.event-img-link {
    display: block;
}

.event-img-placeholder {
    height: 160px;
    border: 1px dashed #e9e9e9;
}

.event-meta {
    font-size: 0.95rem;
    color: var(--dark-gray);
    margin: 0.5rem 0 0.5rem 0;
    padding-left: 25px;
}

    .event-meta li {
        margin-bottom: 0.25rem;
    }

.event-card .card-title {
    font-size: 1rem;
    line-height: 1.2;
}

@media (max-width: 575px) {
    .event-img, .event-img-placeholder {
        height: 130px;
    }
}

.upcoming-details .card {
    border-radius: 10px;
    overflow: hidden;
}

.event-img-wrapper {
    /* position: relative; */
    /* min-height: 320px; */
    /* height: 100%; */
    /* display: block; */
}

.object-cover {
    object-fit: cover;
    object-position: center;
    height: 100%;
}

.event-img-overlay {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* background: linear-gradient(180deg, rgba(0,0,0,0.18) 0%, rgba(0,0,0,0.45) 60%); */
    color: #fff;
}

.event-date-badge {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.09);
    color: #fff;
    padding: 10px 12px;
    border-radius: 8px;
    width: 72px;
    text-align: center;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.08);
}

/* ----------------------------------------------------------------
Upcoming Details styles — appended
-----------------------------------------------------------------*/
.upcoming-details .card {
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.event-img-wrapper {
    /* position: relative; */
    /* min-height: 320px; */
    /* height: 100%; */
    /* display: block; */
    /* background: #f5f5f5; */
}

.object-cover {
    object-fit: cover;
    object-position: center;
    height: 100%;
    width: 100%;
    display: block;
}

.event-img-overlay {
    /* position: absolute; */
    /* inset: 0; */
    /* background: linear-gradient(180deg, rgba(0,0,0,0.12) 0%, rgba(0,0,0,0.45) 60%); */
    /* color: #fff; */
    /* padding: 16px; */
}

.event-date-badge {
    /* display: inline-flex; */
    /* flex-direction: column; */
    /* align-items: center; */
    /* justify-content: center; */
    /* background: rgba(255,255,255,0.08); */
    /* color: #fff; */
    /* padding: 8px 10px; */
    /* border-radius: 8px; */
    /* width: 72px; */
    /* text-align: center; */
    /* backdrop-filter: blur(3px); */
    /* border: 1px solid rgba(255,255,255,0.06); */
}

.upcoming-details .card-body h1 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.upcoming-details .article-body {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 1rem;
    max-height: 520px;
    overflow: auto;
    padding-right: 6px;
}

.upcoming-details .btn {
    min-width: 120px;
}

/* Small screens */
@media (max-width: 991px) {
    .event-img-overlay {
        /* display: none !important; */
    }

    .object-cover {
        height: 320px;
    }

    .upcoming-details .card {
        border-radius: 8px;
    }

    .upcoming-details .article-body {
        max-height: 300px;
    }
}



/*****************************/

.swiper-slide.inst-item img {
    width: 100%;
    object-fit: cover;
    max-height: 250px;
}

.swiper-slide.youtube-item {
    aspect-ratio: 1;
}


.filter-search-box {
    position: relative
}

    .filter-search-box .search-btn {
        display: flex;
        cursor: pointer;
        position: absolute;
        top: 0;
        right: 0;
        padding: 0 0 0 4px;
        margin: 0;
        border: 0;
        height: 100%
    }

        .filter-search-box .search-btn svg {
            fill: #c4c4c4;
            transform: rotate(0);
            padding: 10px;
            width: auto;
            height: auto;
            transition: .3s
        }

        .filter-search-box .search-btn:hover svg {
            fill: var(--red);
        }


.filter-container .form-select, .filter-container .form-control {
    padding: 10px 18px;
    font-size: 17px;
    border-color: #969698;
    border-radius: 10px;
}

/**  search  **/
.elc-control {
    border-radius: 6px;
    height: 44px;
    padding: .375rem 15px
}


.result-num-txt {
    font-weight: 600;
    font-size: var(--font-24);
    color: var(--red);
}

.result-num {
    background: var(--dark-beige);
    color: var(--red);
    padding: 10px;
    border-radius: 50%;
    display: inline-block;
    width: 60px;
    text-align: center;
}

.result-item {
    background: #f8f2ea66;
    padding: 30px;
    transition: 0.3s;
}

    .result-item:nth-child(odd) {
        background: var(--beige);
    }


    .result-item:hover {
        background: #e6cead66;
    }


/***  PopUp Video ***/


iframe.embed-responsive-itemVideo {
    min-height: 50vh;
    width: 100%;
    height: 90%
}

.popUpVideo {
    position: fixed;
    inset: 0;
    background: #4a4a4cbf;
    background: #333333bf;
    z-index: 9999;
    transition: .3s;
    opacity: 0;
    visibility: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 15px 100px;
    overflow: auto
}

    .popUpVideo svg {
        height: 35px;
        width: 35px;
        position: absolute;
        top: 0;
        right: 0;
        padding: 5px;
        cursor: pointer;
        color: var(--red);
        transition: .3s;
        z-index: 1;
        border-top-right-radius: 10px;
    }

.popupVideo-close svg:hover {
    background: var(--dark-beige);
    /* color: #fff; */
    box-shadow: 0 0 0px #00000080;
}

.popUpVideo.open {
    visibility: visible;
    opacity: 1
}

.popupVideo-item {
    max-width: 100%;
    width: 100%;
    max-height: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center
}

.popupVideo-container {
    max-width: 800px;
    width: 100%;
    position: relative;
    box-shadow: 10px 10px 10px #0000001c;
    transform: translateY(-100px);
    transition: 1s;
    background: #e8e9e9;
    background: #f2f2f2;
    padding: 34px;
    border-radius: 10px;
    transform: scale(.4);
    opacity: 0
}

.open .popupVideo-container {
    transform: scale(1);
    opacity: 1
}

/***** Photo Gallery *****/

.gallery-Item {
    display: flex;
    height: 100%;
    border: 1px solid var(--light-purple);
    flex-direction: column;
    position: relative;
    transition: 0.3s;
}

    .gallery-Item:hover {
        transform: scale(1.05);
        box-shadow: 0 0 15px 2px rgb(51 51 51 / 28%);
    }

.thumbnail-img {
    overflow: hidden;
    position: relative;
}

    .thumbnail-img img {
        width: 100%;
        aspect-ratio: 1.5;
        object-fit: cover;
        transform: scale(1.07);
        transition: 0.3s;
        filter: brightness(1.1) contrast(1.2);
    }

.gallery-Item:hover .thumbnail-img img {
    transform: scale(1.01);
}

.gallery-Item h3 {
    padding: 20px 15px 15px;
    margin: 0;
    position: relative;
    overflow: hidden;
}

    .gallery-Item h3:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        background: var(--light-purple);
        height: 8px;
        width: 0;
        transition: 0.8s;
    }

.gallery-Item:hover h3:after {
    content: "";
    position: absolute;
    top: 0;
    left: -190px;
    height: 8px;
    background: linear-gradient(45deg, transparent, #fff2d5, transparent);   
    transition: .1s;
    animation: moveBackground 8s infinite;
    width: 20%;
    -webkit-animation: moveBackground 8s infinite;
}

.gallery-Item:hover h3:before {
    width: 100%;
}

.gallery-date {
    padding: 0 15px 15px;
    margin-top: auto;
    color: var(--gray);
    display: flex;
    align-items: center;
    font-size: 19px;
}

    .gallery-date img {
        margin-right: 7px;
    }

.gallery-footer {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: flex-end;
    padding: 10px 15px 10px 10px;
    align-items: center;
    overflow: hidden;
}

.plus:before, .plus:after {
    position: absolute;
}

.plus {
    position: relative;
    width: 19px;
    height: 17px;
    color: var(--light-purple);
    transition: 0.3s;
}

    .plus:after {
        content: "";
        border-bottom: 2px solid;
        width: 100%;
        top: calc(50% - 1.5px);
        border-radius: 5px;
        position: absolute;
    }

    .plus:before {
        content: "";
        border-left: 2px solid;
        height: 100%;
        left: calc(50% - 1.5px);
        border-radius: 5px;
        transform: translateX(50%);
    }

.gallery-Item:hover .plus {
    color: var(--blue);
}

/****** About us Cards ******/

.cardImg {
    display: flex;
    height: 100%;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--light-purple);
    transition: 0.3s;
    border-radius: 6px;
    overflow: hidden;
}

    .cardImg h3 {
        padding: 20px 15px 15px;
        margin: 0px;
        overflow: hidden;
        color: var(--dark-gray);
        transition: 0.3s;
    }

    .cardImg:hover h3 {
        color: var(--blue);
    }

    .cardImg img {
        aspect-ratio: 0.9;
    }

    .cardImg:hover img {
        transform: scale(1.01);
    }

    .cardImg:hover {
        transform: scale(1.05);
        box-shadow: 0 0 15px 2px rgb(51 51 51 / 28%);
    }

/******  Contact us ******/
.field-m {
    margin-bottom: 30px;
}

.form-control {
    border-radius: 0;
    border-color: var(--light-purple);
    color: var(--dark-gray);
    font-size: 20px;
}


/*****  add itemes in mobile menu  ********/

.header-menu-mobile {
    padding: 0px 10px;
    background: #f1d7b5;
    margin-bottom: var(--px-20);
}

    .header-menu-mobile .drop1-item {
        color: var(--dark-gray);
        font-size: var(--font-22);
        font-weight: 600;
    }

    .header-menu-mobile .desktop-menu {
        justify-content: center;
    }

    .header-menu-mobile .drop:not(:last-child) .drop1-item span:after {
        border-color: var(--dark-gray);
    }

    .header-menu-mobile .drop1-item:hover {
        background: #edcb9e;
    }


/***********/
.watch-item {
    border: 1px solid var(--light-purple);
    transition: 0.3s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.watch-info {
    padding: 15px 20px;
    font-family: 'Gotham-Medium';
}

.video-tag {
    font-family: 'Gotham-Medium';
    color: var(--gray);
    margin-bottom: 8px;
}
