/*header*/
.header{
  width: 100%;
	position:fixed;
	left:0;
	top:0;
  background-color: #fff;
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-template-rows: 35px 60px;
	z-index:1000;
  transition: all 300ms ease-in-out;
}

.header.fixed{
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  grid-template-columns: 90px 1fr;
}

.header ul{
  display: flex;
}
  
.logo { 
  grid-area: 1 / 1 / 3 / 2; 
  background-color: var(--primary-color);
}

.topHeader { 
  grid-area: 1 / 2 / 2 / 3; 
  background-color: #fff;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 2rem;
}
.topHeader ul{
  gap: 5px;
} 

.logo a{
  display: block;
  padding: 10px;
}

.navi {
  grid-area: 2 / 2 / 3 / 3;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: flex-end;
  background-color: var(--primary-color);
}

.navi li a{
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: 500;
  text-transform: uppercase;
  color: #fff;
  position: relative;
  z-index: 1;
}
.text-secondary
{
  color: var(--secondary-color) !important;
}
.navi li:hover > a{
  color: var(--secondary-color);
}

.navi li a i{
  font-size: 75%;
}

.navi .dropdown{
	width: 220px;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background-color: #fff;
	border-top: 1px solid rgb(0 0 0 / 10%);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: all 300ms ease-in-out;
}

.navi li:hover .dropdown{
	opacity: 1;
	visibility: visible;
	pointer-events: all;
}

.dropdown ul li a{
  color: var(--body-color);
	border-bottom:1px solid rgba(0, 0, 0, 0.14);
	transition:all 300ms ease;
}

.dropdown ul li a:hover{
	color:var(--primary-color);
	border-left:5px solid var(--primary-color);
	padding-left:10px;
}

.header .readmore .button.mw-auto{
  min-width: auto;
  padding: 10px 12px;
}

.menuBtn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  margin-right: 1rem;
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.menuBtn span {
  width: 30px;
  height: 2px;
  background-color: #fff;
  position: relative;
  transition: all 400ms ease-in-out;
  z-index: 1;
}
.menuBtn span::before,
.menuBtn span::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  background-color: #fff;
  border-radius: var(--primary-radius);
  transition: all 400ms ease-in-out;
}
.menuBtn:hover span {
  background: var(--secondary-color);
}
.menuBtn:hover span::before,
.menuBtn:hover span::after {
  background: var(--secondary-color);
}
.menuBtn span::before {
  top: -9px;
}
.menuBtn span::after {
  bottom: -9px;
}
.menuBtn.closeMenuBtn span {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  background-color: var(--secondary-color);
}
.menuBtn.closeMenuBtn span::before {
  opacity: 0;
}
.menuBtn.closeMenuBtn span::after {
  -webkit-transform: rotate(-90deg) translateX(9px);
  transform: rotate(-90deg) translateX(9px);
  background-color: var(--secondary-color);
}

.mbMenuContainer{
  position: fixed;
  top: 12px;
  width: 300px;
  right: 0;
  overflow: auto;
  background-color: #fff;
  padding: 70px 20px 20px;
  box-shadow: 0 0 2rem rgb(0 0 0 / 15%);
  display: none;
  z-index: 99;
}
.mbMenuContainer ul li a{
  display: block;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--body-color);
  padding: 10px;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
} 

.dropdown-mob{
	display:none;
	background-color: var(--secondary-color);
}

.mbMenuContainer ul.mbSocial{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.mbMenuContainer ul.mbSocial li a{
  padding: 0;
  border-bottom: none;
}

.mbMenuContainer.active{
  display: block;
}
/*header*/

.banner {
  padding-top: 95px;
  height: 95vh;
  /* border-radius: 0 0 var(--banner-radius) var(--banner-radius); */
  position: relative;
  overflow: hidden;
  z-index: 1;
  background-color: var(--secondary-color);
}
.banner .banner-band {
  content: '';
  position: absolute;
  height: 100px;
  width: 100%;
  left: 0;
  bottom: 2rem;
  background-color: var(--primary-color);
  z-index: 1;
  pointer-events: none;
}
.swiper-wrapper{
  -webkit-transition-timing-function:linear!important;    transition-timing-function:linear!important;
}

.banner .banner-band .gorakhpur-lions-text{
  height: auto;
  font-size: 3rem;
  padding: 0 1.5rem;
  color: #fff;
  text-transform: uppercase;
  white-space: wrap;
  width: max-content;
}

.banner .banner-band .gorakhpur-lions-text:nth-child(even){
  color: rgb(255 255 255 / 20%);
}

.scrollDown{
  cursor: pointer;
  width: 25px;
  -webkit-animation: bounce 1s ease-in-out infinite alternate;
  animation: bounce 1s ease-in-out infinite alternate;
}
select {
  word-wrap: normal;
  border: 1px solid rgb(0 0 0 / 16%);
}
@keyframes bounce {
  0%{transform: translate(-50%,-5px);}
  100% {transform: translate(-50%,5px);}
}

/* sticky form */
.enquiryBtn {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 99;
  display: none;
}
.enquiryBtn i {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--golden-gradient);
  color: #fff;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.enquiryBtn i:hover {
  background: var(--golden-gradient-hover);
}

.stickyForm {
  width: 100%;
  max-width: 320px;
  position: absolute;
  right: 1rem;
  bottom: 50%;
  transform: translateY(50%);
  padding: 1.25rem;
  border-radius: 1rem;
  background: url(../images/linen-seamless-pattern.jpg) center / cover no-repeat #fff;
  box-shadow: 0 1rem 3rem rgb(0 0 0 / 15%);
  z-index: 99;
}

.stickyForm::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(255 255 255 / 75%);
  background: radial-gradient(circle at 100% 0%, rgb(255 255 255 / 69%), rgb(232 222 255 / 96%));
  border-radius: 1rem;
  z-index: -1;
}

.form-close {
  position: absolute;
  right: 2px;
  top: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: maroon;
  color: #fff;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.form-close:hover {
  background: var(--golden-gradient);
}

.stickyForm h6 {
  text-transform: uppercase;
  font-weight: 700;
  padding-bottom: 10px;
  color: var(--primary-color);
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}
.stickyForm .form-group {
  margin-bottom: 10px;
}
.stickyForm .form-control,
.modal-body .form-control {
  border-bottom: 2px solid #a7a7a7;
  background-color: #ffff;
  color: var(--body-color);
  padding: 8px 10px;
  font-size: 14px;
}
.modal-body .form-control:focus {
  background-color: #fff;
}
/* sticky form */

/* services */
.serviceBox .inner{
  display: block;
  position: relative;
  isolation: isolate;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: 10px;
}

.serviceBox .img-fluid{
  position: relative;
  isolation: isolate;
}

.serviceBox .img-fluid::before{
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent 70%, rgb(0 0 0 / 50%));
}

.service-text{
}

.box-item {
  position: relative;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box {
  display: block;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform-style: preserve-3d;
  perspective: 1000px;
  -webkit-perspective: 1000px;
}

.flip-box-front,
.flip-box-back {
  border-radius: 10px;
  min-height: 250px;
  -ms-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-transition: transform 0.7s cubic-bezier(.4,.2,.2,1);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.flip-box-front {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  background-color: #fff;
}

.flip-box:hover .flip-box-front {
  -ms-transform: rotateY(-180deg);
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: center / cover no-repeat var(--primary-color);
  color: #fff;
  
  -ms-transform: rotateY(180deg);
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box-back::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: linear-gradient(transparent, rgb(0 0 0 / 50%));
  border-radius: 10px;
  z-index: -1;
}

.flip-box:hover .flip-box-back {
  -ms-transform: rotateY(0deg);
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg);
  -webkit-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.flip-box .inner {
  position: absolute;
  left: 0;
  width: 100%;
  padding: 1.5rem;
  outline: 1px solid transparent;
  -webkit-perspective: inherit;
  perspective: inherit;
  z-index: 2;
  
  transform: translateY(-50%) translateZ(60px) scale(.94);
  -webkit-transform: translateY(-50%) translateZ(60px) scale(.94);
  -ms-transform: translateY(-50%) translateZ(60px) scale(.94);
  top: 50%;
}

.flip-box .inner .ikon{
  width: 50px;
  margin: 0 auto 1rem;
}

.flip-box-header{
  font-family: var(--serif);
  margin-bottom: 1rem;
  color: var(--primary-color);
}

.flip-box .inner p{
  font-size: 14px;
}

.flip-box-back .inner{
  top: auto;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  
  transform: translateY(0) translateZ(60px) scale(.94);
  -webkit-transform: translateY(0) translateZ(60px) scale(.94);
  -ms-transform: translateY(0) translateZ(60px) scale(.94);
}

.flip-box-back i{
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgb(255 255 255 / 20%);
}

.flip-box-back i:hover{
  background-color: #fff;
  color: var(--primary-color);
}
/* services */

/* about the */
.special-row{
  padding: 2rem;
  border-radius: 20px;
  background-color: #fff;
}

.special-row:not(:last-of-type){
  margin-bottom: 10px;
}

/* .row.flex-row-reverse .specialImg{
  border-left: 1px dashed rgb(0 0 0 / 10%);
} */

.specialImg{
  display: flex;
  align-items: center;
  justify-content: center;
}

.specialImg img{
  aspect-ratio: 1.5 / 1;
  border-radius: 20px;
  /* transform: scale(.9); */
}

.specialImg.gaurs-logo-box::before{
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/audience-cheering.jpg) center / cover no-repeat;
  filter: invert(1) opacity(0.5);
  z-index: -1;
}

.specialImg img.gaurs-logo{
  object-fit: scale-down;
  margin: auto;
}

.specialBox .inner{
  height: 100%;
}

.specialBox .inner p{
  text-align: justify;
}

.logoUPCAmain {
  display: flex;
  justify-content: center;
  background: var(--primary-color);
  border-radius: 20px;
  padding: 7rem 0;
}

.logoUPCA{  
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logoUPCA1:nth-child(1){
  padding-right: 1rem; 
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}
.logoUPCA1 img{
  height: 150px;
  width: auto;
  aspect-ratio: auto;
  margin: 0;

}
/* about the */

/* vision mission */
.vmImg img{
  aspect-ratio: 1 / 1.675;
  object-position: center 1rem;
  -webkit-filter: drop-shadow(10px 8px 15px rgb(0 0 0 / 50%));
  filter: drop-shadow(10px 8px 15px rgb(0 0 0 / 50%));
}

.vmImg .img-fluid{
  position: relative;
  isolation: isolate;
}

.vmImg .img-fluid::before{
  content: '';
  position: absolute;
  inset: 0 auto 0 50%;
  width: 190%;
  transform: translateX(-50%);
  background-color: var(--secondary-color);
  z-index: -1;
  clip-path: circle(50% at 50% 100%);
}

.vmBox article:not(:last-of-type){
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgb(0 0 0 / 10%);
}
/* vision mission */

/* gallery */
.gallery-slider{
  border-radius: var(--radius);
}
.gal-slide{
  width: 60%;
  border-radius: var(--radius);
  overflow: hidden;
}
/* gallery */

/* news, events, PR boxes */




.project-card .inner{
  border-radius: 10px;
  height: 100%;
  padding: 1.25rem 1.25rem 4rem;
  position: relative;
  isolation: isolate;
  font-size: 13px;
  background-color: var(--clr);
}

.project-card .card-header{
  background-color: transparent;
  border-bottom: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 10px 1rem;
  margin-bottom: 1rem;
}

.project-card .img-fluid{
  max-width: 30px;
  flex: 0 0 30px;
}

.project-card .card-header .card-title{
  font-weight: 700;
  margin-bottom: 0;
}

.project-card .card-details img{
  mix-blend-mode: darken;
} 

.project-card .card-footer{
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0;
  margin-top: 0;
  background-color: transparent;
}

.project-card .card-footer a{
  padding: 10px;
  justify-content: center;
  font-weight: 700;
  border-radius: 0 0 10px 10px;
  background-color: hsl(from var(--clr) h s calc(l - 6));
  color: hsl(from var(--clr) h calc(s - 4) calc(l - 50));
}

.project-card:nth-child(1) .img-fluid{
  filter: hue-rotate(265deg);
}
/* news, events, PR boxes */

/*--media coverage--*/
.hm-media-wrapper{
  background-color: #191f9a;
}

.hm-media-wrapper::before{
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/logo.png) center / 120px;
  opacity: 0.1;
  z-index: -1;
}

.hm-eventsContainer .inner {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  background-color: var(--primary-color);
  display: block;
}
.hm-eventsContainer .inner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(transparent 30%, rgba(0, 0, 0, 0.75));
  z-index: 1;
}

.hm-eventsContainer .inner img {
  height: 100%;
  object-fit: cover;
  transition: all 1s ease-in-out;
}

.hm-eventsContainer .inner:hover img {
  transform: scale(1.125);
}

.hm-eventsContainer .inner > i{
  position: absolute;
  right: 1rem;
  bottom: 20px;
  width: 40px;
  height: 40px;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 50%;
  transition: all 300ms ease-in-out;
  z-index: 2;
}
.hm-eventsContainer .inner:hover > i{
  background-color: #fff;
  color: var(--secondary-color);
}

.hm-eventsContainer .inner article {
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 100%;
  padding: 0 20px;
  z-index: 2;
}

.hm-eventsContainer .inner article h4 {
  width: 100%;
  color: #fff;
  z-index: 9;  
  text-shadow: 1px 1px 0 #000;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
}

.date {
  font-size: 14px;
  text-transform: uppercase;
  color: var(--primary-color);
}

.moreEventsContainer .inside{
  padding: 1.25rem 10px 1.25rem 1.25rem;
  border-radius: var(--radius);
  background-color: #fff
}
.moreEventsContainer .scroller{
  height: 540px;
  padding-right: 10px;
}

.counting{
	position: absolute;
	right: 0px;
	top: 0px;
	color: var(--primary-color);
	background-color: var(--yellow);
	width: 60px;
	height: 50px;
	display: flex;
	justify-content: flex-end;
	padding: 7px 10px;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 0);
	z-index: 1;
}

.eventBox:not(:last-of-type){
  margin-bottom: 10px;
}

.eventBox .inner {
  display: flex;
  align-items: center;
  background-color: var(--light);
  color: inherit;
  position: relative;
  height: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 300ms ease-in-out;
  z-index: 1;
}

.eventBox a .img-fluid {
  max-width: 100px;
  flex: 0 0 100px;
  overflow: hidden;
  background: #000;
}

.eventBox a .img-fluid img {
	aspect-ratio: 1/ 1;
  object-fit: cover;
  transition: all 2s ease-in-out;
}

.eventBox a:hover .img-fluid img{
  transform: scale(1.2, 1.2);
  opacity: 0.5;
}

.eventBox.newsBigBox a > img {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: -1;
  transition: all 2s ease-in-out;
}

.eventBox a article {
  padding: 20px;
}

.eventBox a:hover {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.eventBox a h4,
.eventBox a h5 {
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.eventBox a:hover h4,
.eventBox a:hover h5 {
  color: var(--primary-color);
}

.eventBox .inner .date {
  color: var(--secondary-color);
}
/*--media coverage--*/

/* players */
.hm-players-wrapper::before{
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/batsman-vector.jpg) left bottom / contain no-repeat;
  z-index: -1;
  opacity: 0.1;
}
.player-slide .inner{
  border-radius: var(--radius);
  padding: 1rem;
  background-image: linear-gradient(transparent, var(--light));
  text-align: center;
}

.player-slide .img-fluid{
  position: relative;
  z-index: 1;
}

.player-slide .captain-badge{
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--primary-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.player-slide .img-fluid img{
  max-width: 250px;
  margin: 0 auto;
  border-bottom: 1px solid var(--primary-color);
}

.team-details{
  padding-top: 1.5rem;
  text-transform: uppercase;
}
/* players */

/* sponsors */
.brand-logos{
  width: auto;
  height: auto;
  margin: 0 4px;
  width: 150px;
  height: 70px;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
}

.brand-logos img{
  width: auto;
  /* height: 70px; */
  max-height:96%;
  max-width: 80%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
/* sponsors */

/* social embed */
.toggleHead{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-bottom: 2rem;
}

.toggleHead .toggleBtn{
  max-width: 220px;
  flex: 0 0 220px;
  text-align: center;
  padding: 10px 1rem;
  border-radius: 40px;
  font-size: 14px;
  border: 1px dashed rgba(0, 0, 0, 0.2);
  background-color: transparent;
  color: var(--clr);
  position: relative;
  isolation: isolate;
  transition: all 300ms ease-in-out;
}

.toggleHead .toggleBtn:hover{
  border-color: var(--clr);
}

.toggleHead .toggleBtn.active{
  background-color: var(--clr);
  color: #fff;
  font-weight: 600;
  border-color: transparent;
}


.socialBox figure {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-bottom: 0;
}

.socialBox figure::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background-image: linear-gradient(transparent, rgb(0 0 0 / 75%)); */
  z-index: 1;
  pointer-events: none;
}
.socialBox figure img{
  aspect-ratio: 1 /1;
  object-fit: cover;
  border-radius: 10px;
}
/* social embed */

/* portfolio */
.iconBox .inner{
  display: flex;
  align-items: center;
  gap: 1rem;
}

.iconBox .inner .ikon{
  width: 40px;
}

.iconBox .inner .ikon svg{
  fill: var(--primary-color);
}

.portfolioBox .inner{
  padding: 2rem;
  border: solid rgb(0 0 0 / 12%);
  border-width: 0 1px 1px 0;
}

.portfolioBox:nth-child(3n + 1) .inner{
  padding-left: 0;
}

.portfolioBox:nth-child(3n) .inner{
  border-right: 0;
}

.portfolioBox:nth-last-child(1) .inner,
.portfolioBox:nth-last-child(2) .inner,
.portfolioBox:nth-last-child(3) .inner{
  border-bottom: 0;
}
/* portfolio */

/* testimonials */
.testimThumb{
  transform: scale(.5);
  opacity: .5;
  transition: all 300ms ease-in-out;
}
.testimThumb.swiper-slide-active,
.testimThumb.swiper-slide-thumb-active{
  transform: scale(1);
  opacity: 1;
}
.testimThumb img{
  border-radius: 50%;
}

.testimSlide{
  text-align: center;
}

.testim-name{
  display: block;
  font-weight: 600;
}

.testim-name small{
  font-size: 75%;
  margin-top: .5rem;
  font-weight: 500;
  display: block;
  color: var(--primary-color);
}
/* testimonials */


/*Footer*/
.footer-area {
  border-top: 6px solid var(--secondary-color);
  background-color: var(--primary-color);
  color: #fff;
  position: relative;
  font-size: 14px;
  z-index: 1;
}

.footer-area::before{
  content: '';
  position: absolute;
  inset: 0;
  background: url(../images/footer-stadium.webp) center 60% / cover no-repeat;
  opacity: 0.25;
  z-index: -1;
}

.footer-area a {
  display: inline-block;
  color: #fff;
  font-size: 14px;
  padding: 5px 0;
}
.footer-area a:hover {
  color: var(--secondary-color);
}

.smallHeading{
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.footer-logo {
  max-width: 220px;
}

.footer-links {
  margin: 5rem 0;
  position: relative;
  z-index: 1;
}

.follow-us ul{
  gap: 1rem;
}

.foot-contact ul li{
  gap: 5px;
}

.foot-contact ul li i{
  flex: 0 0 20px;
  color: var(--secondary-color);
}

.footer-area .bottom {
  padding: 1rem 0;
  border-top: 1px solid rgb(255 255 255 / 10%);
}

.footer-area .bottom p {
  font-size: 12px;
  text-transform: capitalize;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-area .bottom p img{
  width: 20px;
}

.button-top {
  background: rgb(0 0 0 / 32%);
  position: fixed;
  right: 20px;
  bottom: -40px;
  color: #ffffff;
  font-size: 13px;
  opacity: 0;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  text-align: center;
  z-index: 90;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.button-top:hover {
  background: var(--secondary-color);
  color: var(--body-color);
}
/*Footer*/


/* Inside page */
.insideBanner{
  width: calc(100% - 30px);
  border-radius: 3rem;
  margin: 15px auto 0;
  height: 50vh;
  position: relative;
  overflow: hidden;
  color: #fff;
}
.insideBanner::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(34, 34, 34, 0.6);
  z-index: 1;
}

.pageHead{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  text-align: center;
}

.page-title{
  font-size: 3.5rem;
  font-weight: 700;
}

.breadcrumb{
  background-color: transparent;
  margin-bottom: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
  font-size: 12px;
  justify-content: center;
}

.breadcrumb li a, .breadcrumb-item+.breadcrumb-item::before{
  color: #fff;
  font-weight: 600;
}

.breadcrumb li a:hover{
  color: var(--secondary-color);
}

.breadcrumb li.active{
  color: var(--secondary-color);
}

.emptyBox{height: 51px;}


.statContainer{
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgb(0 0 0 / 10%);
}

/*timeline */
.journey-wrapper{
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.journey-wrapper .journey-box{
  transition: all 300ms ease-in-out;
}

.journey-wrapper .journey-box .inner{
  display: flex;
  flex-direction: column;
  gap: 2rem 0;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  border-radius: 10px;
  text-align: center;
  background: url(../images/linen-seamless-pattern.jpg) center / cover no-repeat;
  transition: all 300ms linear 50ms;
  position: relative;
  z-index: 1;
}

.journey-wrapper .swiper-slide-active.journey-box .inner{
  background-color: rgb(255 255 255 / 100%);
  align-items: center;
}

.journey-wrapper .journey-box .inner::before{
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgb(255 255 255 / 75%);
  background: radial-gradient(circle at 100% 0%, rgb(255 255 255 / 69%), rgb(232 222 255 / 96%));
  border-radius: 1rem;
  z-index: -1;
}

.journey-wrapper .journey-box .journey-year{
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
  background-color: rgb(255 255 255 / 100%);
  font-weight: 700;
  color: var(--secondary-color);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  transform: translateY(4rem);
  transition: all 500ms linear 500ms;
}

.journey-wrapper .swiper-slide-active.journey-box .journey-year{
  background-color: var(--primary-color);
  transform: translateY(0);
}

.journey-wrapper .journey-box .journey-details{
  /* min-height: 214px; */
  font-size: 14px;
  padding: 1.125rem;
  border-radius: 10px;
  /* display: none; */
  opacity: 0;
  transition: all 300ms linear 500ms;
}

.journey-wrapper .swiper-slide-active.journey-box .journey-details{
  background-color: #fff;
  color: var(--darkgray);
  display: block;
  opacity: 1;
}

.journey-wrapper .journey-box .journey-details h5{
  color: var(--primary-color);
  margin-bottom: .5rem;
  font-weight: 700;
  font-size: 1rem;
}
.journey-wrapper .journey-box .journey-details ul {
  height: 101px;
}

.journey-wrapper .journey-box .journey-details ul li:not(:last-of-type){
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
}
.journey-wrapper .swiper-slide-active.journey-box .journey-details ul li:not(:last-of-type){
  border-bottom-color: rgb(0 0 0 / 10%);
}
/* Timeline */

/* Team wrapper */
.our-team {
  height: 100%;
  text-align: center;
  position: relative;
  isolation: isolate;
  border-radius: 10px;
}
.our-team:before{
  content: '';
  position: absolute;
  inset: 65px 0 0;
  background-color: #fff;
  border-radius: 10px;
  z-index: -1;
}

.our-team .picture {
  display: table;
  width: 90%;
  margin: 0 auto 2rem;
  z-index: 1;
  position: relative;
}

.our-team .title {
  display: block;
  text-transform: capitalize;
}

.our-team .team-content{
  padding: 0 1rem;
}

.our-team .name{
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary-color);
}

.our-team .social-links{
  padding-top: 10px;
  margin: 10px 0;
  border-top: 1px solid rgb(0 0 0 / 10%);
  gap: 5px;
}

.our-team .knowmore {
  width: 100%;
  padding: .75rem 8px;
  border-radius: 10px;
  border: 1px solid rgb(0 0 0 / 15%);
  margin: 0;
  font-weight: 700;
  color: var(--darkgray);
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: all 0.5s ease 0s;
}

.our-team:hover .knowmore {
  border-color: var(--secondary-color);
}

.our-team .knowmore:hover {
  background-color: var(--secondary-color);
  color: #fff;
}
/* Team wrapper */

/* FAQs */
.franchiseeBox{
  margin-bottom: 1.25rem;
  padding: 1.5rem;
  border-radius: 20px;
  background-color: #fff;
}
.franchiseeBox:last-of-type{
  margin-bottom: 0;
}

.franchiseeBox .box-head{
  display: flex;
  align-items: center;
  margin-bottom: 1.25rem;
  gap: 0 1rem;
}

.franchiseeBox .box-head .img-fluid{
  max-width: 50px;
  flex: 0 0 50px;
}

.franchiseeBox .box-head h5{
  margin-bottom: 0;
  font-weight: 700;
}

.franchiseeBox article{
  padding-left: 66px;
}

.franchiseeBox .box-head.accordionBtn{
  position: relative;
  cursor: pointer;
  margin-bottom: 0;
  padding-right: 2rem;
  transition: all 300ms ease-in-out;
}
.franchiseeBox .box-head.accordionBtn.active{
  margin-bottom: 1.25rem;
}

.franchiseeBox .box-head.accordionBtn h5{
  display: flex;
  gap: 8px;
}

.franchiseeBox .box-head.accordionBtn i{
  position: absolute;
  right: 0;
  font-size: 1.25rem;
  color: var(--primary-color);
  transition: all 300ms ease-in-out;
}
.franchiseeBox .box-head.accordionBtn.active i{
  transform: rotate(180deg);
}

.accordionContent:not(.show){
  display: none;
}
/* FAQs */

/* Blogs */
.blogs-archive .bg-white{
  border-radius: 50px;
  padding: 1rem;
}
.blogs-archive .bg-white:not(:last-child){
  margin-bottom: 1rem;
}

.date-tags{
  display: flex;
  max-width: fit-content;
  padding: 6px 12px;
  background-color: var(--light);
  border-radius: 5px;
  align-items: center;
  margin-bottom: 1.5rem;
}
.date-tags span{
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.date-tags span:not(:last-child){
  padding-right: 1rem;
  margin-right: 1rem;
  border-right: 1px solid rgb(0 0 0 / 12%);
}
.date-tags span i{
  color: var(--primary-color);
}

.blog-slideline .inner{
  background-color: #fff;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 1rem;
}

.side-recentBlogs a{
  display: flex;
  gap: 1rem;
  font-size: 14px;
}

.side-recentBlogs a:not(:last-child){
  margin-bottom: 20px;
}

.side-recentBlogs a .specialImg{
  max-width: 100px;
}

.side-recentBlogs a p{
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.side-recentBlogs a span{
  font-size: 12px;
}
/* Blogs */
/* Inside page */


/* events archive page starts */
.events_box .events_box_inner {
  height: 100%;
  background-color: #fff;
  display: block;
  color: var(--body-color);
  transition: all 300ms ease-in-out;
  background: linear-gradient(to bottom right, #eff0f3, #ffffff);
  box-shadow: 5px 5px 5px #e8e6e6, -5px -5px 5px #fff;
  border-radius: var(--radius);
  text-align: center;
}
.events-slider {
  border-radius: var(--radius);
}

.events_box_details {
  padding: 15px;
}
.events_box_img img {
  border-radius: 21px 19px 0px 0;
}
/* events archive page ends */

.hm-stats-box{
  position: relative;
  isolation: isolate;
  color: #fff;
}

.hm-stats-box::after{
  content: '';
  position: absolute;
  inset: -1rem 0 -1rem auto;
  width: 1px;
  border-radius: 50%;
  /* background-color: rgb(0 0 0 / 10%); */
  background-image: linear-gradient(transparent,rgba(255, 255, 255, 0.3), transparent);
  transform: rotate(-15deg);
}

.hm-stats-box:last-of-type::after{
  display: none;
}
.logo-icon
{
  width: 30px;
  background: #fff;
  border-radius: 50%;
  height: 30px;
  padding: 2px;
}
.matches
{
  background: var(--primary-color);
  padding: 10px;
  border-radius: var(--radius);
  color: #fff;
}
.matchbox p{
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 5px;
}
.font-11
{
  font-size: 80%;
}
.hm-about-the-legacy{
  padding: 10rem 0;
}

.bg-image.hm-about-the-legacy::before
{
    /* background: linear-gradient(#ffffff, rgb(255 255 255 / 80%), transparent) transparent; */
    background-color: rgb(255 255 255 / 50%);
}

.seasonBtn{
  color: #919191;
  padding: 5px 10px;
  border-bottom: 1px solid transparent;
}

.seasonBtn.active{
  color: var(--secondary-color);
  border-bottom-color: var(--secondary-color);
}
.gallerypage-box img
{
  height: 200px;
  object-fit: cover;
}
.privacy-policy p
{
font-weight: 300;
}
.privacy-policy li
{
font-weight: 300;
margin-bottom: 10px;
}
.disclosures-disclaimer
{
  padding: 1rem;
  height: 120px;
  overflow: auto;
}