*{
    margin:0;
    padding:0;
    border:none;
    outline:0;
    box-sizing:border-box
}

:root {
--teal: #1d3541;
--teal-hover: #21495c;
--gold: #d6a762;
--gold-hover: #c6842e ;
--dark-blue: #0e181d;
--dark-blue-hover: #000;
--grey: #646d82;
--grey-hover: #444b5b;
--light-blue: #d7e0e5;
--light-gold: #edd095;
--light-grey:  #F9F9FA;
	
}




html{
    scroll-behavior:smooth;
	      scroll-padding-top: 110px; /* Adjust to the height of your navbar */

}
body{
    background:#fff;
    -webkit-font-smoothing:antialiased;
    -moz-font-smoothing:antialiased
}



a {
    text-decoration:none;
    cursor:pointer !important
}

a:focus,a:hover,a:visited,button{
    text-decoration:none;
    outline:0!important;
    cursor:pointer !important
}

p{
    font-size:17px;
	padding-bottom: 1.3rem

}

h3,h4,h5,h6,p,ul,li {

    font-family: proxima-nova, sans-serif;
    position:relative;
	 margin:0;

}

h1,h2 {
    font-family: proxima-nova, sans-serif;
	font-style: normal;
	position:relative;
	 margin:0;

}

h2 {
    text-align: left;
    font-size: clamp(2.3rem, 4.5vw, 2.8rem); /* Slightly bigger than h3 */
    padding-bottom: 1rem;
    color: var(--gold);
    font-weight: 700;
    line-height: 1.1; /* Multiplies with font size */
}


h3 {
    text-align: center;
    font-size: clamp(2.1rem, 4vw, 2.6rem); /* min, ideal, max */
    padding-bottom: 1rem;
    color: var(--teal);
    font-weight: 400;
    line-height: 1.1; /* Multiplies with font size */
}



h4 {
	
font-size: 1.5em;
	
}

h6 {
	
	font-size: 1.4em;
	padding-bottom: 0.5rem
}

.hide {
  display:none !important;
}

.spaced-heading {
	
	letter-spacing: 0.2rem
	
}

.page-wrapper{
    position:relative;
    margin:0 auto;
    width:100%;
    min-width:300px
}


.mw-1600 {

  max-width: 1600px;
}

.text-teal-imm {

  color: var(--teal);

}

.bg-teal-imm {

  background-color: var(--teal);
  
}

.link-teal-imm {

  color: var(--teal);


}

.link-teal-imm:hover {

  color: var(--teal-hover);
	text-decoration: underline


}



.text-gold-imm {

  color: var(--gold);


}

.bg-gold-imm {

  background-color: var(--gold);

}

.link-gold-imm {

  color: var(--gold);


}

.link-gold-imm:hover {

  color: var(--gold-hover);
	text-decoration: underline


}


.text-dark-imm {

  color: var(--dark-blue);


}

.bg-dark-imm {

  background-color: var(--dark-blue);

}


.link-dark-imm {

  color: var(--dark-blue);


}

.link-dark-imm:hover {

  color: var(--dark-blue-hover);
	text-decoration: underline

}




.bg-lightOrgange-imm {
	
	  background-color: var(--light-gold);

}

.teal-link{
    color:var(--teal);
    font-size:1em
}
.teal-link:hover{
    text-decoration:underline;
    color:#154d8f
}
.white{
    color:#fff!important
}
.grey-bg{
    background:#2d3238;
   
}
.lt-grey-bg{
    background:#5e5e5e;
    background:-moz-linear-gradient(top,#5e5e5e 0,#545454 100%);
    background:-webkit-linear-gradient(top,#5e5e5e 0,#545454 100%);
    background:linear-gradient(to bottom,#5e5e5e 0,#545454 100%)
}

.gold-bg{
    background:#f2ad3e;
    background:-moz-linear-gradient(top,#f2ad3e 0,#f3923d 100%);
    background:-webkit-linear-gradient(top,#f2ad3e 0,#f3923d 100%);
    background:linear-gradient(to bottom,#f2ad3e 0,#f3923d 100%)
}
.xl-grey-bg-1{
    background:#c2d2e7;
    background:-moz-linear-gradient(148deg,#c2d2e7 0,#e4f0ff 50%,#c2d2e7 100%);
    background:-webkit-linear-gradient(148deg,#c2d2e7 0,#e4f0ff 50%,#c2d2e7 100%);
    background:linear-gradient(148deg,#c2d2e7 0,#e4f0ff 50%,#c2d2e7 100%)
}
.xl-grey-bg-2{
    background:#7c9fcd;
    background:-moz-linear-gradient(148deg,#7c9fcd 0,#c2d2e7 50%,#7c9fcd 100%);
    background:-webkit-linear-gradient(148deg,#7c9fcd 0,#c2d2e7 50%,#7c9fcd 100%);
    background:linear-gradient(148deg,#7c9fcd 0,#c2d2e7 50%,#7c9fcd 100%)
}



/*--BUTTON STYLES--*/

.btn-gold-solid, .btn-teal-solid, .btn-dark-solid, .btn-grey-solid, .btn-gold-outline, .btn-blue-outline, .btn-dark-outline, .btn-grey-outline, .btn-teal-outline{
	text-decoration: none;
  font-size: .96rem;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  border-radius: 0.2rem;
  transition: background-color 0.15s ease-in-out;
	min-width:300px
}



.btn-gold-solid, .btn-teal-solid, .btn-dark-solid, .btn-grey-solid {
	color: white;
	border: none;
	  padding: 1.25rem 2.1875rem;

}

.btn-gold-solid:hover, .btn-teal-solid:hover, .btn-dark-solid:hover, .btn-grey-solid:hover {
	color: white;
}


.btn-gold-solid {
	background-color: var(--gold);
}

.btn-gold-solid:hover {
  background-color: var(--gold-hover);
	
}

.btn-teal-solid {
	background-color: var(--teal);
	border: none;
}

.btn-teal-solid:hover {
  background-color: var(--teal-hover);
}

.btn-dark-solid {
	background-color: var(--dark-blue);
	border: none;
}

.btn-dark-solid:hover {
  background-color: var(--dark-blue-hover);
}

.btn-grey-solid{
	
	background-color: var(--grey);
	border: none;
}

.btn-grey-solid:hover{
	
	background-color: var(--grey-hover);
	border: none;
}

.btn-gold-outline, .btn-blue-outline, .btn-dark-outline {
	color: black;
  padding: 1rem 2.1875rem;

}

.btn-teal-outline {
	
	color: white;
	  padding: 1rem 2.1875rem;

		
}

.btn-teal-outline:hover {
	
	color: var(--gold);
	border: 2px solid var(--teal)
}

.btn-gold-outline:hover, .btn-blue-outline:hover, .btn-dark-outline:hover {
	color: white;
}

.btn-gold-outline {
	
	border: 2px solid var(--gold)
	
}


.btn-gold-outline-proposal {
	
	border: 2px solid var(--gold);
	letter-spacing: 0.02rem;
	font-size: 1.4em;
	font-weight: 600;
	padding:15px 35px
}

.btn-gold-outline-proposal:hover {
	
	border: 2px solid var(--teal);
	background: var(--teal);
	color: var(--gold)
}



.btn-gold-outline:hover {
  background-color: var(--gold-hover);
	
}

.btn-blue-outline {
	border: 2px solid var(--teal);
}

.btn-blue-outline:hover {
  background-color: var(--teal-hover);
}

.btn-dark-outline {
	border: 2px solid var(--dark-blue);
}

.btn-teal-outline {
	
	border: 2px solid white
	
}



.btn-dark-outline:hover {
  background-color: var(--dark-blue-hover);
}

.btn-sponsor{
	text-decoration: none;
  font-size: 15px !important;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  border-radius: 0.2rem;
	padding:0.6rem;
		margin:0.6rem;
  transition: background-color 0.15s ease-in-out;
	color: white;
	max-width: 240px

}

.btn-sponsor:hover{
	
	color: white;

}

.btn-sponsor-schedule{
	text-decoration: none;
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  border-radius: 0.2rem;
	padding:0.4rem 0.6rem;
		margin:0.8rem 0 0;
  transition: background-color 0.15s ease-in-out;
	color: black;
border: 2px solid var(--gold)
}

.btn-sponsor-schedule:hover{
		color: white;
border: 2px solid var(--gold);
	background:  var(--gold)
}

.fx-width-btn330 {
	width:330px
}

.social-icon-one{
    position:relative;
	padding-left: 0px;

}


.social-icon-one li{
    position:relative;
    margin-right:5px;
    display:inline-block ;
    height:30px ;
    width:30px ;
    border:1px solid #888;
    border-radius:50%;
    text-align:center;
}
.social-icon-one li a{
    position:relative;
    font-size:13px ;
    color:#EAE2EE ;
    line-height:29px;
    transition:.3s ;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    -ms-transition:.3s;
    -o-transition:.3s
}
.social-icon-one li a:hover{
    color:#fff
}
.preloader{
    position:fixed;
    left:0;
    top:0;
    width:100%;
    height:100%;
    z-index:999999;
    background-color:#fff;
    background-position:center center;
    background-repeat:no-repeat;
    background-image:url(../images/icons/preloader.svg)
}


.load-less,.more{
    margin:20px 10px;
    border:2px solid var(--gold);
    padding:13px;
    color:#000!important;
    font-family:proxima-nova,sans-serif;
    font-size:15px;
    display:inline-block;
    width:auto;
    min-width:250px;
    text-transform:uppercase;
    font-weight:700
}
.load-less:hover,.more:hover{
    color:#fff!important;
    background:#f3923d
}
.more img{
    margin:-3px 5px 0 0
}


.lb-data .lb-close {
    
    position: absolute;
    top: -100px;
    right: 50px;
	
}

.scroll-to-top{
    position:fixed;
    right:20px;
    bottom:20px;
    width:50px;
    height:50px;
    color:#fff;
    font-size:28px;
    text-transform:uppercase;
    line-height:48px;
    text-align:center;
    z-index:100;
    cursor:pointer;
    background:var(--gold);
    display:none;
    border-radius:100px;
    -webkit-transition:.2s;
    -ms-transition:.2s;
    -o-transition:.2s;
    -moz-transition:.2s;
    transition:.2s
}
.scroll-to-top:hover{
    color:var(--gold);
    background:#4d5664
}
.sec-title{
    position:relative;
    margin-bottom:45px
}
.sec-title h2{
    position:relative;
    color:var(--gold);
    font-size:43px;
    font-weight:700;
    line-height:1.3em;
    margin-bottom:8px;
    text-transform:capitalize
}
.sec-title .title-text{
    position:relative;
    color:#555;
    font-size:18px;
    line-height:1.6em;
    font-weight:500;
    margin-top:0
}



/* START 2023 NAV BAR STYLES */




header #site-header .btn {
  cursor: pointer;
  padding: 8px 12px;
  font-size: 19px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 0.2rem !important;

}

#site-header .btn img {
  margin-right: 8px;
  width: 16px;
  position: relative;
  top: -2px;
}

.btn.btn-gold, .btn.btn-blue{
	
	height: 48px;
	font-weight: 700
	
}

 .btn.btn-gold {
  color: var(--dark-blue);
  background-color: var(--gold);
}
 .btn.btn-gold:hover, .btn.btn-gold:focus {
  background-color: var(--gold-hover);
  color: white;
}
 .btn.btn-blue {
  color: #fff;
  background-color: var(--teal);
}
 .btn.btn-blue:hover, .btn.btn-blue:focus {
  background-color: var(--teal-hover);
  color: #fff;
}

 
.mobile-visible {
  display: none;
}

 .summit-btn img.mobile-summit-logo {
  display: none;
}

#site-header {
  min-height: 200px;
background: white
}

#site-header .container-fluid {
  padding: 0px 22px 0px 0px;
}
#site-header .dropdown-toggle::after {
  display: none;
}
#site-header ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}
#site-header .top-right-nav ul {
	
  padding-top: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--teal);
}
#site-header .top-right-nav ul li {
  margin: 0 20px;
}
#site-header .top-right-nav ul li:last-child {
  margin-right: 0;
}
#site-header .top-right-nav ul li:first-child {
  margin-left: 0;
}
#site-header .top-right-nav ul li a {
  text-decoration: none;
  font-family:proxima-nova,sans-serif;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
#site-header .top-right-nav ul li a:hover {
  color: var(--gold);
}
#site-header .icon-list {
  padding-right: 25px;
}
#site-header .icon-list li {
  font-size: 17px;
  font-weight: 500;
  font-family:proxima-nova,sans-serif;
  color: var(--grey);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  padding-left: 20px;
  text-transform: uppercase;
	letter-spacing: 0.1rem
}
#site-header .icon-list li img {
  height: auto;
  position: relative;
  top: -2px;
  margin-right: 7px;
}

#site-header .icon-list-small-screen {
		display: none
			
}

#site-header .header-btns .btn {
  margin-left: 3px;
	border-radius: 3px;
	padding: 10px 15px;
}
#site-header .header-mid {
  padding-bottom: 0px;
}
#site-header .header-mid .logo {
  padding: 22px ;
}
#site-header .header-mid .logo img {
  max-width: 290px;
  width: 100%;
}
#site-header .summit-btn {
  width: 260px;
  margin-top: -30px;
  margin-bottom: -55px;
}
#site-header .summit-btn .btn {
  padding: 0;
  border-radius: 0;
  box-shadow: none !important;
  border: none;
	cursor: default
}
#site-header .summit-btn .btn img {
	top: -10px;
	width: 100%;
	
}
#site-header .summit-btn .btn img.summit-sticky {
  display: none;
}
#site-header .summit-btn .dropdown-menu {
  /**min-width: 800px;**/
  border-radius: 0;
  background-color: var(--teal);
  border-bottom: 2px solid #fff;
  margin-top: -45px;
  top: 100%;
  right: 0;
}
#site-header .summit-btn .dropdown-menu li {
  display: inline-block;
  margin: 0 40px;
}
#site-header .summit-btn .dropdown-menu li a {
  color: #fff;
  padding: 20px 15px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  font-family:proxima-nova,sans-serif;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
	letter-spacing: 0.1rem;

}
#site-header .summit-btn .dropdown-menu li:hover a, #site-header .summit-btn .dropdown-menu li.active a {
  color: var(--gold);
}

#site-header .host-logo {

	width: 140px;
	padding:20px 0px 40px 0px
}


#site-header .host-logo img{
	
	width: 100%;
	height:auto
}


.navbar-light {
background: rgb(1,1,8);
background: linear-gradient(135deg, rgba(1,1,8,1) 46%, rgba(15,65,89,1) 64%, rgba(0,0,0,1) 79%);
	padding-right:20px;
			padding-left:20px

}
.navbar-light .navbar-toggler {
  border-color: transparent;
  color: #000;
}
.navbar-light .navbar-toggler:focus {
  outline: 0px;
  box-shadow: none;
}
.navbar-light .navbar-toggler-icon {
  background-image: none;
  width: 30px;
  height: 30px;
  position: relative;
}
.navbar-light .navbar-toggler-icon span {
  position: absolute;
  height: 5px;
  width: 100%;
  top: 50%;
  left: 0px;
  margin-top: -1.5px;
  background: var(--gold);
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  border-radius: 6px;
}
.navbar-light .navbar-toggler-icon span:nth-of-type(2) {
  display: none;
}
.navbar-light .navbar-toggler-icon span:nth-of-type(1) {
  margin-top: -8px;
}
.navbar-light .navbar-toggler-icon span:nth-of-type(3) {
  margin-top: 7px;
}
.navbar-light .navbar-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-of-type(1) {
  margin-top: -8px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 20px;
}
.navbar-light .navbar-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-of-type(3) {
  margin-top: 5px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 6px;
  left: 0px;
}
.navbar-light .navbar-toggler[aria-expanded=true] .navbar-toggler-icon span:nth-of-type(2) {
  display: none;
}
.navbar-light .navbar-nav > li.nav-item {
  margin: 0 30px;
}
.navbar-light .navbar-nav > li.nav-item > a.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
	letter-spacing: 0.1rem
}

a.nav-link.active {
		  color:var(--gold) !important;
	font-weight: 700 !important


}
.navbar-light .navbar-nav > li.nav-item:hover > a, .navbar-light .navbar-nav > li.nav-item.active > a {
  color: var(--gold);
}
.navbar-light .navbar-nav .dropdown-menu {
  background-color: transparent;
  border-radius: 0;
  border: none;
  padding: 0;
  min-width: 180px;
}
.navbar-light .navbar-nav .dropdown-menu > li {
  border-bottom: 5px solid transparent;
}
.navbar-light .navbar-nav .dropdown-menu > li a {
  padding: 20px 20px;
  background-color: var(--dark-blue);
  color: #fff;
  font-weight: 900;
  font-family:proxima-nova,sans-serif;
  font-size: 17px;
  text-transform: uppercase;
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
}
.navbar-light .navbar-nav .dropdown-menu > li a:hover {
  color: var(--gold);
}
.navbar-light .navbar-brand {
  display: none;
}

@-webkit-keyframes stickynav {
  from {
    top: -100px;
  }
  to {
    top: 0px;
  }
}
@-moz-keyframes stickynav {
  from {
    top: -100px;
  }
  to {
    top: 0px;
  }
}
@keyframes stickynav {
  from {
    top: -100px;
  }
  to {
    top: 0px;
  }
}
.summit-btn.always-open .dropdown-menu{
  display: block;
}

#site-header .summit-btn {
position: relative;
z-index: 99;
}
@media only screen and (min-width: 993px) {
	
	
					ul.navbar-nav {		
margin: auto;		
width: 100%;		
		justify-content: space-around;		
}
	
  body.nav-sticky .navbar-light {
    padding: 7.5px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    -webkit-animation: stickynav 0.5s linear;
    animation: stickynav 0.5s linear;
	 min-height: 70px
  }
  body.nav-sticky .navbar-light .navbar-brand {
    display: block;
    padding: 8px 20px;
    height: 65px;
  }
  body.nav-sticky .navbar-light .navbar-brand img {
    height: 100%;
	  width:auto
  }
 
  body.nav-sticky #site-header .summit-btn {
    width: 125px;
    margin-top: 0;
    margin-bottom: 0;
  }
  body.nav-sticky #site-header .summit-btn img {
    display: none;
  }
  body.nav-sticky #site-header .summit-btn img.summit-sticky {
    display: block;
	  margin-top:15px
  }
  body.nav-sticky #site-header .summit-btn .dropdown-menu {
    margin-top: -12px;
  }
  body.nav-sticky .navbar-light .navbar-nav > li.nav-item {
    margin: 0 25px;
  }
  body.nav-sticky #site-header .summit-btn .dropdown-menu li a {
    padding: 7px 15px;
  }
  body.nav-sticky .navbar-nav{
    margin: auto;
  }
}
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1170px;
  }
}
@media only screen and (min-width: 1681px) {
  /*--ul.navbar-nav {
    margin: auto;
}*/
	
	ul.navbar-nav {
margin: auto;
width: 100%;
justify-content: space-around;
}
	
}
@media only screen and (max-width: 1680px) {
  .navbar-light .navbar-nav > li.nav-item {
    margin: 0 20px;
  }

  body.nav-sticky .navbar-light .navbar-nav > li.nav-item {
    margin: 0 17px;
  }
}
@media only screen and (max-width: 1400px) {
  .navbar-light .navbar-nav > li.nav-item {
    margin: 0 16px;
  }

  #site-header .summit-btn .dropdown-menu li {
    margin: 0 20px;
  }



  #site-header .icon-list li {
    font-size: 15px;
  }

  .btn {

	  
	}
}
@media only screen and (max-width: 1461px) {
  .header-mid-right.d-flex.align-items-center {
	      flex-direction: column;

  }

  #site-header .header-mid .logo img {
    max-width: 240px;
  }

  #site-header {
  }

  #site-header .icon-list {
    padding: 15px 0;
  }

  .header-mid-right.d-flex.align-items-center {
    -webkit-align-items: flex-end !important;
    align-items: flex-end !important;
  }

  .header-mid-right {
    padding-bottom: 25px;
  }

  .navbar-light .navbar-nav > li.nav-item {
    margin: 0 14px;
  }

  #site-header .summit-btn .dropdown-menu {
    margin-top: -45px;
  }

  body.nav-sticky .navbar-light .navbar-nav > li.nav-item {
    margin: 0 10px;
  }

  .navbar-light .navbar-nav > li.nav-item > a.nav-link,
.navbar-light .navbar-nav .dropdown-menu > li a,
body.nav-sticky #site-header .summit-btn .dropdown-menu li a {
    font-size: 15px;
  }
}
@media only screen and (max-width: 1240px) {
  #site-header .header-mid .logo {
    margin-top: -27px;
  }

  #site-header .top-right-nav ul li {
    margin: 0 16px;
  }
  .navbar-light .navbar-nav > li.nav-item > a.nav-link,
  .navbar-light .navbar-nav .dropdown-menu > li a,
  #site-header .summit-btn .dropdown-menu li a{
    font-size: 14px;
  }
  .navbar-light .navbar-nav > li.nav-item {
    margin: 0 6px;
}
.navbar-light .navbar-nav > li.nav-item > a.nav-link img{
  width: 20px;
}
#site-header .summit-btn {
  width: 220px;
	  margin-top: -20px;

	
}
	
	#site-header .summit-btn .dropdown-menu {
		margin-top: -38px
		
	}
}
@media only screen and (max-width: 1060px) and (min-width: 993px) {
  body.nav-sticky #site-header .summit-btn .dropdown-menu li a {
    font-size: 14px;
  }

  body.nav-sticky .navbar-light .navbar-brand {
    height: 55px;
    padding-right: 22px;
    width: 167px;
  }

  body.nav-sticky #site-header .summit-btn .dropdown-menu {
    margin-top: -5px;
  }
}



@media only screen and (max-width: 991px) {
	
  .navbar-nav .dropdown-menu {
    position: static;
    float: none;
    padding: 0px;
    background: transparent;
    border-color: transparent;
  }

  div#navbarSupportedContent {
    position: absolute;
    width: 300px;
    top: 10px;
    left: 21px;
    z-index: 999;
    background: var(--teal);
    transition: none;
    padding-top: 40px;
    padding-left: 20px;
    padding-right: 20px;
    border: 1px solid #fff;
    padding-bottom: 20px;
  }

  .navbar-light .navbar-nav > li.nav-item > a.nav-link {
    text-align: left;
  }

  .navbar-light .navbar-nav .dropdown-menu > li a {
    background-color: transparent;
    padding: 5px 15px;
	  
	  white-space: normal; 
	 
  }

  .navbar-light .navbar-nav .nav-link {
    padding-left: 15px;
    padding-right: 15px;
  }

  #site-header .top-right-nav ul li {
    margin: 0 11px;
  }

  .top-right-nav .container-fluid {
    justify-content: center !important;
  }

  #site-header .header-mid .logo {
    margin-top: -10px;
	  max-width: 250px
  }
	
	#site-header .host-logo {

	width: 110px;
	padding:10px 0px 40px 0px
}


  .top-right-nav {
    margin-bottom: 21px;
  }

  #site-header .header-mid .logo img {
    max-width: 230px;
  }

  #site-header .icon-list {
    padding: 0;
    padding-bottom: 15px;
  }
	
	#site-header .header-btns .btn {
		margin: 5px 0px;
		padding: 10px
}

 

  #site-header .summit-btn {
    width: 200px;
    margin-top: -30px;
    margin-bottom: -53px;
  }

  #site-header .summit-btn .dropdown-menu {
    margin-top: -40px;
  }

  .navbar-light .navbar-toggler {
    border-color: #fff;
    color: #fff;
    border-radius: 0;
    width: 68px;
    height: 62px;
    z-index: 1000;
    position: relative;
  }
  .navbar-light .navbar-toggler[aria-expanded=true] {
    border-color: transparent;
  }

   .navbar-light .navbar-nav > li.nav-item > a.nav-link, .navbar-light .navbar-nav .dropdown-menu > li a,
body.nav-sticky #site-header .summit-btn .dropdown-menu li a,
#site-header .summit-btn .dropdown-menu li a {
    font-size: 14px;
  }
  .navbar-light .navbar-nav .dropdown-menu {
    padding-left: 15px!important;
	  border-bottom: 1px solid var(--dark-blue);
		border-top: 1px solid var(--dark-blue);
	  padding-top:8px;
	padding-bottom:5px
		
}
	
	.previous-session-left-image img {
           
            clip-path: none !important;
	
        }


.previous-session-right-image img {
          
            clip-path: none !important;
        }

}
@media only screen and (max-width: 767px) {
  .top-right-nav {
    display: none;
  }

  .header-mid-right .header-btns {
    display: none;
  }


  #site-header .icon-list {
    padding: 10px;
    padding-bottom: 10px;
    display: inline-flex !important;
    border-bottom: 1px solid var(--teal);
    padding-left: 0;
    padding-right: 0;
  }

  .header-mid-right.d-flex.align-items-center {
    align-items: center !important;
  }

  #site-header .header-mid .logo img {
    max-width: 220px;
  }

  .navbar .container-fluid {
    position: relative;
  }

  #site-header .summit-btn {
    margin-bottom: 0;
    position: absolute;
    right: 10px;
    top: 30px;
  }

  #site-header .header-mid .logo {
    margin-top: 0;
    padding-bottom: 8px;
    padding-top: 0;
  }

  .navbar-light {
    padding: 9px;
  }

  div#navbarSupportedContent {
    top: 0px;
    left: 0px;
	  padding-top: 50px
  }
	


  #site-header .summit-btn .dropdown-menu li {
    margin: 0;
  }

  #site-header .summit-btn .dropdown-menu {
    margin-top: -53px;
    text-align: left;
    min-width: 35px;
	  z-index: 10000
  }

  #site-header .summit-btn .dropdown-menu li a {
    padding: 19px 15px;
  }

  .mobile-visible {
    display: block !important;
  }

  .header-mid-right {
    padding-bottom: 5px;
  }
  .header-btns.mobile-visible {
    position: absolute;
	  left:80px
}
	
	  .header-btns .btn {

	  display: inline ;
		  margin: 0px 3px !important;
		  font-size: 14px
}
}
@media only screen and (max-width: 600px) {
	
	
  #site-header .summit-btn {
 
    top: 10px;
  }
	
  #site-header .header-mid .logo img {
    max-width: 210px;
  }

	#site-header .header-btns .btn {
		
 display: block;
		  margin: 8px 3px !important;
		  font-size: 14px;
	
	}
	
	.navbar-light {
		
		min-height:140px
	
	}
	
	
	
}
@media only screen and (max-width: 567px) {
  .header-btns.mobile-visible {
    display: none !important;
  }

  #site-header .container-fluid {
    padding: 0;
  }

  #site-header .icon-list {
    width: 100%;
    justify-content: center;
	  	  	  display: block !important;
	  

  }
  #site-header .icon-list li {
    font-size: 12px;
    padding: 0 5px;
	  
  }

  #site-header .header-mid .logo {
    padding: 8px 10px;
	  	  display: block !important

  }

  #site-header .header-mid .logo img {
    width: 190px;
  }

  .summit-btn img {
    display: none;
  }
  .summit-btn img.mobile-summit-logo {
    display: block;
  }

  .navbar-light {
	  
	  min-height: 80px
  }
	
	.host-logo {visibility: hidden}

  #site-header .summit-btn {
    width: 150px;
    margin-top: 0;
    margin-bottom: 0;
    position: static;
    margin: auto;
    top: 0;
  }
	

  .navbar-light .navbar-toggler {
    position: absolute;
    bottom: 100%;
    right: 20px;
    background-color: var(--teal);
    margin-bottom: 50px;
  }

  #site-header .header-mid {
    padding-bottom: 10px;
  }

  .navbar-light {
    padding: 16px 0;
  }

  #site-header .summit-btn .dropdown-menu {
    margin-top: 15px !important;
    text-align: center;
    min-width: 0;
    width: 100%;
	  margin-top:-2px
  }

  #site-header .summit-btn .dropdown-menu li a {
    padding: 7px 15px;
  }

  div#navbarSupportedContent {
    top: -113px;
    left: auto;
    right: 19px;
  }
}
@media only screen and (max-width: 425px) {
	
	#site-header .header-mid  {

		height: 90px
	
	}
	

	
  .navbar-light .navbar-toggler {
   
    bottom: 75%;
   
  }
	
	 div#navbarSupportedContent {
    top: -95px;
    
  }
	
  #site-header .header-mid .logo img {
    max-width: 190px;
	  margin-top:-45px
  }
	
	

  #site-header .summit-btn .dropdown-menu {
    padding-left: 10px;
    padding-right: 10px;
  }
	
	 #site-header .icon-list li {
   display: none 
	  
  }
	
		
	#site-header .icon-list-small-screen {
    justify-content: center;
	display: flex;
		border-bottom: 1px solid var(--teal);
		padding-bottom: 10px
	  

  }
	
	#site-header .icon-list-small-screen img {
	 margin: 0px 8px
		
	}
	
	#site-header .icon-list-small-screen ul li {
	font-size: 15px;
  font-weight: 500;
  font-family:proxima-nova,sans-serif;
  color: var(--grey);
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-transform: uppercase;
	letter-spacing: 0.1rem;
		text-align: center;
		    padding: 0 15px;
			

}

	#site-header .header-mid {
		padding: 0px
	}
	
}


/* END 2023 NAV BAR STYLES */




.banner{
    display:inline-block!important;
    margin:0 -200px 40px!important;
    width:660px!important;
    height:65px!important;
    border:1px solid #cb7a2a!important;
    font-size:36px;
    font-weight:900;
    text-align:center!important;
    color:#fff;
    background:#f59230;
    border-radius:4px;
    box-shadow:0 0 30px rgba(0,0,0,.05) inset,0 6px 10px rgba(0,0,0,.2)
}
.banner::after,.banner::before{
    content:'';
    position:absolute;
    z-index:-1;
    left:-40px;
    top:24px;
    display:block;
    width:80px;
    height:0;
    border:30px solid #f59230;
    border-right:20px solid #f59230;
    border-bottom-color:#f59230;
    border-left-color:transparent;
    transform:rotate(-5deg)
}
.banner::after{
    left:auto;
    right:-40px;
    border-left:20px solid #f59230;
    border-right:30px solid transparent;
    transform:rotate(5deg)
}
#middle{
    position:absolute;
    top:16%;
    left:50%;
    transform:translate(-50%,-50%);
    z-index:10000;
    opacity:1;
    transition:opacity .5s
}
.middle-hide{
    opacity:0!important
}






.slideshow-container {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.home-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.home-video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.home-video-wrapper:before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0));
}


.slideshow-container .text {
    position: absolute;
    top: 40%;
    left: 30%;
    transform: translate(-30%, -50%);
    text-align: left;
    width: 100%;
    z-index: 10;
	max-width: 1200px
}

.slideshow-container .text .icon-list {
	
	padding: 15px 0px;
	margin-bottom: 30px;
	border-bottom: 1px solid var(--gold);
	width: 60%;
	min-width: 300px
	
}

.slideshow-container .text .icon-list li {
  font-size: 17px;
  font-weight: 500;
  font-family:proxima-nova,sans-serif;
  color: white;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  text-transform: uppercase;
	letter-spacing: 0.1rem;
	margin-right: 20px;
	text-align: left;
	    text-shadow: 1px 1px 40px rgba(0, 0, 0, 0.9);

}
.slideshow-container .text .icon-list li img {
  height: auto;
  position: relative;
  top: -2px;
  margin-right: 10px;
}


.slideshow-container .text h1 {
    color: #fff;
    font-size: clamp(2.8rem, 6.5vw, 70px); /* Responsive font size */
    font-weight: 400;
    line-height: 1.1; /* Scales with font size */
    font-family: proxima-nova, sans-serif;
    text-shadow: 1px 1px 40px rgba(0, 0, 0, 0.9);
}

.slideshow-container .text h2 {
    color: #fff;
    font-size: clamp(2.4rem, 5.5vw, 55px); /* Responsive font size */
    font-weight: 400;
    line-height: 1.1; /* Scales with font size */
    font-family: proxima-nova, sans-serif;
    text-shadow: 1px 1px 40px rgba(0, 0, 0, 0.9);
}


.slideshow-container .text h1 span{
    
    font-weight: 700;
	color: var(--gold)
    
}

.slideshow-container .text p{
    color:#fff;
    font-size:30px;
    font-weight:700;
    line-height:1.2em;
    margin:0 auto;
    font-family:proxima-nova,sans-serif;
    text-shadow:1px 1px 8px rgba(0,0,0,.3);
    padding:30px 0 60px;
    text-align:center;
    width:80%;
    min-width:310px;
    max-width:1300px
}
.slideshow-container .text h4{
    color:#fff;
    font-size:27px;
    font-weight:700;
    line-height:1.2em;
    margin:0 auto;
    text-shadow:1px 1px 8px rgba(0,0,0,.3);
    padding:10px 0 4px;
    text-align:center;
    width:80%;
    font-style:italic;
    min-width:310px;
    max-width:1300px
}
.slideshow-container .text h5{
    color:var(--gold);
    font-size:22px;
    font-weight:900;
    line-height:1.2em;
    margin:0 auto;
    text-shadow:1px 1px 13px rgba(0,0,0,.7);
    padding:0 0 60px;
    text-align:center;
    width:80%;
    min-width:310px;
    max-width:1300px;
    text-transform:uppercase
}

.slideshow-container .disclaimer-text {
    position: absolute;
    bottom: 10px;
    right: 10px;
    color: white;
    font-size: 15px;
    font-family: proxima-nova, sans-serif;
    z-index: 20;
	font-weight: 600	
}


/* 3 COL 2 ROW SECTION */

.parent-grid-text-box {
	
overflow: visible;

}

.grid-text-box {
position: absolute;
top: 50%;
left: 35%;
transform: translate(-35%, -50%);
padding: 10px;
}

.grid-text-box h4 {
	
padding-bottom: 5px
}

.grid-text-box p {
	
	line-height: 1.5rem;
	font-size: 1.05em;
	padding-bottom: 5px;

}

.grid-text-box img{
  width:50%;
  max-width: 150px;
}


.grid-image-box .carousel-item img {

object-fit: cover;
object-position: center;
height: 25vw;
overflow: hidden;

}

/* Home Page Testimonials - 2023 */

.HomePage-testimonials {
  position: relative;
  margin-top: 30px;
}

.HomePage-testimonials .owl-stage-outer {
  padding: 30px 0;
}
.HomePage-testimonials .owl-nav {
  display: none;
}
.HomePage-testimonials .owl-dots {
  text-align: center;
}
.HomePage-testimonials .owl-dots span {
  position: relative;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  display: block;
  background: #fff;
  border: 2px solid var(--gold);
  margin: 0 5px;
}
.HomePage-testimonials .owl-dots .active {
  box-shadow: none;
}
.HomePage-testimonials .owl-dots .active span {
  background:var(--gold);
  box-shadow: none;
  height: 12px;
  width: 12px;
  margin-bottom: -1px;
}
.HomePage-testimonials .panel {
  background: #fff;
-webkit-box-shadow: 2px 0px 52px -21px rgba(0,0,0,0.2);
-moz-box-shadow: 2px 0px 52px -21px rgba(0,0,0,0.2);
box-shadow: 2px 0px 52px -21px rgba(0,0,0,0.2);
	margin: 0 20px;
  padding: 40px;
  border-radius: 6px;
  border: 1px solid #EAE2EE;
}


.HomePage-testimonials .panel .testimonialHeadshot, .HomePage-testimonials .panel .testimonialLogoLandscape, .HomePage-testimonials .panel .testimonialLogoPortrait {
	
	  display: flex;
  	align-items: center;
  	justify-content: center;
	text-align: center

}

.HomePage-testimonials .panel .testimonialHeadshot img {
  max-width: 100px;
  border-radius: 50%;
  margin: 15px auto 0;
-webkit-box-shadow: 2px 0px 52px -21px rgba(0,0,0,0.54);
-moz-box-shadow: 2px 0px 52px -21px rgba(0,0,0,0.54);
box-shadow: 2px 0px 52px -21px rgba(0,0,0,0.54);
	width: 100px;
  height: 100px;
	object-fit: cover
}

.HomePage-testimonials .panel .testimonialLogoLandscape img {
	height:auto;
	max-width: 160px

}

.HomePage-testimonials .panel .testimonialLogoSquare img {
width:auto;
	height:100px
}


.HomePage-testimonials .panel .testimonialLogoPortrait img {
width:auto;
	height:100%
}



.HomePage-testimonials .panel h5 {
	padding-top:30px;
  color: var(--gold);
  font-size: 1em;
  line-height: 1.3;
		letter-spacing: 0.2rem;
	text-transform: uppercase;
		margin-bottom: 20px


}
.HomePage-testimonials .panel h5 span {
  font-size: 0.95em;
  color: var(--dark-blue);
	display: block;
	padding-top: 5px;
	font-weight: 700;
		text-transform:none;
			letter-spacing: normal;


}
.HomePage-testimonials .panel p {
  font-size: 1em;
  color: #555;
  padding-bottom: 15px;
}
.HomePage-testimonials .active {
  opacity: 0.5;
  transition: all 0.3s;
}
.HomePage-testimonials .center {
  opacity: 1;
}

#volume-btn {
    position: absolute;
    bottom: 40px;
    right: 30px;
    cursor: pointer;
    font-size: 30px;
    z-index: 1;
}
#volume-btn .fa {
    color: var(--gold);
}

@media (max-width: 767px) {
  .HomePage-testimonials {
    margin-top: 20px;
  }
}
.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev {
  outline: 0;
}
.owl-carousel button.owl-dot {
  outline: 0;
}



/* Sponsor Section */

.sponsorship-section {    
  padding: 0px
}

.sponsor-heading {
  position: absolute;
  text-align: center;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  z-index: 10;
  right:-60px;
  top:0;
  border: 3px white solid;
  background: var(--gold);
}

.sponsor-heading h3 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 10px;
  width:250px;
  line-height: 2.4rem;
	font-size: 2.3em;
  text-align: center;
	letter-spacing: 0.02em;
	font-weight:600 !important
}

.about-section{
    position:relative;
    padding:40px 0
}
.about-section .video-box{
    padding:0;
    cursor:pointer;
    margin-bottom:20px
}
.about-section .video-box video{
    width:100%;
    height:auto;
    margin:0!important
}
.counter-section{
    position:relative;
    padding:70px 0 30px
}

/* STATS BAR */


.stats-section {

    text-align: center;

}

.stats-section img {
    width:60px;
    height: auto;

}



.stats-section p {
	font-size: 17px;
	line-height: 1.4rem
}

.main-footer{
    position:relative;
    padding:15px 0 0;
    background-color:var(--teal)
}
.main-footer .footer{
    position:relative;
    margin-bottom:20px
}



.main-footer .footer .contact{
    position:relative;
    margin-bottom:10px;
	font-size: 1.1em;
	font-weight: bold
}
.eventDetailsIcon{
    color:var(--gold);
    font-size:1.3em;
    float:left;
    margin-right:20px;
    display:block;
    padding-top:8px
}
.main-footer .footer h5{
    position:relative;
    font-size:20px;
    font-weight:700;
    color:#d3d3d3;
    line-height:1.2em;
    margin-bottom:20px;
    margin-top:15px;
    padding-bottom:13px;
    text-transform:uppercase;
    border-bottom:1px solid #4881bd
}
.footer h6{
    position:relative;
    font-size:17px;
    font-weight:700;
    color:#fff;
    line-height:1.2em;
    margin-bottom:16px;
    text-transform:uppercase;
    font-family:proxima-nova,sans-serif
}
.footer p{
    position:relative;
    font-size:15px;
    font-weight:400;
    color:#bab9bb;
    line-height:1.6em;
    font-family:proxima-nova,sans-serif;
    padding-bottom:0;
    margin:0
}
.footer a{
    position:relative;
    font-size:15px;
    font-weight:400;
    color:#fff;
    line-height:1.6em;
    margin-bottom:0;
    font-family:proxima-nova,sans-serif;
    display:block
}
.footer a:hover{
    color:var(--gold)
}
.footer .ContactDetailsIcon.fa-envelope, .footer .ContactDetailsIcon.fa-phone{
    font-size:1.3em;
    float:left;
    display:block;
}

.footer .ContactDetailsIcon.fa-envelope{
   	margin-top: -3px;
    color:var(--gold);
	  margin-right:10px;
	border-right:solid grey 2px;
	padding-right: 10px

}

.footer .ContactDetailsIcon.fa-phone{
    margin-top: -5px;
    color:#3d79bd;
	 margin-right:10px;

		
}

.footer .footer-logo img {
	
	width: auto;
	height: 60px;
	display: inline;
	margin: 10px
}

.footer .fa-calendar{
   
		margin-bottom: 10px
}

.addeventatc.add-to-calendar-footer{
    background:#3f4953;
    border:1px solid #fff;
    color:#fff!important;
    font-weight:400;
    font-family:proxima-nova,sans-serif;
    font-size:14px;
    margin-bottom:25px;
    z-index:1!important
}
.addeventatc.add-to-calendar-footer .addeventatc_icon{
    background:url(../images/icons/icon-calendar-t1.svg) no-repeat
}
.add-to-calendar-footer.addeventatc:hover{
    background:var(--gold);
    font-family:proxima-nova,sans-serif;
    font-size:14px
}
.footer-link{
    position:relative;
    list-style:none;
	padding-left:0;
}
.footer-link li{
    position:relative;
    margin-bottom:8px;
    list-style:none
}
.footer-link li a{
    position:relative;
    color:#888;
    font-size:16px;
    font-weight:400;
    -webkit-transition:.3s;
    -ms-transition:.3s;
    -o-transition:.3s;
    -moz-transition:.3s;
    transition:.3s
}
.footer-link li a:before{
    position:absolute;
    content:"\f105";
    left:0;
    top:0;
    opacity:0;
    color:var(--gold);
    font-family:FontAwesome;
    -webkit-transition:.3s;
    -ms-transition:.3s;
    -o-transition:.3s;
    -moz-transition:.3s;
    transition:.3s
}
.footer-link li a:hover::before{
    opacity:1
}
.footer-link li a:hover{
    color:#ccc;
    padding-left:15px
}
.main-footer .footer-bottom{
    position:relative;
    padding:12px 0;
    border-top:1px solid rgba(255,255,255,.1);
		background: var(--dark-blue)
}
.main-footer .footer-bottom .copyright{
    position:relative;
    color:#555;
    font-size:16px
}
.look-forward{
    background-color: var(--dark-blue);
    margin-bottom:0;
    padding:30px 10px;
    text-align:center;
    color:#fff;
    font-family:proxima-nova,sans-serif;
    font-size:27px;
    font-weight:700;
    line-height:1.5em;
	border-top:1px solid grey;
		border-bottom:1px solid grey

		
}
.featured-section{
    position:relative
}
.feature-block-three{
    position:relative;
    height:460px
}
@media screen and (max-width:1024px){
    .feature-block-three{
        position:relative;
        height:480px
    }
    .feature-block-three .inner-box{
        position:relative;
        padding:20px;
        height:100%
    }
}
.feature-block-three .inner-box{
    position:relative;
    padding:50px 60px;
    height:100%
}
.feature-block-three .inner-box .content{
    position:relative;
    padding-left:0;
    text-align:center
}
.feature-block-three .inner-box .content .icon-box{
    margin:0 auto;
    width:150px;
    height:70px;
    line-height:70px
}
.feature-block-three .inner-box .content .icon-box-long{
    margin:0 auto;
    width:220px;
    height:90px;
    line-height:70px
}
.feature-block-three .inner-box .content .icon-box img,.feature-block-three .inner-box .content .icon-box-long img{
    width:100%;
    vertical-align:middle;
    height:auto;
    mix-blend-mode:darken
}
.feature-block-three .inner-box .content .icon-box-portrait img{
    width:auto !important;
    vertical-align:middle;
    height:90px !important;
    mix-blend-mode:darken;
    margin:0 auto
}

.feature-block-three .inner-box .content .icon-box-portrait img.headshot{
    width:90px !important;
    vertical-align:middle;
    height:90px !important;
    margin:0 auto;
	border-radius:50%
}

.feature-block-three .inner-box h5{
    position:relative;
    font-size:16px;
    font-weight:700;
    line-height:1.4em;
    margin:20px 0 0;
    color: var(--dark-blue)
}

.feature-block-three .inner-box .text{
    position:relative;
    color:#555;
    font-size:16px;
    line-height:1.8em;
    font-style:italic;
    margin-top:25px
}
.feature-block-three.inner-box{
    background-color:#e3e3e3
}



.featured-section .owl-dots,.featured-section .owl-nav{
    display:none
}
.four-reasons-section{
    position:relative;
	padding-left:25px;
	padding-right:25px
		
}

.four-reasons-section .title-box{
    text-align:center;
    padding:0 0 30px;
	position: relative;
	margin:60px 0px
}
.four-reasons-section .title-box h3{
    position:relative;
    color:#3d79bd;
    font-size:26px;
    font-weight:700;
    line-height:1.2em;
	border: 3px solid #090979;
	padding: 20px;
	display: inline;
}

.four-reasons-block{
    position:relative;
    margin-bottom:30px;
    padding-left:20px;
    padding-right:20px
}
.four-reasons-content{
    height:100%;
    box-shadow:0 0 25px rgba(0,0,0,.15)
}
.four-reasons-block img{
    width:100%;
    height:300px;
    object-fit:cover
}
.four-reasons-block .inner-box{
    padding:30px 40px
}
.four-reasons-block .number{
    height:80px;
    width:80px;
    border-radius:100px;
    display:flex;
    position:absolute;
    top:-20px;
    left:-10px;
    z-index:1;
    -webkit-box-shadow:8px 13px 25px -11px rgba(0,0,0,.42);
    -moz-box-shadow:8px 13px 25px -11px rgba(0,0,0,.42);
    box-shadow:8px 13px 25px -11px rgba(0,0,0,.42)
}
.four-reasons-block .number p{
    color:#fff;
    margin:auto;
    font-size:45px;
    top:5px;
    font-family:proxima-nova,sans-serif;
    font-weight:500;
    postion:relative
}
.four-reasons-block .inner-box .icon-box{
    position:relative;
    color:#3d79bd;
    font-size:60px;
    line-height:1em;
    margin-bottom:20px;
    transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    -ms-transition:.3s;
    -o-transition:.3s
}
.four-reasons-block .inner-box h4{
    position:relative;
    font-size:24px;
    font-weight:700;
    margin-bottom:15px;
    line-height:1.2em;
    color:#fff
}
.four-reasons-block .inner-box .text{
    position:relative;
    color:#fff;
    font-size:16px;
    font-weight:400;
    line-height:1.7em;
    transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    -ms-transition:.3s;
    -o-transition:.3s
}
.four-reasons-block .inner-box .text.expad{
    padding-bottom:60px
}
.four-reasons-block .inner-box .read-more{
    position:absolute;
    bottom:20px;
    color:#fff!important;
    font-size:14px;
    text-transform:uppercase;
    padding:10px;
    font-weight:700;
    display:inline-block;
    border-bottom:1px solid #f59230;
    border-top:1px solid #f59230;
    transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    -ms-transition:.3s;
    -o-transition:.3s
}
.four-reasons-block .inner-box .read-more .fa{
    position:relative;
    margin-left:8px;
    transition:.3s;
    -moz-transition:.3s;
    -webkit-transition:.3s;
    -ms-transition:.3s;
    -o-transition:.3s
}
.four-reasons-block .inner-box .read-more:hover{
    border-bottom:1px solid #fff;
    border-top:1px solid #fff
}
.four-reasons-block .inner-box .read-more:hover .fa{
    position:relative;
    margin-left:15px
}

.new-flash{
 
	background: var(--gold);
  position: absolute;
  top: 10px;
  right:0;
	  text-align: center !important;

	
}
.new-flash p{
  text-align: right !important;
  color: #fff!important;
  font-weight: 900!important;
  position: relative;
  font-size: 25px!important;
  line-height: 1em;
	padding: 20px
}

.new-flash span {
	   font-size:20px;
	display: inline-block;
	  text-align: center !important;


}


.headerImage{
    position:relative;
    height:48vh;
    padding:0!important;
    width:100%;
    min-height:600px
}
.headerImage img{
    width:100%;
    height:100%;
    z-index:-10;
    margin-top:0;
    object-fit:cover;
    object-position:top;
    position:absolute
}
.headerImage::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:100%;
    height:100%;
    display:block;
    background-color:rgba(14,12,31,0.1);
}
.headerTitleHolder{
    position:absolute;
    top:45%;
    left:25%;
    transform:translate(-25%,-50%);
	max-width: 800px;
	padding: 0px 40px

}

.headerTitle{
    z-index:10;
    text-shadow:3px 3px 20px rgba(61,61,61,0.4);

		
		
}
.headerTitle h1 {
    color: #fff;
    font-size: clamp(2.6rem, 6vw, 64px); /* Larger on smaller screens */
    font-weight: 400;
    line-height: 1.1; /* Multiplies with font size */
    font-family: proxima-nova, sans-serif;
    text-shadow: 1px 1px 60px rgba(0, 0, 0, 0.9);
}



.headerTitle h3 {
	
	display: inline
	
}

.headerTitle img {
	
	display: inline
	
}


@media screen and (max-width:768px){
    
    .headerTitleHolder{
        margin-top:0
    }
	
	.headerTitle h3 {
	
	display: block
	
}

.headerTitle img {
	
	display: block
	
}
}
@media screen and (max-width:425px){
  
}
.page-title{
    position:relative;
    padding:180px 0
}
.page-title:before{
    position:absolute;
    content:'';
    left:0;
    top:0;
    width:100%;
    height:100%;
    display:block;
    background-color:rgba(14,12,31,.5);
    opacity:.5
}
.page-title .container{
    position:relative
}
.page-title h1{
    position:relative;
    color:#fff;
    font-size:67px;
    font-weight:700;
    line-height:1.1em;
    margin-bottom:5px;
    text-transform:capitalize;
    text-align:left
}
.no-header{
    position:relative;
    text-align:center;
    display:block;
    padding:40px 0;
    width:100%;
	border-top:3px solid white
}
.no-header h1{
    color:#fff;
    font-size:64px;
    font-weight:700;
    line-height:1.2em;
    text-transform:capitalize
}
.page-intro-box{
    position:relative;
    padding:50px 0 40px
}



.page-intro-box .title-box .text{
    position:relative;
    color:#222;
    line-height:1.6em;
    max-width:900px;
    margin:0 auto
}
.prices-section{
    position:relative;
    background:#fff
}
.price-outer{
    padding:0 10px
}
.price-outer .inner-box{
    padding:10px 20px 30px;
    text-align:center;
}


.price-outer .inner-box h4, .price-outer .inner-box h4.customer {
    display:inline-block;
    font-size:22px;
    padding:20px 20px 15px;
    color:#fff;
    font-weight:600;
    font-family:proxima-nova,sans-serif;
	margin-bottom: 20px;
	letter-spacing: 0.04em;
	

}

.price-outer .inner-box h4.customer{
        border-bottom: 1px solid var(--teal);
}

.price-outer .inner-box h4{
        border-bottom: 1px solid var(--gold);
}




.earlybird-box {
	
	border-top:#F59230 2px solid;
	border-bottom:#F59230 4px solid;
}

.attendInner {
    
 padding: 30px;
box-shadow: 0px 11px 33px -11px rgba(0,0,0,0.25);    
	min-height: 100%;
	    border: 2px solid white;

}



.attendIcon {
    margin:-70px auto 0px;
    width:65px;
    height: 65px;
    border-radius: 50%;
    line-height: 58px;
    text-align: center;
    vertical-align: middle;
    
}



.attendInner p {
	
	font-weight: 500;
	color: white

}

.attendIcon.nontm-cust {
    
    border: 3px solid white;
	    
    
}

.attendIcon.table-cust {
    
    border: 3px solid white;
	    
    
}


.attendIcon.tm-cust {
    
    border: 3px solid #3D78BC;
	    
    
}

.attendIcon img{
        vertical-align: middle;
        height: 37px;
    width: auto


    
}

.attendInner h4 {
    
	display: block;
    margin: 20px 0px 10px;
    text-align: center;
    font-weight: 900;
    text-transform: uppercase;
	font-size: 22px;
	color: white
    
}

.img-block{
    display:block;
    margin:0 auto
}

.light-grey{
    background-color:#f3f3f3
}
.light-blue{
    background-color:var(--light-blue)
}
.price{
    color:#fff;
    font-family:proxima-nova,sans-serif;
    font-size:3.2em;
    font-weight:700;
    line-height:.7em;
    padding:5px 0px 15px;
	
}
.price::before{
    content:"$";
    font-size:32px;
    vertical-align:top;
	font-weight: 400;
	margin-right:3px;
}
.price span{
    font-size:18px;
    font-weight:400
}

.price-saving {
       color: #343A40;
    font-weight:900;
    font-size:17px;
    font-family: proxima-nova, sans-serif;
    padding:8px 12px;
    display: inline-block;
    letter-spacing: .04em;
    background: white ;
    border-radius: 3px;
      -webkit-box-shadow: 0px 2px 30px -11px rgba(0,0,0,0.4);
-moz-box-shadow: 0px 2px 30px -11px rgba(0,0,0,0.4);
box-shadow: 0px 2px 30px -11px rgba(0,0,0,0.4);
    line-height: 1.4em;
    text-transform: uppercase;
	margin-top:25px
        
}

.price-saving span {
       color: #F59231;
}

.second-del{
    color:#fff;
    font-family:proxima-nova,sans-serif;
    font-weight:700;
    padding-top:12px;
    margin:0 0 20px;
    display:inline-block;
    letter-spacing:.04em
}
.second-del span{
    font-weight:700
}
.book-now{
    margin:5px 0 10px;
    min-width:200px
}
.disclaimer{
    margin:10px 0 0;
    font-size:14px;
    text-align:center
}
.highlightsBox{
    border-bottom:2px solid var(--teal);
    padding:40px;
    border-top:2px solid var(--teal);
    margin-top:30px
}


.highlightsBox img{
    width:27px
}

.fullPackageOuter{
    text-align:center;
    position:relative
}

.fullPackageOuter .close {
    color: #AEAEAE;
    font-size: 35px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 30px;
	cursor: pointer
}

.modal {
    display: none;
    position: fixed;
    z-index: 10000 !important;
    padding-top: 80px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(25 ,37 ,59, 0.8);
}

.package-content {
    text-align: left;
    position: relative;
    background-color: #ffffff;
    margin: auto;
    padding: 50px 30px;
    width: 80%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s;
	max-width: 900px
}


.package-content ul{
    list-style:none;
    font-size:17px;
    line-height:1.4em;
    font-weight:400;
}

.package-content ul li{
    padding-bottom:12px
}

.package-content ul li:before {
    content: '\f005';
    font-family: 'FontAwesome';
	font-size: 13px;
    float: left;
    margin-left: -2em;
    color: var(--gold);
}


.gold-diamond-list {
  list-style: none;
  padding-left: 0;
  columns: 1; /* default to 1 column if screen is small */
  column-gap: 60px;
}

@media (min-width: 768px) {
  .two-column-list {
    columns: 2;
  }
}

.gold-diamond-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 15px;
  break-inside: avoid; /* prevents item from breaking across columns */
	font-size: 18px
}

.gold-diamond-list li::before {
  content: "◆";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 1.2em;
  line-height: 1;
}

.sponsorTestimonialsCarousel h5{
    font-weight:500;
    color:#000;
    font-size:1.3em;
    padding-bottom:20px;
    font-style:italic
}
.sponsorTestimonialsCarousel h6{
    font-weight:900;
    font-size:1.2em;
    text-transform:uppercase;
    color:#3e78bc
}
.sponsorTestimonialsCarousel h6:before{
    content:"";
    width:10%;
    position:absolute;
    top:-12px;
    left:50%;
    transform:translatex(-50%);
    background:var(--gold);
    height:2px
}
.sponsorTestimonialsCarousel h7{
    font-weight:700;
    font-size:1.3em;
    color:#000
}
.sponsorTestimonialsCarousel img{
    width:90px;
    height:auto;
    border-radius:100%;
    margin-bottom:20px
}


/* Sponsor Section 2023 */

/* Custom scrollbar 

.sponsor-card__body > .row::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  background-color: #f5f5f5;
}

.sponsor-card__body > .row::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
  border-radius: 10px;
}

.sponsor-card__body > .row::-webkit-scrollbar-thumb {
  border-radius: 10px;
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #555;
}

/* ./Custom scrollbar */

/* Button */
.sponsor-card__button {
  display: inline-block;
  text-decoration: none;
  width: 100%;
  padding: 1.25rem 2.1875rem;
  margin: 1.25rem 0 0;
  font-size: 0.9375rem;
  color: #ffffff;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  background-color: var(--teal);
  border: none;
  border-radius: 0.25rem;
  transition: background-color 0.15s ease-in-out;
}
.sponsor-card__button:hover {
  background-color: var(--light-blue);
}
/* ./Button */

/* =============== sponsor-card-styling =============== */
.sponsor-card, .sponsor-card-SOLD {
  position: relative;
  height: 420px;
  border: 0;
  border-radius: 0;
  overflow: hidden;
}


.sponsor-card--top {
  height: 420px;
	position: relative;

}

.sponsor-card:after {
	content: "";
  position: absolute;
	height: 100%;
	width: 100%;
	background:  rgba(0,0,0,0.75);
	overflow: hidden;
	 top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;

}

.sponsor-card .sponsor-icon {
	
 position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 25%;
  width: auto;
  z-index: 2;
  pointer-events: none;
	min-height: 100px


}


.sponsor-card__content {
position: absolute;
  bottom: calc(-100% + 68px);
  color: #ffffff;
  width: 100%;
  height: 100%;
  transition: bottom 0.5s ease-in-out;
  z-index: 10;
  background: rgba(0, 0, 0, 0.80); /* Add this line */
}


.sponsor-card__header,
.sponsor-card__header-SOLD,
.sponsor-card__body p,
.sponsor-card__list-item,
.sponsor-card__labels > *,
.sponsor-card__button {
  font-family: proxima-nova, sans-serif
;	font-weight: 500
}
.sponsor-card__header {
 font-size: clamp(1.3rem, 2.5vw, 1.5rem); /* Responsive font size */
    text-align: center;
    font-weight: 600;
    background-color: var(--teal);
    padding: 1rem;
    margin-bottom: 6px;
    position: relative;
    line-height: 1.6; /* Multiplies with font size */
    color: white;
    z-index: 4;
	

}


.sponsor-card__header-SOLD {
  font-size: 1.7rem;
  text-align: center;
  font-weight: 600;
  background-color: grey;
  padding: 1rem ;
  bottom: 0px;
	position: absolute;
 line-height: 1.4em;
	color: white;
	display: block;
		width: 100%
	
}



.sponsor-card__header::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: var(--gold);
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  transition: width 1s ease;
	  z-index: 5;

}

.sponsor-card__body {
 position: relative;
  padding: 1.875rem 2.5rem;
  font-size: 1rem;

}
.sponsor-card__body p {
  max-width: 70ch;
	text-shadow: 3px 3px 4px #000000;
	font-weight: 500;
	font-size: 1.1em
	
}

ul.sponsorship {
	
list-style-type: square;
	list-style-position: outside;
	font-size: 1.2em

	}

.sponsor-card__body > .row {
  max-height: 420px;
  overflow-y: auto;
}
.sponsor-card__list-item {
  margin-bottom: 0.4rem;
}
.sponsor-card:hover .sponsor-card__content {
  bottom: 0;
}

.sponsor-card:hover .sponsor-card__header {
	
	background: none;
	color: white;
	  padding: 1.25rem 0.5rem .2rem;
  margin: 30px 0px;
	
	
}

.sponsor-card:hover .sponsor-card__header::after {
	
	width:50%
	
}



.sponsor-card__labels > * {
  position: absolute;
  top: 0;
  display: inline-block;
  width: 100%;
  font-weight: 500;
  font-size: 0.9375rem;
  text-align: center;
  color: #ffffff;
  background-color: var(--gold);
  padding: 3.4375rem 5rem 0.3125rem;
  z-index: 0;
}
.sponsor-card__body {
  align-items: center;
  height: calc(100% - 68.8px);
}
.sponsor-card__labels span{
  font-weight: 900;
}
.sponsor-card__labels--left {
  -webkit-transform: translate(-51%, -5%) rotate(-45deg);
  -moz-transform: translate(-51%, -5%) rotate(-45deg);
  transform: translate(-51%, -5%) rotate(-45deg);
  transform-origin: top center;
}
.sponsor-card__labels--right {
  transform: translate(51%, -5%) rotate(45deg);
  transform-origin: top center;
}
.sponsor-card__label--blue {
  background-color: var(--teal);
}
.sponsor-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.7));
  transition: all 0.6s ease-in-out;
  z-index: 1;
}
.sponsor-card:hover::before {
    background-color: rgb(25 ,37 ,59, 0.8);
  height: 100%;
}
.sponsor-card__button {
  display: inline-block;
  text-decoration: none;
  width: 100%;
  padding: 1rem 2rem;
  margin: 1.25rem 0 0;
  font-size: 0.9375rem;
  color: #ffffff;
  letter-spacing: 0.2em;
  font-weight: 600;
  text-align: center;
  text-transform: uppercase;
  background-color: var(--gold);
  border: none;
  border-radius: 0.25rem;
  transition: background-color 0.15s ease-in-out;
}
.sponsor-card__button:hover {
  background-color: var(--light-blue);
}




.registration-header h1{
    color:#fff;
    font-size:64px;
    font-weight:700;
    line-height:1.2em;
    text-transform:capitalize
}
.registration-container{
    margin:50px 0 0;
    width:100%;
    height:100%
}
.registration-form{
    width:100%;
    height:100vh;
    margin:0 auto;
}


.timeline-container {
	
	border-bottom: 2px solid var(--gold)
}

.timeline-container h2 {

	font-size: 2.7em;
	margin-bottom: 20px
	
}

.timeline-1 {
position: relative;
  border-left: 2px solid var(--dark-blue);
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
  margin: 0 0 0 100px;
  position: relative;
  padding: 30px 5px 30px 40px;
  list-style: none;
  text-align: left;
  max-width: 80%;
}

.timeline-1:before {
	
	content:"–";
	color: var(--dark-blue);
	position: absolute;
	top:-29px;
	font-size:2em;
	left:-10px;
		
}


.timeline-1:after {
	
	content:"–";
	color: var(--dark-blue);
	position: absolute;
	bottom:-22px;
	font-size:2em;
	left:-10px;
		
}


.schedule-logo {
	
	min-height:90px;
	 display: flex;
      align-items: center;
      justify-content: center;

	
}

.schedule-heading {
	
	border-bottom:var(--gold) solid 1px;
	font-size: 1.7em;
	letter-spacing: 0.2rem;
	font-weight: 400;
	min-height: 120px
}


.schedule-heading  span {
	letter-spacing: normal;
	font-size: 0.75em
}


@media (max-width: 767px) {
  .timeline-1 {
    max-width: 98%;
    padding: 25px;
	    margin: 0 0 0 0;

  }
	
	#site-header .summit-btn .btn img {

	top: -20px;
	right: 1px
	


}
}

.timeline-1 .event {
  border-bottom: 1px dotted var(--light-blue);
  padding-bottom: 15px;
  margin-bottom: 18px;
  position: relative;
background-color: var(--light-grey)
	
}


.timeline-1 .event img {
	
		mix-blend-mode: multiply !important;
		height:auto;



		
}

.timeline-1 .event img.portrait {
	
	width: 25%;
	min-width: 80px;
	margin-top: 15px;
		
}

.timeline-1 .event img.landscape {
	
	width: 50%;
	min-width: 130px;
	margin: 15px 0px;
	max-width: 160px;


		
}

.timeline-1 .event h5 {
  font-size: 1.25em;
	padding-bottom: 4px
	
}

.timeline-1 .event h6 {
  font-size: 0.8em;
	padding-bottom: 0.3rem;
	padding-top: 0.4rem;
	color: var(--dark-blue);
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 0.2rem;
	line-height: 1.3rem
	
}

.timeline-1 .event a.session {
  font-size: 1.25em;
	padding-bottom: 4px
	
}

.timeline-1 .event a.session span {
  font-size: 0.95em;
	display: block;
	font-weight: 500
	}

.timeline-1 .event a.session:hover {
	 
	text-decoration: none;
	color: var(--teal)
	
}


.timeline-1 .event p {
  font-size: 1em;
	padding-bottom: 2px
	
}

.timeline-1 .event p.session-number {
  font-size: 1em;
	padding: 7px;
	display: block;
	text-align: center;
	background: var(--dark-blue);
	width: 50%;
	min-width: 100px;
	margin-bottom: 10px

	
}


.timeline-1 .event p span {

}




@media (max-width: 767px) {
  .timeline-1 .event {
    padding-top: 30px;
  }
}

.timeline-1 .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.timeline-1 .event:before,
.timeline-1 .event:after {
  position: absolute;
  display: block;
}



.timeline-1 .event:before {
  left: -190px;
  content: attr(data-date);
  text-align: right;
  font-weight: 400;
  font-size: 1em;
  min-width: 120px;
	color: var(--teal)
}



@media (max-width: 767px) {
  .timeline-1 .event:before {
    left: 0px;
    text-align: left;
	top:0px

  }
}

.timeline-1 .event:after {
  -webkit-box-shadow: 0 0 0 3px var(--gold);
  box-shadow: 0 0 0 3px var(--gold);
  left: -45.8px;
  background: #fff;
  border-radius: 50%;
  height: 9px;
  width: 9px;
  content: "";
  top: 5px;
}

@media (max-width: 767px) {
  .timeline-1 .event:after {
    left: -31.8px;
  }
}


.schedule-section{
    padding:0
}
.schedule-container{
    padding:30px 30px 30px 40px;
    min-height:100%;
    border-radius:20px
}
.schedule-row{
    padding-bottom:5px;
    padding-top:20px;
    border-bottom:1px solid #fff
}
.schedule-row:last-child{
    border-bottom:none;
    padding-bottom:0
}
.schedule-container h3{
    font-size:22px;
    font-weight:700;
    margin-bottom:30px;
    padding-bottom:5px;
    border-bottom:4px dotted #fff;
    width:100%
}
.schedule-dayline-outer{
    padding-left:0;
    padding-right:0!important
}
.schedule-dayline-inner{
    padding:0
}
.schedule-dayline-box p{
    color:#000;
    font-weight:700;
    text-align:right;
    font-size:14px;
    margin:0;
    padding:0 10px 6px 0
}
.schedule-dayline-box:before{
    content:"";
    height:100%;
    display:block;
    position:absolute;
    width:2px;
    background:#f59230;
    top:-10px;
    bottom:-10px;
    z-index:0;
    right:0
}
.schedule-timings-inner{
    padding:0 10px 10px 0
}
.schedule-timings-inner p{
    font-size:16px;
    margin:0 0 5px;
    font-weight:400;
    line-height:1.5em;
    color:#000
}
.schedule-timings-inner span.block{
    display:block;
    font-size:15px
}
.schedule-timings-inner span.block-bold{
    display:block;
    font-weight:700
}
.schedule-timings-inner .time{
    color:#fff;
    font-weight:700;
    display:block;
    padding:3px 6px 3px 4px;
    text-align:center;
    margin-right:15px;
    margin-left:10px;
    font-size:15px;
    position:relative;
    background:#3d78bc;
    border-radius:3px
}
.schedule-timings-inner .time i,.schedule-timings-inner .time-grey i{
    color:#fff;
    font-weight:700;
    padding:0!important;
    margin-right:8px
}
.schedule-sponsor{
    margin-top:10px
}
.schedule-sponsor h5{
    font-size:14px
}
.schedule-sponsor .sponsors-logo-landscape{
    padding-bottom:10px
}
.schedule-sponsor .sponsors-logo-landscape img{
    width:150px;
    height:auto;
    mix-blend-mode:multiply
}
.schedule-sponsor .sponsors-logo-portrait img{
    width:110px;
    height:auto;
    mix-blend-mode:multiply
}
.headline-sponsor-logo{
    text-align:center
}
.headline-sponsor-logo img{
    width:65%!important;
    text-align:center
}
.exhibitorPage-headline{
}
.exhibitorPage-headline img{
    margin-bottom:30px;
    width:95%;
    height:auto;
    max-width:300px
}
.exhibitorPage-headline h3{
    font-weight:700;
    color:#3d78bc;
    font-size:2em;
    text-align:center;
    border-bottom:1px solid #c6c6c6;
    padding-bottom:10px;
    margin-bottom:20px
}
.exhibitorPage-headline h4{
    padding-bottom:10px;
    font-weight:700;
    line-height:1.1em;
    color:#555b5f
}
.exhibitorPage-headline p{
    font-size:1.2em;
    margin:0
}
.exhibitor-logo-background{
    background:#fff;
    background:-moz-linear-gradient(top,#fff 0,#f1f1f1 31%,#fff 100%);
    background:-webkit-linear-gradient(top,#fff 0,#f1f1f1 31%,#fff 100%);
    background:linear-gradient(to bottom,#fff 0,#f1f1f1 31%,#fff 100%)
}
.exhibitor-container{
    text-align:center;
    margin-bottom:50px
}
.exhibitor-logo-container,.sponsor-logo-container, .headlineSponsor-logo-container{
	position: relative;
    border:1px solid #e9e7e7;
    -webkit-box-shadow:0 4px 43px -2px rgba(0,0,0,.06);
    box-shadow:0 4px 43px -2px rgba(0,0,0,.06);
	background: white
}

.headlineSponsor-logo-container
{
	
	    height:260px;
	padding:30px

}

.headlineSponsor-logo-container h4 {
	
	border-bottom: 1px solid grey;
}

.headlineSponsor-logo-holder {
	
		  display: flex;
  justify-content: center;
  align-items: center;
	    height:180px;
}

.headlineSponsor-logo-holder img {
	

}

.exhibitor-logo-container{
    width:100%;
    height:160px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:8px
}
.exhibitor-logo{
    max-height:70%;
    max-width:70%
}
.exhibitor-name{
    font-size:19px;
    line-height:20px;
    font-weight:700
}
.exhibitor-bio{
    color:#555b5f
}
.exhibitor-tooltip{
	position: relative;
    padding:0 8px;
    margin:8px 0
}
.exhibitor-tooltip a{
    color:#3b7bbf;
    text-decoration:none
}
.exhibitor-tooltip a:hover{
    text-decoration:underline
}
.exhibitor-tooltip .exhibitor-tooltiptext{
    padding:20px;
    visibility:hidden;
    width:100%;
    background-color:#fff;
    color:#000;
    text-align:left;
    border-radius:4px;
    font-family:proxima-nova,sans-serif;
    -webkit-box-shadow:0 0 40px rgba(0,0,0,.1);
    -moz-box-shadow:0 0 40px rgba(0,0,0,.1);
    box-shadow:0 0 40px rgba(0,0,0,.1);
    position:absolute;
    z-index:999;
    top:95%;
    opacity:0;
    transition:opacity .5s;
    cursor:auto;
    box-sizing:border-box;
	left:50%;
	transform: translateX(-50%)

}

.exhibitor-tooltip:hover .exhibitor-tooltiptext{
    visibility:visible;
    opacity:1
}
.exhibitor-tooltiptext{
	min-width: 300px;
	height: 350px;
	overflow: scroll
}





.sponsors-container{
    text-align:center;
    margin:35px 0px;
	border-bottom: 1px solid #c6c6c6;
		border-top: 1px solid #c6c6c6;
	padding: 35px 0px
}
.sponsor-logo-container{
    height:200px;
    padding:25px
}
.sponsor-label,.headlineSponsor-label{
    font-family:proxima-nova,sans-serif;
    font-size:21px;
    line-height:24px;
    font-weight:700;
    display:block;
    margin-bottom:20px;
    padding-bottom:10px;
    border-bottom:1px solid #d9d9d9;
	text-align: center
}

.Headline-sponsor-logo-holder{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    height:100px
}

.sponsor-logo-holder{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    height:100px
}
.sponsor-logo-holder img{
    max-height:85%;
    max-width:60%
}
.media-logo-container{
    border:1px solid #dcdcdc;
    padding:10px;
    height:150px;
    margin-bottom:20px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
	padding: 0px 20px
}

.media-logo-container img{
    
	width:100%;
	height: auto
		
}
.sessions-inner .session-details{
    display:block;
    top:-10px;
    left:0;
    z-index:1;
    -webkit-box-shadow:8px 13px 25px -11px rgba(0,0,0,.42);
    -moz-box-shadow:8px 13px 25px -11px rgba(0,0,0,.42);
    box-shadow:8px 13px 25px -11px rgba(0,0,0,.42);
    background:#3d79bd
}

.previous-session-flash-left, .previous-session-flash-right {
	
	
	position: absolute;
	top:0;
	padding: 8px 12px;
		font-weight: 900;
	text-transform: uppercase;
	font-size: 16px;
	max-width:220px;

	
}

.previous-session-flash-left {
	
	left:0;
	
}

.previous-session-flash-right {
	
	right:0;
	
}


.previous-session-container {
	
	padding:40px 0px;
	margin: 10px 0px;
	position: relative;


		}

.previous-session-left-image {

	
}

.previous-session-left-image img {
            width: 100%;
            height: 100%;
			object-fit: cover;
			object-position: center;
            clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
	
        }


.previous-session-right-image img {
           width: 100%;
            height: 100%;
			object-fit: cover;
            clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
        }


.previous-session-container .speaker {
	
margin-bottom:20px
		}

.previous-session-container .speaker img{
	
max-width: 150px

		}


.previous-session-title {
	
	font-size: 1.5em;
	padding-top: 3px;
	display: block;
	margin-bottom: 20px;
	font-weight: 600
	
}


.previous-session-image  {
	
 display: flex;
 align-items: center;

	
}


.previous-session-image img {
	
		height:auto;
	width: 35vw;
	max-width: 800px;
	border: 20px white solid
	
}

.sessions-inner .session-details p{
    color:#fff;
    font-size:20px;
    font-family:proxima-nova,sans-serif;
    font-weight:700;
    postion:relative;
    padding:7px 20px;
    text-align:center
}
.aboutSpeaker-div{
    z-index:10;
    background:#fff;
    background:radial-gradient(circle,#fff 0,#f7f7f7 74%);
    left:0;
    right:0;
    margin:auto;
    position:relative
}
.aboutSpeakerAccordion{
    cursor:pointer;
    margin:0;
    width:100%;
    transition:.7s;
    position:relative;
    color:#333;
    padding:8px 25px;
    font-weight:700;
    border-radius:4px;
    border:1px solid #3d79bc!important;
    text-align:center;
    background:#fff
}
.aboutSpeakerAccordion h6{
    font-size:19px;
    font-weight:700;
    text-transform:capitalize
}
.aboutSpeakerAccordion:hover,.finalistsActive{
    background:#3f3f3f;
    color:#fff;
    border-radius:4px;
    border:2px solid grey!important
}
.aboutSpeakerPanel{
    text-align:left;
    padding:0 20px;
    margin-top:0;
    font-size:17px;
    max-height:0;
    overflow:hidden;
    transition:max-height .6s ease-in-out;
    position:relative
}
.aboutSpeakerPanel p{
    padding-top:25px;
    padding-bottom:30px;
    font-size:17px!important
}
.aboutSpeakerPanel p span{
    font-weight:700
}
.sessions{
    padding-bottom:30px
}
.sessions-outer{
    margin-bottom:40px;
    margin-top:10px;
    border-right:1px solid #aea9a9;
    padding-right:20px;
    padding-left:20px
}
.sessions-outer:last-child{
    border-right:0px!important
}
.sessions-inner{
    text-align:center;
    height:100%
}
.sessions-inner h3{
    font-family:proxima-nova,sans-serif;
    text-transform:capitalize;
    text-align:left;
    font-weight:700;
    font-size:26px;
    padding:10px 0;
    color:#3d79bc!important;
    line-height:1.1em
}
.sessions-inner p.speaker{
    font-family:proxima-nova,sans-serif;
    font-weight:400;
    font-size:18px;
    color:#2d3238;
    line-height:1.6em;
    text-align:left;
    padding-bottom:10px
}
.sessions-inner p.session-description{
    font-family:proxima-nova,sans-serif;
    font-weight:400;
    font-size:17px;
    color:#2d3238;
    line-height:1.6em;
    text-align:left;
    padding-bottom:25px;
    margin:0
}
.sessions-inner p{
    font-family:proxima-nova,sans-serif;
    font-weight:400;
    font-size:17px!important;
    color:#2d3238;
    line-height:1.6em;
    text-align:left;
    margin:0
}
.sessions-inner .bottom .image{
    width:100%;
    display:inline-block;
    margin:20px 0
}
.sessions-inner .bottom .icon{
    display:block;
    height:23px;
    width:auto;
    margin:0 3px 3px 0
}
.sold-flash{
    width:0;
    height:0;
    border-top:100px solid transparent;
    border-bottom:100px solid transparent;
    border-right:100px solid var(--gold);
    transform:rotate(45deg);
    position:absolute;
    top:-65px;
    left:-15px
}
.sold-flash p{
    color:#fff!important;
    font-weight:900!important;
    transform:rotate(-90deg);
    position:relative;
    padding:80px 0 0 52px!important;
    font-size:27px!important
}
.sponsored{
    background:#fcfcfc;
    background:linear-gradient(153deg,#fcfcfc 0,#f2f2f2 35%);
    padding:20px 10px;
    border-radius:5px;
    border:1px dotted #3d78bd;
    margin-top:20px;
    min-height:200px!important
}
.sponsored h6{
    font-size:1.3em
}
.sponsors-logo-landscape{
    padding-bottom:10px
}
.sponsors-logo-landscape img{
    width:200px;
    height:auto;
    display:inline-block;
    mix-blend-mode:multiply
}
.sponsors-logo-portrait img{
    width:110px;
    height:auto;
    display:inline-block;
    margin:0;
    mix-blend-mode:multiply
}
.sponsor-btn{
    position:absolute;
    padding:10px 20px;
    background:#fff;
    color:#2d3238;
    font-size:14px;
    font-weight:700;
    border-radius:3px;
    letter-spacing:1px;
    border:2px solid var(--gold);
    text-transform:uppercase;
    font-family:proxima-nova,sans-serif;
    bottom:30px;
    left:50%;
    transform:translateX(-50%)
}
.sponsor-btn:hover{
    background:var(--gold);
    color:#fff!important
}
.headline-small-spon-outer{
    margin:20px 0 60px!important;
    background:#fff;
    -webkit-box-shadow:0 0 41px -10px rgba(0,0,0,.1);
    -moz-box-shadow:0 0 41px -10px rgba(0,0,0,.1);
    box-shadow:0 0 41px -10px rgba(0,0,0,.1);
    border:1px solid #d5d5d5;
    padding:20px
}
.headline-small-spon-outer h3{
    color:#fff;
    font-family:proxima-nova,sans-serif;
    font-size:30px;
    font-weight:700;
    padding:10px 20px;
    display:inline-block;
    margin-top:-40px;
    text-transform:uppercase;
    line-height:1.2em;
    min-width:90%;
    -webkit-box-shadow:0 -6px 22px -8px rgba(0,0,0,.45);
    -moz-box-shadow:0 -6px 22px -8px rgba(0,0,0,.45);
    box-shadow:0 -6px 22px -8px rgba(0,0,0,.45)
}
.headline-small-spon-inner{
    padding:20px 10px 00px;
    height:100%
}
.other-sponsorship{
    margin-bottom:0
}

.sponsorship{
    margin-bottom:0
}
.other-sponsor-outer{
    margin-bottom:30px!important;
    z-index:0;
    position:relative!important
}
.other-sponsor-inner{
    border-bottom:1px dotted #3d78bd;
    padding-bottom:0;
    height:100%;
    min-height:300px
}
.other-sponsor-inner .title-box{
    position:relative;
    text-align:center;
    margin-bottom:20px;
    min-height:220px
}
.other-sponsor-outer h3{
    color:#fff;
    font-family:proxima-nova,sans-serif;
    font-size:30px;
    font-weight:700;
    padding:10px 20px;
    display:inline-block;
    margin-top:-40px;
    text-transform:uppercase;
    line-height:1.2em;
    min-width:90%;
    -webkit-box-shadow:0 -6px 22px -8px rgba(0,0,0,.45);
    -moz-box-shadow:0 -6px 22px -8px rgba(0,0,0,.45);
    box-shadow:0 -6px 22px -8px rgba(0,0,0,.45)
}
.headline-small-spon-outer p,.other-sponsor-outer p{
    color:#3333333;
    font-family:proxima-nova,sans-serif;
    font-size:16px;
    font-weight:400;
    margin:20px 0 30px!important;
    padding:0 50px
}
.other-sponsor-inner .image-holder{
    width:100%
}
.other-sponsor-inner .image-holder img{
    width:100%;
    border:1px solid grey
}

/*** 

====================================================================
	Map Section
====================================================================

 ***/

.map-section{
	position:relative;
    padding-top: 0px !important;
    
}

.map-outer {
    
    
}
.map-section .container{
	max-width: 1400px;
}

.map-data{
	text-align:center;
	font-size:15px;
	font-weight:400;
	line-height:1.8em;
}

.map-data h6{
	font-size:20px;
	font-weight:700;
	text-align:center;
	margin-bottom:5px;
	color:#3e77bc;
}

.map-canvas{
	height:550px;
}

/*** styles from google ***/

.gm-control-active {background: #E5E5E5 !important}

.gm-control-active:hover {background: #3d79bd  !important}

.gm-style .gm-style-iw-c {
    background-color: white;
    border-radius: 0px !important;
    padding: 20px 30px 20px !important;
    
}

.gm-style .gm-style-iw-t::after {
    background: white;
    box-shadow: -2px 2px 2px 0 rgba(178,178,178,.4);
    content: "";
    height: 25px;
    left: 0;
    position: absolute;
    top: 0;
    transform: translate(-50%,-50%) rotate(-45deg);
    width: 25px;
}
.contact-outer{
    margin:20px 0 10px
}
.contact-inner{
    padding:25px 25px 10px;
    height:100%
}
.contact-inner h4{
    margin-bottom:24px;
    padding-bottom:8px;
    border-bottom:1px solid #3d78bd;
    font-weight:500;
    line-height:1.25em;
    text-transform:uppercase;
	letter-spacing: 0.25rem;
	font-size: 1.35em
}


.contact-inner h5{
    color:var(--teal);
	font-weight: 700;
	font-size: 1.25em;
	padding-top:15px;
padding-bottom: 0px}



.contact-inner h6{
    margin-top:0;
    margin-bottom:12px;
    font-weight:500;
    color: var(--dark-blue);
    font-size:17px
}
.contact-inner a,.contact-inner p{
    margin-top:0;
    margin-bottom:0;
    font-weight:400;
    color:#2d3238;
    font-size:17px;
}

.contact-inner .ContactDetailsIcon{
    font-size:1.2em;
    float:left;
    margin-right:8px;
    display:block;
}

.contact-inner .ContactDetailsIcon.fa-envelope{
	cursor: pointer;
	
}

.contact-inner .ContactDetailsIcon.fa-phone{
  border-left: 2px solid black;
	
	padding-left: 10px;

	cursor: pointer;
	
}

.contact-inner a .icon:hover{
	 color: var(--teal)
}


.contact-headshot{
    margin: 0;
    padding:0
}
.contact-headshot img{
    border:1px solid #C8C8C8;
    border-radius:50%;
    width:160px
}
.global-offices-section{
	
    margin:10px 0 0;
    background:#eee;
    padding-bottom:20px;
border-top: 60px solid #3D79BC
}
.global-offices-outer{
    padding:40px 20px
}
.global-offices-outer h3{
    font-size:25px;
    padding:20px 20px 15px;
    border-bottom:1px solid #3d79bc;
    margin-bottom:15px;
	text-align: left
}




.global-offices-outer .logo-box{
    padding:0 10px
}

.global-offices-outer .logo-box img{
	width: 75%
}
.global-offices-inner{
    padding:0 30px;
	border-bottom: 1px solid white
}
.global-offices-inner h4{
    font-weight:700;
    color:#3d79bc;
    font-size:19px;
    margin:20px 0 10px;
    font-family:proxima-nova,sans-serif
}
.global-offices-inner h5{
    color:#2d3238;
    font-size:16px;
    font-family:proxima-nova,sans-serif
}
.global-offices-inner p{
    color:#2d3238;
    font-size:14px;
    font-family:proxima-nova,sans-serif
}
.global-offices-inner a{
    font-family:proxima-nova,sans-serif;
    color:#3d79bc!important;
    font-size:16px!important;
    font-weight:700
}
.global-offices-inner a:hover{
    text-decoration:underline!important
}
.endorsements-section{
    position:relative;
    padding:50px 0 40px;
    margin:-80px 0 40px
}
.endorsements-outer{
    padding:0 10px;
    margin-bottom:20px
}
.endorsements-outer .inner-box{
    padding:20px 25px!important;
    border-radius:5px;
    -webkit-box-shadow:inset 1px 2px 30px 0 rgba(0,0,0,.03);
    -moz-box-shadow:inset 1px 2px 30px 0 rgba(0,0,0,.03);
    box-shadow:inset 1px 2px 30px 0 rgba(0,0,0,.03);
    height:100%
}
.media-grey{
    background-color:#e5e5e5
}
.exhibitor-grey{
    background-color:#f7f7f7
}
.endorsements-outer h3{
    color:#2d3238;
    text-align:center;
    display:inline-block;
    margin-bottom:15px;
    font-weight:700;
    font-size:26px;
    text-transform:uppercase;
    border-bottom:2px solid #3d78bd
}
.endorsements-block{
    padding:10px!important;
    text-align:center;
    position:relative
}
.endorsements-block .inner{
    padding:15px 10px;
    border:1px solid #fff;
    -webkit-box-shadow:1px 2px 12px 0 rgba(0,0,0,.03);
    -moz-box-shadow:1px 2px 12px 0 rgba(0,0,0,.03);
    box-shadow:1px 2px 12px 0 rgba(0,0,0,.03);
    height:100%;
    background:#fff;
    position:relative
}
.endorsements-block .inner .logo-holder{
    margin:0 auto;
    line-height:90px;
    width:180px;
    height:90px
}
.endorsements-block .inner .logo-holder img{
    height:auto;
    vertical-align:middle;
    max-height:90px
}
.endorsements-block .inner p{
    font-style:italic;
    font-size:18px;
    margin:15px 0 7px;
    line-height:1.4em
}
.endorsements-block .inner h6{
    font-weight:700;
    font-size:17px;
    color:#000
}
.auxilary-pages-section{
    position:relative;
    padding:70px 0 40px
}
.auxilary-inner{
    max-width:700px;
    display:block;
    margin:0 auto
}
li.IMM-T-Cs-heading{
    color:var(--gold);
    font-family:proxima-nova,sans-serif;
    font-size:17px;
    font-weight:700;
    line-height:1.8;
    list-style-position:outside;
    list-style-type:decimal;
    margin:20px 0 0;
    text-align:left;
    text-transform:uppercase
}
li.IMM-T-Cs-main,p.IMM-T-Cs-main,li.IMM-T-Cs-nested-list{
    color:#000;
    font-family:proxima-nova,sans-serif;
    font-size:15px;
    font-weight:400;
    line-height:1.3;
    margin:0 0 10px;
    text-align:left;
    text-transform:none;
    widows:1;
    margin-bottom:0;

}





.auxilary-inner table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: proxima-nova, sans-serif;
    font-size: 15px;
    color: #000;
    text-transform: none;
}

.auxilary-inner th,
.auxilary-inner td {
    border: 1px solid #ccc;
    padding: 10px 12px;
    text-align: left;
    vertical-align: top;
    font-weight: 400;
    line-height: 1.4;
}

.auxilary-inner th {
    background-color: #f9f9f9;
    font-weight: 600;
}

.auxilary-inner tr:nth-child(even) {
    background-color: #fafafa;
}


.left{
    left:0
}
.right{
    left:50.1%
}
.right::after{
    left:-16px
}
@media screen and (max-width:600px){
	
	#site-header .summit-btn .btn img {
		
		top: 0px
	}
	
	#site-header .summit-btn .dropdown-menu {
    margin-top: -36px;
 }
	
	
    .left::after,.right::after{
        left:15px
    }
    .right{
        left:0
    }
}
.video-wrapper{
    position:relative;
    padding-bottom:56.25%;
    height:0
}


/* 2023 SPEAKER SECTION */

.speaker h6 {
	
	text-transform: uppercase;
	letter-spacing: 0.4rem;
	font-weight: 400;
	font-size: 1.05em;
	padding-bottom: 2px

}

.speaker p {
	

	font-size: 1em;

}

.speaker img {
	
	width:100%;
	height:auto;
	border-radius: 50%;
	margin: 20px 0px;
	display: block
}

.speaker p.title {
	
	padding-bottom: 0px;
	color: var(--dark-blue)
	
}

.speaker p.organisation {
	
	font-weight: 700
	
	
}


/*SUMMIT PAGE */

.SummitHeadshotSection.owl-carousel .owl-stage {
    transition: transform 0.6s ease;
}

.SummitHeadshotSection.owl-carousel .owl-item {
    transition: transform 0.6s ease;

}



.SummitHeadshotSection {
    position: relative;
}

.SummitHeadshotSection .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    display: flex;
    
}

.SummitHeadshotSection .owl-nav button {
    border: none;
    background-color: transparent;
    font-size: 20px;
    color: #000;
    cursor: pointer;
}
.SummitHeadshotSection .owl-nav button:hover{
    background-color:transparent !important;
}
.SummitHeadshotSection .owl-nav .owl-prev {
    margin-right: 10px; 
}

.SummitHeadshotSection .owl-nav .owl-next {
    margin-left: 10px; 
}
.owl-nav button i.fa{
    color: #de913b;
}

.SummitHeadshotSection span{
    font-size: 35px !important;
    font-weight:bold;
    color: #de913b;
    background-color: #f3eade;
    padding: 0px 11px;
    cursor:pointer;
}


.owl-carousel .owl-item img {
    display: block;
    margin: 0 auto;

}

.SpeakersCarouselSection{
    background-color:#fcf9f4;
    max-width: 100%;
    margin: o auto;
}
.SpeakersCarouselSection h3.speakers{
    color: #000000;
    padding-top:25px;
    padding-bottom: 10px;    font-family: proxima-nova, sans-serif;

    font-weight:600;
    font-size: 25px;
}

.SpeakersCarouselSection .owl-carousel .item img{
    border-radius:100%;
}


.SpeakersCarouselSection .owl-carousel .item h6{
    color: var(--teal);
	font-family: proxima-nova, sans-serif;
    font-weight: 400;
    padding-top: 15px;
    margin-bottom: 0;
	font-size: 1.1em;
	letter-spacing: 0.3rem
}
.SpeakersCarouselSection .owl-carousel .item .title{
    color:#585858;
    font-size: 16px;
	font-family: proxima-nova, sans-serif;
    font-weight: 400;
    background-color:transparent!important;
    text-align: center!important;
}
.SpeakersCarouselSection .owl-carousel .item .organisation{
    color:#000000;
    font-size: 16px;
	font-family: proxima-nova, sans-serif;

    font-weight: 500;
    background-color:transparent!important;
    text-align: center!important;
    padding:0;
}


.SpeakersCarouselSection .meet-speakers{
    padding-top: 10px;

}
.SpeakersCarouselSection .meet-speakers a{
    color: #ffffff;
    background-color: #de913b;
    padding: 10px 15px;    font-family: proxima-nova, sans-serif;

    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 0.2px;
}


/* Section2 */
.SummitPanelsSection{
    margin-top:30px;
}
.SummitPanelsSection .session-timings{
  background-color: var(--light-blue);
  padding:11px 0;
  margin-bottom: 30px;
  width:100%;
}
.SummitPanelsSection h3.session{
    color: #000000;
    padding-top:25px;
    padding-bottom: 33px;    font-family: proxima-nova, sans-serif;

    font-weight:600;
    font-size: 25px;

}
.SummitPanelsSection .session-timings .clock img{
    width: 25px;
    height: 25px;
    margin-right: 6px;
}
.SummitPanelsSection .session-timings .time{    font-family: proxima-nova, sans-serif;

    font-weight:600;
    color:#000000;
    font-size:18px;
	
			        

}
.SummitPanelsSection .session-timings .welcome-text{    font-family: proxima-nova, sans-serif;

    font-weight:700;
    color:var(--teal);
    font-size:18px;
}

/*---Accordion--*/
#accordion{
    padding-bottom: 25px;
}

.accordion-btn{
    align-items: end;
    align-content: end;
    justify-content: flex-end;
    display: flex;
    justify-content: flex-end;
    align-self: baseline;
    padding-top: 17px;
    padding-right:22px !important;
    background-color: transparent;
    position: absolute;
    right: 0;
    top: 0;

}
.accordion-icon {
    width: 24px;
    height: 12px;
    margin-right: 3px;
	    cursor: pointer !important;
  }
  .accordion-icon.active {
    display: none;
  }
 
.accordion-icon:hover {
	
	    cursor: pointer !important;

}

  /*---Accordion1----*/
  #accordion .accordion-item{
    border: 1px solid #726262;
    border-radius: 0;
    margin-bottom: 30px;
    position:relative;

  }
  #accordion .accordion-item .accordion-header .SummitPanelLeftBlock{
    background-color:var(--teal);
    text-align:center;
    padding-top:17px;
    transition: height 0.3s;
  }
  #accordion .accordion-item .accordion-header .SummitPanelLeftBlock.show {
    height: 100%;
  }
  #accordion .accordion-item .accordion-header .SummitPanelLeftBlock h5{
    color:#82878d;    font-family: proxima-nova, sans-serif;

    font-weight:400;
    text-transform:uppercase;
    font-size:18px;
    margin-bottom:8px;

  }
  #accordion .accordion-item .accordion-header .SummitPanelLeftBlock .clock{
    margin-left: -13px !important;
}
  #accordion .accordion-item .accordion-header .SummitPanelLeftBlock .timing .clock img{
      width:20px;
      height:20px;
  }
  #accordion .accordion-item .accordion-header .SummitPanelLeftBlock .timing .time{    font-family: proxima-nova, sans-serif;

    font-weight:600;
    font-size: 15px;
    color:#ffffff;
    padding-left:6px;

  }
  #accordion .accordion-item .accordion-header .SummitPanelLeftBlock .SpeakerAvatar{
    height: 40px;
	  width:auto;
    margin-top:16px;
	      margin-bottom:25px;

	  
  }
  #accordion .accordion-item .SummitPanelDetails{
    padding-left: 30px;
    padding-top: 20px;
    padding-bottom: 25px;
  }
  .align-content-center {
    align-content: center;
  }
h5.SummitPanelHeading{
	  
	 font-family: proxima-nova, sans-serif;
    font-weight: 700;
    color: var(--teal);
    font-size: 24px;
	  padding-bottom: 5px
  }

h6.SummitPanelHeading {
	  
	 font-family: proxima-nova, sans-serif;
    font-weight: 500;
    font-size: 19px;
	  padding-bottom: 10px;
	 border-bottom: var(--gold) 1px solid;
	 margin-bottom: 15px
  }

 #accordion .accordion-item .SummitPanelDetails p{
	  

    font-size: 16px;
	  padding-bottom: 20px
  }
  #accordion .accordion-item .SummitPanelDetails .SummitPanelDetails-section img{
      width:14px;
      height: 13px;
  }
  #accordion .accordion-item .SummitPanelDetails .SummitPanelDetails-section .SpeakerDetails{
	  
	  font-family: proxima-nova, sans-serif;

    font-weight: bold;
    color: #000000;
    font-size: 16px;
    padding-left:8px;
    vertical-align: middle;
  }

  /*---Accordion-body----*/
  .accordion-body{
      padding-left:0!important;
      padding-right:0!important;

  }
  .accordion-body .detail p{    font-family: proxima-nova, sans-serif;

    font-weight: 400;
    color: #000000;
    font-size: 16px;
  }

ul.gold-bullet-list {

 font-weight:  500;
  list-style-position: outside;
	list-style-image:url("../images/goldBullet.png");
	margin-left: -15px;
	margin-top:10px

}

 
 ul.gold-bullet-list li {
  color: black;  
	padding: 3px 0px 3px 10px ;

	
}


.accordion-body .add-speaker{
      padding-top:16px;
      padding-left:0 !important;
  }
  .accordion-body .add-speaker .item img.speaker{
    border-radius: 100%;
    width: 100%;
	  margin-top:15px
  }
 
.accordion-body .item h6{
          color: var(--teal);
	font-family: proxima-nova, sans-serif;
    font-weight: 400;
    padding: 15px 0px 3px ;
	font-size: 1.1em;
	letter-spacing: 0.2rem;
	display: block;
	text-transform: uppercase
}
.accordion-body .item .title{
    color:#585858;
    font-size: 16px;
	font-family: proxima-nova, sans-serif;
    font-weight: 400;
    background-color:transparent!important;
    text-align: center!important;
}
.accordion-body .item .organisation{
    color:#000000;
    font-size: 15px !important;
	font-family: proxima-nova, sans-serif;
    font-weight: 500;
    background-color:transparent!important;
    text-align: center!important;
}
.plus img{
    width: 16px;
    height: 16px;
}


/*---Accordion2----*/
#accordion  .accordion-item.accordiontwo .SummitPanelDetails {
    padding-top: 15px;
    padding-bottom: 15px;
}

  
  .accordion-item.accordiontwo .speaker-container .speaker-detail {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }

/*---Overlay----*/
.SpeakerOverlay{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-height: 100vh;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    background-color: rgb(25 ,37 ,59, 0.8);
    transition: opacity 0.3s ease;
    padding-bottom: 30px;
    z-index:10000;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }
  .SpeakerOverlay .speaker-img img{
    width:100%;
    border-radius: 100%;
  }
  .SpeakerOverlay .speaker-detail{
      text-align: left !important;
  }
  .SpeakerOverlay .speaker-detail h6 {
	color:var(--teal);
	text-transform: uppercase;
	letter-spacing: 0.4rem;
	font-weight: 400;
	font-size: 1.15em;
	padding-bottom: 2px

	  
  }
  .SpeakerOverlay .speaker-detail .title {
    color: #585858;
    font-size: 16px;
	 font-family: proxima-nova, sans-serif;
    font-weight: 400;
    text-align: left !important;
}
.SpeakerOverlay .speaker-detail .organisation{
    color: #000000;
    font-size: 16px;    font-family: proxima-nova, sans-serif;

    font-weight: 500;
    background-color: transparent!important;
    padding: 0;
    text-align: left !important;
	margin-bottom: 0px

}
.SpeakerOverlay .speaker-detail p{
	
	font-family: proxima-nova, sans-serif;
    font-weight: 400;
    color: #000000;
    font-size: 13px;
}
  .SpeakerOverlay.open {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease, height 0.3s ease;
  }
  .SpeakerOverlay.open .SpeakerOverlay-content {
    opacity: 1;
    height: auto;
    transition: opacity 0.3s ease;
  }
  
  .SpeakerOverlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65%;
	 max-width: 800px;
    background-color: #fff;
    padding: 40px 20px;
    color: #000;
    text-align: center;
    max-height: 70vh;
    overflow-y: auto;
    opacity:0;
    height: 0;
    transition: opacity 0.3s ease, height 0.3s ease;
-webkit-box-shadow: 0px 7px 72px 13px rgba(0,0,0,0.31);
-moz-box-shadow: 0px 7px 72px 13px rgba(0,0,0,0.31);
box-shadow: 0px 7px 72px 13px rgba(0,0,0,0.31);
  }
  /* Additional Animation Effects */
.SpeakerOverlay-content.fade-in {
    opacity: 0;
  }
  
  .SpeakerOverlay.open .SpeakerOverlay-content.fade-in {
    opacity: 1;
  }
  
  .SpeakerOverlay-content.slide-up {
    margin-top: 20px;
  }
  
  .SpeakerOverlay.open .SpeakerOverlay-content.slide-up {
    margin-top: 0;
  }
  .SpeakerOverlay.close-animation {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0s linear 0.3s;
  }
  
  .SpeakerOverlay.open.close-animation {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s ease;
  }

  .SpeakerOverlay .close-icon {
    position: absolute;
    top: 11px;
    right: 18px;
    cursor: pointer;
    color: #bcbcbc;
    font-size: 23px;
	  font-weight: 900;
	  z-index: 9999
  }
  .SpeakerOverlay .close-icon img{
    width: 18px;
    height: 14px
  }



/*---End Overlay-----*/

/*--------Media queries for responsivness-----*/
/*--For mobiles---*/
@media (min-width: 320px) and (max-width:575px){
   
    .SpeakersCarouselSection {
        padding-bottom: 33px;
    }
    .SpeakersCarouselSection h3.speakers {
        padding-top: 25px;
        padding-bottom: 7px;
        font-size: 21px;
    }
    .SummitHeadshotSection span {
        font-size: 24px !important;
        padding: 0px 9px;
    }
    .SpeakersCarouselSection .owl-carousel .item img {
        border-radius: 100%;
        width: 52% !important;

    }
	

	
   .SpeakersCarouselSection .owl-theme .owl-nav {
        margin-top: 0px;
    }
    .SpeakersCarouselSection .meet-speakers {
        padding-top: 0px;
    }
    .SpeakersCarouselSection .meet-speakers a{
        font-size:13px;
    }
    .SummitPanelsSection .session-timings {
        padding: 11px 6px;
    }
    .SummitPanelsSection h3.session {
        padding-top: 6px;
        padding-bottom: 19px;
        font-size: 21px;
    }

  
      
      .accordion-btn{
        padding-bottom: 13px;
        right: -8px;
        top: -4px;
      }
      #accordion .accordion-item .accordion-header .SummitPanelLeftBlock {
        padding-bottom: 17px;
    }
    #accordion .accordion-item .SummitPanelDetails {
        padding-left: 14px;
    }
    #accordion .accordion-item .SummitPanelDetails .SummitPanelDetails-section img {
        width: 12px;
        height: 11px;

    }
  .accordion-item.accordionone .accordion-body .add-speaker .speaker-txt .align-items-start{
        align-items: center !important;
    }
    #accordion .accordion-item .SummitPanelDetails .SummitPanelDetails-section .SpeakerDetails {
        font-size: 13px;
        padding-left:4px;
    }
   h5.SummitPanelHeading {
        font-size: 19px;
    }
    .accordion-body .detail p {
        font-size: 13px;
    }
    /*.accordion-body .add-speaker .item img.speaker {
        border-radius: 100%;
        width: 42%;
    }*/
   .accordion-item.accordiontwo .accordion-body .add-speaker .speaker-txt{
        text-align: center;
        padding-bottom: 25px;
    }
    .accordion-item.accordiontwo .accordion-body .add-speaker .speaker-txt:last-child(){
        padding-bottom: 0 !important;
    }

    .SummitPanelsSection{
        width:96% !important;
        height:100% !important;
    }
    .SummitPanelsSection .session-timings .welcome-text {
        font-size: 16px;
    }
    .SummitPanelsSection .session-timings .time {
        font-size: 16px;
		        

    }
    .SummitPanelsSection .session-timings .clock img {
        width: 23px;
        height: 23px;
    }
    .accordion-icon {
        width: 15px;
        height: 9px;
    }
    .accordion-item.accordiontwo .speaker-container {
        align-items: center;
      }
    /*---SpeakerOverlay---*/
    .SpeakerOverlay-content {
        width: 90%;
        max-height:70vh;
    }
  
    .SpeakerOverlay .speaker-detail .speaker-txt{
        text-align: center !important;
    }
    .SpeakerOverlay .speaker-detail .title {
        color: #000000;
        text-align: center !important;
    }

    .SpeakerOverlay .speaker-txt{
        padding-bottom: 0 !important;
    }
    .SpeakerOverlay .speaker-detail .organisation{
        color: #585858;
        text-align: center !important;
    }
    .SpeakerOverlay .speaker-detail .info p {
        text-align: justify;
    }
    .SpeakerOverlay .close-icon{
        top:14px;
    }
}

/*--For tablets---*/
@media (min-width: 576px) and (max-width:767px) {
    .SpeakersCarouselSection .owl-carousel .item img {
        border-radius: 100%;
        width: 66% !important;
    }
    .SpeakersCarouselSection .owl-carousel .item .organisation {
        line-height: 16px;
    }
    .SpeakersCarouselSection .owl-theme .owl-nav {
        margin-top: 0 !important;
    }
    .SummitHeadshotSection span {
        font-size: 23px !important;
    }
    .SpeakersCarouselSection .meet-speakers a {
        font-size:14px;
    }
    .SpeakersCarouselSection{
        padding-bottom: 38px;
    }
    .SpeakersCarouselSection h3.speakers{
        font-size:23px;
        padding-bottom: 4px;
    }
    .SummitPanelsSection{
        width:92% !important;
        height:100% !important;
    }
    .SummitPanelsSection h3.session{
        font-size:23px;
        padding-top: 13px;
        padding-bottom: 23px;
    }
    .SummitPanelsSection .session-timings .welcome-text {
        font-size: 15px;
    }
    .SummitPanelsSection .session-timings .time {
        font-size: 15px;
		        

    }
    .SummitPanelsSection .session-timings .clock img {
        width: 22px;
        height: 22px;
    }
    .accordion-icon {
        width: 14px;
        height: 8px;
    }
    .accordion-btn{
        padding-right:10px !important;
        right: -1px;
        top: -4px;
    }
  h5.SummitPanelHeading {
        font-size: 18px;
        margin-bottom: 4px !important;
    }
    #accordion .accordion-item .SummitPanelDetails .SummitPanelDetails-section .SpeakerDetails {
        font-size: 12px;
        padding-left: 5px;
    }
    #accordion .accordion-item .SummitPanelDetails {
        padding-left: 22px;
        padding-top:33px;
        padding-bottom:33px;
    }
    #accordion .accordion-item .SummitPanelDetails .SummitPanelDetails-section img {
        width: 11px;
        height: 10px;
    }

    #accordion .accordion-item.accordiontwo .SummitPanelDetails .SummitPanelDetails-section{
        margin-top: -6px;
    }
    #accordion .accordion-item .accordion-header .SummitPanelLeftBlock h5 {
        font-size:14px;
    }
    #accordion .accordion-item .accordion-header .SummitPanelLeftBlock .timing .time {
        font-size:14px;
    }
 
    #accordion .accordion-item.accordiontwo .accordion-header .SummitPanelLeftBlock .SpeakerAvatar {
        width: 109px;
        height: 33px;
    }
    .accordion-body .detail p{
        font-size:12px;
    }
    /*.accordion-body .add-speaker .item img.speaker {
        width: 105px;
    }*/
    .accordion-body .add-speaker {
        padding-top: 0;
    }
    .accordion-body .item h6 {
    color: var(--teal);
	font-family: proxima-nova, sans-serif;
    font-weight: 400;
    padding-top: 15px 0px 5px;
    margin-bottom: 0;
	font-size: 1.1em;
		
	
	}
    .accordion-item.accordiontwo .accordion-body .item .plus img {
        margin-bottom: 21px;
        width: 11px;
        height: 11px;
    }
    .accordion-body .item .title {
    font-size: 16px;
    }
    .accordion-body .item .organisation {
        margin-bottom: 10px;
        font-size: 16px !important;
    }
    .accordion-item.accordiontwo .speaker-container {
        align-items: center;
      }
   
    /*---SpeakerOverlay---*/
    .SpeakerOverlay-content {
        width: 72%;
        max-height: 52vh;
    }
    /*.SpeakerOverlay .add-speaker .item img.speaker {
        width: 85px !important;
    }*/
    .SpeakerOverlay-content{
        top:45%;
    }
   
    .SpeakerOverlay .close-icon img{
        width: 14px !important;
        height: 11px !important;
    }
    .SpeakerOverlay .speaker-detail h6{
        padding-top:7px;
    }
    
}

/*----For large tablets----*/
@media (min-width: 768px) and (max-width:991px) {
    .SpeakersCarouselSection h3.speakers{
        font-size:23px;
    }
    .SpeakersCarouselSection .owl-carousel .item img {
        width: 74% !important;
    }
    .SummitHeadshotSection span {
        font-size: 23px !important;
    }
    .SpeakersCarouselSection .meet-speakers a {
        font-size:15px;
    }
    .SpeakersCarouselSection{
        padding-bottom: 38px;
    }
    .SummitPanelsSection {
        width: 90% !important;
        height:100% !important;
    }
    .SummitPanelsSection h3.session {
        padding-top: 16px;
        padding-bottom: 27px;
    }
    .SummitPanelsSection .session-timings .welcome-text {
        font-size: 17px;
    }
    .SummitPanelsSection .session-timings .time {
        font-size: 17px;
		        

    }
    .SummitPanelsSection .session-timings .clock img {
        width: 24px;
        height: 24px;
    }
    .accordion-icon {
        width: 18px;
        height:9px;
    }
    .accordion-btn{
        padding-top: 13px;
        padding-right: 12px !important;
    }
    #accordion .accordion-item .SummitPanelDetails {
        padding-left: 20px;
    }
h5.SummitPanelHeading {
        font-size:19px;
        margin-bottom: 5px !important;
    }
    #accordion .accordion-item .SummitPanelDetails .SummitPanelDetails-section img {
        width: 13px;
        height: 12px;
    }
    /*.accordion-item .accordion-body .add-speaker .item img.speaker {
        width: 123px;
    }*/
    .accordion-item.accordiontwo .accordion-body .item .organisation {
        margin-top: -44px;
    }
    #accordion .accordion-item.accordiontwo .SummitPanelDetails .SummitPanelDetails-section{
        margin-top: -3px;
    }
      /* #accordion .accordion-item.accordiontwo .accordion-header .SummitPanelLeftBlock .SpeakerAvatar {
        width: 136px;
        height: 40px;
        margin-top: 10px;
    }*/
    #accordion .accordion-item .SummitPanelDetails .SummitPanelDetails-section .SpeakerDetails {
        font-size: 14px;
        padding-left: 8px;
    }
    .accordion-body .detail p{
        font-size:13px;
    }
    
    .accordion-body .item .organisation {
        margin-bottom: 10px;
    }
    .accordion-body .add-speaker {
        padding-top: 7px;
    }
    .accordion-item.accordiontwo .accordion-body .item .plus img {
        width: 14px;
        height: 14px;
        margin-bottom: 24px !important;
    }
    .accordion-item.accordiontwo .speaker-container {
        align-items: center;
      }
     
    /*---Overlay---*/
    .SpeakerOverlay-content {
        width: 70%;
        max-height: 60vh;
    }
    
    .SpeakerOverlay-content{
        top:56% I !important;
    }
    .SpeakerOverlay-content .close-icon{
            position: absolute;
            top: 16px;
            right:21px;
    }
    .SpeakerOverlay .close-icon img {
        width: 13px;
        height: 10px;
    }
    .SpeakerOverlay .speaker-detail p {
        font-size: 12px;
    }

}

/*---For desktops----*/
@media (min-width: 992px) and (max-width:1199px) {
    .SummitPanelsSection{
        width:85% !important;
        height:100% !important;
    }
   .SpeakersCarouselSection .owl-carousel .owl-item img {
        width: 85%!important;
    }
    .SpeakersCarouselSection .owl-carousel .item .organisation {
        font-size: 12px!important;

    }
    .SpeakersCarouselSection .owl-carousel .item .title{
    font-size: 16px;
    }
    #accordion .accordion-item .SummitPanelDetails {
        padding-top: 35px;
        padding-bottom: 35px;
        padding-right:12px !important;
    }
    .accordion-btn {
        padding-right: 17px !important;
        padding-top:15px;
    }
    .accordion-body .detail p {
        width: 95%;
    }
    .accordion-icon {
        width: 21px;
        height: 10px;
    }
    /*.accordion-body .add-speaker .item img.speaker {
        width: 130px;
    }*/
   
    .accordion-item.accordiontwo .accordion-body .item .plus img {
        margin-bottom: 17px !important;
    }
      /* #accordion .accordion-item .accordion-header .SummitPanelLeftBlock .SpeakerAvatar {
        width: 43px;
    }*/
      /* #accordion .accordion-item.accordiontwo .accordion-header .SummitPanelLeftBlock .SpeakerAvatar {
        width: 118px;
        height: 34px;
        margin-top: 10px;
    }*/
    .accordion-item.accordiontwo .SummitPanelDetails .SummitPanelDetails-section{
        margin-top: -3px;
    }
    .accordion-item.accordiontwo .accordion-body .item .organisation {
        font-size: 12px!important;
        margin-top: -43px;
    }
    .accordion-body .add-speaker {
        padding-top: 11px;
    }
    .speaker-txt{
        padding-bottom: 15px;
    }
   
    /*---SpeakerOverlay---*/
    .SpeakerOverlay-content {
        width: 63%;
        max-height: 58vh;
        top:45%;
    }
 
    .SpeakerOverlay .close-icon {
        position: absolute;
        top: 16px;
        right: 21px;
    }
    .SpeakerOverlay .close-icon img{
        width:14px;
        height: 11px;
    }
    .SpeakerOverlay .speaker-txt{
        padding-bottom: 0 !important;
    }
}

@media (min-width:1200px) and (max-width:1399px) {
   .SpeakersCarouselSection .owl-carousel .owl-item img{
        width: 79%!important;
        margin: 0 auto;
    }
    .SummitPanelsSection{
        width: 80% !important;
        height:100% !important;
    }
    /*.accordion-body .add-speaker .item img.speaker {
        width: 145px;
    }*/
    .accordion-btn{
        right:-6px;
    }
    /*----SpeakerOverlay---*/
    .SpeakerOverlay-content {
        width: 65%;
        padding: 20px 30px;
    }
    .SpeakerOverlay .speaker-img img {
        width: 100%;
        border-radius: 100%;
    }
    .accordion-icon {
        width: 20px;
        height: 10px;
        margin-right: 0px;
    }

       /*#accordion .accordion-item .accordion-header .SummitPanelLeftBlock .SpeakerAvatar {
        width: 45px;
        height: 36px;
    }*/
    .accordion-body .detail p {
        font-size: 14px;
        width:85%;
    }
    /* #accordion .accordion-item.accordiontwo .accordion-header .SummitPanelLeftBlock .SpeakerAvatar {
        width: 134px;
        height: 41px;
    }
   */
    .accordion-item.accordiontwo .accordion-body .item .plus img {
        margin-bottom: 29px;
    }
  
    .SpeakerOverlay-content{
        width: 58%;
        max-height: 64vh;
        top:47%;

    }

    .SpeakerOverlay .close-icon {
        top: 19px;
        right: 19px;
    }
    .SpeakerOverlay .close-icon img{
        width:14px;
        height: 11px;
    }
}

@media (min-width:1400px) and (max-width:1920px) {
    .SummitPanelsSection{
        width: 80% !important;
        height:100% !important;
    }
   .SpeakersCarouselSection .owl-carousel .owl-item img {
        width: 75%!important;
    }
    /*.accordion-body .add-speaker .item img.speaker {
        width: 160px;
    }*/
    .accordion-icon {
        width: 22px;
        height: 12px;
    }
       /*#accordion .accordion-item .accordion-header .SummitPanelLeftBlock .SpeakerAvatar {
        width: 50px;
        height: 43px;
       
    }*/
      /* #accordion .accordion-item.accordiontwo .accordion-header .SummitPanelLeftBlock .SpeakerAvatar {
        width: 151px;
        height: 42px;
    }*/
   
    .accordion-item.accordiontwo .accordion-body .item .plus img {
        margin-bottom: 25px;
    }
    .accordion-body .detail p {
        width: 85%;
    }
   
    
    /*----SpeakerOverlay---*/
    .SpeakerOverlay-content{
        width: 58%;
        max-height: 70vh;
        top:43%;

    }

    .SpeakerOverlay .close-icon {
        top: 19px;
        right: 19px;
    }
    .SpeakerOverlay .close-icon img{
        width:14px;
        height: 11px;
    }
    .SpeakerOverlay .close-icon {
        position: absolute;
        top: 20px;
        right: 24px;
    }
    .SpeakerOverlay .speaker-detail p{
        font-size:14px;
    }
}
@media (min-width:1921px){
    .SummitPanelsSection{
        width: 80% !important;
        height:100% !important;
    }
   .SpeakersCarouselSection .owl-carousel .owl-item img {
        width: 80%!important;
    }
 /* .accordion-body .add-speaker .item img.speaker {
        width: 167px;
    } */
    .accordion-icon {
        width: 22px;
        height: 12px;
    }
      /* #accordion .accordion-item .accordion-header .SummitPanelLeftBlock .SpeakerAvatar {
        width: 50px;
        height: 43px;
       
    }*/
       /*#accordion .accordion-item.accordiontwo .accordion-header .SummitPanelLeftBlock .SpeakerAvatar {
     
        height: 42px;
		width:auto
    }*/
    
    .accordion-item.accordiontwo .accordion-body .item .plus img {
        margin-bottom: 25px;
    }
    .accordion-body .detail p {
        width: 85%;
    }
    /*----SpeakerOverlay---*/
	
	
	
	
    .SpeakerOverlay-content{
        width: 47%;
        max-height: 70vh;
        top:38%;

    }
  
    .SpeakerOverlay .close-icon {
        top: 19px;
        right: 19px;
    }
    .SpeakerOverlay .close-icon img{
        width:14px;
        height: 11px;
    }
    .SpeakerOverlay .close-icon {
        position: absolute;
        top: 20px;
        right: 24px;
    }
    .SpeakerOverlay .speaker-detail p{
        font-size:15px;
    }
}

.summitHeadshot {
  position: relative;
}



.headshotOverlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: var(--dark-blue);
      border-radius:50%;
	


}

.summitHeadshot:hover .headshotOverlay {
  opacity: 0.7;
}

.headshotOverlayPlus {
  color: var(--gold);
  font-size: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

/* --- New Showcase gallery ---*/

	
.showcase-gallery .grid-item{
    display:none;
	}

	.masonry-grid-item a:hover:after{
    opacity:1;
		cursor: pointer
}

@media (min-width: 576px) {
	
	
            .masonry-grid {
                column-count: 1;
                column-gap: 1rem;
            }
            .masonry-grid-item {
                display: inline-flex;
                flex-direction: column;
                width: 100%;
                margin-bottom: 1rem;
                position: relative;
            }
			
            .masonry-grid-item img {
                width: 100%;
                height: 350px;
                object-fit: cover;
            }
			.masonry-grid-item.portrait img{
				height: 600px;
			}
			
            .masonry-grid:after {
                content: '';
                display: block;
                clear: both;
            }
	
		
		.masonry-grid-item a:after{
    content:'';
    background:rgba(0,0,0,.6);
    transition:.3s;
    opacity:0;
    width:100%;
    height:100%;
    position:absolute;
    top:0;
    left:0
}
	.masonry-grid-item a:hover:after{
    opacity:1;
		cursor: pointer
}
		
}

 @media (min-width: 768px) {
            .masonry-grid {
                column-count: 2;
            }
      			       .masonry-grid-item img {
                width: 100%;
                height: 200px;
                object-fit: cover;
            }
			.masonry-grid-item.portrait img{
				height: 416px;
			}
   
			
}


 @media (min-width: 992px) {
	 
	 .pointer-events-none {
  pointer-events: none
}
            .masonry-grid {
                column-count: 3;
            }
        	
           			       .masonry-grid-item img {
                width: 100%;
                height: 281px;
                object-fit: cover;
            }
			.masonry-grid-item.portrait img{
				height: 578px;
			}
   
		
}
/*--- 2024 HIGHLIGHTS SLIDESHOW ----*/


.highlights-container{
    width: 100%;
    max-width: 1170px;
    margin: auto;
}
.highlights-grid{
    display: flex;
    flex-wrap: wrap;
}
.highlights-grid .highlights-single{
    width: calc(33.33% - 20px);
    margin: 0 10px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 22%;
    background-color: #f1f1f1;
}
.highlights-grid .highlights-single img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .3s;
    transition: all .3s;
    transition-delay: .5s;
    transform: scale(.8);
}
.highlights-grid .highlights-single img.loaded{
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}
@media only screen and (max-width: 1024px){
    .highlights-grid .highlights-single{
        width: calc(50% - 20px);
        padding-bottom: 32%;
    }   
}
@media only screen and (max-width: 640px){
    .highlights-grid .highlights-single{
        width: calc(100% - 20px);
        padding-bottom: 63%;
    }  
}

	



 @media (min-width: 992px) {
	 
	 .pointer-events-none {
  pointer-events: none
}
            .masonry-grid {
                column-count: 3;
            }
        	
           			       .masonry-grid-item img {
                width: 100%;
                height: 281px;
                object-fit: cover;
            }
			.masonry-grid-item.portrait img{
				height: 578px;
			}
   
		
}


/* ERROr PAGE */

.errorPageContainer {
	
	   height: 100vh;
      display: flex;
      justify-content: center;
      align-items: top;
      background-image: url("../images/404.png");
      background-size: cover;
      background-position: center;
    }

    .error-text {
      text-align: center;
      padding: 8%;
		
    }


/*---Advisory Board----*/
.advisory-board-section .container {
  display: flex;
  flex-wrap: wrap;
}
.advisory-board-section .container .plus{
  text-align: -webkit-center;
}
.advisory-board-section .container .plus{
  display: grid;
  -ms-grid-column-align: center;
      justify-items: center;
}
/*---End Advisory Board----*/


/*---Overlay----*/
.SpeakerOverlay{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 100vh;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  background-color: rgb(25 ,37 ,59, 0.8);
  transition: opacity 0.3s ease;
  padding-bottom: 30px;
  z-index:10000;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}
.SpeakerOverlay .speaker-img img{
  width:100%;
  border-radius: 100%;
}
.SpeakerOverlay .speaker-detail{
  text-align: left !important;
}
.SpeakerOverlay .speaker-detail h6 {
  color:var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.4rem;
  font-weight: 400;
  font-size: 1.15em;
  padding-bottom: 2px
}
.SpeakerOverlay .speaker-detail .title {
  color: #585858;
  font-size: 16px;
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  text-align: left !important;
}
.SpeakerOverlay .speaker-detail .organisation{
  color: #000000;
  font-size: 16px;    font-family: proxima-nova, sans-serif;
  font-weight: 500;
  background-color: transparent!important;
  padding: 0;
  text-align: left !important;
}
.SpeakerOverlay .speaker-detail p, .SpeakerOverlay .speaker-detail ul li {
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  color: #000000;
  font-size: 13px;
}
.SpeakerOverlay .speaker-detail ul {
  padding-bottom: 1.3rem;
}
.SpeakerOverlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease, height 0.3s ease;
}
.SpeakerOverlay.open .SpeakerOverlay-content {
  opacity: 1;
  height: auto;
  transition: opacity 0.3s ease;
}

.SpeakerOverlay-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 65%;
  max-width: 800px;
  background-color: #fff;
  padding: 40px 20px;
  color: #000;
  text-align: center;
  max-height: 70vh;
  overflow-y: auto;
  opacity:0;
  height: 0;
  transition: opacity 0.3s ease, height 0.3s ease;
  -webkit-box-shadow: 0px 7px 72px 13px rgba(0,0,0,0.31);
  -moz-box-shadow: 0px 7px 72px 13px rgba(0,0,0,0.31);
  box-shadow: 0px 7px 72px 13px rgba(0,0,0,0.31);
}
/* Additional Animation Effects */
.SpeakerOverlay-content.fade-in {
  opacity: 0;
}

.SpeakerOverlay.open .SpeakerOverlay-content.fade-in {
  opacity: 1;
}

.SpeakerOverlay-content.slide-up {
  margin-top: 20px;
}

.SpeakerOverlay.open .SpeakerOverlay-content.slide-up {
  margin-top: 0;
}
.SpeakerOverlay.close-animation {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0s linear 0.3s;
}

.SpeakerOverlay.open.close-animation {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}

.SpeakerOverlay .close-icon {
  position: absolute;
  top: 11px;
  right: 18px;
  cursor: pointer;
  color: #bcbcbc;
  font-size: 23px;
  font-weight: 900;
  z-index: 9999
}
.SpeakerOverlay .close-icon img{
  width: 18px;
  height: 14px
}
/*---End Overlay-----*/