/* ================================================== */
/* Web Fonts */
/* ================================================== */

@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
	font-family: "Arial";
	src: url("https://cdn-azure.searix.net/searixcdn/2025/05-mohavbc/microsite/fonts/arial.ttf")
		format("truetype");
}

@font-face {
	font-family: "Arial-Bolder";
	src: url("https://cdn-azure.searix.net/searixcdn/2025/05-mohavbc/microsite/fonts/ariblk.ttf")
		format("truetype");
}

@font-face {
	font-family: "Arial-Bold";
	src: url("https://cdn-azure.searix.net/searixcdn/2025/05-mohavbc/microsite/fonts/arialbd.ttf")
		format("truetype");
}


:root {
	--bs-primary-rgb: 0,85,129;
	--bs-btn-active-bg: #ef4135;

	/* font sizes */
	--font-size-nav: 1rem;
	--font-size-page-title: 2.5rem;
	--font-size-sect-title: calc(1.4rem + .3vw);
	--font-size-sect-subtitle: calc(1.3rem + .3vw);
	--font-size-para-title: 1.25rem;
	--font-size-body: 1rem;
	--font-size-cta: 1.5rem;
	--font-size-button: 1rem; 
	--font-size-footer-title: 1.5rem;
	--font-size-footer-subtitle: 1.5rem; 
	--font-size-small: 0.8rem;
}

.btn-danger{
	--bs-danger-rgb: 239,65,53;
	--bs-btn-bg: #ef4135;
	--bs-btn-active-bg: #fb7a7a;
}

.small, small{
	font-size: var(--font-size-small);
}

.btn{
	font-size: var(--font-size-button);
}

.text-danger{
	color: var(--bs-btn-active-bg) !important;
}

.text-para{
	font-size: var(--font-size-para-title);
}

.text-pink{
	color:#ed7578;
}

.text-orange{
	color:#ff9800;
}

.bg-pink{
	background-color:#ed7578;
}

.bg-orange{
	background-color:#ff9800;
}

b, .fw-bold{
	font-family: "Arial-Bold" !important;
}

.fw-800{
	font-family: "Arial-Bolder" !important;
}

/* ================================================== */
/* Utilities */
/* ================================================== */

.mt-10px {
	margin-top: 10px;
}

.mt-20px {
	margin-top: 20px;
}

.mt-30px {
	margin-top: 30px;
}

.fw-800{
	font-weight: 800;
}

/* ================================================== */
/* General */
/* ================================================== */

*,
*:before,
*:after {
	box-sizing: border-box;
}

body {
	font-family: Arial, Helvetica, sans-serif;
	background-color: #eef3fa;
	color: black;
	font-size: 16px;
}

.btn-primary {
	background-color: #A4DBE8 !important;
	border: 0;
}

.text-center {
	text-align: center;
}

/* ================================================== */
/* Registration */
/* ================================================== */

.registration-container, .registration-container .form-select {
	background-color: #F3FDFF;
	font-size: var(--font-size-body);
	font-family: Arial, Helvetica, sans-serif;
}

.registration-container .container{
	background-color: #F3FDFF;
}

.registration-container .form-row {
	margin-top: 10px;
}

.registration-container label {
	font-weight: 600; /* 400 */
	margin-top: 5px;
	margin-bottom: 5px;
}

@media (max-width: 600px) {
    .registration-container .mobile-logo {
        width: 45% !important;
    }
}

.registration-container input[type="text"],
.registration-container input[type="email"],
.registration-container input[type="number"],
.registration-container textarea,
.registration-container select ,
.registration-container .form-select{
	background-color: #D7F5FF;
	color: black;
	border: 0;
	padding: 5px 15px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	border-radius: 0;
	font-size: 15px;
	width: 100%;
}
.choices{
    margin-bottom: auto !important;
    height: 34px !important;    
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1) !important;
}

.choices__list{
	background-color: #D7F5FF !important;
}

.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background: #D7F5FF !important;
	padding: 5px 12px !important;
    border: 0 !important;
    border-radius: 0 !important;
    font-size: 14px!important;
    height: 34px !important;
    overflow: hidden;
    height: auto !important;
    line-height: normal !important;
}

.registration-container input[type="text"]:read-only, .registration-container input[type="email"]:read-only {
	background-color: #dadada;
	pointer-events: none;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.registration-container select {
	padding: 8px 9px;
}

.registration-container .radio-inline {
	display: inline-flex;
	margin-right: 15px;
}

.registration-container .radio-inline:last-of-type {
	margin-right: 0;
}

.registration-container .radio-inline > input[type="radio"] {
	height: 14px; /* same as label font-size */
	width: 14px; /* same as label font-size */
	margin: 4px 8px 0 0;
	flex-shrink: 0;
}

.registration-container input[type="submit"] {
	padding: 5px 30px;
	font-size: 16px;
	/* border: 1px solid #007377; */
	border-radius: 6px;
	background-color: #186080;
	color: white;
}

.registration-container input[type="submit"]:hover {
	color: white;
	border: 1px solid #ef4548;
}

.registration-container .checkbox {
	display: flex;
}

.registration-container input[type="checkbox"] {
    height: 14px; /* same as label font-size */
    width: 14px; /* same as label font-size */
    margin-top: 8px;
    background-color: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
	border: 1.5px solid #007377;
}

.registration-container input[type="checkbox"]::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px; 
    height: 8px; 
    background-color: #007377;
    border-radius: 2px;
    display: none;
}

.registration-container input[type="checkbox"]:checked::before {
    display: block;
}

.registration-container input[type="checkbox"].error:focus {
    box-shadow: 0 0 0.5rem 0.2rem rgba(255, 0, 0, 1) !important;
}

.registration-container label.error {
	color: #ef4548;
	font-size: 0.7em;
}

.navbar {
	font-size: initial;
}

.registration-container .table tbody tr td{
	/* border: 0 !important; */
	border-left: 1px solid #ccc; 
    border-right: 1px solid #ccc;
    border-top: none !important;  
    border-bottom: none !important; 
	background-color: transparent;
	padding: 0;
	margin: 0;
	color: black;
}

.registration-container tr:last-child{
	border-bottom: 1px solid #ccc;
}

.registration-container .table tbody tr td a{
	color: black !important;
}

@media (max-width: 576px) {
	.registration-container .table tbody tr td{
		padding: 5px;
	}
}


/* #Public Pages(portrait)
================================================== */

.card {
	color: white;
	font-size: initial;
}

.card .form-control:focus {
	background-color: white;
}

/* #Custom Pages
================================================== */

.nav-padding {
	padding-left: 7.5rem;
	padding-right: 7.5rem;
}

.wrapper {
	font-family: Arial, Helvetica, sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	margin: auto;
	background-color: #F3FDFF;
	min-height: 100vh;
}

/* Navbar styles */
.wrapper .navbar {
	font-size: 13px;
	font-weight: 600;
	background-color: white !important;
}

.wrapper .navbar li {
	padding: 0 10px;
}

a.navbar-brand img{
	width:18rem;
	margin-left: -30px;
}

@media (max-width: 576px) {
	.wrapper .navbar li,
	.wrapper .nav-item:last-child {
		padding: 0;
		display: block;
	}
	.navbar .btn-rounded {
		display: none;
	}
	.nav-padding {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	a.navbar-brand img{
		width: 16rem;
	}

}

@media (max-width: 400px) {
	a.navbar-brand img{
		width: 14rem;
	}
}

@media (min-width: 576px) and (max-width: 1400px) {
	.wrapper .navbar li,
	.wrapper .nav-item:last-child {
		padding: 0;
		display: block;
	}
	.navbar .btn-rounded {
		display: none;
	}
	.nav-padding {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

.wrapper .navbar-nav .nav-item.active .nav-link,
.wrapper .navbar-nav .nav-item .nav-link:hover {
	color: var(--bs-btn-active-bg);
}

.wrapper .navbar-nav .nav-link {
    color: black; /* Dark Teal for normal state */
	white-space: nowrap;
	font-size: var(--font-size-nav);
}

.wrapper .navbar-nav .nav-link:hover { 
	color: var(--bs-btn-active-bg);
}

.wrapper .navbar-nav .nav-item.active .nav-link {
	color: var(--bs-btn-active-bg);
}

.wrapper .navbar .dropdown-item {
    color: #247074; /* Dark Teal for normal state */
	font-weight: bold;
}

.wrapper .navbar .dropdown-item:hover,
.wrapper .navbar .dropdown-item:focus,
.wrapper .navbar .dropdown-item.active {
    color: #8dd1de; /* Light Teal for hover, focus, and active states */
    background-color: transparent; /* Remove default hover background if needed */
}

.navbar-nav .dropdown-menu{
	line-height: 1.2;
}

@media (min-width: 1200px) { 
    .navbar-nav .dropdown-menu {
        width: 15rem;
        left: 50%;
        transform: translateX(-50%);
    }

    .wrapper .navbar .dropdown-item {
        text-align: center;
        word-break: break-word;
        white-space: normal;
    }
}

.wrapper .btn-rounded {
	position: relative;
	padding: 0.8375rem 1.25rem 0.8375rem 1.25rem;
	margin: 0;
	margin-left: 15px;
	border: 0.1rem solid rgba(white, 0.6);
	background-color: #00757a;
	color: white;
	text-decoration: none;
}

.wrapper .btn-rounded span {
	position: absolute;
	width: 2.5rem;
	height: 2.5rem;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	border-radius: 50%;
}

.wrapper .btn-rounded span i {
	font-size: 1.8rem;
	line-height: 2.5rem;
}

.wrapper .btn-rounded:hover,
.wrapper .btn-rounded.active {
	background-color: #f26322;
}

.card-left {
  position: relative;
  background-color: #f7e9ac;
  border-radius: 40px 0 40px 40px;
  padding: 50px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.card-mid {
  position: relative;
  background-color: #b5cff0;
  border-radius: 40px 40px 40px 40px;
  padding: 50px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.card-right {
	position: relative;
	background-color: #d7e9b9;
	border-radius: 40px 40px 0 40px;
	padding: 50px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

/* Hero Banner styles */
#hero-banner {
	position: relative;
	background-image: url("https://cdn-azure.searix.net/searixcdn/2025/05-mohavbc/microsite/hero-bg-highres.png");
	background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    /* background-position-y: 12vh; */
    background-attachment: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    /* min-height: 65dvh; */
    padding: 2rem 1rem;
}

#hero-banner img{
	padding: 120px 0 120px 0;
}

#hero-banner .hero-content {
    max-width: 45rem;
    width: 100%;
    padding: 0 2rem;
}

#hero-banner .hero-line {
	content: "";
    width: 38%;
    margin-right: auto;
    margin-left: 1rem;
    border-bottom: solid red .2rem;
    height: auto;
}

#hero-banner .rounded-pill {
	background-color: #fb7a7a;
}

#hero-banner .logo {
	width: auto;
    margin: auto;
}

#hero-banner .logo img {
	width: 6rem;
}

#hero-banner h1 {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3rem);
	color: #00757a;
	font-weight: 600;
}

#hero-banner h2 {
	font-size: clamp(1.5rem, 4vw, 3rem);
}

#hero-banner p {
	font-size: clamp(1.2rem, 3vw, 2.2rem);
	line-height: 1.2;
}

@media (max-width: 576px) {
	#hero-banner {
		padding: 1rem;
		background-position: top center;
		background-size: auto 100%;
		min-height: 55dvh;
	}

	#hero-banner .hero-content {
		padding: 0;
	}

	#hero-banner .rounded-pill {
		font-size: 1rem !important;
		padding: 0.5rem 1rem !important;
	}

	#hero-banner .logo img {
		width: 4rem;
	}
}


@media (min-width: 576px) and (max-width: 992px) {
	#hero-banner {
		background-size: cover;
		padding: 2rem;
	}

	#hero-banner .hero-content {
		padding: 0 2rem;
	}
}

@media (max-width: 1400px) {
	#desktopTimerContainer {
		display: none;
	}
}

/* Register-Now section styles */
#register-now {
	padding: 40px 0px;
	background-image: url("https://cdn-azure.searix.net/searixcdn/2025/05-mohavbc/microsite/join-now-bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	min-height: 20vh;
	font-size:2.5rem;
}

#register-now h1 {
	font-size: var(--font-size-page-title);
}

#register-now .action-button {
	font-size: 15px;
	padding: 10px 25px;
	border: 0.1rem solid rgba(black, 1);
	/* background-image: linear-gradient(
		to bottom,
		#cdf4fb 20%,
		#e7f6f9 50%,
		#cdf4fb 80%
	); */
  background-color: #007376;
	color: white;
	text-decoration: none;
	font-weight: 500;
}

.register-button{
	background-color: #ffffff;
	color: rgb(var(--bs-primary-rgb));
	padding: 1rem 4rem !important;
}

.register-button-condensed{
	background-color: #ffffff;
	color: rgb(var(--bs-primary-rgb));
	padding: 1rem 2rem !important;
}

@media (max-width: 576px) {
	#register-now .action-button {
		font-size: 18px;
	}
	#register-now h1 {
		font-size: var(--font-size-sect-subtitle);
	}
}

@media (min-width: 576px) and (max-width: 992px) {
	#register-now h1 {
		font-size: var(--font-size-page-title);
	}
	#register-now .action-button {
		font-size: 20px;
	}
}

/* Overview section styles */
#overview {
	background-image: url(https://cdn-azure.searix.net/searixcdn/2025/05-mohavbc/microsite/overview-bg.png);
    background-size: 140% auto;
    background-repeat: no-repeat;
    background-position: center bottom;
	background-color: #f6fcfd;
}

#overview h2,
#speakers h1 {
	color: #007376;
	font-weight: bold;
}

#overview .content {
	text-align: center;
	font-size: 16px;
	margin: 20px auto;
	max-width: 800px;
}

#overview .content span {
	font-style: italic;
	color: #f26322;
	font-weight: bold;
}

@media (min-width: 576px) and (max-width: 992px) {
	#overview {
		padding: 50px;
	}
}

/* Call for abstracts section styles */
#plenaries {
	/* background-image: url("https://cdn-azure.searix.net/searixcdn/2024-03-mohace/1920/abstract-bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center; */
  background-color: #f7f7f7;
	padding: 50px 120px;
}

#plenaries h2 {
	color: #007376;
	margin: 20px auto;
	font-weight: bold;
}

#plenaries .content {
	font-size: 16px;
	color: white;
}

#plenaries .plenary-card {
	display: flex;
	flex-direction: column;
	align-items: start;
	justify-content: start;
  	/* height: 45rem; */
	height:100%;
}

#plenaries .plenary-icon {
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#plenaries .plenary-icon img {
  width: 80%;
  height: 80%;
}

#plenaries h4 {
  font-size: 1.5rem;
  color: #00757a;
  font-weight: bold;
}

#plenaries h6 {
  font-size: clamp(0.8rem, 2.5vw, 1.4rem);
  color: #00757a;
  font-weight: normal;
}

#plenaries p {
  font-size: 1rem;
}

#plenaries .action-button {
  /* position: absolute; */
  bottom: 2rem;
	font-size: 15px;
	padding: 10px 25px;
	border: 0.1rem solid rgba(black, 1);
	/* background-image: linear-gradient(
		to bottom,
		#cdf4fb 20%,
		#e7f6f9 50%,
		#cdf4fb 80%
	); */
  background-color: #007376;
	color: white;
	text-decoration: none;
	font-weight: 500;
	margin-top: auto;
}

@media (max-width: 576px) {
	#plenaries {
		padding: 50px 20px;
	}

  #plenaries .plenary-icon {
    width: 75px;
    height: 75px;
  }

  #plenaries h4 {
    font-size: 1.4rem;
    color: #00757a;
    font-weight: bold;
  }
  
  #plenaries h6 {
    font-size: 1rem;
    color: #00757a;
  }
  
  #plenaries p {
    font-size: 0.8rem;
  }
}

@media (min-width: 576px) and (max-width: 992px) {
	#plenaries {
		padding: 50px;
	}
}

/* Call for abstracts section styles */
#call-for-abstracts {
	background-image: url("https://cdn-azure.searix.net/searixcdn/2025/08-hta/site/1920/call-for-abstracts-bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
  background-color: #f7f7f7;
	padding: 50px 120px;
}

#call-for-abstracts h2 {
	color: #007376;
	margin: 20px auto;
	font-weight: bold;
}

#call-for-abstracts .content {
	font-size: 16px;
	color: black;
}

#call-for-abstracts .action-button {
	font-size: 15px;
	padding: 10px 25px;
	border: 0.1rem solid rgba(black, 1);
	/* background-image: linear-gradient(
		to bottom,
		#cdf4fb 20%,
		#e7f6f9 50%,
		#cdf4fb 80%
	); */
  background-color: #007376;
	color: white;
	text-decoration: none;
	font-weight: 500;
}

@media (max-width: 576px) {
	#call-for-abstracts {
		padding: 50px 20px;
	}
}

@media (min-width: 576px) and (max-width: 992px) {
	#call-for-abstracts {
		padding: 50px;
	}
}

/* Pre Conference styles */
#pre-conference {
	background-image: url("https://cdn-azure.searix.net/searixcdn/2025/08-hta/site/1920/pre-conference-workshop-bg-v2.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	background-color: #f2ebf3;
	padding: 50px 120px;
}

#pre-conference h2 {
	color: #007376;
	font-weight: bold;
}

#pre-conference .content {
	font-size: 16px;
}

#pre-conference .action-button {
	font-size: 16px;
	padding: 10px 25px;
	border: 0.1rem solid rgba(black, 1);
	background-color: #007376;
	color: white;
	text-decoration: none;
	font-weight: 600;
}

#pre-conference-programme .pre-conference-programme-card {
  height: 7rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

#pre-conference-programme .pre-conference-programme-card p {
  text-align:center;
  font-size: 1rem;
  margin: 0;
}

#pre-conference-programme .action-button {
	font-size: 16px;
	padding: 10px 25px;
	border: 0.1rem solid rgba(black, 1);
	background-color: #007376;
	color: white;
	text-decoration: none;
	font-weight: 600;
}

#pre-conference-programme h1{
	margin-top: 7rem;
	margin-bottom: 3rem;
	font-weight:bold;
	text-align:center;
	color: #00757a;
	font-size:1.5rem;
}

#pre-conference-programme table {
  background-color: #ffffff;
  border: 0;
  border-radius: 1rem;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

#pre-conference-programme table tr td:not(:first-child){
	cursor: pointer;
}

#pre-conference-programme table td,
.workshopmodal {
  padding: 1rem;
	color: #00757a;
  font-weight: bold;
}

#pre-conference-programme table td h6,
.workshopmodal h6 {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

#pre-conference-programme table td p,
.workshopmodal p{
  font-size: 1rem;
	color: black;
  font-weight: normal;
}

#pre-conference-programme table td b,
.workshopmodal b {
	color: #00757a;
  font-weight: bold;
  font-size: 1rem;
}

#pre-conference-programme table .bl{
  border-left: 0.2rem solid #92cfd2;
}
#pre-conference-programme table .br{
  border-right: 0.2rem solid #92cfd2;
}
#pre-conference-programme table .bt{
  border-top: 0.2rem solid #92cfd2;
}
#pre-conference-programme table .bb{
  border-bottom: 0.2rem solid #92cfd2;
}

#pre-conference-programme table .highlight-blue {
	background-color: #bbe8ee;
}

@media (max-width: 576px) {
  #pre-conference-programme table td {
    font-size: 0.65rem;
  }

  #pre-conference-programme table td h6 {
    font-size: 0.65rem;
    margin-bottom: 1.5rem;
  }

  #pre-conference-programme table td p {
    font-size: 0.65rem;
  }
}


.workshopmodal .modal-content {
    background-image: url(https://cdn-azure.searix.net/searixcdn/2025/08-hta/site/1920/speaker-prop.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
	background-color: #bde7ee;
}

.workshopmodal .modal-header {
	border-bottom: 0px;
}

.workshopmodal .modal-content {
	backdrop-filter: blur(5px);
	border: 0 !important;
}

.workshopmodal .modal-body .btn-prev,
.workshopmodal .modal-body .btn-next {
	transition: opacity 0.5s ease;
}

.workshopmodal .modal-body .btn-prev:hover,
.workshopmodal .modal-body .btn-next:hover {
	opacity: 0.7;
}

@media (max-width: 576px) {
	#pre-conference {
		padding: 50px 20px;
	}
}

@media (min-width: 576px) and (max-width: 992px) {
	#pre-conference {
		padding: 50px;
	}
}

/* About ACE styles */
#about {
	background-image: url("https://cdn-azure.searix.net/searixcdn/2025/08-hta/site/1920/about-bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
	padding: 50px 200px;
	background-color: #ffffff;
}

#about h2 {
	color: #007376;
	font-weight: bold;
}

#about .content {
	font-size: 16px;
}

@media (max-width: 576px) {
	#about {
		padding: 50px 20px;
	}
}

@media (min-width: 576px) and (max-width: 992px) {
	#about {
		padding: 50px;
	}
}

@media (min-width: 1200px) {
	.home-about-shift-right {
		padding-left: 200px !important;
	}
}

/* Footer styles */
#footer {
	position: relative;
	/* padding: 30px 120px; */
	background-image: url("https://cdn-azure.searix.net/searixcdn/2025/05-mohavbc/microsite/footer-bg.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center right;
	background-position-x: 70%;
	background-color: #eaf8ff;
	z-index: 999;
	display: flex;
	justify-content: center;
	align-items: center;
}

#footer h1 {
	color: #00757a;
	/* font-weight: 600; */
	font-family: inherit;
	font-size: 37px;
	letter-spacing: 2px;
}

#footer h2 {
	color: #00757a;
	font-weight: 300;
	font-family: inherit;
	font-size: 37px;
}

#footer h4 {
	font-size: var(--font-size-footer-title);
}

#footer h5 {
	font-size: var(--font-size-body);
}

#footer .stay-connected-text {
	color: #00757a;
	font-size: 1rem;
	margin: 50px 0px 25px;
}

#footer p.footer-date {
	color: #00757a;
	font-weight: 500;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: 4px;
}

#footer .footer-brands {
	font-size: 14px;
	font-weight: 500;
}

#footer .footer-brands img {
	width: 400px;
	height: auto;
}

#footer h6 {
	font-size: 16px;
	font-weight: 600;
	color: #00757a;
}

#footer h5 {
	color: #00757a;
}

#footer #address {
	font-size: 14px;
	font-weight: 400;
	margin-bottom: 10px;
}

#footer a {
	color: #00757a;
	font-weight: 600;
	text-decoration: none;
	word-break: break-all;
}

#footer a:hover {
	color: #8dd1de;
}

#footer a i{
	width: 40px;
	height: 40px;
	font-size: var(--font-size-footer-title);
}

#footer .social-icons i {
	background-color: #00757a;
	color: white;
	padding: 3px 5px;
	border-radius: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	width: 40px;
	height: 40px;
	font-size: var(--font-size-footer-title);
}

#footer .logo{
	width: auto;
    margin: auto;
}

#footer .logo img {
	width: 6rem;
}

#footer .hero-line {
	content: "";
    width:100%;
    margin-right: auto;
    margin-left: 1rem;
    border-bottom: solid red .2rem;
    height: auto;
}

#footer .rounded-pill {
	background-color: #fb7a7a;
}

.footer-content{
	max-width: 30rem;
}

.footer-bottom {
	font-size: var(--font-size-body);
	background-color: #005581;
	color: white;
	padding: 25px 0;
	position: relative;
	z-index: 999;
}

@media (max-width: 576px) {
	#footer {
		padding: 50px 20px;
		background-image: none;
	}

	#footer .footer-brands {
		margin-bottom: 30px;
	}

	#footer .footer-brands img {
		width: 270px;
		height: auto;
	}
}

@media (min-width: 576px) and (max-width: 992px) {
	#footer {
		padding: 50px;
	}
}

/* Speakers styles */
#speakers {
	font-size: 1rem !important;
	position: relative;
	z-index: 1;
}

.modal-content {
	border-radius: 40px;
	font-family: Arial, Helvetica, sans-serif;
}

.modal-content a {
	color: #bae9eb;
}

#speakers .row-dark {
  background-color: #f7f7f7;
}

#speakers h3 {
  margin-top: 5rem;
	margin-bottom: 5rem;
	font-size: 40px;
	text-align: center;
	color: #00757a;
	font-weight: 600;
	font-size:1.5rem;
}

#speakers h4 {
	margin-bottom: 2rem;
	font-size: 1.4rem;
	text-align: center;
	color: #00757a;
}

#speakers h5 {
	color: #00757a;
	font-weight: 700;
}

#divider {
	background-image: url("https://cdn-azure.searix.net/searixcdn/2024-03-mohace/1920/speaker-header-bg-up-V2.png");
	background-size: cover;
	background-position: bottom center;
	margin-top: -353px;
	height: 700px;
	margin-bottom: -300px;
}

.speaker {
	color: #007376;
  	background-color: #f5ffff;
	margin-bottom: 4rem;
	cursor: pointer;
	max-width: 250px;
	width: 100%;
  	border-radius: 0 0 4rem 0;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

.speaker h5{
  padding: 1rem;
  line-height: 1em;
}

.speaker p{
  padding: 0 1rem 1rem 1rem;
  line-height: 0.9rem;
  font-size: 0.9rem;
}

.speaker img {
	transition: 0.3s ease-in-out;
}

.speaker:hover img {
	-webkit-filter: drop-shadow(0px 0px 5px rgba(167, 216, 234, 1));
	filter: drop-shadow(0px 0px 5px rgba(167, 216, 234, 1));
}

.speaker img {
	width: 100%;
	max-width: 250px;
}

.speakermodal{
	font-size: var(--font-size-body);
}

.speakermodal .modal-header {
	border-bottom: 0px;
}

.speakermodal .modal-content {
	background: linear-gradient(180deg,rgba(208, 237, 243, 1) 20%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 1) 90%, rgba(208, 237, 243, 1) 100%);
	background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
	backdrop-filter: blur(5px);
	border: 0 !important;
}

#speakers .btn-rounded {
	padding: 0.5rem 2.5rem;
}

.profile {
	color: #007377 !important;
	padding-bottom: 10rem;
}

.profile img {
	width: 100%;
	max-width: 200px;
	/* transform:scale(1.2); */
}

.profile .name {
	font-weight: 600;
	margin-bottom: 0px;
}

.profile .description {
	font-size: var(--font-size-body);
	color: #061A1B;
}

.profile .title {
    color: #061A1B;
}

.profile label {
	font-weight: 600;
	/* border-bottom: solid 5px white; */
}

.speakermodal .modal-body .btn-prev,
.speakermodal .modal-body .btn-next {
	transition: opacity 0.5s ease;
}

.speakermodal .modal-body .btn-prev:hover,
.speakermodal .modal-body .btn-next:hover {
	opacity: 0.7;
}

/* .speakermodal i{
	color: white;
} */

.speakermodal i::before{
	font-weight: 800 !important;
}

@media (max-width: 576px) {
	#speakers .header h1 {
		padding: 80px 0px 80px 0px;
		text-align: center;
		font-size: 40px;
	}

	#speakers h3 {
		font-size: 25px;
		margin-top: 0px;
		text-align: center;
	}

	#divider {
		height: 200px;
		margin-top: -180px;
		margin-bottom: -90px;
	}

	#speakers p {
		font-size: 12px !important;
	}

	.speaker h5{
		font-size:1rem;
	}
}

@media (min-width: 576px) and (max-width: 992px) {
	#speakers .content {
		margin-top: 0;
		padding: 10px 20px 20px 10px;
	}

	#speakers h3 {
		font-size: 30px;
	}

	#speakers .header h3 {
		margin-top: 20px;
	}

	#divider {
		margin-top: -260px;
		height: 445px;
		margin-bottom: -190px;
	}
	#speakers p {
		font-size: 14px !important;
	}
}

#page-header {
	background-image: url("https://cdn-azure.searix.net/searixcdn/2025/08-hta/site/1920/page-header.png");
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center center;
  background-color: #f7f7f7;
  padding-top: 5rem;
  padding-bottom: 7rem;
}

#page-header h1 {
	margin: 0;
	margin-top: 40px;
	font-size: 2.5rem;
	color: #00757a;
	font-weight: 600;
	/* letter-spacing: 4px; */
}

/* Programme styles */

#main-conference-programme .action-button {
	font-size: 16px;
	padding: 10px 25px;
	border: 0.1rem solid rgba(black, 1);
	background-color: #007376;
	color: white;
	text-decoration: none;
	font-weight: 600;
}

#main-conference-programme .content{
	/* background-image: url("https://cdn-azure.searix.net/searixcdn/2025/08-hta/site/1920/page-header.png"); */
	/* background-size: cover;
	background-repeat: no-repeat;
	background-position: center center; */
	background-color: #87D3DF;
	padding-top: 5rem;
	padding-bottom: 7rem;
	position: relative;
}

#main-conference-programme .content::before {
	background-image: url(https://cdn-azure.searix.net/searixcdn/2025/08-hta/site/1920/main-conference-wave-top.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    content: "";
    position: absolute;
	top: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    height: 35rem;
    z-index:0;
}

#main-conference-programme .content::after {
	background-image: url(https://cdn-azure.searix.net/searixcdn/2025/08-hta/site/1920/main-conference-wave-bot.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
    content: "";
    position: absolute;
	bottom: 0;
    left: 0;
    opacity: 1;
    width: 100%;
    height: 35rem;
    z-index:0;
}

#main-conference-programme .content-day{
  background-color: white;
  border-radius: 2rem;
  padding: 2rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.4);
	position: relative;
	z-index: 1;
}

#main-conference-programme .content-day h4{
	color: #007376;
  font-weight: bold;
}

#main-conference-programme h1{
	margin-top: 7rem;
	margin-bottom: 3rem;
  font-weight:bold;
  text-align:center;
	color: #00757a;
	font-size:1.5rem;
}

#main-conference-programme table {
  background-color: #ffffff;
  border: 0;
  border-radius: 1rem;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

#main-conference-programme table th {
  padding: 1rem;
	color: #00757a;
  font-weight: bold;
}

#main-conference-programme table table {
  width: 100%;
}

#main-conference-programme table table i {
  font-size: 0.9em;
  color: black;
  font-weight: normal;
}

#main-conference-programme table td {
  font-size: 1em;
  padding: 1rem;
	color: #00757a;
  font-weight: bold;
}

#main-conference-programme table td h6 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

#main-conference-programme table td h6 p {
  font-size: 1em;
	color: #00757a;
  margin-top: 1rem;
}

#main-conference-programme table td p {
  font-size: 1rem;
	color: black;
  font-weight: normal;
}

#main-conference-programme table td b {
	color: #00757a;
  font-weight: bold;
}

#main-conference-programme .day-1 table th {
  background-color: #ffe574;
}

#main-conference-programme .day-1 table .bl{
  border-left: 0.2rem solid #fcc903;
}
#main-conference-programme .day-1 table .br{
  border-right: 0.2rem solid #fcc903;
}
#main-conference-programme .day-1 table .bt{
  border-top: 0.2rem solid #fcc903;
}
#main-conference-programme .day-1 table .bb{
  border-bottom: 0.2rem solid #fcc903;
}

#main-conference-programme .day-1 table .highlight {
	background-color: #fff2b5;
}

#main-conference-programme .day-2 table th  {
  background-color: #8eb9f0;
}

#main-conference-programme .day-2 table .bl{
  border-left: 0.2rem solid #2074d5;
}
#main-conference-programme .day-2 table .br{
  border-right: 0.2rem solid #2074d5;
}
#main-conference-programme .day-2 table .bt{
  border-top: 0.2rem solid #2074d5;
}
#main-conference-programme .day-2 table .bb{
  border-bottom: 0.2rem solid #2074d5;
}

#main-conference-programme .day-2 table .highlight {
	background-color: #d2e2f9;
}

#main-conference-programme .day-3 table th {
  background-color: #bde48b;
}

#main-conference-programme .day-3 table .bl{
  border-left: 0.2rem solid #a6d16e;
}
#main-conference-programme .day-3 table .br{
  border-right: 0.2rem solid #a6d16e;
}
#main-conference-programme .day-3 table .bt{
  border-top: 0.2rem solid #a6d16e;
}
#main-conference-programme .day-3 table .bb{
  border-bottom: 0.2rem solid #a6d16e;
}

#main-conference-programme .day-3 table .highlight {
	background-color: #e9f4d4;
}

@media (max-width: 576px) {

  #main-conference-programme .header p{
    font-size: 0.9rem;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  #main-conference-programme table th {
    font-size: 0.85rem;
  }

  #main-conference-programme table td {
    font-size: 0.65rem;
	padding: .5rem;
  }

  #main-conference-programme table td h6 {
    font-size: 0.65rem;
    margin-bottom: 1.5rem;
  }

  #main-conference-programme table td p {
    font-size: 0.65rem;
  }
  
}

/* SAC Page Styles */

#sac h1{
	margin-top: 7rem;
	margin-bottom: 3rem;
  font-weight:bold;
  text-align:center;
	color: #00757a;
	font-size:1.5rem;
}

#sac table {
  background-color: #ffffff;
  border: 0;
  border-radius: 1rem;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

#sac table th {
  padding: 1rem;
	color: #00757a;
  font-weight: bold;
}

#sac table td {
  font-size: 0.9em;
  padding: 1rem;
	color: #00757a;
  font-weight: bold;
}

#sac table td p {
	color: black;
  font-weight: normal;
  margin: 0;
}

#sac table th {
  background-color: #bbe8ee;
}

#sac table .bl{
  border-left: 0.2rem solid #92ced4;
}
#sac table .br{
  border-right: 0.2rem solid #92ced4;
}
#sac table .bt{
  border-top: 0.2rem solid #92ced4;
}
#sac table .bb{
  border-bottom: 0.2rem solid #92ced4;
}

#sac table .highlight {
	background-color: #e5f7f9;
}

@media (max-width: 576px) {
  #sac table{
    font-size: 0.75rem;
  }
}

#programme{
	position: relative;
	z-index: 1;
}

#programme .content .accordion-header button {
	font-weight: bold;
}

#programme th{
	background-color:#a9dee8;
}

/* #programme tbody:first-of-type:before {
  line-height: 1em;
  content: "\200C";
  display: block;
} */

#programme .content .preconference button,
#programme .content .preconference .action-button {
	background-color: #7f3f98;
	color: white;
	border-radius: 0%;
}

#programme .content .preconference .accordion-body {
	font-weight: 500;
}

#programme .content .preconference .table tbody tr td {
	/* background-color: #f2ebf4; */
}

#programme .content .preconference .table-content tbody tr td:first-child {
	border-right: 2px solid #f97e5b;
}

#programme .content .preconference .table-content tbody tr td:nth-child(2) .col:first-child {
	border-right: 2px solid #fbb040;
}

#programme .preconference .text-primary-1 {
	color: #f97e5b !important;
}

#programme .preconference .text-primary-2 {
	color: #fbb040 !important;
}

#programme .preconference .border-right {
	border-right: 2px solid #7f3f98 !important;
}

#programme .content .day-1 .accordion-body,
#programme .content .day-2 .accordion-body {
	font-weight: 500;
}

#programme .content .day-1 button,
#programme .content .day-2 button {
	background-color: #007377;
	color: white;
	border-radius: 0%;
}

#programme .content .day-1 .title td,
#programme .content .day-2 .title td{
	background-color: #87d3df;
	padding: 10px;
	color: #007377;
	font-weight: 600;
}

#programme .content .title::after{
	content:"@";
    display:block;
    line-height: 1rem;
    text-indent:-99999px;
}

.table-content tr td:first-child,
.custom-label {
	color: #005581 !important;
}

#programme .content .table-content tbody tr td:first-child {
	border-right: 2px solid #87d3df;
}
.border-end {
	border-right: 2px solid #87d3df !important;
	color: black !important;
}

#programme .content .table-content td {
	border: none;
}

.table-content tbody tr:nth-child(odd) td {
	background-color: #e5edf2;
}

.table-bg-odd {
	background-color: #ccdde5;
}

.custom-table tr:first-child td {
	color: white !important;
}

.badge-title {
	/* background-color: #007377; */
	color: white;
	padding: 4px 20px;
	border-top-right-radius: 15px;
	margin: 5px 0px;
	font-weight: bold;
	padding-right: 20px;
	font-family: 'Arial-Bolder';
}

#collapseFour .small-text{
	font-size: 13px;
}

.accordion-icon{
	width: auto;
	height: 4rem;
}

#programme .timetd{
	width: 15%;
}

@media (max-width: 768px) {
	#programme .content .preconference .table-content tbody tr td:nth-child(2) .col:first-child {
		border-right: none !important;
	}
	.mobile-hide {
		display: none !important;
	}
}

@media (max-width: 576px) {
	/* #programme .header h1 {
		padding: 80px 0px 80px 0px;
		text-align: center;
		font-size: 40px;
	} */
	#programme .content {	
		padding: 0px 10px 20px 10px;
	}

	#programme .content .preconference .border-preconference {
		border-right: 1px solid #7f3f98;
	}
	/* #programme .content .accordion-header button {
		font-size: 12px;
	} */
	/* #programme .content .accordion-body {
		font-size: 10px !important;
	} */
	.badge-title {
		margin-left: 0px;
	}

	#collapseFour .small-text{
		font-size: 9px;
	}

	#programme .timetd{
		width: 10%;
	}

}

@media (min-width: 576px) and (max-width: 992px) {
	#programme .content {
		padding: 10px 20px 20px 10px;
	}
}

/* Coming Soon Styles */

#coming-soon .header h1{
	padding: 80px 0px 100px;
	text-align: center;
	color: #00757a;
	font-weight: 700;
	font-size: 64px;
}

#coming-soon {
	position: relative;
	z-index: 1;

}

#coming-soon .content {
	padding: 80px 0px;
	color: black;
	margin-bottom: 50px;
}

#coming-soon a {
	color: #007376;
}

#coming-soon span {
	color: #f26322;
}

@media (max-width: 576px){
	#coming-soon .header h1{	
		padding: 80px 0px 20px;
	}

	#coming-soon .content {
		padding: 10px;
	}
}

/* Abstract Page Styles */

#call-for-abstracts-page h1{
	margin-top: 7rem;
	margin-bottom: 3rem;
  font-weight:bold;
	color: #00757a;
}

#call-for-abstracts-page .submission{
	background-image: url("https://cdn-azure.searix.net/searixcdn/2025/08-hta/site/1920/about-bg.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
  padding-bottom: 10rem;
}

#call-for-abstracts-page li{
	font-size: 1rem;
}

#call-for-abstracts-page b{
  font-weight:bold;
	color: #00757a;
}

#call-for-abstracts-page .abstracts-card {
	min-height: 40rem;
	height: 100%;
}

#call-for-abstracts-page .abstracts-icon {
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
  width: 100px;
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#call-for-abstracts-page .abstracts-icon img {
  width: 80%;
  height: 80%;
}

#call-for-abstracts-page h4 {
  font-size: 1.5rem;
  color: #00757a;
  font-weight: bold;
}

#call-for-abstracts-page h6 {
  font-size: 1.5rem;
  color: #00757a;
}

#call-for-abstracts-page p {
  font-size: 1rem;
}

#call-for-abstracts-page .guidelines{
	background-image: url("https://cdn-azure.searix.net/searixcdn/2025/08-hta/site/1920/about-bg.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
  padding-bottom: 10rem;
}

#call-for-abstracts-page .eligibility li,
#call-for-abstracts-page .guidelines li {
  font-size: 1.2rem;
  padding-bottom: 1rem;
}


#call-for-abstracts-page .eligibility a{
  color: #007376;
  font-weight: bold;
}

#call-for-abstracts-page .guidelines b {
  color: #1c73d6;
}

#call-for-abstracts-page .criteria .criteria-box {
	padding: 3rem 1rem;
	border-radius: 5rem;
	background-color: #f0f9fe;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
	margin-bottom: 3rem;
  }
  
  @media (min-width: 768px) {
	#call-for-abstracts-page .criteria .criteria-box {
	  padding: 3rem 3rem;
	}
  }

#call-for-abstracts-page .criteria h6 {
  font-weight: bold;
}

#call-for-abstracts-page table {
  background-color: #ffffff;
  border: 0;
  border-radius: 1rem;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
}

#call-for-abstracts-page table th {
  padding: 1rem;
	color: #00757a;
  background-color: white;
  font-weight: bold;
}

#call-for-abstracts-page table td {
  font-size: 0.9em;
  padding: 1rem;
	color: #00757a;
  font-weight: bold;
}

#call-for-abstracts-page table td p,
#call-for-abstracts-page table td li {
	color: black;
  font-weight: normal;
  margin: 0;
}

#call-for-abstracts-page table .bl{
  border-left: 0.2rem solid #92ced4;
}
#call-for-abstracts-page table .br{
  border-right: 0.2rem solid #92ced4;
}
#call-for-abstracts-page table .bt{
  border-top: 0.2rem solid #92ced4;
}
#call-for-abstracts-page table .bb{
  border-bottom: 0.2rem solid #92ced4;
}

#call-for-abstracts-page table .highlight {
	background-color: #e5f7f9;
}

#call-for-abstracts-page .submission-process{
  padding-bottom: 10rem;
}

#call-for-abstracts-page .submit{
	background-image: url("https://cdn-azure.searix.net/searixcdn/2025/08-hta/site/1920/about-bg.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
  padding: 10rem 0;
}

#call-for-abstracts-page .submit .action-button {
	font-size: 15px;
	padding: 10px 25px;
	border: 0.1rem solid rgba(black, 1);
  background-color: #007376;
	color: white;
	text-decoration: none;
	font-weight: 500;
}

#call-for-abstracts-page .notification{
	background-image: url("https://cdn-azure.searix.net/searixcdn/2025/08-hta/site/1920/globe.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
  padding-bottom: 10rem;
}

#call-for-abstracts-page .enquiries{
	background-image: url("https://cdn-azure.searix.net/searixcdn/2025/08-hta/site/1920/about-bg.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
  padding: 10rem 0;
}

#call-for-abstracts-page .submit-final{
	background-image: url("https://cdn-azure.searix.net/searixcdn/2025/08-hta/site/1920/abstract-dark-wave.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
  padding: 5rem 0;
  background-color:#007377;
}

#call-for-abstracts-page .submit-final .action-button {
	font-size: 15px;
	padding: 10px 25px;
	border: 0.1rem solid rgba(black, 1);
  background-color: white;
	color: #007376;
	text-decoration: none;
	font-weight: bold;
}

#abstract {
	font-size: 15px;
	position: relative;
	z-index: 1;
}

#abstract .header h2 {
	color: #00757a;
	font-weight: 700;
	padding: 0px 0px 20px 0px;
}

#abstract .submission-form {
	background-image: url("https://cdn-azure.searix.net/searixcdn/2024-03-mohace/1920/abstract-form.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	padding-left: 120px;
	padding-right: 120px;
	color: white;
	font-weight: 500;
}

#abstract .submission-form h2 {
	font-weight: 700;
	padding: 50px 0px 0px 0px;
}

#abstract .submission-form a {
	text-decoration: none;
	color: #bae9eb;
}

#abstract .submission-form p {
	padding: 0px 0px 20px 0px;
}

#abstract .submission-form .action-btn {
	font-size: 16px;
	padding: 10px 20px;
	border: 0.5px solid black;
	background-image: linear-gradient(
		to bottom,
		#cdf4fb 20%,
		#e7f6f9 50%,
		#cdf4fb 80%
	);
	color: #196865;
	text-decoration: none;
	font-weight: 500;
	margin-bottom: 30px;
}


#abstract .abstract-themes {
	padding-left: 120px;
	padding-right: 120px;
	padding-bottom: 50px;
	font-weight: 500;
}

#abstract .abstract-themes > h2 {
	font-weight: 700;
	padding: 30px 0px 15px 0px;
	color: #00757a;
}

#abstract .accordion-header button {
	background-color: #87d3df;
	border-radius: 0;
	font-weight: 700;
	color: #00757a;
}

#abstract .accordion-body h3 {
	margin-top: 10px;
	font-size: 18px;
	font-weight: 600;
	color: #00757a;
}

#abstract .accordion-body {
	font-weight: 400;
	border-right: 1px solid #87d3df;
	border-left: 1px solid #87d3df;
}

#abstract .table tr td {
	padding: 15px 40px;
	color: #00757a;
}

#abstract .table tbody tr:nth-child(odd) td {
	background-color: #e5edf2;
}

#abstract .table tbody tr:nth-child(even) td {
	background-color: #feefe8;
}

#abstract .table {
	border-collapse: collapse;
}

#abstract .table td {
	border: 3px solid #87d3e1;
}

#abstract .table td:first-child {
	border-left: none;
	border-bottom: none;
	border-top: none;
}

#abstract .table td:last-child {
	border: none;
}

#abstract .abstract-themes a {
	text-decoration: none;
	color: #00757a;
}

#abstract .abstract-themes .custom-list {
	list-style-type: none;
}

#abstract .abstract-themes .custom-list li:before {
	content: "\2022";
	color: #87d3e1;
	display: inline-block;
	font-size: 24px;
	width: 15px;
	height: 24px;
}

.accordion {
	--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='white'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

@media (max-width: 576px) {
	#abstract .submission-form,
	#abstract .abstract-themes {
		padding: 0px 20px 20px 20px;
		height: auto;
	}

	#abstract .abstract-themes > h2 {
		padding: 30px 0px 15px 0px;
	}

	#abstract .table tr td {
		padding: 10px;
		vertical-align: middle;
	}

	#abstract .abstract-themes .custom-list {
		padding-left: 1em;
	}

	#abstract .submission-form h2 {
		padding: 50px 0px 0px 0px;
	}

	#abstract .submission-form .action-btn {
		font-size: 14px;
		padding: 8px 10px;
		margin-bottom: 50px;
	}

	#abstract .submission-form p {
		padding: 0;
	}

	#call-for-abstracts-page .notification {
		background-size: 97%;
    	background-position: bottom right;
	}

	#call-for-abstracts-page table th{
		padding: .5rem;
		font-size: .9em;
	}

	#call-for-abstracts-page table td{
		padding: .5rem;
		font-size: .9em;
	}

	#call-for-abstracts-page table td ol, ul{
		padding-left: 1rem;
	}

	#call-for-abstracts-page table td p, #call-for-abstracts-page table td li{
		font-size: .9em;
	}
}

@media (min-width: 576px) and (max-width: 992px) {
	#abstract .submission-form,
	#abstract .abstract-themes {
		padding-left: 50px;
		padding-right: 50px;
		padding-bottom: 50px;
		height: auto;
	}


	#abstract .abstract-themes > h2 {
		padding: 30px 0px 15px 0px;
	}

	#abstract .table tr td {
		padding: 10px;
		vertical-align: middle;
	}

	#abstract .abstract-themes .custom-list {
		padding-left: 1em;
	}

	#abstract .submission-form h2 {
		padding: 50px 0px 0px 0px;
	}

	#abstract .submission-form .action-btn {
		font-size: 14px;
		padding: 8px 10px;
		margin-bottom: 50px;
	}

	#abstract .submission-form p {
		padding: 0;
	}
}

/* Getting Here Page Styles */
#getting-here {
	font-size: 15px;
	z-index: 1;
	position: relative;
}

#getting-here h1{
	margin-top: 7rem;
	margin-bottom: 3rem;
	font-weight:bold;
	text-align:center;
	color: #00757a;
}

#getting-here h4{
	font-weight:bold;
	text-align:center;
	color: #00757a;
}

#getting-here p{
  font-size:1.2rem;
}

#getting-here .getting-here-map,
#getting-here .getting-here-transport {
	padding-bottom: 10rem;
}

.event-map-image {
	width: 100%;
	max-width: 900px; /* Adjust this value to suit your design */
	height: auto;
	margin: 0 auto; /* Centers the image on larger screens */
  }

#getting-here .getting-here-accom{
	background-image: url("https://cdn-azure.searix.net/searixcdn/2025/08-hta/site/1920/about-bg.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	padding-bottom: 10rem;
}

#getting-here .getting-here-card{
    text-align: left !important;
    min-height: 20rem;
    height: 100%;
    padding: 30px !important;
}

#getting-here .getting-here-card a{
    word-wrap: break-word;
}

#getting-here .getting-here-card h4{
  text-align: left !important;
}

#getting-here .getting-here-card p {
  font-size: 1rem;
}

#getting-here .getting-here-accom-card{
  min-height: 25rem;
  height:100%;
  display: flex;
  flex-direction: column;
  align-items: start;
}

#getting-here .getting-here-accom-card{
  background-color: white;
}

#getting-here .getting-here-accom-card h4, 
#getting-here .getting-here-accom-card h6, 
#getting-here .getting-here-accom-card p{
  text-align: left !important;
}

#getting-here .getting-here-accom-card h6 {
  font-size: 1.2rem;
  color: #00757a;
}

#getting-here li {
  font-size: 1.1rem;
}

#getting-here b {
  color: #007376;
}

#getting-here .getting-here-accom-card .action-button {
  /* position: absolute; */
  bottom: 2rem;
	font-size: 15px;
	padding: 10px 25px;
	border: 0.1rem solid rgba(black, 1);
	/* background-image: linear-gradient(
		to bottom,
		#cdf4fb 20%,
		#e7f6f9 50%,
		#cdf4fb 80%
	); */
  background-color: #007376;
	color: white;
	text-decoration: none;
	font-weight: 500;
	margin-top: auto;
}

#getting-here .getting-here-pill{
	width: 100%;
	background-color: white;
	padding: 1rem 1.5rem 1rem 5rem;
	border-radius: 3rem;
	box-shadow: 2px 4px 5px rgba(0, 0, 0, 0.4) !important;
	color: #00757a;
	font-size: 1.2rem;
	font-weight: bold;
	margin: 1.5rem 0;
	min-height: 115px;
}

#getting-here .getting-here-pill a{
    width: 5rem;
    min-width: 5rem;
}

#getting-here .header h2 {
	color: #f26322;
	text-align: center;
	padding: 0px 0px 20px 0px;
}

#getting-here .header p {
	text-align: center;
}

#getting-here .public-transportation,
#getting-here .car-taxi {
	background-color: #dbf3f1;
	padding-left: 120px;
	padding-right: 120px;
}

#getting-here .public-transportation h2,
#getting-here .car-taxi h2 {
	padding: 40px 0px 20px 0px;
	color: #00757a;
	font-weight: 600;
}

#getting-here .public-transportation h4,
#getting-here .car-taxi h4 {
	padding: 10px 0px 0px 0px;
	color: #f26322;
	font-weight: 600;
}

#getting-here .car-taxi .custom-list {
	list-style-type: none;
	margin-left: -20px;
}

#getting-here .car-taxi .custom-list li:before {
	content: "\2022";
	color: #00757a;
	display: inline-block;
	font-size: 24px;
	width: 30px;
	height: 30px;
}

@media (max-width: 576px) {
	#getting-here .header h1 {
		padding: 80px 0px 80px 0px;
		text-align: center;
		font-size: 40px;
	}

	#getting-here .content {
		margin-top: 60px;
	}

	#getting-here .public-transportation,
	#getting-here .car-taxi {
		padding: 0px 20px;
	}

	#getting-here .public-transportation h2,
	#getting-here .car-taxi h2 {
		padding: 40px 0px 0px 0px;
		font-size: 20px;
		font-weight: bold;
	}

	#getting-here .getting-here-pill{
		padding: 1rem 1.5rem 1rem 2rem;
	}
}

@media (min-width: 576px) and (max-width: 992px) {
	#getting-here .public-transportation,
	#getting-here .car-taxi {
		padding: 0px 50px;
	}

	#getting-here .public-transportation h4,
	#getting-here .car-taxi h4 {
		padding: 0;
	}
}

/* Register Page Styles */
#register {
	z-index: 1;
	position: relative;
}

#register .header h2 {
	color: #00757a;
	font-weight: 600;
}

#register .content {
	padding: 20px 200px;
}

#register p {
	font-size: 16px;
	font-weight: 500;
}

#register .pre-conference,
#register .conference {
	text-align: left;
	padding: 20px 200px;
	font-size: 16px;
}

#register .pre-conference h5 {
	font-weight: bold;
	color: white;
	padding: 10px 22px 3px 22px;
}


#register .pre-conference .content-2{
	background-color: #f2ebf4;
	padding: 40px;
	color: black;
}

#register .pre-conference .card-header{
	background-color: #7f3f98;
}

#register .conference .card-header{
	background-color: #00757a;
}

#register .table td:first-child {
	border-left: none;
	border-bottom: none;
	border-top: none;
}

#register .table td:last-child {
	border: none;
}

#register .pre-conference .btn-custom {
	background: #7f3f98;
	color: white;
	font-size: 14px;
	font-weight: 500;
}

#register .conference h5 {
	font-weight: bold;
	color: white;
	padding: 10px 22px 3px 22px;
}

#register .conference .content-2{
	background-color: #E5F1F1;
	color: black;
	padding: 40px;
}


#register .conference .btn-custom {
	background: #00757a;
	color: white;
	font-size: 14px;
	font-weight: 500;
}

#register .note{
	text-align: left;
	padding: 20px 200px;
	font-size: 16px;
}

@media (max-width: 576px) {
	#register .header h1 {
		padding: 80px 0px 80px 0px;
		text-align: center;
		font-size: 40px;
	}

	#register .content,
	#register .pre-conference,
	#register .conference, #register .note {
		padding: 20px;
	}

	#register .conference .table tr:nth-child(odd) td,
	#register .conference .table tr:nth-child(even) td,
	#register .conference .table tr:nth-child(3) td {
		padding: 10px;
	}

	#register .pre-conference .table tr:nth-child(even) td,
	#register .pre-conference .table tr:nth-child(odd) td {
		padding: 10px;
	}
}

@media (min-width: 576px) and (max-width: 992px) {
	#register .content,
	#register .pre-conference,
	#register .conference,
	#register .note {
		padding: 0px 50px;
	}
}

#home_comingsoon {
	font-family: "Arial";
	background-image: url("https://cdn-azure.searix.net/searixcdn/2024-03-mohace/comingsoon/hero-banner.png");
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}

#home_comingsoon .header {
	padding-top: 100px;
}

#home_comingsoon img.ace-logo {
	width: 15%;
}

#home_comingsoon h1 {
	margin-top: 50px;
	font-size: 90px;
	color: #017478;
	font-weight: bold;
	letter-spacing: 5px;
}

#home_comingsoon .hero-date span {
	padding: 0 20px;
	border-radius: 40px;
	border: 1px solid #b3d9e2;
	background: linear-gradient(#fffdff, #f4feff, #e4f7fe);
	color: #017478;
	font-size: 50px;
	letter-spacing: 4px;
}

#home_comingsoon .content {
	font-family: Arial, Helvetica, sans-serif;
	color: #444444;
}

#home_comingsoon .content h2 {
	font-weight: bold;
	color: #017478;
	text-transform: uppercase;
	font-size: 50px;
	margin-top: 350px;
}

#home_comingsoon .content h3 {
	font-weight: bold;
	color: #017478;
	font-size: 40px;
}

#home_comingsoon .content p {
	font-weight: 500;
	font-size: 27px;
}

#home_comingsoon .content a {
	color: #017478;
}

@media (max-width: 576px) {
	#home_comingsoon .header {
		padding: 50px 20px 0px 20px;
	}
	#home_comingsoon img.ace-logo {
		width: 45%;
	}

	#home_comingsoon h1 {
		margin-top: 20px;
		font-size: 45px;
		letter-spacing: 2px;
	}

	#home_comingsoon .hero-date span {
		font-size: 20px;
	}

	#home_comingsoon .content h2 {
		font-size: 30px;
		margin-top: 50px;
	}

	#home_comingsoon .content h3 {
		font-size: 20px;
	}

	#home_comingsoon .content p {
		font-size: 16px;
	}
}

@media (min-width: 576px) and (max-width: 992px) {
	#home_comingsoon .header {
		padding: 50px 20px 0px 20px;
	}
	#home_comingsoon img.ace-logo {
		width: 25%;
	}

	#home_comingsoon h1 {
		margin-top: 20px;
		font-size: 50px;
		letter-spacing: 3px;
	}

	#home_comingsoon .hero-date span {
		font-size: 20px;
	}

	#home_comingsoon .content h2 {
		font-size: 30px;
		margin-top: 150px;
	}

	#home_comingsoon .content h3 {
		font-size: 20px;
	}

	#home_comingsoon .content p {
		font-size: 16px;
	}
}

#speakers .header,
#programme .header,
#abstract .header,
#getting-here .header,
#register .header,
#coming-soon .header {
	padding-left: 120px;
	padding-right: 120px;

}

#programme .header h1,
#speakers .header h1,
#abstract .header h1,
#getting-here .header h1,
#register .header h1{
	padding: 80px 0px 100px;
	text-align: center;
	color: #00757a;
	font-weight: 700;
	font-size: 64px;
}

@media (max-width: 576px) {
	#programme .header,
	#speakers .header,
	#abstract .header,
	#getting-here .header,
	#register .header , #coming-soon .header {
		padding: 10px 20px 20px 20px;
	}

	#programme .header h1,
	#abstract .header h1,
	#getting-here .header h1,
	#register .header h1,
	#speakers .header h1{
		padding: 60px 0px 80px 0px;
		font-size: 45px;
	}

	#abstract .header h1,
	#register .header h1,
	#getting-here .header h1 {
		padding: 25px 0px 50px 0px;
		font-size: 51px;
	}
	#coming-soon .header h1{
		padding: 25px 0px 90px 0px;
		font-size: 51px;
	}
}

@media (min-width: 576px) and (max-width: 992px) {
	#programme .header,
	#speakers .header,
	#abstract .header,
	#getting-here .header,
	#register .header {
		padding: 10px 50px 20px 50px;
	}

	#programme .header h1,
	#abstract .header h1,
	#getting-here .header h1,
	#register .header h1,
	#speakers .header h1 {
		padding: 50px 0px 80px 0px;
		font-size: 70px;
	}

	#abstract .header h1 {
		font-size: 55px;
	}
}

.top-bg {
    position: absolute;
    width: 100%;
    height: 700px;
    background-image: url("https://cdn-azure.searix.net/searixcdn/2024-03-mohace/1920/top-title-bg.png");
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    z-index: -1;
}

.session-table td{
	padding: 0.5rem 1rem !important;
}

.field-center{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.countdown-box {
    display: flex;
    background-color: #2d7d7d;
    color: white;
    font-size: .7rem;
    padding: 10px 5px;
    border-radius: 5px;
    min-width: 25px;
    text-align: center;
    justify-content: center;
}
.digit-container {
	display: flex;
	gap: 5px;
}

.digit-label{
	font-size:.7rem;
}

section{
	font-size: var(--font-size-body);
}

section h1, section h2, section h3, section h4, section h5, section h6{
	/* color: #007376; */
	color: rgb(var(--bs-primary-rgb));
	font-weight: bold;
}

section h2{
	font-size: var(--font-size-sect-title);
}

section h4{
	font-size: var(--font-size-sect-subtitle);
}

.globe-prop{
	background-image: url(https://cdn-azure.searix.net/searixcdn/2025/08-hta/site/1920/about-globe.png);
	background-position-x: -10rem;
    background-position-y: center;
    background-repeat: no-repeat;
    background-size: 55rem;
}

@media (max-width: 992px) {
	.globe-prop{
		background-image: url('');
	}
}

.timeline {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: white;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
}

.timeline-container {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-container::after {
  content: '';
  position: absolute;
  width: 25px;
  height: 25px;
  right: -13px;
  background-color: white;
  border: 4px solid white;
  top: 35px;
  border-radius: 50%;
  z-index: 1;
}

.left { left: 0; }
.right { left: 50%; }

.left::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  right: 30px;
  /* border: medium solid white; */
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent white;
}

.right::before {
  content: " ";
  height: 0;
  position: absolute;
  top: 22px;
  width: 0;
  z-index: 1;
  left: 30px;
  /* border: medium solid white; */
  border-width: 10px 10px 10px 0;
  border-color: transparent white transparent transparent;
}

.right::after { left: -13px; }

.left .content{
	text-align: right;
}

.right .content{
	text-align: left;
}

.timeline .content {
  padding: 20px 30px;
  /* background-color: white; */
  position: relative;
  border-radius: 6px;
}

@media screen and (max-width: 600px) {
  .timeline::after { left: 31px; }

  .timeline-container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .timeline-container::before {
    left: 60px;
    /* border: medium solid white; */
    border-width: 10px 10px 10px 0;
    border-color: transparent white transparent transparent;
  }

  .left::after, .right::after { left: 15px; }
  .right { left: 0%; }

  .timeline .content {
	text-align: left !important;
  }
}

.timeline-container:nth-child(3n + 1)::after {
  background-color: #1C73E3; /* Blue */
}

.timeline-container:nth-child(3n + 2)::after {
  background-color: #FDCF01; /* Yellow */
}

.timeline-container:nth-child(3n + 3)::after {
  background-color: #88CD28; /* Green */
}

.wave-top{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 0;
}

.wave-top img{
	width: 100%;
	height:auto;
}

.wave-bottom{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 0;
}

.wave-bottom img{
	width: 100%;
	height:auto;
}

.blue-bg{
	background-color: #87D3DF;
}

.grey-bg{
	background-color: #87D3DF;
}

.text-grey{
	color: #007377;
}

.marker-grey::marker{
	color: #007377;
	font-weight: bold;
}

.action-button {
	font-size: 15px;
	padding: 10px 25px;
	border: 0.1rem solid rgba(black, 1);
	background-color: #007376;
	color: white;
	text-decoration: none;
	font-weight: 500;
}

.what-we-do .card{
	border-radius: 20px !important;
}

.icon-frame{
	aspect-ratio: 1 / 1;
    width: 5rem;
	display: flex;
	justify-content: center;
	align-items: center;
}

.btn.grey-bg:hover{
	background-color:#87D3DF;
}

.radius-l-t{
	border-top-left-radius: 1rem;
}

.radius-r-t{
	border-top-right-radius: 1rem;
}

.content.accordion{
	--bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
	--bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='black'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.content .accordion-button{
	cursor: pointer;
}

.accordion-button:not(.collapsed){
	/* background-color: white !important; */
	box-shadow: none !important;
}

.select2-container--default{
	font-size: 16px;
}

p.session-time{
	color: #186080;
    font-weight: bold;
    margin-bottom: 0;
}

#now-open{
	background-image: url("https://cdn-azure.searix.net/searixcdn/2025/05-mohavbc/microsite/view-abstract-details-bg.png");
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.page-banner{
	min-height:30vh;
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}

.page-banner h1{
	font-size: var(--font-size-page-title);
}

.section-image{
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
}

.speaker-card{
	cursor: pointer;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: start;
	max-width: 20rem;
	box-sizing: border-box;
}

.speaker-card .name {
	width: 100%;
	text-align: center;
}
.speaker-card .name h3 {
	word-wrap: break-word; 
	overflow-wrap: break-word;
	font-size: var(--font-size-para-title);
	margin-bottom: 0;
}

.speaker-card .image{
	max-width: 16rem;
	min-width: 8rem;
}

.speaker-card .profile{
	display: none;
}

@media screen and (max-width: 600px) {
	.speaker-card .name h3 {
		font-size: 1.2rem;
	}
}

.speaker-title-bg{
	position: relative;
	overflow: visible;
}

.speaker-title-bg::before{
    content: "";
    position: absolute;
    top: -1rem;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100%;
    background-image: url(https://cdn-azure.searix.net/searixcdn/2025/05-mohavbc/microsite/speaker-header-bg.png);
    background-size: 80rem;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
	transform: scale(1.3);
}

.speakermodal .btn-close {
	filter: invert(1) grayscale(100%) brightness(200%);
}

.stacked-bg div:nth-child(n+2){
	position: relative;
	-webkit-mask-image: linear-gradient(to bottom, transparent, black 20%, black 85%, transparent);
	mask-image: linear-gradient(to bottom, transparent, black 20%, black 85%, transparent);
}

.stacked-bg div:first-child {
	position: relative;
	-webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
	mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

.abstract-table{
	background-color: #eaeded;
	border: none;
	min-width: 400px;
}

.abstract-table td{
	background-color: transparent;
	color:inherit;
	border: none;
}

.select2-container--default .select2-selection--single{
	background-color: #D7F5FF !important;
    color: black;
    border: 0 !important;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
	height: 100% !important;
	min-height: 34px;
	border-radius: 0 !important;
}

.select2-selection__rendered{
	line-height: 34px !important;
}

.select2-selection__clear{
	line-height: 34px !important;
}

.btn-custom-bg{
	border: 2px solid white;
	background: linear-gradient(180deg, rgba(208, 237, 243, 1) 0%, rgba(230, 243, 249, 1) 50%, rgba(208, 237, 243, 1) 100%)
}

#abstractCategoriesAccordion .accordion-button{
	background:#A4DBE8; 
	color:#175a7a; 
	font-weight:600;
}

.speaker-show-btn{
	border-radius: 24px;
    padding: 12px 24px;
    text-transform: uppercase;
    box-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

#register-now .register-button{
	font-size: var(--font-size-cta);
}

.btn-shadow{
	box-shadow: 1px 2px 4px rgba(0, 0, 0, 0.5);
}

.mobile-nowrap{
	white-space: nowrap;
}

.text-lg-nowrap{
	white-space: nowrap;
}

@media (max-width: 768px) {
	.mobile-nowrap{
		white-space: normal;
		display: block;
	}
}

@media (max-width: 1200px) {
	.text-lg-nowrap{
		white-space: wrap;
	}
}

.preconference .programme-table td{
	background-color: #fff8f6 !important;
}

.preconference {
	background-color: #fff8f6 !important;
}

#email-domain:focus{
	border: 0;
	outline: none;
}

.modal-open{
	overflow: auto !important;
	padding-right: 0 !important;
}

.btn-checkout{
	background-color: #b9d1dd;
	border: solid 2px #96b0c7;
	font-weight: bold;
	border-radius: 6px !important;
}

/* .required-asterisk{
	font-weight: normal !important;
	font-style: italic !important;
} */

#home-pre-conf{
	background-size:cover;
	background-position: center;
	background-repeat: no-repeat;
	background-image: url("https://cdn-azure.searix.net/searixcdn/2025/05-mohavbc/microsite/home-pre-conf-bg.png");
}

.speaker-card .title p{
	margin-bottom: 0;
	color: #6d7378;
}

.speakermodal .title p{
	margin-bottom: 0;
	color: #6d7378;
}

.speakermodal .speaker-session{
	display: none;
}