@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
  @font-face {
    font-family: "gothambold";
    src: url("./././././././././././././././././././././././././././././././../fonts/gotham-bold-webfont.woff2") format("woff2"), url("./././././././././././././././../fonts/gotham-bold-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: "gothambook";
    src: url("./././././././././././././././././././././././././././../fonts/gotham-book-webfont.woff2") format("woff2"), url("./././././././././././././../fonts/gotham-book-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: "gothamlight";
    src: url("./././././././././././././././././././././././../fonts/gotham-light-webfont.woff2") format("woff2"), url("./././././././././././../fonts/gotham-light-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
  }
  @font-face {
    font-family: "gothammedium";
    src: url("./././././././././././././././././././../fonts/gotham-medium-webfont.woff2") format("woff2"), url("./././././././././../fonts/gotham-medium-webfont.woff") format("woff");
    font-weight: normal;
    font-style: normal;
  }
}
body {
  background: #EEEEE4;
  font-family: "gothambook";
  color: black;
}

.transition-custom {
  transition: all 0.25s ease-in-out 0s;
}

.dropdown {
  position: relative;
}
.dropdown .dropdown-menu {
  top: 10px;
  opacity: 0;
  transition: all ease-in-out 0.2s;
  pointer-events: none;
  padding-top: 40px;
  visibility: hidden;
  right: 0;

}
.dropdown:hover .dropdown-menu {
  opacity: 1;
    top: 20px;
    padding-top: 37px !important;
    pointer-events: all;
    visibility: visible;
    right: 0;
}

.main-menu .dropdown.menu-item:hover::after{
  filter: invert(1);
}
.main-menu .dropdown.menu-item:hover > a{
  color: white;
}

@media screen and (max-width: 1215px) {
  header h1 a {
    max-width: 180px !important;
  }
  header .nav-right {
    padding-left: 30px !important;
    flex-grow: 1;
    justify-content: end;
  }
  header .nav-right ul {
    gap: 10px;
    justify-content: space-between;
  }
  header .nav-right ul li a {
    font-size: 14px;
  }
  header .nav-right ul li a.register {
    padding: 7px 10px;
  }
  header .main-menu {
    padding-right: 10px;
    flex-grow: 1;
  }
  header .account-info {
    padding-left: 10px;
  }
}
.humbrger-menu {
  display: flex;
  width: 21px;
  gap: 5px;
  flex-direction: column;
  align-items: flex-end;
}
.humbrger-menu span {
  width: 100%;
  height: 2.5px;
  border-radius: 100px;
  display: block;
  background: black;
  transition: all ease-in-out 0.25s;
}
.humbrger-menu span:nth-child(2) {
  width: 55%;
}
.humbrger-menu.close span:first-child {
  transform: translateY(7px) rotate(45deg);
}
.humbrger-menu.close span:last-child {
  transform: translateY(-8px) rotate(-45deg);
}
.humbrger-menu.close span:nth-child(2) {
  opacity: 0;
}

.seperator {
  width: 1px;
  background: rgba(0, 0, 0, 0.1);
  height: 100%;
}

a.mobile-logo {
  max-width: 130px !important;
}

.accordion-panel {
  display: none;
}

.accordion-item.is-active .accordion-header span {
  transform: rotate(180deg);
}

.mobile-menu-wrap {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all ease-in-out 0.25s;
  top: 70px;
}

body.menu-active {
  overflow: hidden;
}
body.menu-active .mobile-menu-wrap {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  top: 65px;
}

.register-bg {
  background: url('../../images/illustration_hand_drawn_people_seamless_pattern/1.png') no-repeat #FA5457;
  background-size: cover;
}

.slick-arrow {
  width: 60px;
  height: 60px;
  background: #666 !important;
}
@media screen and (max-width: 768px) {
  .slick-arrow {
    width: 36px;
    height: 36px;
  }
}
.slick-arrow:hover {
  background: #000000 !important;
}

.slick-prev {
  left: 0;
}
.slick-prev::before {
  content: url('../../images/arrow.svg');
}

.slick-next {
  right: 0;
}
.slick-next::before {
  content: url('../../images/arrow.svg');
  transform: rotate(-180deg);
  display: inline-block;
}

.invisible-scrollbar::-webkit-scrollbar {
  display: none;
}

.content-wrap h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 40px;
  line-height: 48px;
  margin-bottom: 30px;
  color: #000000;
}
@media screen and (max-width: 767px) {
  .content-wrap h2 {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    margin-bottom: 15px;
  }
}
.content-wrap h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 36px;
  line-height: 43px;
  color: #000000;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .content-wrap h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
  }
}
.content-wrap p {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #666666;
}
@media screen and (max-width: 767px) {
  .content-wrap p {
    font-size: 14px;
    line-height: 24px;
    text-align: center;
  }
}
.content-wrap.terms-content h2, .content-wrap.terms-content h3 {
  text-align: left;
}
.content-wrap.terms-content p {
  text-align: left;
  margin-bottom: 20px;
}

.teammodal {
  /* Scrollbar width */
  /* Scrollbar Track */
  /* Scrollbar Handle */
  /* Scrollbar Handle on hover */
 display: none;
}
.team-modal{
  overflow: hidden;
}
body.team-modal .teammodal {
  /* Scrollbar width */
  /* Scrollbar Track */
  /* Scrollbar Handle */
  /* Scrollbar Handle on hover */
 display: flex;
}
.teammodal ::-webkit-scrollbar {
  width: 4px;
  height: 8px;
  border-radius: 0;
}
.teammodal ::-webkit-scrollbar-track {
  background: transparent;
}
.teammodal ::-webkit-scrollbar-thumb {
  background: #000000;
  border-radius: 0;
}
.teammodal ::-webkit-scrollbar-thumb:hover {
  background: #999;
}

.overlay::before {
  position: absolute;
  background: rgba(0, 0, 0, 0.8);
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* HTML: <div class="loader"></div> */
.loader {
  width: 48px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(farthest-side, #C06A45 94%, rgba(0, 0, 0, 0)) top/8px 8px no-repeat, conic-gradient(rgba(0, 0, 0, 0) 30%, #C06A45);
  -webkit-mask: radial-gradient(farthest-side, rgba(0, 0, 0, 0) calc(100% - 8px), #000 0);
  animation: l13 1s infinite linear;
}

@keyframes l13 {
  100% {
    transform: rotate(1turn);
  }
}
.mySlides, .modal {
  display: none;
}

.leading-auto {
  line-height: normal;
}

#loginModal, #signupModal, #premium-modal {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all ease-in-out 0.25s;
}

body.login-active #loginModal {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
body.login-active, body.register-active{
  overflow: hidden;
}
body.register-active #signupModal {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

body.premium-active #premium-modal {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}

.inner-subhead-faq {
  background-image: url('../../images/subhead-illustration-right.svg'), url('../../images/subhead-illustration-left.svg');
  background-position: right bottom, left top;
  background-repeat: no-repeat, no-repeat;
  background-size: contain;
}

.inner-subhead-contact {
  background-image: url('../../images/subhead-illustration-right.svg'), url('../../images/contact-ill.svg');
  background-position: right bottom, left top;
  background-repeat: no-repeat, no-repeat;
  background-size: contain;
}

.profile-header {
  background: linear-gradient(90deg, #F8DA82 0%, #FFBE98 100%);
}

.dflt-gradient {
  background: linear-gradient(113deg, #F8DA82 7.95%, #FFBE98 100%);
}

@media screen and (max-width: 990px) {
  header h1 a{
        max-width: 110px !important;
		width; 100%;
		display:block;
	}
}

.mobile-menu {
  height: 65px;
}
.mobile-menu .mobile-menu {
  height: auto;
}
.mobile-menu .accordion-header::after {
  display: none;
}

.mobile-menu .sub-menu.accordion-header {
  padding: 0 20px !important;
}

@media (max-width: 767px) {
  .mobile-login-menu {
    flex-direction: column;
  }
  .mobile-login-menu div {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
}
.pagination-list .current {
  background-color: #FFBE98 !important;
}

@media (max-width: 767px) {
  .footer-left h1 a img {
    width: 230px !important;
  }
}
.main-menu .dropdown.menu-item{
	padding-right:20px;
}
.main-menu .dropdown.menu-item::after {
  content: " ";
    width: 13px;
    height: 13px;
    background-image: url("data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTMiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDEzIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik02LjUzNTUxIDQuODQyNjRDNi41OTk0OCA0Ljc1NDc5IDYuNjM4ODIgNC42NzkwOCA2LjY5ODkgNC42MjI4MUM4LjIyNTE0IDMuMTkwMDQgOS43NTQ0IDEuNzU5NyAxMS4yODA2IDAuMzI2OTM1QzExLjUzNTIgMC4wODgwNzM2IDExLjgyNDQgLTAuMDQ2MzM2OSAxMi4xOTIyIDAuMDE2MDEwMUMxMi41NjQ0IDAuMDc5MTY2OCAxMi44MjE2IDAuMjc5MTYzIDEyLjk0MjYgMC42MTIzNTVDMTMuMDYyOCAwLjk0NDMzMyAxMi45OTI3IDEuMjUwOCAxMi43NDY4IDEuNTE4NDFDMTIuNzA5MiAxLjU1OTMgMTIuNjY3MyAxLjU5NjU1IDEyLjYyNjYgMS42MzQ2QzEwLjg0NDEgMy4zMDQ2MSA5LjA2MTUyIDQuOTc0NjIgNy4yNzg1MyA2LjY0MzgyQzYuNzc0MTEgNy4xMTU4OCA2LjIzMDM1IDcuMTE5MTIgNS43MzAyNSA2LjY1MTExQzMuOTMxNyA0Ljk2Nzc0IDIuMTM0ODggMy4yODIzNSAwLjMzNTAzMSAxLjU5OTc5QzAuMDM4MDgyMyAxLjMyMjA2IC0wLjA3Njg5MzUgMS4wMDAyIDAuMDUyNzc4NCAwLjYyMzI4NkMwLjE3NzI2MyAwLjI2MTc1NCAwLjQ1OTk0OCAwLjA1NzMwNDkgMC44NTg0NzMgMC4wMDc5MTMxMUMxLjE5Nzc4IC0wLjAzNDE5MTQgMS40NzI2OSAwLjA5NDk1NiAxLjcwOTk5IDAuMzE4NDM0QzIuNjU1MjkgMS4yMDcwOCAzLjYwNDQ5IDIuMDkyODkgNC41NTE1MyAyLjk4MDczQzUuMTkyOTcgMy41ODE1MyA1LjgzMzU1IDQuMTgzNTQgNi41MzU1MSA0Ljg0MjY0WiIgZmlsbD0iYmxhY2siLz4KPC9zdmc+Cg==");
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-repeat: no-repeat;
    background-position: center;
}
@media (max-width: 990px){
	.inner-subhead-contact{
		background-position: calc(100% + 130px) bottom, -190px top !important;
	}
	.inner-subhead-faq{
		background-position: calc(100% + 130px) bottom, -190px top !important;
	}
}

@media (max-width: 767px){
	.inner-subhead-contact{
		background-position: calc(100% + 100px) bottom, -100px top !important;
	}
	.inner-subhead-faq{
		background-position: calc(100% + 100px) bottom, -80px top !important;
	}
}

@media (max-width: 1023px){
	.inner-banner{
		margin-top: 65px !important;
	}
}
.mobile-menu .accordion-header::before {
  top: -21px !important;
  right: 10px !important;
  left: auto !important;
   background-color: transparent !important;
   color:#000 !important;
	font-size: 20px !important;
}
.accordion-header::before{
	content: "\f347" !important;
}

.metaslider.ms-theme-cubic .flexslider ul.flex-direction-nav li a.flex-next, .metaslider.ms-theme-cubic .rslides_nav.next, .metaslider.ms-theme-cubic div.nivoSlider div.nivo-directionNav a.nivo-nextNav, .metaslider.ms-theme-cubic .coin-slider .coin-slider div a.cs-next {
  right: -30px !important;
}

.metaslider.ms-theme-cubic .flexslider ul.flex-direction-nav li a.flex-prev, .metaslider.ms-theme-cubic .rslides_nav.prev, .metaslider.ms-theme-cubic div.nivoSlider div.nivo-directionNav a.nivo-prevNav, .metaslider.ms-theme-cubic .coin-slider .coin-slider div a.cs-prev {
  left: -30px !important;
}

.wpcf7-spinner{
	margin-left: calc(50% - -50px) !important;
	margin-top: 20px !important;
	
}

@media (min-width: 768px) and (max-width: 920px) {
	.main-banner{
		height: auto !important;
	}
}

#menu-main-menu .sub-menu{    
    display: none;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 218px; 
    padding: 1.25rem;
    background-color: #FA5457;
    visibility: hidden;
}
#menu-main-menu li:hover .sub-menu{
visibility: visible;
	display: flex !important;
}

@media (max-width: 768px){
	.metaslider.ms-theme-cubic .flexslider ul.flex-direction-nav li a{
		margin-top:0 !important
	}
}

.editable:disabled{
	background-color: #ffffff !important; /* white */
    color: #000000 !important; /* black */
	opacity: 1 !important;
}

/* ______ 12Sept Fixes ______ */

.tribe-filter-bar-c-filter--open .tribe-events-c-top-bar__datepicker-button-icon-svg{
	    rotate: 180deg;
}

.tribe-filter-bar .tribe-filter-bar-c-checkbox{
    border-bottom: 1px solid #C6C6C6;
    padding-bottom: 10px;
}

.tribe-filter-bar .tribe-filter-bar-c-checkbox::last-child{
    border-bottom: 0;
    padding-bottom: 0;
}

.wpcf7-spinner{
	margin-left: calc(50% - -50px) !important;
	margin-top: 20px !important;
	
}


.wpcf7 form .wpcf7-response-output{
    margin: 0;
}

.tribe-common img{
    width: 100%;
}
@media (max-width: 768px){
	.tribe-common img{
   		max-width: 400px;
		margin-left: auto;
		margin-right: auto;
	}
}


.tribe-common p {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    color: #666666;
    font-family: "gothambook";
}
@media (orientation: landscape) and (min-width: 768px) and (max-width: 860px){
	.speakers .speaker-list{
	width: calc(100% - 280px);
	}
}
@media (orientation: landscape) and (max-width: 768px){
	.speakers .speaker-list{
	width: 100%;
	}
}
@media (max-width: 768px){
	.tribe-events-c-nav__prev-label{
		font-size:12px;
	}
	.tribe-events-c-nav__next-label{
		font-size:12px;
	}
}
@media (max-width: 1024px){
	.wpcf7-spinner{
		margin-left: calc(50% - 12px) !important;
	}
}
.mobile-menu .calendar {
    width: auto;
    height: auto;
    background: transparent;
    border: 0;
    text-align: left;
    justify-content: flex-start;
}
.personal-details .editable:not(:disabled) {
	height: 40px;
}

@media (min-width: 1366px){
	body.ml .inner-subhead-contact h3{
		font-size:26px;
	}
}

@media (min-width: 1024px) and (max-width: 1366px){
	body.ml .inner-subhead-contact h3{
		font-size:20px;
	}
}

.mobile-menu-wrap li a:visited, .mobile-menu-wrap li a:focus, .mobile-menu-wrap li a:active{
	color: #000000 !important;
}

/* Disable gray highlight */
element {
    -webkit-tap-highlight-color: transparent;
}

element:visited {
    color: initial; /* Or set a specific color if needed */
    -webkit-tap-highlight-color: transparent;
}
.gallerypop{
	transform: translateY(-50%);
	top: 50%;
	position: absolute;
	width: 100%;
}

.gallerypop .popnav{
	transform: translateX(-50%);
	left: 50%;
}

.mobile-menu-wrap ul li a {
    color: #000 !important;
}

.select2-container--default .select2-results>.select2-results__options{
	max-height: fit-content !important;
}

.tribe-filter-bar .tribe-filter-bar-c-dropdown .select2-results__option:focus{
  outline: none !important;
}

.wpcf7-form-control:focus-visible {
  border-color: #FFBE98 !important;
  outline: none;
}

.wpcf7-textarea.wpcf7-form-control{
  padding-top: 13px;
  padding-bottom: 13px;
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}

.wpcf7-textarea.wpcf7-form-control:focus-visible {
  border-color: #FFBE98 !important;
  outline: none;
  border-width: 1px;
}
@media (max-width: 768px){
	.tribe-common-l-container.tribe-events-l-container.custom-event-container .tribe-filter-bar{
		display: none;
	}
	
	.mobile-menu .sub-menu .menu-item:first-child{
		margin-top:8px;
	}
}
/*# sourceMappingURL=styles.css.map */

/* New Updates 18th Nov ---------------------------------------------------------------------------------*/

.swiper-wrapper {
  width: 100%;
  height: max-content !important;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
  position: relative;
  }
.swiper-pagination-bullet {
  background: #4f46e5;
}

.swiper-button-nextg, .swiper-button-prevg{
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  margin: 0 !important;
}

.swiper-button-nextg:after, .swiper-button-prevg:after{

  font-size: 24px !important;
  color: #FFFFFF;
}
.swiper-button-nextg::after, .swiper-rtl .swiper-button-prevg::after{
  content: 'next';
}
.swiper-button-prevg::after, .swiper-rtl .swiper-button-nextg::after{
  content: 'prev';
}
.swiper-button-nextg::after, .swiper-button-prevg::after{
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-next, .swiper-button-prev{
  position: relative !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  margin: 0 !important;
}

.swiper-button-next:after, .swiper-button-prev:after{
  font-size: 24px !important;
  color: #FFFFFF;
}

.videocaro-bg{
  position: relative;
}
.videocaro-bg::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 50%;
  background: url('../../images/illustration_hand_drawn_people_seamless_pattern/1.png') no-repeat #FA5457;
    background-size: auto;
  background-size: cover;
  z-index: -1;
}

.playbtn{
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  padding: 8px;
}

.playbtn svg{
  width: 100%;
  height: 100%;
}

.home-date span{
	font-family: "gothambold";
}