/* Reset some default styles */
body, h1, h2, h3, p, ul, li {
    margin: 0;
    padding: 0;
}

/* Global Styles */
body {
    font-family: Poppins, sans-serif;
    background-color: #DAE1E4;
    color: #063C52;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #063C52;
}

/* Header Styles */
header {
    background-color: #c3c5bf;
    padding: 10px 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    width:100%;
    position:fixed;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    z-index:100;
}

.hidden-header {
    display: none;
}

.logo-link {
    display: flex;
    margin:0;
    top:50%
}


/** Logo and Page Title Styles **/
/* Logo in the header */
.header-logo {
    height: 80px;
}

/* Style for title in header */
.logo h1 {
    font-family: Poppins, sans-serif;
    font-size: calc(6px + 1vw);
    color: #ffffff;
    height: 1em;
    position: relative; 
    text-decoration: none;
    margin-left: 20px;
    padding-bottom: 10px;
    padding-right: 5px;
    padding-left: 5px;
    padding-top: 5px;
    display: inline-block;    
    /*background-color: #792528;*/
    /* background: linear-gradient(to top, #792528 50%, transparent 50%); */
    /* background: rgb(255,255,255); */
    /* background: linear-gradient(to top, #792528 58%, transparent 58%, transparent 100%) */
    background: linear-gradient(to top, transparent 0, transparent 5%, #792528 5%, #792528 60%, transparent 60%, transparent 100%);
}


/* Navigation Styles */
nav{
    display:flex;
    margin-left:20px;
    margin-right:20px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    font-family: Poppins, sans-serif;
    font-size: clamp(6px, 3vw, 20px);
    font-weight: 700;
    /* font-size: calc(6px + 1vw); */
    color: #7a2528;
    text-decoration: none;
}

/*for small nav links at very top of home page*/
#index-header{
    text-align: right; 
    height:30px; 
    padding-top:10px; 
    padding-bottom:10px; 
    background-color: #0bb4c1;
}

/* Styles for the Hero Section */
.hero {
    position: relative;
    height: 500px; /* Adjust the height as needed */
}

.hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Positioning for the Hero Content */
.hero-content {
    position: absolute;
    width: 100%;
    height:100%;
    top:0;
    left:0;
    text-align: left;
}

/* Main Title Style (Primary Header) */
.primary-header {
    top: 25%; /* 1/3 of the way down from the top */
    left: 12%; /* 1/3 of the way in from the left */
    padding: 10px 20px;
    /* max-width: 70%; */
    display: inline-block;
    position: relative;
}

.primary-header a h1 {
    font-family: Poppins, sans-serif;
    font-size: clamp(15px, 4vw, 60px);
    color: white;
    padding-left: 5px;
    padding-right: 5px;
    background: linear-gradient(to top, transparent 0, transparent 5%, #792528 5%, #792528 78%, transparent 78%, transparent 100%);
    line-height: 1.25;
}

/* Secondary Header Style (Secondary Header) */
.secondary-header {
    color: white;
    /* background-color: #063C52; */
    padding: 10px 20px;
    display: inline-block;
    position: absolute;
    bottom: 20%; /* 1/5 of the way up from the bottom */
    right: 30%; /* 1/3 of the way in from the right */
    transform: translate(50%, 50%);
}

.secondary-header a h2 {
    font-family: Merriweather, sans-serif;
    font-size: clamp(15px, 3vw, 50px);
    color: white;
    padding-left: 5px;
    padding-right: 5px;
    background: linear-gradient(to top, transparent 0, transparent 5%, #063C52 5%, #063C52 78%, transparent 78%, transparent 100%);
    line-height: 1.25;
    text-align: right;
}

/* Main body container */
.main-container {   
    margin: 60px;
    padding: 20px;
    border: #f09341;
    border-style: solid;
}

/* Paragraph starting text */
.leadin {
    font-family: poppins, sans-serif;
    font-size: 150%;
    color: white;
    background-color: #063C52;
}

p {
    font-family: Merriweather;
    /* margin-top: 15px; */
    color: #063C52;
    /* font-size: 16px; */
}

.quote-container{
    position: relative;
    display:block;
    left: 20%;
    width: 80%;
    margin-top:10px;
    z-index: 1;
}

.quote{
    font-family: Poppins,sans-serif;
    /* background-color: #792528;
    color:#fff; */
    /* padding:10px; */
}

.quoted{
    /* display: block; */
    flex-direction: row;
    justify-content: flex-end;
    font-size: 80%; 
    padding-right: 4px;
    padding-left: 4px;
    /* display:inline; */
    /* font-family: Merriweather, sans-serif;
    background-color: #0bb4c1;
    color:#063C52; */
    font-family: Poppins,sans-serif;
    /* background-color: #063C52; */
    background: linear-gradient(to top, #063C52 0%, #063C52 80%, transparent 80%, transparent 100%);
    color:#fff; 
}

/* Slider container styles */
.slider-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    top: 40px;
    margin: 0 auto;
    position: relative;
}



/* Slider styles */
.slider {
    -webkit-appearance: none;
    appearance: none;
    background: transparent; 
    cursor: pointer;
    width: 100%;
    margin-top: 20px;
    /*  slider progress trick  */
    overflow: hidden;
    border-radius: 16px;
}

/* Track Styles */
/* Chrome, Safari, Opera, and Edge Chromium */
input[type="range"]::-webkit-slider-runnable-track {
    -webkit-appearance: none;
    background: #063C52;
    height: 1rem;

  }
  
  /* Firefox */
  input[type="range"]::-moz-range-track {
    background: #063C52;
    height: 1rem;
  }

/* Thumb Style */

/* Thumb: webkit */
input[type="range"]::-webkit-slider-thumb {
    /* removing default appearance */
    -webkit-appearance: none;
    appearance: none; 
    /* creating a custom design */
    height: 15px;
    width: 15px;
    background: #0bb4c1;
    border-radius: 50%;
    border: 2px solid #0bb4c1;
    /*  slider progress trick  */
    box-shadow: -1007px 0 0 1000px #f50;
  }

  /* Thumb: Firefox */
  input[type="range"]::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background: #fff;
    border-radius: 50%;
    border: 1px solid #f50;
    /*  slider progress trick  */
    box-shadow: -1007px 0 0 1000px #f50;
  }



/* Slider labels styles */
.slider-labels {
    position: absolute;
    top: -7px;
    width: 100%;
}

.slider-label {
    position: absolute;
    transform: rotate(-45deg);
    font-size: 14px;
    color: #063C52;
    white-space: nowrap;
}


/* Agenda Styles (Adjust as needed) */
#agenda-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    top: 40px;
    margin: 0 auto;
    position: relative;
    color: #ffffff;
}

#agenda {
    position: relative;
    background-color: #792528;
    padding:10px;
    top: 70px;
    width: 90%;
    /*border-radius: 8px;*/
}

.sessionDiv{
    margin-top: 15px;
    margin-bottom: 15px;
}

.talk-div{
    display:block;
}

.time {
    margin-top: 10px;
    margin-left: 20px;
    position:absolute;
    max-width: 11%;
    font-size: smaller;
}

.talk{
    left: 14%;
    font-family: Merriweather,sans-serif;
    background-color: #063C52;
    position: relative;
    padding:10px;
    margin-top:10px;
}

.speaker{
    left: 10%;
    position:relative;
    width: 90%;
    display: block;
}

.speaker a{
    color:inherit;
    text-decoration: underline;
}

.talk .title{
    text-decoration: none;
}

.show-abstract{
    text-decoration: underline;
}

.abstract {
    display: none;
    padding: 25px;
}

.abstract a {
    color: #fff;
    text-decoration: underline;
}

.hide-abstract{
    text-decoration: underline;
    /* float:right; */
}

.block-list{
    font-size: 80%;
}

.next-conf-container{
    padding-top: 150px;
    padding-right: 50px;
    padding-left: 50px;
}

/*Sponsorship logos section*/

#sponsorshipContainer{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80%;
    top: 140px;
    margin: 0 auto;
    position: relative;
}

#sponsorship{
    background-color: white;
}

#sponsorTitle{
    text-align: center;
    font-size: clamp(14px, 3vw, 36px);
    text-decoration: underline;
    margin-bottom: 40px;
}
.sponsorRow{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    margin-top: 40px;
    margin-bottom: 40px;
}

.biglogo{
    /* margin:30px; */
    width: 20%;
    max-height: 200px;
}

.smalllogo{
    /* margin:30px; */
    width: 15%;
    max-height: 100px;
}