@font-face {
    src: url('../font/AmazonEmber-Regular.woff2') format("woff2");
    font-family: 'AmazonEmber-Regular';
}

@font-face {
    src: url('../font/AmazonEmberDisplay-Regular.woff2') format("woff2");
    font-family: 'AmazonEmberDisplay-Regular';
}

@font-face {

    src: url("../font/AmazonEmber-Bold.woff2") format("woff2");
    font-family: "AmazonEmber-Bold";
    font-weight: 700;
    font-style: normal;

}
@font-face {

    src: url("../font/EmberModernDisplay-Bold.ttf") format("truetype");
    font-family: "EmberModernDisplay-Bold";
    font-weight: 700;
   font-style: normal;

}
:root {
    --text-color: #161d26;
    --dark-blue: #232f3e;
    --blue: #35009E;
    --text-light:#161d26;
    --primary: #f90;
    --white: #fff;
    --btn-color: #6200FF;
    --bg-gray: rgb(250, 250, 250);


}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;


    /* overflow-x: hidden; */
}





html {
    scroll-behavior: smooth;
    scroll-padding-top: 78px;
}

body {
  
    font-family: 'AmazonEmberDisplay-Regular';
}
p{
    font-size: 16px;
}
ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;

}

h1, h2, h3, h4, h5, h6{
 font-family: "AmazonEmber-Bold";
}
 h2{
    font-size: 40px;
     margin: 0 0 32px 0;
    line-height: 1.5;
    
     color: var(--blue);
}

 h3{
    font-size: 28px;
     margin: 0 0 32px 0;
    line-height: 1.5;

     color: #1F3D5C;
}
img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}
.navPadding{
    padding-top: 78px;
}
.siteBg {
    background: var(--primary-dark);
}

.bgImg {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center
}
.siteInput {
    width: 100%;
    padding: 12px 20px;
    border-radius: 5px;
    color:#161d26;
    font-size: 16px;
    outline: none;
    font-family: 'AmazonEmber-Regular';
    transition: border-color 0.3s ease;
}
.siteInput::placeholder {
    color: #161d26;
}
.siteBtn {
    font-size: 14px;
    display: inline-block;
    line-height: 1.43;
    transition: all 0.5s ease;
    background: var(--primary);
    position: relative;
    color: var(--white);
    border-radius: 30px;
    z-index: 1;
    overflow: hidden;
    border: none;
    border: 1px solid var(--primary);
    box-shadow: inset 0 1px 0 hsla(0, 0%, 100%, .2);
    font-family: "AmazonEmber-Bold";
}

.siteBtn span {
    display: block;
    padding: 4px 24px;

}

.siteBtn.white {
    background: var(--white);
    border-color: var(--white);
    color: var(--text-color);
}
.siteLink{

    padding: 0 40px 0 0;
    position: relative;
    font-size: 18px;
    background: transparent;
    border:none;
    box-shadow: none;
    transition: all 0.3s ease;
    font-weight: 600;
}
.siteLink span {
    display: inline-block;
    transition: transform 0.3s ease;
}

.siteLink i, .siteLink img{
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    max-width: 20px;
    transition: all 0.3s ease;
}


.siteLink.white{
     color: var(--white);
}

.siteLink.white img{
    filter: brightness(0) invert(1);
}


.siteLink:hover i {
    transform: translateY(-50%) translateX(5px);
}

.siteLink.active {
    background: linear-gradient(90deg, #35009E, #6A00FF, #ff5cd6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.mobile-only {
    display: none !important;
}

.sectionPadding{
    padding: 60px 0;
}
.sectionPadding-lg{
    padding: 100px 0;
}

.tab-pane {
  display: none;
}
.tab-pane.active {
  display: block;
}
.navbar {
   padding: 0;
   
    position: fixed;
    top: 0;
    left: 0;
    height: 78px;
    width: 100%;
    z-index: 9999999;
    background: var(--white);
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;;
}

.navbar ul {
    display: flex;
    gap: 40px;
    margin-bottom: 0;
}

.navbar ul li a {
    font-size: 17px;
    line-height: 1;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition-medium);
    padding: 30px 10px;
    display: inline-block;
    position: relative;
}
.navbar ul li a:after{
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #35009E, #6A00FF, #ff5cd6);
    opacity: 0;
    visibility: hidden;
}

.navbar ul li a.active:after{
        visibility: visible;
    opacity: 1;
}
.navbar ul li a:hover {
 background: linear-gradient(90deg, #35009E, #6A00FF, #ff5cd6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.navbar ul li a.siteLink {
    padding-right: 40px;

}

.navbar ul li a.siteLink:hover i, .navbar ul li a.siteLink.active i{
    background: linear-gradient(90deg, #35009E, #6A00FF, #ff5cd6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} 
.navbar ul li a.siteLink::after{
    display: none;
}
.menuToggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}


.heroSection {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-top: 78px;


}

.heroVideo {
 
    width: 100%;
    height: 100%;
    object-position: top;
    object-fit: cover;
    display: block;
 
}
.heroTitle{
      padding-top: 20px;
    padding-bottom: 30px;
}
.heroTitle img{
    max-width: 400px;
}
.heroContent .event-detail{
   color:var(--white);
}
.event-detail{
 
    display: flex;
    gap:7px;
    align-items: center;
    font-family: "AmazonEmber-Bold";
}
.event-detail i{
    font-size: 22px;
}
.event-detail a{
    text-decoration: underline;
}

.heroBtn{
    background: var(--white);
    color: var(--gray850);
    padding: 12px 30px;
    border-radius: 10px;
    font-weight: bold;
    width: auto;
    display: table;
    clear: both;
}

.event-info-bar {
 
    z-index: 1;  
   position: relative;  
  padding:24px 0;
  background: -webkit-linear-gradient(to left, rgba(247,0,104,1) 0%, rgba(68,16,102,1) 100%);
  background:linear-gradient(to left, rgba(247,0,104) 0%,rgba(68,16,102,1) 100%);
    
}

.event-info-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
 
}

.event-info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
}

.event-info-item img {
  width: 24px;
  height: 24px;
  object-fit: contain;

}


.mainSection{
    padding-top: 20px;
    padding-bottom: 32px;
}
.mainLayout{
      display: flex;
        align-items: flex-start;
}
.sidebar {
    flex: 0 0 30%;
    position: sticky !important;
    top: 80px;
    z-index: 999;
     align-self: flex-start; 
}
#mobiledetails {
    position: fixed;
    top: 0;
    text-align: left;
    padding: 20px 30px;
    z-index: 9999;
    border-radius: 0 0 15px 15px;
    width: 100%;
    left: 0;
    color: white;
    background: linear-gradient(95deg, #3e8dff, #341478);
    transform: translateY(-100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
}
#mobiledetails.show {
  transform: translateY(0);
  opacity: 1;
}
.sidebarWrapper {
    width: 90%;
    margin-left: 0;
    padding: 12px 0;
    position: relative;
  
    text-align: left;
}

.sidebar .nav-pills {
    width: 100%;
    margin: auto;
    text-align: left;
    position: relative;
    display: inline-block;
 
}
.agendaMain ul.nav-pills {
   border: 1px dotted #d1cfcf;
    border-radius: 5px;
    padding:5px;
    width: fit-content;
    margin: 0 auto;
}
.nav-pills .nav-link {
    color: var(--text-light);
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    background: none;
    text-align: left;
}

.nav-pills .nav-link.active {
    background: var(--blue);

}
.main-content{
  flex: 0 0 70%;
  padding-top: 15px;

}


.main-content p{
    font-size: 16px;
    color:var(--dark-blue);
 
}
p strong{
    font-weight:500;
   font-family: "AmazonEmber-Bold";
}
.spacing {
    height: 40px;
    clear: both;
}
.eventHighlight {
    background: linear-gradient(90deg, #300061 0%, #4500BA 50%, #5900B2 100%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}
.eventHighlight::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 180px;
    height: 180px;
    background: url("../images/illustration1.png") no-repeat;
    background-size: contain;
    z-index: -1;
}
.eventHighlight::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    background: url("../images/illustration2.png") no-repeat;
    background-size: contain;
    z-index: -1;
}
.highlightBox {
    background: #fff;
    padding: 42px;
    overflow: hidden;
    position: relative;
    height: 100%;
    z-index: 1;
}

.highlightBox h4{
    font-size: 22px;
}
.highlightBox:before{
    content:"";
    position: absolute;
    background: linear-gradient(180deg,  #4500BA 41%, #5900B2 100%);
    width: 100%;
    height: 20px;
    top:0;
    left:0;
    border-radius: 0 0 15px 15px;
    transition: all 0.3s ease;
    z-index: -1;
}
.highlightBox:hover:before{
    height: 100%;
    background:linear-gradient(180deg, #35009E, #6A00FF, #ff5cd6);
    border-radius: 0;
}

.highlightBox:hover h4, .highlightBox:hover p{
    color: #fff;
}
.speakerBox {
    position: relative;
    padding: 10px;
    border-radius: 20px;
    transition: 0.4s ease-in-out;
    border: 2px dotted var(--blue);
    margin-bottom: 60px;
}

.speakerImg {
    transition: all 0.5s ease;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
     aspect-ratio: 1 / 1;   /* 1:1 square */

}

.speakerImg:after {
    content: "";
    position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%) rotate(-45deg);
    z-index: 1;
}

.speakerImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: 0.6s ease-in-out;
      display: block;
}

.speakerBox:hover .speakerImg:after {
    height: 250%;
    background-color: transparent;
    transition: 600ms linear !important;
}

.speakerBox:hover .speakerImg img {
    transform: scale(1.1);
}

.speakerDetails {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: -40px;
    padding: 20px;
    background: var(--white);
    box-shadow: 0 10px 18px rgba(229, 229, 229, 0.8);
    border-radius: 20px;
    z-index: 2;
    text-align: center;
    min-height: 125px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.speakerBox h5 {
    font-size: 18px;
    line-height: 1.2em;
    font-weight: 600;
    color: var(--blue);
    font-family: "AmazonEmber-Bold";
}

.speakerBox p {
    font-size: 13px;
    color: #555;
    margin: 0;
}
.sponsors{
     background: linear-gradient(90deg, #300061 0%, #4500BA 50%, #5900B2 100%);
     position: relative;
     overflow: hidden;
     z-index: 1;}
.sponsors::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 180px;
    height: 180px;
    background: url("../images/illustration3.png") no-repeat;
    background-size: contain;
    z-index: -1;
}
.sponsors::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 200px;
    height: 200px;
    background: url("../images/illustration4.png") no-repeat;
    background-size: contain;
    z-index: -1;
}
.sponsorRow{
    border-bottom: 1px dashed rgba(255, 255, 255, 0.5);
}
.sponsorRow:last-child{
    border-bottom: none;
}
.sponsorRow h3{
    font-size: 32px;
}
.sponsorBox{
  width: 90%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}
.sponsorBox img{
    max-height: 90px;
    object-fit: contain;
    max-width:180px;
}
.sponsorBox img.small{
    max-width: 120px;
}

.block-tab {
    border: 1px dotted #d1cfcf;
    border-radius: 5px;
    -webkit-border-radius: 5px;
}
.block-tab .block-detail {
    border-bottom: 1px dotted #d1cfcf;
    padding: 25px;
    cursor: pointer;
    overflow: hidden;
   transition: background-color 0.3s ease, color 0.3s ease;
}

.break-item {
    background: #f4f4f6;
    text-align: center;
    cursor: default;
}

.break-item .topic {
    font-weight: 600;
    color: #555;
    font-size: 16px;
}

.break-item .time {
    color: #777;
    margin-bottom: 6px;
}

.break-item:hover {
    background: #f4f4f6; 
}

.block-tab .block-detail ul li{
    list-style-type: disc;
    font-size: 14px;
}
.block-tab .block-detail .block-text p{
    font-size: 14px;
}
.block-tab .block-detail:first-child {
    border-radius: 5px 5px 0 0;
    -webkit-border-radius: 5px 5px 0 0;

   
}
.block-tab .block-detail:last-child {
    border-bottom: none;
}

.block-tab .block-detail .time {
    color: var(--text-color);
    margin-bottom: 4px;
    font-weight: bold;
    font-size: 17px;

}
.block-tab .block-detail span {
    display: block;
    font-size: 16px;
}
.block-tab .block-detail .block-text {
    opacity: 0;
   max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}
.block-tab .block-detail:has(.block-text):hover {
    background-color: #35009E;
    color: #ffffff;
}
.block-tab .block-detail:not(:has(.block-text)){


}
.block-tab .block-detail:has(.block-text):hover span,
.block-tab .block-detail:has(.block-text):hover li,
.block-tab .block-detail:has(.block-text):hover a {
    color: #ffffff !important;
}

.block-tab .block-detail:has(.block-text):hover .block-text {
    opacity: 1;
    max-height: 500px; 
    margin-top: 10px;
}
#vosmosForms{
    position: relative;
}
.registration-closed {
  background: linear-gradient(180deg, #35009E, #6A00FF, #ff5cd6);
  border-radius: 10px;
  padding: 80px;
  text-align: center;
}

.registration-closed h3 {
  color: var(--white);
  margin-bottom: 10px;
  font-family: "AmazonEmber-Bold";
}

.registration-closed p {
  color: #fff;
  margin: 0;
}

.formImg img{
max-width: 300px;
}
.footer{

    position: relative;
    background: var(--text-color);
}
.footerLogo img{
    max-width: 200px;
}


.footerTop h5 {
    font-size: 28px !important;
    line-height: 28px;
    font-weight: 300;

}

.social img {
    height: 200px;
    width: auto;
}
.footerBottom{
    padding-bottom: 30px;
}

.footer a {

    text-align: center;
    display: inline-block;
}
.footer a,
.footer  p {
    color: var(--white);
    font-size: 13px;
    line-height: 18px;
    margin-bottom: 0;
    transition: all 0.3s ease;
}
.footer a:hover {
    background: linear-gradient(90deg, #6A00FF, #ff5cd6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.thankyouBox h1 {
    font-size: 60px;
    margin: 0 0 32px 0;
    line-height: 1.5;
    font-family: "AmazonEmber-Bold";
}