html {
  scroll-behavior: smooth;
}
body {
  font-size: 1rem;
  font-family: "Instrument Sans", sans-serif;

  color: #242424;
  background-color: #fff7e7;
}

a,
a:hover {
  text-decoration: none !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

ul {
  padding-left: 0px;
  list-style-type: none;
  margin: 0;
}
img {
  display: block;
  max-width: 100%;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

@media (min-width: 1366px) {
  .cmpad {
    max-width: 1526.4px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 1366px) {
  .cmpad {
    padding-left: 80px;
    padding-right: 80px;
  }
}
@media (max-width: 991px) {
  .cmpad {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 767px) {
  .cmpad {
    padding-left: 15px;
    padding-right: 15px;
  }
}
@media (max-width: 575px) {
  html {
    font-size: 90%;
  }
}

@media (min-width: 768px) {
  ::-webkit-scrollbar {
    width: 10px;
    height: 6px;
  }
  ::-webkit-scrollbar-track {
    background-color: #eee;
  }
  ::-webkit-scrollbar-thumb {
    background-color: #3a3a3a;
  }
  ::-webkit-scrollbar-thumb:hover {
    background-color: #444;
  }

  .custscroll::-webkit-scrollbar,
  .custscroll::-webkit-scrollbar-thumb {
    border-radius: 13px;
    width: 6px;
    height: 6px;
    background-clip: padding-box;
    background: transparent;
  }
  .custscroll::-webkit-scrollbar-track {
    background: transparent;
  }
  .custscroll:hover::-webkit-scrollbar-thumb {
    background-color: #ccc;
  }
  .custscroll::-webkit-scrollbar-thumb:hover {
    background-color: #999;
  }

  .custscrollA::-webkit-scrollbar {
    border-radius: 13px;
    width: 6px;
    height: 6px;
    background-clip: padding-box;
    background: transparent;
  }
  .custscrollA::-webkit-scrollbar-track {
    background: transparent;
  }
  .custscrollA::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 6px;
  }
  .custscrollA::-webkit-scrollbar-thumb:hover {
    background-color: #999;
  }
}

/*---------------------------------------*/
/*::::::::::::::::HEADER:::::::::::::::::*/
/*---------------------------------------*/
header {
  position: fixed;
  width: 100%;
  z-index: 99;
  transition: 0.3s;
  height: 7rem;
  display: flex;
  align-items: center;
  padding-top: 1rem;
}
header.active {
  background-color: #252525;
  box-shadow: 0px 0px 20px #00000043;
  transition: 0.3s;
  height: 4rem;
  border-radius: 0 0 2rem 2rem;
  padding-top: 0;
}

header .headmain {
  display: flex;
  justify-content: center;
  transition: 0.3s;
}

header.active .headmain {
  padding: 5px 0;
  transition: 0.3s;
}
header .headmain .logocol {
  width: 280px;
  transition: 0.3s;
  display: flex;
  justify-content: center;
  position: relative;
}
header .headmain .logocol img {
  width: 100%;
  margin: auto;
}
header.active .logocol img {
  width: 70%;
}
header .logocol h5 {
  position: absolute;
  margin-bottom: 0;
  text-align: center;
  padding-top: 3rem;
  color: white;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 1rem;
}
header.active .logocol h5 span {
  font-size: 0.8rem;
}

header .headmain .menucol {
  flex: 1 0;
  display: flex;
  gap: 1.5rem;
}
header .headmain .menucol.end {
  justify-content: flex-end;
}
header .headmain .menucol.start {
  justify-content: flex-start;
}

header .menucen {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 3rem;
  position: relative;
}

.bttn {
  position: relative;
  z-index: 3;
  transition: 0.4s;
  background: black;
  color: white;
  border-radius: 50px;
  height: 45px;
  display: flex;
  align-items: center;
  padding: 0 25px;
  overflow: hidden;
  transition: 0.4s;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  padding-right: 8px;
}

.bttn::before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 100%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #ffffff;
  transform-origin: 100% 50%;
  transform: scale3d(1, 2, 1);
  transition: transform 0.4s, opacity 0.4s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.9, 1);
}
.bttn span {
  background-color: rgb(255 255 255 / 90%);
  height: 35px;
  width: 35px;
  border-radius: 50%;
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bttn span img {
  width: 13px;
  transition: 0.3s;
}

.bttn:hover {
  color: #222222;
}
.bttn:hover img {
  transform: rotate(45deg);
}

.bttn:hover::before {
  transform: scale3d(10, 9, 1);
  transform-origin: 100% 55%;
}

.menuend {
  display: flex;
  gap: 10px;
}
.menuend button {
  background: #53c3bd;
  border: none;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
}
.menuend button:hover {
  background-color: black;
}
.menuend button:hover img {
  filter: brightness(0) invert(1);
}
.menuend button img {
  width: 20px;
  filter: brightness(0);
}
header a.mainli {
  color: #ffd573;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: 1.1rem;
  height: 40px;
  position: relative;
  transition: 0.3s;
  letter-spacing: 0.05rem;
  cursor: pointer;
  font-family: "Berkshire Swash", serif;
  width: max-content;
}
header a.mainli:after {
  content: "";
  position: absolute;
  width: 0;
  height: 3px;
  background-color: #eaef20;
  bottom: 0;
  transition: 0.3s;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 3px;
}
header a.mainli:hover:after {
  width: 100%;
}
.dropdown:hover a.mainli:after {
  width: 100%;
}

header a.mainli:hover {
  color: #eaef20;
}

ul.social {
  display: flex;
  margin-bottom: 0;
  gap: 5px;
}

ul.social li {
  display: block;
}

ul.social li:last-child {
  margin-right: 0;
}

ul.social li a {
  display: block;
  text-align: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  font-size: 0.875rem;
}

ul.social li a i {
  width: 28px;
  height: 28px;
  line-height: 28px;
  display: block;
  text-align: center;
  font-size: 0.95rem;
  color: rgb(255 255 255 / 80%);
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

ul.social li a:hover i {
  color: #fff;
}

/*---------------------------------------*/
/*::::::::::::::::SLIDER:::::::::::::::::*/
/*---------------------------------------*/

.slider {
  position: relative;
  width: 100%;
  height: 100vh;
  padding-bottom: 0;
}
.slider:after {
  content: "";
  position: absolute;
  background-image: url(../img/icons/pattern.svg);
  background-repeat: repeat-x;
  height: 18px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: contain;
  opacity: 0.3;
  z-index: 1;
}
.slider-con {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  flex-flow: column;
  justify-content: flex-end;
  width: 100%;
  left: 0;
  right: 0;
  text-align: center;
}
.slider .mainslider,
.slider .mainslider .swiper-slide,
.slider .mainslider .slideimg {
  height: 100vh;
}

.slider .mainslider .slideimg > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes zoom-a {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.sliderbtn .bttn {
  background: #53c3bd;
  color: #222222;
  width: max-content;
}
.sliderbtn .bttn::before {
  background: black;
}
.sliderbtn .bttn:hover {
  color: rgb(255, 255, 255);
}

.slider .line {
  content: "";
  position: absolute;
  background-color: #fcbc56;
  width: 5px;
  height: 50px;
  left: 0;
  right: 0;
  margin: auto;
  bottom: -25px;
  z-index: 1;
}
.slider .mainslider .slideimg:before {
  content: "";
  position: absolute;
  background: linear-gradient(rgba(65, 34, 54, 0) 0%, rgb(65, 34, 54) 100%);
  bottom: 0;
  width: 100%;
  height: 30%;
  z-index: 1;
}

.slider .mainslider .slideimg.mob {
  display: none;
}
.slider h3 {
  color: rgb(255 239 215);
  margin-bottom: 2.5rem;
  font-size: 40px;
  font-weight: 700;
  max-width: 700px;
  font-family: "Lora", serif;
}

@media (max-width: 767px) and (orientation: portrait) {
  .slider .mainslider .slideimg.mob {
    display: block;
  }
  .slider .mainslider .slideimg.dsk {
    display: none;
  }
}

.slider-bottom {
  background-color: #660836;
}
.slider-bottom h2 {
  font-size: 20px;
  color: #ffffff;
  font-weight: 700;
}

.slider-btn {
  position: absolute;
  bottom: 3rem;
  width: 100%;
}
.slider-btn .swiper-button-next:after,
.slider-btn .swiper-button-prev:after {
  font-size: 0.85rem;
  color: white;
  transition: 0.3s;
  font-family: unset;
  content: "";
  background-size: contain;
  height: 30px;
  width: 30px;
  background-repeat: no-repeat;
}

.slider-btn .swiper-button-next:after {
  background-image: url(../img/icons/right-arrow.svg);
}
.slider-btn .swiper-button-prev:after {
  background-image: url(../img/icons/left-arrow.svg);
}

.slider-btn .swiper-button-next {
  right: 3rem;
  transition: 0.3s;
}
.slider-btn .swiper-button-prev {
  left: 3rem;
  transition: 0.3s;
}
.slider-btn .swiper-button-next:hover {
  right: 2.5rem;
}
.slider-btn .swiper-button-prev:hover {
  left: 2.5rem;
}

.social-sec {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
}

.slider ul.social {
  display: grid;
}

ul.social li a i {
  background-color: #fcbc56;
  transition: 0.3s;
  color: black;
}

ul.social li a i:hover {
  background-color: rgb(255 255 255 / 90%);
  color: black;
}

.dropdown {
  position: relative;
  display: inline-block;
  transition: 0.3s;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: white;
  min-width: 230px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  /* padding: 8px; */
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.3s;
  overflow: hidden;
  border-radius: 0.5rem;
  animation-name: zoomIn;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
  }

  50% {
    opacity: 1;
  }
}

.dropdown:hover .dropdown-content {
  display: block;
  transition: 0.3s;
}

.dropdown:hover a.mainli {
  color: #efdb20;
}

.dropdown-content a {
  font-size: 0.85rem;
  color: #343434;
  padding: 10px 15px;
  display: flex;
  transition: 0.3s;
  font-weight: 400;
  border-radius: 0.1rem;
}

.dropdown-content a:hover {
  color: #ffffff;
  background-color: #ebaa41;
}
.dropdown.megamenu {
  position: unset;
}
.dropdown.megamenu .dropdown-content {
  width: 100%;
  min-width: 100%;
  padding: 15px;
}
.dropdown.megamenu .dropdown-content ul {
  display: flex;
  margin: -5px;
  flex-flow: wrap;
}
.dropdown.megamenu .dropdown-content ul li {
  flex: 1 0 25%;
  max-width: 25%;
  padding: 5px;
}
.dropdown.megamenu .dropdown-content a {
  border: 1px solid #00000024;
  padding: 5px 10px;
  border-radius: 5px;
  transition: 0.3s;
}
.dropdown.megamenu .dropdown-content a:hover {
  border: 1px solid #53c3bd;
}

@keyframes zoomFade {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.slideimg img {
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(1.1); /* Start slightly zoomed in */
  transition: opacity 0.5s ease, transform 0.5s ease; /* Smooth effect */
}

.slideimg img.active {
  animation: zoomFade 1s ease-in-out;
  opacity: 1;
  transform: scale(1); /* Back to normal */
}

.off1 {
  position: absolute;
  z-index: 9;
  right: 3rem;
  bottom: 8rem;
  background: #e00000;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  text-align: center;
  font-size: 0.8rem;
  animation-name: example;
  animation-duration: 4s;
  animation-iteration-count: infinite;
  transition: 0.3s;
}
.off1:hover {
  background: #b60404;
}
@keyframes example {
  0% {
    box-shadow: -1px -1px 0px 7px #e0000056;
  }
  50% {
    box-shadow: -1px -1px 0px 16px #e0000056;
  }
  100% {
    box-shadow: -1px -1px 0px 7px #e0000056;
  }
}
.off1 p {
  font-size: 0.75rem;
  color: white;
  margin-bottom: 0;
  line-height: normal;
  font-weight: 500;
}
.off1 img {
  width: 25px;
  margin-bottom: 3px;
}

/*---------------------------------------*/
/*::::::::::::::::::ABOUT::::::::::::::*/
/*---------------------------------------*/

.about {
  overflow: hidden;
}
.mainhead {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 50px;
  color: #f05522;
  font-family: "Berkshire Swash", serif;
}

.line-head {
  width: 130px;
  height: 5px;
  background-color: #fcbc56;
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  border-radius: 3px;
}
.line-head img {
  width: 30px;
  margin: auto;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  animation: animName 22s linear infinite;
}

@keyframes animName {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.about-img img {
  width: 480px;
  margin: auto;
}

.para {
  color: #666;
}

.flexVcenter {
  display: flex;
  flex-flow: wrap;
  align-content: center;
}

.abt-list {
  display: flex;
  flex-flow: wrap;
  margin: -5px;
}
.abt-list li {
  flex: 1 0 33.333%;
  max-width: 33.333%;
  padding: 5px;
}

.abt-list li img {
  width: 20px;
  margin-bottom: 10px;
}
.abt-list li .sec {
  padding: 15px 25px;
  transition: 0.3s;
  cursor: pointer;
  border: 1px solid #00000014;
  border-radius: 0.3rem;
  color: #333;
}
.abt-list li .sec:hover {
  background-color: #fcbc56;
  border: 1px solid #fcbc56;
  box-shadow: 0px 0px 20px #00000014;
  transition: 0.3s;
}

.abt-list li .sec h5 {
  font-size: 1rem;
  margin-bottom: 0;
}

.read {
  font-size: 0.95rem;
  font-weight: 600;
  color: white;
  transition: 0.3s;
  position: relative;
  z-index: 10;
  background-color: #e00000;
  padding: 10px 30px;
  border-radius: 50px;
  height: 45px;
  display: flex;
  align-items: center;
  position: relative;
  gap: 10px;
}
.read::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border-radius: 30px;
  background-color: #fcbc56;
  transform: scaleY(0);
  transform-origin: 50%;
  transition: 0.3s;
  opacity: 0;
  visibility: hidden;
}
.read:hover::before {
  transform: scaleY(1);
  opacity: 1;
  visibility: visible;
}
.read:hover {
  color: black;
}
.read:hover img {
  filter: brightness(0);
}
.read img {
  width: 20px;
}

.read:hover {
  background-color: #fcbc56;
}
.about .img {
  animation: animName 22s linear infinite;
}
.about .left {
  position: absolute;
  left: -8rem;
  top: 0;
  width: 250px;
}
.about .right {
  position: absolute;
  right: -5rem;
  top: 0;
  width: 170px;
}

/*---------------------------------------*/
/*:::::::::::::::::PROGRAMMES::::::::::::*/
/*---------------------------------------*/
.programmes {
  background-color: #fff1d6;
}
.mainhead1 {
  font-size: 2rem;
  line-height: 40px;
}
.pg .sec {
  display: flex;
  gap: 3rem;
  justify-content: space-between;
}
.pg .sec h5 {
  font-weight: 600;
  color: #e00000;
  font-size: 1.3rem;
}
.pg .sec p {
  font-size: 0.95rem;
  max-height: 70px;
  overflow: hidden;
  margin-bottom: 3px;
}
.pg {
  max-width: 1100px;
  margin: auto;
}
.pg .con {
  width: 470px;
}
.text-right {
  text-align: right;
}

.cen-line {
  width: 3px;
  height: 261px;
  min-height: 100%;
  background-color: #e00000;
  position: relative;
}
.cen-line::before {
  content: "";
  position: absolute;
  width: 13px;
  height: 13px;
  background-color: #e00000;
  border-radius: 50%;
  left: -5px;
  right: 0;
  margin: auto;
  top: 25px;
}
.programmes {
  overflow: hidden;
}
.programmes .img {
  animation: animName 22s linear infinite;
}
.programmes .left {
  position: absolute;
  left: 1rem;
  top: 3rem;
  width: 200px;
}
.programmes .right {
  position: absolute;
  right: -5rem;
  bottom: 2rem;
  width: 170px;
}
.muth {
  position: absolute;
  width: 500px;
  top: 0;
  right: 0;
  opacity: 0.2;
}
/*---------------------------------------*/
/*::::::::::::::::::GALLERY::::::::::::::*/
/*---------------------------------------*/
.gallery {
  overflow: hidden;
}
.gallery-box {
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  height: 230px;
}
.gallery-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-box.video p {
  bottom: 5px;
  opacity: 1;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-box.video p img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.gallery-box:hover img {
  transform: scale(1.1);
}

.gallery-box p {
  position: absolute;

  padding: 10px 5px;
  background: linear-gradient(90deg, rgb(225 9 6), rgb(252 188 86 / 85%));
  backdrop-filter: blur(3px);
  color: #ffffff;
  left: 0;
  right: 0;
  border-radius: 20px;
  text-align: center;
  font-size: 0.85rem;
  line-height: 18px;
  font-weight: 500;
  opacity: 0;
  transition: 0.3s;
  margin: 0px 5px;
  bottom: -40px;
}
.gallery-box:hover p {
  opacity: 1;
  bottom: 5px;
}
.gal-cen {
  position: relative;
  top: 0;
  bottom: 0;
  margin: auto;
}
.news-box {
  position: relative;
  width: 400px;
  height: 320px;
  display: flex;
  align-items: center;
}
.news-box img {
  position: absolute;
  width: 400px;
}
.news-box .sec {
  position: relative;
  max-width: 190px;
  text-align: justify;
  margin: auto;
  height: 210px;
}
.news-box .sec h5 {
  text-align: center;
  font-family: "Berkshire Swash", serif;
  border-bottom: 1px solid #ffffff29;
  padding-bottom: 3px;
}
.timingswiper {
  height: 250px;
}
.timingswiper .h-auto {
  height: auto;
}

.time {
  text-align: center;
}
.time h6 {
  color: #e00000;
  margin-bottom: 3px;
  font-weight: 600;
  font-size: 0.95rem;
}
.time h5 {
  margin-bottom: 5px;
}
.time p {
  margin-bottom: 5px;
  font-size: 0.85rem;
  line-height: 16px;
}
.time b {
  font-size: 1rem;
  font-size: 0.85rem;
}
.gallery .img {
  animation: animName 22s linear infinite;
}
.gallery .left {
  position: absolute;
  right: -6rem;
  top: 0;
  width: 230px;
}
.head-flex {
  display: flex;
  justify-content: space-between;
}

/*---------------------------------------*/
/*:::::::::::::::::EVENTS:::::::::::::*/
/*---------------------------------------*/

.imgbox {
  text-align: center;
  padding: 10px;
  border-radius: 10px;
  border: 4px double #edbe7e;
  position: relative;
}
.imgbox::before {
  content: "";
  position: absolute;
  background-image: url(../img/images/frame.webp);
  width: 75px;
  height: 20px;
  top: -9px;
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  right: 0;
  margin: auto;
}
.imgbox img {
  border-radius: 5px;
  margin-bottom: 10px;
}
.imgbox h5 {
  font-size: 1rem;
  margin-bottom: 3px;
}
.imgbox p {
  margin-bottom: 0;
  font-size: 0.8rem;
  color: #666;
}
.imgbox.route {
  padding: 30px;
  text-align: left;
  min-height: 330px;
}
.imgbox.route h3 {
  font-size: 1.3rem;
  color: #333;
  font-weight: 500;
  font-family: "Roboto Slab", serif;
}
.imgbox.events {
  text-align: left;
  position: relative;
}
.imgbox.events .img {
  height: 190px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.imgbox.events .img span {
  position: absolute;
  top: 0;
  right: 0;
  background: linear-gradient(90deg, rgb(225 9 6 / 80%), rgb(252 188 86 / 80%));
  font-size: 0.85rem;
  padding: 3px 10px;
  backdrop-filter: blur(3px);
  color: white;
  border-radius: 0 0 0 10px;
}

.imgbox.events .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.imgbox.imgbox.events p {
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  max-height: 50px;
  margin-bottom: 8px;
  line-height: 20px;
}
.imgbox.events .link {
  font-size: 0.8rem;
  color: #d90033;
  font-weight: 500;
  transition: 0.3s;
  position: relative;
  z-index: 9;
}
.imgbox.events .link:hover {
  color: #f05522;
}

.date {
  font-size: 1.1rem;
  color: #666;
  font-size: 0.9rem;
  color: #666;
  background-color: #ff00002b;
  width: max-content;
  padding: 5px 15px;
  border-radius: 5px;
  color: #ff0000;
  font-weight: 500;
}

.events .img-flo {
  position: absolute;
  left: -8rem;
  top: 0;
  width: 250px;
}
.events .img-flo {
  animation: animName 22s linear infinite;
}

/*---------------------------------------*/
/*:::::::::::::::::OFFERINGS:::::::::::::*/
/*---------------------------------------*/
.offerings {
  position: relative;
}
.offerings::before {
  content: "";
  position: absolute;
  height: 350px;
  width: 100%;
  background-position: center;
  background: linear-gradient(rgb(215 0 51 / 78%), rgb(252 188 86 / 76%)),
    url(../img/slider/s1.webp) no-repeat center center fixed, #f0f0f0;
  background-size: cover;
}
.offerings .mainhead {
  color: #ffe097;
}
.offerings .img {
  position: absolute;
  top: 0;
  z-index: 9;
}
.offerings .img.left {
  width: 110px;
}
.offerings .img.right {
  transform: rotateY(180deg);
  right: 3rem;
  width: 100px;
}
.gallery-box.offer p {
  bottom: 5px;
  opacity: 2;
  font-size: 1rem;
}

.offerings .parasi-img {
  position: absolute;
  width: 450px;
  top: 0;
  right: 0;
  opacity: 0.2;
}

/*---------------------------------------*/
/*::::::::::::::::::FOOTER::::::::::::::*/
/*---------------------------------------*/

footer {
  background-image: url(../img/images/foot-bag.svg);
  background-color: black;
  background-size: cover;
  background-position: center;
  color: rgb(255 255 255 / 75%);
  font-size: 1.1rem;
  padding-top: 5rem;
  padding-bottom: 3rem;
  position: relative;
}
footer:after {
  content: "";
  position: absolute;
  background: #000000b0;
  inset: 0;
  width: 100%;
  height: 100%;
}
.foot-bottom {
  display: flex;
  width: 100%;
  justify-content: center;
  gap: 5rem;
  position: relative;
  padding-bottom: 3rem;
  z-index: 1;
  border-bottom: 1px solid #ffffff38;
  margin-bottom: 2rem;
}

footer .logocol {
  width: 300px;
}
footer .logocol img {
  width: 280px;
}
footer .menucol {
  flex: 1 0;
}
.max-350 {
  max-width: 350px;
}
footer .menucol h5 {
  position: relative;
  padding-bottom: 10px;
  font-size: 1.1rem;
  color: white;
}
footer .menucol h5:after {
  content: "";
  position: absolute;
  width: 25px;
  height: 3px;
  border-radius: 3px;
  background-color: #fcbc56;
  left: 0;
  bottom: 0;
}
footer .menucol ul li {
  font-size: 0.95rem;
}
footer .menucol ul li:not(:last-child) {
  padding-bottom: 10px;
}
footer .foot-bottom .menu a {
  color: #ffd573;
  transition: 0.3s;
  font-family: "Berkshire Swash", serif;
}
footer .foot-bottom a:hover {
  color: #fcbc56;
}
.foot-para {
  font-size: 0.9rem;
  position: relative;
  z-index: 1;
}
.foot-para a {
  color: rgb(255 255 255 / 75%);
  transition: 0.3s;
}
.foot-para a:hover {
  color: white;
}
.foot-add {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.add-sec {
  display: flex;
  gap: 10px;
  flex-flow: wrap;
  font-size: 0.95rem;
}

.loc,
.phone,
.mail {
  position: relative;
  padding-left: 40px;
  line-height: 23px;
  font-weight: 500;
}
footer a {
  color: rgb(255 255 255 / 75%);
  transition: 0.3s;
}
.loc:after,
.phone:after,
.mail:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 0.9rem;
  color: rgb(0 0 0 / 80%);
  position: absolute;
  left: 0;
  top: -3px;
  background-color: #fcbc56;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.phone:after {
  content: "\f095";
}
.mail:after {
  content: "\f0e0";
}
.loc:after {
  content: "\f3c5";
}
.text-right {
  text-align: right;
}

.read.cen {
  display: flex;
  justify-content: center;
  width: max-content;
  margin: auto;
}

.top {
  position: relative;
  z-index: 1;
}
.top ul {
  display: flex;
  gap: 20px;
}
.top ul li {
  font-size: 0.9rem;
  position: relative;
}
.top ul li::before {
  content: "";
  position: absolute;
  width: 0.01rem;
  height: 15px;
  background-color: #ffffff9c;
  right: -10px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.top ul li a {
  transition: 0.3s;
}
.top ul li a:hover {
  color: white;
}

.toggleSidemenu {
  background-color: transparent;
  border: none;
}
.toggleSidemenu img {
  width: 28px;
}
/* ///////// MOBILE SIDE MENU ////////// */

.sidebar {
  width: 300px;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  overflow: hidden;
  background-color: rgb(0 0 0 / 95%);
  backdrop-filter: blur(5px);
  box-shadow: -20px 0 20px rgb(255 255 255 / 8%);
  transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  transform: translateX(calc(100% + 1rem));
}

.sidebar.active {
  transform: translateX(0);
  -webkit-transform: translateX(0);
  box-shadow: -15px 5px 20px rgb(0 0 0 / 10%);
}

.sidebar .sidehead .logo {
  width: 200px;
  display: flex;
}

.sidebar .sidehead .closebtn {
  font-size: 1rem;
  padding: 5px;
  border: none;
  background-color: #d00031;
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border-radius: 50px;
  height: 25px;
  width: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar .logo {
  width: 180px;
  display: flex;
  margin-bottom: 15px;
}
.sidebar .para {
  color: #e1e1e1;
}

.sidebar .sidemenu {
  padding: 1rem 2rem;
  overflow-y: auto;
  height: 100vh;
  display: flex;
  flex-flow: column;
}

.sidebar h5 {
  color: #fffffff2;
  font-size: 1rem;
  margin-bottom: 10px;
}

.sidebar .sidemenu ul.menulist {
  display: flex;
  flex-flow: column;
  border-bottom: 1px solid #3b3b3b;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.sidebar .sidemenu ul.menulist li a {
  color: #e1e1e1;
  display: flex;
  align-items: center;
  padding: 5px 0;
  cursor: pointer;
  font-size: 0.9rem;
}

.sidebar .sidemenu ul.menulist li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
  width: 30px;
  height: 30px;
  font-size: 0.875rem;
  color: #e3e3e3;
  background-color: #fcbc56;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}
.sidebar .sidemenu ul.menulist li a p {
  margin-bottom: 0;
  flex: 1 0;
}
.sidebar .sidemenu ul.menulist li a .icon img {
  width: 15px;
  filter: brightness(0);
}

.sidebar .dropdown.show .dropdown-toggle {
  color: #3498db;
  background-color: #eaf3ea;
}

.sidebar .dropdown-toggle:after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  display: inline-block;
  font-weight: 600;
  position: absolute;
  right: 10px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  border-top: 0;
}

.sidebar .dropdown.show .dropdown-toggle:after {
  transform: rotateX(180deg);
  -webkit-transform: rotateX(180deg);
}

.sidebar .dropdown-menu {
  position: relative !important;
  transform: none !important;
  width: 100%;
  padding: 0;
  border: none;
  background-color: transparent;
  border-radius: 0;
  font-size: 0.875rem;
  padding-left: 13px;
}

.sidebar .dropdown-menu a:hover {
  background-color: transparent !important;
}

/* ////////// MOBILE RESPONSIVE //////// */
@media (min-width: 992px) and (max-width: 1199px) {
  header .cmpad {
    padding-left: 20px;
    padding-right: 20px;
  }
  header .headmain .menucol {
    gap: 15px;
  }
  header .menucen {
    gap: 2rem;
  }
  header .headmain .logocol {
    width: 220px;
  }
}

@media (max-width: 1199px) {
  .news-box {
    margin: auto;
  }
  .cen {
    text-align: center;
    padding-bottom: 10px;
  }
  .foot-bottom {
    display: grid;
    gap: 3rem;
  }
}

@media (max-width: 991px) {
  header .headmain .menucol {
    display: none;
  }
  .foot-bottom {
    padding-bottom: 1rem;
  }
  header .headmain .logocol img {
    margin: unset;
  }
  header {
    padding-top: 0;
  }
  .foot-para {
    text-align: center;
  }
  footer ul.social {
    justify-content: center;
  }
  footer .logocol {
    margin-bottom: 30px;
  }
  footer {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
}

@media (min-width: 992px) {
  .toggleSidemenu {
    display: none;
  }
}

@media (max-width: 767px) {
  .pg .sec {
    gap: 1rem;
  }
  .off1 {
    bottom: 13rem;
  }
  .off1 p {
    font-size: 0.95rem;
  }
}

@media (max-width: 575px) {
  header .headmain .logocol {
    width: 250px;
  }
  .slider h3 {
    margin-bottom: 4rem;
    font-size: 30px;
    max-width: 500px;
  }
  .abt-list li {
    flex: 1 0 50%;
    max-width: 50%;
  }
  .mainhead {
    font-size: 2.3rem;
    line-height: 40px;
  }
  .mainhead1 {
    font-size: 1.8rem;
    line-height: 30px;
  }
  .muth {
    width: 250px;
  }
  .pg .sec p {
    max-height: 60px;
  }
  .pg .sec {
    height: 150px;
  }
  .about .left {
    left: -7rem;
    width: 180px;
  }
  .about .right {
    right: -4rem;
    width: 130px;
  }
  .programmes .left {
    left: -6rem;
    top: 15px;
    width: 160px;
  }
  .gallery-box {
    height: 150px;
  }
  .imgbox.events .img {
    height: 130px;
  }
  .cen-line {
    height: 150px;
  }
  .programmes .right {
    bottom: 0rem;
    width: 130px;
  }
  .gallery .left {
    right: -4rem;
    width: 130px;
  }
  .events .img-flo {
    width: 200px;
  }
  .timingswiper {
    height: 130px;
}
  .news-box .sec {
    max-width: 160px;
    height: 200px;
    margin-top: 21px;
  }
  .news-box {
    width: 320px;
        height: auto;
        margin: 19px 0;
        margin-left: auto;
        margin-right: auto;
  }
  .news-box .sec h5 {
    padding-bottom: 10px;
    margin-bottom: 0;
}
  .offerings::before {
    height: 250px;
  }
  .top ul {
    row-gap: 8px;
    column-gap: 20px;
    flex-flow: wrap;
    justify-content: center;
  }
  .slider .mainslider,
  .slider .mainslider .swiper-slide,
  .slider .mainslider .slideimg {
    height: 90vh;
  }
  .slider {
    height: 90vh;
  }
  .offerings .img.left {
    width: 85px;
  }
  .pg .sec h5 {
    font-size: 1.3rem;
}
}

@media (min-width: 1199px) and (max-width: 1370px) {
  .news-box {
    width: 350px;
    
  }
  .news-box .sec {
    max-width: 180px;
    height: 191px;
  }
}

@media (min-width: 576px) {
  .mob {
    display: none;
  }
}
@media (max-width: 575px) {
  .dsk {
    display: none;
  }
}

.readbtn{
  font-size: .85rem;
  font-weight: 700;
  color: #f05824;
  transition: .3s;
}
.readbtn:hover{
  color: #772105;
}


/*********TABS***********/
.mytabnav {
    border: none;
    /*margin: 0 -5px;*/
    flex-flow: nowrap;
    overflow: hidden;
    overflow-x: auto;
    padding-bottom: 8px;
}

.mytabnav li.nav-item {
    padding: 0 5px;
    flex: none;
}

.mytabnav li.nav-item a {
    background-color: transparent;
    padding: 10px 30px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #e00000;
    border: none;
    border: 1px solid #e00000;
    transition: 0.3s;
}

.mytabnav li.nav-item a:hover {
    border: 1px solid #e00000;
    background-color: #e00000;
    color: #fff;
    
}

.mytabnav li.nav-item a:focus {
    box-shadow: none;
}

.mytabnav li.nav-item a.active {
    color: #fff;
    background: #e00000;
    border: 1px solid #e00000;
}

.mytabnav li.nav-item a i {
    margin-right: 8px;
    transition: none;
}

.mytabcontent .tab-pane {
    padding: 10px;
    /* background: #fdf7ee; */
    border-radius: 0.3rem;
    margin-top: 6px;
}


.offeringsrw{
    padding-right: 27px;
    position: relative;
}
.qntbtn{
    background: transparent !important;
    outline: none !important;
    border: none !important;
    padding: 0;
    font-size: 2rem !important;
    position: absolute;
    right: 0;
    top: 22px;
}
.btn-danger {
    background: transparent !important;
    outline: none !important;
    border: none !important;
    padding: 0;
    font-size: 2rem !important;
    position: absolute;
    right: 0;
    top: 22px;
    font-weight: 700;
    color: #f05824;
    transition: .3s;
}
.renovationimg{
    display: flex
;
    height: 100%;
    align-items: center;
}


.modal-backdrop.show{
    opacity: 0!important;
}


.time-bx{
    padding: 20px;
    display: flex
;
    flex-direction: row;
    gap: 25px;
}
.time-bx .sec{
   display: flex
;
    flex-direction: column;
    justify-content: center; 
}

.time-bx .sec h5 {
  text-align: center;
  font-family: "Berkshire Swash", serif;
  border-bottom: 1px solid #ffffff29;
  padding-bottom: 3px;
}

.time-bx .sec p {
    margin-bottom: 10px;
    font-size: 1rem;
    color: #666;
}
.timebximg img{
    height: 210px;
}

.time-bx2 .sec p {
    margin-bottom: 3px;
    font-size: 0.8rem;
    color: #666;
}

.eventfll{
    display: flex;
}
.eventfll .eventsswiper{
    width: 100%;
}
.imgbox.events{
    height: 100%;
}
