
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap');
/****** Theme Reset Style ***********************************************************
*********************************************************** Theme Reset Style ******/
html{scroll-behavior: smooth; overflow-x: hidden;}
body{ background: #fff; color:#000000; font-family: 'Gotham', sans-serif; font-weight: 300; overflow-x: hidden;}
body h1, body h2, body h3, body h4, body h5, body h6, body ul li a{ margin: 0 0 0px; font-family: 'Gotham', sans-serif;}
body a {
    cursor: pointer;
}
/***************************************************
                        LOAODING ANIMATIN
***************************************************/

.preloader{
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s 1s;
}
.preloader.preload-finish {
  opacity: 0;
  pointer-events: none;
}
.loader-logo {
  animation: loaderAnimate 5s linear infinite;
}
@keyframes loaderAnimate {
  0% {
    opacity: 1;
  }
  25% {
    opacity: 0.7;
  }
  25% {
    opacity: 0.4;
  }

  100% {
    opacity: 0;
  }
}
@keyframes spin {
    to {
        transform: rotate(360deg);
    }

}
.no-src.lazyload,.no-src.lazyloading{opacity:0}.no-src.lazyloaded{opacity:1;transition:opacity 300ms, 0.5s}

/********************************************************************
                        HEADER SECTION
********************************************************************/
body {
  background: #fefefe;
  color: #000000;
  scroll-behavior: smooth;
    transition: background 0.5s;
}
body.dark {
    background: #323840;
}
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: 1s ease;
  padding: 4px 0px;
  color: #ffffff;
  justify-content: space-between;
    background: #000000;
}
#hamburger {
    position: relative;
    margin-right: 1px;
    /*background: #00000085;*/
    width: 80px;
    height: 31px;
    top: -2px;
    z-index: 99;
}
#hamburger::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 31px;
    background: #1f3b7100;
    z-index: 99;
}
#hamburger span {
    position: absolute;
    width: 22px;
    height: 2px;
    background: #000000;
    left: 4px;
    top: 50%;
    margin-top: -1px;
    transition: 0.5s;
}
#hamburger span:nth-child(1) {
    margin-top: -9px;
    transition: 0.7s;
}
#hamburger span:nth-child(2) {
    /*background: #1f3b71;*/
}
#hamburger span:nth-child(3) {
    margin-top: 7px;
    transition: 0.7s;
}
#hamburger.active span:nth-child(1) {
    margin-top: 0px;
    -webkit-transform: rotate(
        -45deg
    );
    -ms-transform: rotate(-45deg);
    transform: rotate(
        -45deg
    );
}

#hamburger.active span:nth-child(2) {
    opacity: 0;
}
#hamburger.active span:nth-child(3) {
    margin-top: 0px;
    -webkit-transform: rotate(
        45deg
    );
    -ms-transform: rotate(45deg);
    transform: rotate(
        45deg
    );
}

header .container.siteNav {
  /*display: flex;*/
  /*align-items: center;*/
  /*justify-content: space-between;*/
}
header ul  {
  position: relative;
  display: flex;
    transition: 0.5s ease;
}
header ul li {
  list-style: none;
    transition: 0.5s ease;
}
header ul li a {
  display: inline-block;
  color: #ffffff;
  font-size: 14px;
  margin-left: 32px;
  font-weight: 400;
    transition: 0.2s;
    letter-spacing: 1.5px;
}
header ul li a:hover, header ul li a.active {
    color: #f7c275;
    position: relative;
}

header ul li a.active:before {
    content: '';
    top: top;
    left: 0;

}
.stick__y {
  background: #fffffff2;
  color: #ffffff;
  position: fixed;
  padding: 4px 0px;
  box-shadow: 0 5px 20px rgb(0 0 0 / 20%);
    margin: 0px 0;
    /*animation: smoothScroll 2s forwards;*/
}
@keyframes smoothScroll {
    0% {
        transform: translateY(-120px);
    }
    100% {
        transform: translateY(0px);
    }
}
#header-f {
    transition: 0.5s;
}
.headerIMG.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    animation: smoothScroll 1s forwards;
}
@keyframes smoothScroll {
    0% {
        transform: translateY(-40px);
    }
    100% {
        transform: translateY(0px);
    }
}
header.sticky .logo-img {
    background: #ffffff00;
    width: 100px;
    padding: 10px 10px 10px 10px;
    webkit-box-shadow: 0px 0px 0px 0px rgb(0 0 0);
    -moz-box-shadow: 0px 0px 0px 0px rgb(0 0 0);
    box-shadow: 0px 0px 0px 0px rgb(0 0 0);
}

.headBack__img {
    background-image: url(/assets/frontend/images/header-ring.png);
    background-size: 130px 100%;
    background-repeat: no-repeat;
    background-position: center right;
}
.headBack__img ul li {
    animation: slide_nav 0.5s linear forwards;
    animation-delay: calc(0.3s * var(--i));
    opacity: 0;
    position: relative;

}
@keyframes slide_nav {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0px);
        opacity: 1;
    }
}
.header-menu ul li ul {
    position: absolute;
    left: 0;
    background:#000000;
    display: none;
    padding: 20px 0;
    top: 90px;

}
.header-menu ul li ul li {
    width: 200px;
    display: grid;
    padding: 5px 15px;

}
.header-menu ul li ul li a {
    margin-left: 10px;

}
.header-menu ul li{
    transition: 0.5s ease;
}
.header-menu ul li:hover ul {
    display: block;
    top:18px;

}
.logoSection {
    background-image: url(/assets/frontend/images/logo-sec-back.png);
    background-repeat: no-repeat;
    background-position: center center;
    border-top: 3px solid #981d1f;
}
/****************** SIDEBARE SECTION ***********************/
#sidebare {
    position: absolute;
    top: 75px;
    left: -3000px;
    width: 100%;
    height: 100vh;
    background: #23356d;
    transition: 1s;
    z-index: 999;
    /*display: flex;*/
    /*justify-content: center;*/
    /*align-items: center;*/
    /*flex-direction: column;*/
    padding: 20px 15px;
}
#sidebare.active {
    left: 0;
}
.mob-menu li {
    border-bottom: 1px solid #fff4f436;
    line-height: 50px;
    padding: 0 10px;
}

.menuArrow  {
    transform: rotate(-90deg);
    transition: 0.5s;
    font-size: 17px;
    padding: 2px 10px 0px 10px;
    line-height: 40px;
}
.menuArrow.active {
    transform: rotate(0deg);
    color: #f7c275;
}
.mob-subMenu {
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
    position: relative;
    top: 0;
}
.mob-subMenu.active {
    height: 100%;
    transition: height .35s ease;
}
.mob-subMenu li {
    padding-left: 18px;
}
.iconHover .icon {
    transition: 0.5s;
    background: transparent;
    width: 40px;
    height: 40px;
    text-align: center;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 50%;
    color: #25366e;
    font-size: 20px;
    position: relative;
    z-index: 99;
}
.iconHover:hover .icon {
    color: #ffffff;
}
.iconHover .icon:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #981d1f;
    border-radius: 50%;
    transition: 0.3s;
    transform: scale(0);
    z-index: -9;
}
.iconHover:hover .icon:before {
    transform: scale(1);
}
/****************** MOBILE HEADER SECTION ***********************/
#mob-header span{
  color: #d2a56a;
}
.sidenav {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 999;
  top: 0;
  left: -10px;
  background-color: #d2a56a;
  overflow-x: hidden;
  transition: 0.5s;
  padding-top: 60px;
  float: right;
  box-shadow:  3px 0px 13px -1px #0a0a0a;
}
.sidenav a {
  padding: 5px 4px 7px 20px;
  text-decoration: none;
  font-size: 14px;
  color: #ffffff;
  display: block;
  font-weight: 500;
  transition: 0.3s;

}
.sidenav ul li a {
  border-bottom: 1px solid #ffffff;
}
.sidenav ul li {
  padding: 7px 16px;
}
.sidenav .closebtn {
  position: absolute;
  top: -3px;
  left: 9px;
  font-size: 30px;
  margin-right: 7px;
}
.subMenudrop{
    background-color: transparent;
    color: #ffffff;
    cursor: pointer;
    display: block;
    width: 100%;
    text-align: left;
    outline: none;
    transition: 0.4s;
    outline: none !important;
    position: relative;
}

.subMenudrop.active {
    color: #ffffff;
    outline: none;
}
.subMenudrop:after {
    content: '\002B';
    color: #ffffff;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 22px;
    position: absolute;
    right: 10px;
    top: 50%;
    font-weight: 600;
    transform: translateY(-50%);
}

.subMenudrop.active:after {
    content: "\2212";
    color:#ffffff;
}
.subMenudrop_panel{
    padding: 0 10px;
    font-weight: 300;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    font-size: 14px;
    text-transform: none;
}
/********************************************************************
                        SLIDER SECTION
********************************************************************/
.slider {
    position: relative;
}
div.curBack__clr {
    width: 100%;
}
#curBack__clr {
    width: 100%;
}
#curBack__clr img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#bannerSlider .swiper-button-next:after, #bannerSlider .swiper-button-prev:after{
  font-size: 30px !important;
  color: #ffffff;
}

#bannerSlider {
  transition: 1s;
}
#bannerSlider  .swiper-slide {

}
#bannerSlider  .swiper-slide img {
    transition: 0.5s;
    /*animation: bnrImgSlide 20s infinite alternate;*/
}
/*@keyframes bnrImgSlide {*/
/*    0% {*/
/*        transform: scale(1);*/
/*    }*/
/*    100% {*/
/*        transform: scale(1.1);*/
/*    }*/
/*}*/
.bannerBtn {
    background: linear-gradient(142deg, rgba(152,29,31,1) 21%, rgba(35,53,109,1) 100%);
    padding: 5px 10px;
    padding: 8px 25px;
    color: #fff;
    border-radius: 5px;
    display: inline-block;
    padding-top:15px;
}
.bannerBtn:hover {
    background: linear-gradient(142deg, rgba(35,53,109,1) 36%, rgba(152,29,31,1) 100%);
}

/********************************************************************
                        SEARCH SECTION
********************************************************************/
.bnrTxDetail {
    position: absolute;
    left: 4%;
    top: 50%;
    z-index: 9;
    transform: translateY(-50%);
    width: 30%;
}
.bnrTxDetail h1 {

}

input[type=search], select {
    box-sizing: border-box;
    color: #000000;
}
.openSearch__bar {
    position: absolute;
    width: 100%;
    left: 0px;
    top: -2000px;
    transition: 1s;
    height: 100%;
}
.openSearch__bar.active {
    display: block!important;
    top: 0px;

}
#show_search span {
    position: absolute;
    right: 10px;
    top: 50%;
    color: #006091;
    transform: translateY(-50%);
    font-size: 23px;
}
/********************************************************************
                        COLLABURATION SECTION
********************************************************************/
#collaburationSlide .swiper-slide img {
    background-color: rgb(255, 255, 255);
    box-shadow: 0px 0px 20px 0px rgba(34, 34, 34, 0.15);
}
#collaburation .swiper-button-next{
    right: -55px !important;
    /*background-image: url(/assets/frontend/images/next-btn.png) !important;*/
    /*background-repeat: no-repeat;*/
    /*z-index: 9999;*/
    background: #23356d;
    color: #ffffff;
    padding: 20px;
    border-radius: 50%;
}

#collaburation .swiper-button-prev{
    left: -55px !important;
    background: #23356d;
    color: #ffffff;
    padding: 20px;
    border-radius: 50%;
}
#collaburation .swiper-button-next:after, #collaburation .swiper-button-prev:after {
    font-size: 2px;
}
.coll_img {
    position: relative;
}
.coll_img:before {
    content: "";
    position: absolute;
    width: 12%;
    height: 20%;
    background: 0 0;
    transition: 1s;
    bottom: 0px;
    right: 0px;
    border-bottom: 1px solid #981d1f;
    border-right: 1px solid #981d1f;
    opacity: 1;
    transition: 0.5s;
}
.coll_img:hover:before {
    width: 20%;
    height: 28%;
}
.coll_img:after {
    content: "";
    position: absolute;
    width: 12%;
    height: 20%;
    background: 0 0;
    transition: 1s;
    top: 0px;
    left: 0px;
    border-top: 1px solid #981d1f;
    border-left: 1px solid #981d1f;
    opacity: 1;
    transition: 0.5s;
}
.coll_img:hover:after {
    width: 20%;
    height: 28%;
}
/********************************************************************
                       ABOUT US SECTION
********************************************************************/
.about-main {
    background-image: url(/assets/frontend/images/about-back.jpg);
    background-repeat: no-repeat;
    background-position: center right;
}
.about-contain {
    position: relative;
    width: 50%;
    padding: 30px;
    background: #f9f9f9;
    box-shadow: 0px 0px 10px -2px rgb(196 196 196);

}
.uniBox_logo {
    overflow: hidden;
    border-radius: 50%;
    position: relative;
    width: 200px;
    height: 200px;
    background: #f6f6f6;
}
.uniBox_logo::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(142deg, rgba(152,29,31,1) 21%, rgba(35,53,109,1) 100%);
    transform: scale(0);
    opacity: 1;
    transition: 0.5s;
    border-radius: 50%;
}
.uni_box:hover .uniBox_logo::before {
    transform: scale(1);
    opacity: 0;
}
.uniBox_logo img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.uni_box p {
    font-weight: 400;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.iconBox {
    /*border: 1px solid #8f1f25;*/
    border-radius: 6px;
    position: relative;
    transition: 0.5s;
}
.iconBox:hover {
    transform: translateY(-10px);
    background: #ffffff;
}

::placeholder {
    margin-left: 30px;
    font-size: 16px;
    color: #0a0a0a;
}
input{
    outline: none;
}

/********************************************************************
                       HEAD OF SIREN SECTION
********************************************************************/
.mall-banner {
    background-image: url(/assets/frontend/images/mall-banner.jpg);
    background-size: cover;
    background-repeat: repeat;
    background-position: center center;
}
.backheading, .backheading_r {
position: relative;
}
.backheading h2 {
    /*color: #242424;*/
}
.backheading span:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 65px;
    font-weight: 700;
    letter-spacing: 7px;
    color: #eff0f2;
    z-index: -1;
    text-transform: uppercase;
    width: 100%;
    text-align: center;
    animation: heartAni 3s infinite alternate;
}
@keyframes heartAni {
    from {
        font-size: 65px;
    }
    to {
        font-size: 70px;
    }
}
.backheading_r span:nth-child(2) {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
    font-size: 65px;
    font-weight: 700;
    letter-spacing: 7px;
    color: #eff0f2;
    z-index: -1;
    text-transform: uppercase;
}
/********************************************************************
                       NEWS SECTION
********************************************************************/
.accordionNews {
    background: linear-gradient(
        142deg, rgba(152,29,31,1) 12%, rgba(35,53,109,1) 100%);
    color: #000;
    cursor: pointer;
    width: 40px;
    border-radius: 50%;
    height: 40px;
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    outline: none !important;
    position: relative;
}

.accordionNews.active, .accordionNews:hover {
    background: linear-gradient(142deg, rgb(37 54 110) 12%, rgba(35,53,109,1) 100%);
    color:#fff;
    outline: none;
}
.accordionNews:after {
    content: '\002B';
    color: #ffffff;
    float: right;
    /* margin-left: 5px; */
    font-size: 30px;
    position: absolute;
    transition: 0.5s;
    left: 50%;
    top: 72%;
    transform: translate(-50%, -50%);

}
.accordionNews.active:after {
    color:#ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}
.newsBox {
    transition: 0.5s;
    box-shadow: 0px 8px 14.56px 1.44px rgb(0 0 0 / 7%);
}
.newsBox.active   {
    box-shadow: 0px 8px 14.56px 1.44px rgb(0 0 0 / 13%);
    /*padding: 10px;*/
}
.accordionNews:hover:after {
    color:#ffffff;
}
.accordionNews_panel{
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
}
.newArrow {
    position: relative;
    display: inline-block;
}
.newArrow:before {
    position: absolute;
    content: "\2192";
    bottom: -3px;
    right: -30px;
    font-size: 23px;
    transition: 0.5s;
}
.newsBox_inner a:hover .newArrow:before {
     right: -40px;
    color: #23356d;
 }
.newsImg {
    width: 100%;
    height: 200px;
}
.newsImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#news-slide .swiper-button-next, #featured-slide .swiper-button-next, #events-slide .swiper-button-next{
    top: 0;
    margin-top: 0;
    right: 0;
    background: linear-gradient(142deg, rgba(152,29,31,1) 21%, rgba(35,53,109,1) 100%);
    color: #fff;
    padding: 0 20px;
}
#news-slide .swiper-button-prev, #featured-slide .swiper-button-prev, #events-slide .swiper-button-prev {
    top: 0;
    margin-top: 0;
    left: 0;
    background: linear-gradient(142deg, rgba(152,29,31,1) 21%, rgba(35,53,109,1) 100%);
    color: #fff;
    padding: 0 20px;
}
#news-slide .swiper-button-next:after, #news-slide .swiper-button-prev:after, #featured-slide .swiper-button-next:after, #featured-slide .swiper-button-prev:after,#events-slide .swiper-button-next:after, #events-slide .swiper-button-prev:after  {
    font-size: 12px;
}
/**********************************************************************************
                        EVENTS SECTION
***********************************************************************************/
.events {
    /*background-image: url(/assets/frontend/images/event-back.jpg);*/
    /*background-size: cover;*/
    /*background-repeat: repeat;*/
    /*background-position: center center;*/
    /*padding-bottom: 310px;*/
}
.events {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -9;
}
.events_box {
    /*transform: translateY(-300px);*/
    position: relative;
}
.event_title {
    position: absolute;
    left: 0;
    bottom: 0;
    background: #25366e;
    padding: 2px 40px 2px 10px;
    color: #fff;
    font-weight: 300;
    clip-path: polygon(0 0, 88% 0%, 100% 100%, 0% 100%);
}
.events_box a, .recentBtn {
    background: linear-gradient(142deg, rgba(152,29,31,1) 36%, rgba(35,53,109,1) 100%);
    padding: 5px 15px;
    color: #fff;
    border-radius: 5px;
    transition: background 0.3s;
    font-size: 12px;
    padding:18px 10px 12px 10px;
}
.events_box a:hover, .recentBtn:hover {
    background: linear-gradient(142deg, rgba(35,53,109,1) 36%, rgba(152,29,31,1) 100%);
}
.eventsImg {
    width: 100%;
    height: 250px;
}
.eventsImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.eventsCont p, .eventsCont span {
    font-size: 14px !important;
    font-weight: 300 !important;
    line-height: unset !important;
    font-family: Gotham !important;
}
.event-menu li {
     border-bottom: 1px solid #fff4f436;
     line-height: 50px;
     padding: 0 10px;
 }

.event-arrw  {
    transform: rotate(0deg);
    transition: 0.5s;
    font-size: 12px;
    padding: 2px 10px 0px 10px;
    line-height: 20px;
}
.event-arrw.active {
    transform: rotate(-90deg);
    color: #981d1f;
}
.eventMenu_a.active {
    color:#981d1f;
    background: transparent !important;
}
.event-subMenu  {
    height: 0;
    overflow: hidden;
    transition: height .35s ease;
    position: relative;
    top: 0;
}
.event-subMenu.active {
    height: 100%;
    transition: height .35s ease;
}
.event li a {
    width: 100%;
    display: block;
    line-height: 40px;
    border-bottom: 1px solid #dbd9d9;
}
.arrow_cen {
    display: flex;
    justify-content: center;
    align-items: center;
}
.event li:hover a.eventMenu_a, .subMenuChlidren:hover, .subMenuChlid:hover {
    color:#981d1f !important;
}
.event-subMenu li a {
    color:#000000 !important;
    font-size: 14px;
    width: 100%;
    display: block;
    line-height: 40px;
    border-bottom: 1px solid #dbd9d9;
    padding-left: 18px;
}
.event-subMenu li ul li a {
    padding-left: 42px;
}
.eventGalery_img {
    width:100%;
    height: 300px;
}
.eventGalery_img img {
    width:100%;
    height: 100%;
    object-fit: cover;
}
/**********************************************************************************
                        RECENT EVENTS SECTION
***********************************************************************************/
.recent_events {
    /*margin-top: -265px;*/
}
.recentImg {
    width: 100%;
    height: 100px;
}
.recentImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.recent_Box {
    background: #f6f6f6;
    height: 91%;
}
.calender_event {
    width: 100%;
    height: 110px;
    overflow: auto;
}
.calendar_ev_sing {
    background: #f6f6f6;
    padding: 10px;
    margin-bottom: 5px;
}
.contentHei {
    height: 63px;
}
/**********************************************************************************
                        CALENDER SECTION
***********************************************************************************/
.calendar {
    height: max-content;
    width: max-content;
    background-color: #fdfdfd;
    /*border-radius: 30px;*/
    /*padding: 20px;*/
    position: relative;
    overflow: hidden;
    /* transform: scale(1.25); */
}

.light .calendar {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 600;
    color: #151426;
    padding: 10px;
}

.calendar-body {
    padding: 10px;
}

.calendar-week-day {
    height: 50px;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    font-weight: 600;
}

.calendar-week-day div {
    display: grid;
    place-items: center;
    color: #718096;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    color: #151426;
}

.calendar-days div {
    width: 50px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
    position: relative;
    cursor: pointer;
    animation: to-top 1s forwards;
    /* border-radius: 50%; */
}

.calendar-days div span {
    position: absolute;
}

.calendar-days div:hover span {
    transition: width 0.2s ease-in-out, height 0.2s ease-in-out;
}

.calendar-days div span:nth-child(1),
.calendar-days div span:nth-child(3) {
    width: 2px;
    height: 0;
    background-color: #151426;
}

.calendar-days div:hover span:nth-child(1),
.calendar-days div:hover span:nth-child(3) {
    height: 100%;
}

.calendar-days div span:nth-child(1) {
    bottom: 0;
    left: 0;
}

.calendar-days div span:nth-child(3) {
    top: 0;
    right: 0;
}

.calendar-days div span:nth-child(2),
.calendar-days div span:nth-child(4) {
    width: 0;
    height: 2px;
    background-color: #151426;
}

.calendar-days div:hover span:nth-child(2),
.calendar-days div:hover span:nth-child(4) {
    width: 100%;
}

.calendar-days div span:nth-child(2) {
    top: 0;
    left: 0;
}

.calendar-days div span:nth-child(4) {
    bottom: 0;
    right: 0;
}

.calendar-days div:hover span:nth-child(2) {
    transition-delay: 0.2s;
}

.calendar-days div:hover span:nth-child(3) {
    transition-delay: 0.4s;
}

.calendar-days div:hover span:nth-child(4) {
    transition-delay: 0.6s;
}

.calendar-days div.curr-date,
.calendar-days div.curr-date:hover {
    background-color: #23356d;
    color: #ffffff;
    /*border-radius: 50%;*/
}

.calendar-days div.curr-date span {
    display: none;
}

.month-picker {
    padding: 5px 10px;
    /*border-radius: 10px;*/
    cursor: pointer;
}

.month-picker:hover {
    background-color: #f6f6f6;
}

.year-picker {
    display: flex;
    align-items: center;
}

.year-change {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    margin: 0 10px;
    cursor: pointer;
}

.year-change:hover {
    background-color: #f6f6f6;
}
.month-list {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #fdfdfd;
    padding: 20px;
    grid-template-columns: repeat(3, auto);
    gap: 5px;
    display: grid;
    transform: scale(1.5);
    visibility: hidden;
    pointer-events: none;
}

.month-list.show {
    transform: scale(1);
    visibility: visible;
    pointer-events: visible;
    transition: all 0.2s ease-in-out;
}

.month-list > div {
    display: grid;
    place-items: center;
}

.month-list > div > div {
    width: 100%;
    padding: 5px 20px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    color: #151426;
}

.month-list > div > div:hover {
    background-color: #edf0f5;
}

@keyframes to-top {
    0% {
        transform: translateY(100%);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/********************************************************************
                       FOCAL PERSONS
********************************************************************/
.accordionCur{
    background-color: transparent;
    color: #000;
    cursor: pointer;
    padding: 8px 30px 8px 10px;
    width: 100%;
    /*border: 2px solid #dee2e6;*/
    text-align: left;
    outline: none;
    font-size: 15px;
    transition: 0.4s;
    outline: none !important;
    position: relative;
    font-weight: 300;
    /*border-image: linear-gradient(142deg, rgba(152,29,31,1) 21%, rgba(35,53,109,1) 100%);*/
    /*border-image-slice: 1;*/
    /*border-width: 2px!important;*/
    /*border-style: solid!important;*/
}

.accordionCur.active, .accordionCur:hover {
    background: #ededed;
    color: #000;
    outline: none;
    border-radius: 6px 6px 0 0;
}
.accordionCur:after {
    content: '\002B';
    color: #23356d;
    font-weight: bold;
    float: right;
    margin-left: 5px;
    font-size: 22px;
    position: absolute;
    right: 10px;
    top: 50%;
    font-weight: 600;
    transform: translateY(-50%);
}

.accordionCur.active:after {
    content: "\2212";
    color:#000000;
}
.accordionCur:hover:after {
    color:#000000;
}
.accordionCur_panel{
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    border-bottom: 1px solid #dee2e6;
    border-left: 1px solid #dee2e6;
    border-right: 1px solid #dee2e6;
}
.accordionCur_panel p {
    padding: 10px 0;
    font-size: 15px;
}
.accordionCur_panel ul li, .organogram_list ul li
{
    font-size: 15px;
    margin-bottom: 3px;
    margin-left: 18px;
    list-style: circle;

}
.accordionCur_panel ul li:nth-child(1)
{
    font-weight: 500;
    margin-left: 0;
    list-style: none;

}

/********************************************************************
                       SINGLE BRAND SECTION
********************************************************************/
.brand-titIM {
    position: relative;
    width: 100%;
    height: 350px;
}
.brand-titIM img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    object-fit: cover;
    height: 100%;
}
.shop-BX {
    background-image: url(/assets/frontend/images/shopback.jpg);
    object-fit: cover;
    width: 100%;
    position: relative;
}
.shop-BX:before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    background: #f7c275;
    width: 100%;
    height: 3px;
    transition: 0.5s ;
}
.shop-BX:hover:before {
    width: 0;
}

.shop-BX_style {
    position: relative;
    overflow: hidden;
}
.shop-BX_style span{
    transition: 0.5s;
    opacity: 0;
}
.shop-BX_style:hover span{
    opacity: 1;
}
.shop-BX_style span:nth-child(1){
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #006091);
    animation: animate1 2s linear infinite;
}
.shop-BX_style span:nth-child(2){
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #006091);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}

.shop-BX_style span:nth-child(3){
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, transparent, #006091);
    animation: animate3 2s linear infinite;
}

.shop-BX_style span:nth-child(4){
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to top, transparent, #006091);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}

/********************************************************************
                       SINGLE SHOP BRAND SECTION
********************************************************************/

.head_bac__imgg {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.head_bac__imgg img {
    width: 100%;
    height: 100%;
    position: absolute;
    object-fit: cover;
    top: 0;
    left: 0;
    z-index: -1;
}
.pageImg_style img {
    position: relative;
    bottom: 8px;
    right: 8px;
}
.pagesBreadcurmb {
    display: inline-block;
    color: #f4f4f4;
    width: 100%;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
}
.registerForm {
    background: #f5f5f5;
}

.pageImg_style {
    position: relative;
    display: inline-block;
}
.pageImg_style:before {
    width: 65%;
    height: 55%;
    content: '';
    position: absolute;
    background: #d2a56a;
    bottom: 0;
    right: 0;
    transition: 0.5s;
}

.head_bac__img {
    background-image: url(/assets/frontend/images/page-back.jpg);
    /*background-size: 100% 100%;*/
    padding: 0 35px;
    background-repeat: no-repeat;
    background-position: center center;
    object-fit: cover;
    height: 100%;
    /*opacity: 0.2;*/
    position: relative;
}
.head_bac__img::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fbfaf5;
    left:0;
    top: 0;
    opacity: 1;
    z-index: -1;
}
.likeBX:hover img {
    transform: rotate(2deg) scale(1.1);
}
.likeBX img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}
.trasp-btn {
    width: 35%;
}
.trasp-btn_style {
    position: relative;
    overflow: hidden;
}
.trasp-btn_style span{
    transition: 0.5s;
    opacity: 1;
}
.trasp-btn_style:hover span{
    opacity: 0;
}
.trasp-btn_style span:nth-child(1){
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to right, transparent, #006091);
    animation: animate1 2s linear infinite;
}
@keyframes animate1 {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}
.trasp-btn_style span:nth-child(2){
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, #006091);
    animation: animate2 2s linear infinite;
    animation-delay: 1s;
}
@keyframes animate2 {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100%);
    }
}
.trasp-btn_style span:nth-child(3){
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(to left, transparent, #006091);
    animation: animate3 2s linear infinite;
}
@keyframes animate3 {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}
.trasp-btn_style span:nth-child(4){
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to top, transparent, #006091);
    animation: animate4 2s linear infinite;
    animation-delay: 1s;
}
@keyframes animate4 {
    0% {
        transform: translateY(100%);
    }
    100% {
        transform: translateY(-100%);
    }
}
.brand-CT {
    transform: rotate(90deg) translate(50%, -50%);
    white-space: nowrap;
    position: absolute;
    top: 12px;
    right: -50px;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/********************************************************************
                        FOOTER SECTION
********************************************************************/
.subEmail {
    box-shadow: -9.506px 14.094px 60px 0px rgba(0, 0, 0, 0.15);
}
.mimDetail img {
    width: 100px;
    height: 25px;
}
.footer_back {
    background-image: url(/assets/frontend/images/footer-back.jpg);
    background-size: cover;
    background-repeat: repeat;
    background-position: center center;
}
/***************************************************
                        CONTACT SECTION
***************************************************/
.siteMP {
    width: 100%;
    height: 400px;
}
.conctBA {
    background-image: url(/assets/frontend/images/event-back.png);
    background-size: cover;
    background-repeat: repeat;
    background-position: center right;
}
.contactBox {
    position: relative;
}
.con_formDetail {
    position: relative;
    width: calc(100% - 150px);
    margin-right: 150px;
    padding-right: 250px;
    background: #f6f6f6;
}
.contactBox_inner {
    padding: 30px;
}
.con_forminfo {
    position: absolute;
    right: 0;
    bottom: -40px;
    width: 350px;
    padding: 25px;
}
.con_forminfo ul li {
    position: relative;
    display: flex;
    margin:15px 0;
    align-items: flex-start;
}
.con_forminfo a {
    color: #ffffff;
}
.con_forminfo ul li span:nth-child(1) i {
    width: 25px;
    max-width: 25px;
}
.con_forminfo ul li span:nth-child(1)  {
     max-width: 100%;
 }
.con_icon {
    position: relative;
    display: flex;
    margin-top: 40px;
}
.con_icon ul li {
    margin-left: 15px;
    display: inline-block;
}
.inputBox {
    position: relative;
}
.inputBox input, .inputBox textarea {
    font-size: 14px;
    border: none;
    background: #ffffff;
    padding:8px 0px 8px 8px;
}
.inputBox span {
    position: absolute;
    left: 0;
    font-size: 16px;
    transition: 0.5s;
    pointer-events: none;
    padding:8px 0px 8px 8px;
}
.inputBox input:focus ~ span, .inputBox textarea:focus ~ span, .inputBox input:valid ~ span, inputBox textarea:valid ~ span {
    transform: translateY(-28px);
    font-size: 12px;
    font-weight: 300;
    letter-spacing: 1px;
    color: #981d1f;
}

/**********************************************************************************
                        NEWSLETTER SECTION
***********************************************************************************/
.newsletter_doc {
    text-align: center;
}
.btn-hover {
    line-height: 42px;
    height: 42px;
    text-align: center;
    width: 100%;
    cursor: pointer;
}
.btn-one-hover {
    color: #ffffff;
    transition: all 0.3s;
    position: relative;
}
.btn-one-hover span {
    transition: all 0.3s;
}
.btn-one-hover::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    transition: all 0.3s;
    border-top-width: 1px;
    border-bottom-width: 1px;
    border-top-style: solid;
    border-bottom-style: solid;
    border-top-color: #000000;
    border-bottom-color: #000000;
    transform: scale(0.1, 1);
}
.btn-one-hover:hover span {
    letter-spacing: 2px;
    font-weight: 600;
    color: #000;
}
.btn-one-hover:hover::before {
    opacity: 1;
    transform: scale(1, 1);
}
.btn-one-hover::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    transition: all 0.3s;
    background-color: #23356d;
    box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.75);
}
.btn-one-hover:hover::after {
    opacity: 0;
    transform: scale(0.1, 1);
}
/**********************************************************************************
                        RESPONSIVE
***********************************************************************************/
/***************************************************
                        ABOUT US SECTION
***************************************************/
@media (max-width:480px) {
    .modal-content {
        width: 90% !important;
    }
    .con_forminfo {
        position: relative;
        width: 100%;
        padding: 25px;
        bottom: -10px;
    }
    .con_formDetail {
        width: calc(100% - 0px);
        margin-right: 0;
        padding-right:0;
    }
    .events {
        width: 100%;
        height: 350px;
    }
    .events img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .about-contain {
        width: 100%;
    }
    .email_conBX {
        width: 345px !important;
        /*height: 345px !important;*/
    }
    #mob-header{
        background-color: #ffffff;
        padding: 10px 0;
        transition: 0.5s;
    }
    .mob_sticky {
        background: #f1f1f1;
        overflow: hidden;
        position: fixed;
        z-index: 9999999;
        width: 100%;
        top:0;
        padding: 2px 0 !important;
        box-shadow: 0px 1px 8px -3px rgb(163 163 163);
    }
    .emial_img img {
        width: 100%;
        height: 280px;
        object-fit: cover;
    }
    .email_close i {
        background: #fff;
        padding: 3px 5px;
    }
    nav{
        display: none;
    }
    #curBack__clr {
        width: 100%;
        height: 400px;
    }
    #curBack__clr img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .brand-titIM {
        height: 200px;
    }
    .pagesBreadcurmb {
        padding: 14px 10px;
    }
    .banertop-height {
        /*height: 76px;*/
    }
    #curBack__clr {
        /*height: 50vh;*/
        /*background-size: auto 100% !important;*/
        /*background-attachment: unset !important;*/
    }
    .bnrTxDetail {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        width: 85%;
    }
    header {
        padding: 0px 0px;
    }
    header .logo-img {
        right: 0;
        transform: translate(0%, -0%);
        padding: 8px 10px 8px 10px;
    }
    .logoCurve {
        top: 0px;
    }
    header ul li {
        padding: 2px 0px !important;
    }
    header ul li a {
        color: #000000 !important;
        font-size: 14px !important;
        padding: 10px 10px 10px 10px !important;
    }
    .toggle {
      top: 12px !important;
    }
    #hamburger {
        /*padding: 8px 10px 8px 10px;*/
        /*width: 6px;*/
    }
    header.stickyy {
      padding: 10px 0px;
      box-shadow: 0 5px 20px rgb(0 0 0 / 20%);
    }

    #sidebare {
        width: 100%;
    }
    header.sticky .logo-img {
        top: -9px;
    }
    header.sticky {
        padding: 10px 0px;
    }
    .slider {
        padding-top: 0px;
    }
    .swiper-button-next:after, .swiper-button-prev:after{
        font-size: 20px !important;
    }
    /****** Open Navbar *********/
    .siteNavigation {
        display: none;
    }
    .siteNavigation.active {
        position: fixed;
        top: 0;
        left:0;
        width: 100%;
        height: 100%;
        background: #1f3b71;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    header ul li a {
        color: #ffffff;
        font-size: 20px;
        text-transform: uppercase;
        font-weight: 300;
    }
    header ul li a.active {
        border-bottom: 2px solid #ffffff;
    }
    header ul li {
        padding: 10px 10px;
    }
    .toggle {
        position: fixed;
        top: 32px;
        right: 20px;
        width: 40px;
        height: 40px;
        background: url(/assets/frontend/images/menu.png);
        background-size: 30px;
        background-repeat: no-repeat;
        background-position: center;
        cursor: pointer;
        z-index: 10000;
    }
    .toggle.active {
        background: url(/assets/frontend/images/close.png);
        background-size: 25px;
        background-repeat: no-repeat;
        background-position: center;
    }
    .head_bac__imgg {
        height: 200px;
    }
    #collaburation .swiper-button-next, #collaburation .swiper-button-prev {
        display: none;
    }
    .backheading_r span:nth-child(2) {
        top: 30%;
        font-size: 25px;
    }
    .backheading span:nth-child(2) {
        font-size: 20px;
    }
    @keyframes heartAni {
        from {
            font-size: 20px;
        }
        to {
            font-size: 25px;
        }
    }
    .calendar-days div {
        border: 1px solid #24397138;
        width: 43px;
        height: 40px
    }
    .calendar-body {
         padding: 0px;
    }
}

@media (min-width: 481px) and (max-width:767px ) {
    .about-contain {
        width: 90%;
    }

    header .logo-img {
        right: 0;
        top: 0;
        transform: translate(0, -0%);
        padding: 10px 10px 10px 10px;
        width: 100px;
    }
    .projectDetailImg {
        height: 250px;
    }
    #hamburger {
        width: 40px;
    }
    .video-img {
        max-width: 100%;
        height: 250px;
    }
    .projectBoxSideImg {
        width: 100%;
        height: 250px;
    }
    .banr_description {
        font-size: 43px;
        margin: -12px 0px;

    }

    .sideLineMaster h3::before {
        top: 80%;
        transform: translate(-50px, 0px);
        left: 50%;
    }
    .logoCurve::after {
        background: #00000000;
    }
    .logoCurve::before {
        background: #00000000;
    }
    header .logo-img {
        -webkit-box-shadow: 0.5px 8px 21px -11px rgb(0 0 0);
        -moz-box-shadow: 0.5px 8px 21px -11px rgb(0 0 0);
        box-shadow: 0.5px 8px 21px -11px rgb(0 0 0);
    }
    #collaburation .swiper-button-next, #collaburation .swiper-button-prev {
        display: none;
    }
    .backheading_r span:nth-child(2) {
        top: 30%;
        font-size: 25px;
    }
    .backheading span:nth-child(2) {
        font-size: 20px;
    }
    @keyframes heartAni {
        from {
            font-size: 20px;
        }
        to {
            font-size: 25px;
        }
    }
}

@media (min-width: 768px) and (max-width:1023px) {
    #sidebare {
        top: 54px;
    }
    .con_formDetail {
        padding-right: 215px;
    }
    .about-contain {
        width: 70%;
    }
    #curBack__clr {
        width: 100%;
        height: 350px;
    }
    #curBack__clr img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .bannerBtn {
        padding: 6px 16px;
        font-size: 14px;
    }
    header ul li a {
        margin-left: 15px;;
    }
    header .logo-img {
        right: 0;
        transform: translate(0);
        width: 115px;
    }
    .calendar-body {
        padding: 0px;
    }
    .backheading_r span:nth-child(2) {
        font-size: 45px;
    }
    .backheading span:nth-child(2) {
        font-size: 35px;
    }
    @keyframes heartAni {
        from {
            font-size: 35px;
        }
        to {
            font-size: 45px;
        }
    }
    #collaburation .swiper-button-next, #collaburation .swiper-button-prev {
        display: none;
    }
}
@media (min-width: 1024px) and (max-width: 1280px) {
    .about-contain {
        width: 60%;
    }
    .pagesBreadcurmb {
        width: 45%;
    }
    #curBack__clr {
        /*background-size: cover!important;*/
    }
    #collaburation .swiper-button-next, #collaburation .swiper-button-prev {
        display: none;
    }
}
@media (max-width:766px ) {

}
/*@media (max-width: 10000px) and (min-width: 1367px) {
    .widthTst {
        width: 1660px;
    }
}*/
/***************************************************
                        EMAIL POPUP SECTION
***************************************************/
.email_popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    display: none;
    transition: 0.5s ease-in-out;
    box-shadow: 0 10px 30px 0 rgb(0 0 0 / 15%);
}
.email_conBX {
    position: relative;
    width: 700px;
    /*height: 400px;*/
    background: #ffffff;
}
.email_close {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 5px;
    font-size: 22px;
    z-index: 99;
}
/***************************************************
                        MEGA MENU SECTION
***************************************************/
nav{
    position: relative;
    z-index: 99;
    width: 100%;
    background: #ffffff;
}
.headerIMG {
    /*background-image: url(/assets/frontend/images/header_circle.svg);*/
    /*background-size: 175px 100%;*/
    /*background-repeat: no-repeat;*/
    /*background-position: center right;*/
    position: relative;
    transition: 1s ease;
    border-bottom: 3px solid #981d1f;
}
.head_circle {
    position: absolute;
    right: 0;
    top: 0;
    width: 195px
}
nav .wrapper{
    position: static;
    background: #25366e;
    max-width: 1300px;
    /*padding: 0px 30px;*/
    height: 55px;
    line-height: 30px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}
.wrapper .logo a{
    color: #f2f2f2;
    font-size: 35px;
    font-weight: 600;
    text-decoration: none;
}

.wrapper .nav-links{
    display: inline-flex;
    justify-content: flex-end;
    position: relative;
}
.nav-links li{
    list-style: none;
    margin: 0 7px;
    padding: 13px 0;
}
.nav-links li a:hover{
    background: linear-gradient(142deg, rgba(152,29,31,1) 21%, rgba(35,53,109,1) 100%);
    border: 1px solid #fff;
    border-radius: 5px;
}
.nav-links li a.active {
    background: linear-gradient(142deg, rgba(152,29,31,1) 21%, rgba(35,53,109,1) 100%);
    border: 1px solid #fff;
    border-radius: 5px;
    padding: 17px 10px 10px 10px;
}
.nav-links li a{
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    padding: 17px 10px 10px;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
}

.nav-links .mobile-item{
    display: none;
}
.nav-links .drop-menu{
    position: absolute;
    background: #000000;
    width: 180px;
    line-height: 45px;
    top: 85px;
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.nav-links li:hover .drop-menu,
.nav-links li:hover .mega-box{
    transition: all 0.3s ease;
    top: 55px;
    opacity: 1;
    visibility: visible;
}
.drop-menu li a{
    width: 100%;
    display: block;
    padding: 0 0 0 15px;
    font-weight: 400;
    border-radius: 0px;
}
.subMenu_img {
    width: 100%;
    height: 350px;
}
.subMenu_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mega-box{
    position: absolute;
    left: 0;
    width: 100%;
    /*height: 300px;*/
    /*overflow: auto;*/
    /*padding: 0 30px;*/
    top: 85px;
    opacity: 0;
    visibility: hidden;
}
.mega-box .content{
    background: #ffffff;
    padding: 25px 20px;
    /*display: flex;*/
    width: 100%;
    /*justify-content: space-between;*/
    box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.mega-box .content .header-row{
    width: calc(25% - 30px);
    line-height: 45px;
}

.content .header-row img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content .mega-links{
    /*margin-left: -20px;*/
    /*border-left: 1px solid rgb(0 0 0 / 9%);*/
}
.mega-links li{
    padding: 0 0;
    line-height: 1.6;
    margin: 0 0;
    line-height: 38px;
    border-bottom: 1px solid #a7a4a457;
}
.mega-links li:nth-last-child(1){
    border-bottom: none;
}
.event-subMenu {
    /*height: 0;*/
    /*overflow: hidden;*/
}
.event-arrw {
    transition: 0.5s;
}
.mega-links li:hover .event-subMenu {
    /*transition: height .35s ease;*/
    /*height: auto;*/
    /*overflow: unset;*/
}
.mega-links li a{
    padding: 3px 10px;
    /*margin: 0 20px;*/
    color: #000000;
    font-size: 14px;
    display: block;
    font-weight: 400;
}
/*.mega-links li a:nth-last-child(1){
    border-bottom: none;
}*/
/*.subMenuChlid {*/
/*    height: 0;*/
/*    padding: 0 0;*/
/*    overflow: hidden;*/
/*}*/
/*.event-subMenu li:hover .subMenuChlid {*/
/*    height: auto;*/
/*    overflow: unset;*/
/*}*/
.mega-links li a:hover{
    color: #981d1f;
    background: transparent;
}
.wrapper .btn{
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: none;
}
.hideclas {
    display: none;
}
nav input{
    display: none;
}

.body-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    padding: 0 30px;
}
.body-text div{
    font-size: 45px;
    font-weight: 600;
}

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 99; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    position: relative;
    background-color: #ffffff;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    width: 60%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}
@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

.close {
    color: white;
    float: right;
    font-size: 24px;
    font-weight: bold;
}

.close:hover, .close:focus {
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 6px 16px;
    background-color: #23356d;
    color: white;
}
.modal-header h2 {
    font-size: 20px;
    font-weight: 300;
}
.modal-body {padding: 16px;}

.site_arrow img {
    transition: 0.5s;
}
.site_arrow:hover img {
    transform: translateX(10px);
    filter: invert(13%) sepia(71%) saturate(3620%) hue-rotate(345deg) brightness(94%) contrast(92%);
}

.tabs {
    display: flex;
    flex-wrap: wrap; // make sure it wraps
}
.tabs label {
    order: 1; // Put the labels first
display: block;
    padding: 1rem 2rem;
    margin-right: 0.2rem;
    cursor: pointer;
    background: #ffffff;
    font-weight: bold;
    transition: background ease 0.2s;
}
.tabs .tab {
    order: 99;
    flex-grow: 1;
    width: 100%;
    display: none;
    padding: 1rem 0;
    background: #fff;
}
.tabs input[type="radio"] {
    display: none;
}
.tabs input[type="radio"]:checked + label {
    background: linear-gradient(142deg, rgba(152,29,31,1) 21%, rgba(35,53,109,1) 100%);
    color: #ffffff;
}
.tabs input[type="radio"]:checked + label + .tab {
    display: block;
    border-top: 2px solid #981d1f;;
}

@media (max-width: 45em) {
    .tabs .tab,
    .tabs label {
        order: initial;
    }
    .tabs label {
        width: 100%;
        margin-right: 0;
        margin-top: 0.2rem;
    }
}

.socialInfo {
    width: 50px;
    height: 50px;
    background: transparent;
    border: 1px solid white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.socialInfo i {
    color: #fff;
    font-size: 16px;
}
