
/* TEXTE DEFILLANT */
.marquee-container {
width: 100%; /* Or a fixed width */
overflow: hidden;
border: 1px solid #ccc;
box-sizing: border-box;
font-size:small;
}

.marquee-text {
/* Prevents text from wrapping to the next line */
white-space: nowrap; 
/* The text's animation properties */
animation: scroll-left 40s linear infinite;
display: inline-block; /* Allows width to be set by content */
padding-left: 100%; /* Starts the text off-screen to the right */
font-size:small;
}

/* Defines the animation's start and end points */
@keyframes scroll-left {
/* Initial position: off-screen to the right */
0% {
    transform: translateX(0);
}
/* Final position: moves left by 100% of its own width, plus 100% of the container width */
100% {
    transform: translateX(-100%);
}
}

.green-msg{
    color: darkgreen;
}

.blue-msg{
    color: navy;
}

.red-msg{
    color: red;
}


.carousel-container {
  width: 100%;
  max-width: 800px; /* Optional: Sets a max-width for the carousel */
  margin: 0 auto;
}

.carousel {
  display: flex;
  gap: 16px; /* Spacing between carousel items */
  overflow-x: auto; /* Enables horizontal scrolling */
  scroll-snap-type: x mandatory; /* Makes items snap into place horizontally */
  scroll-behavior: smooth; /* Enables smooth animated scrolling */
  -webkit-overflow-scrolling: touch; /* Improves scrolling on iOS */

  /* Optional: Hides the scrollbar but keeps scrolling functional */
  scrollbar-width: none;
}

/* For Webkit-based browsers like Chrome and Safari */
.carousel::-webkit-scrollbar {
  display: none;
}

.h5carousel{
  color: whiskey;
  font-weight: 700 !important;
  font-family: 'Montserrat','Raleway';
}


.container {
            padding: 20px;
            max-width: 1200px;
            margin: auto;
            display:table;
        }

section {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

section h2 {
    color: #1a4d2e;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.card {
    background: #eef5f0;
    padding: 15px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: scale(1.05);
}

.col1, .col2, .col3 {
            display:table-cell;
        }

.parallax-container {
    position: relative;
    height: 100vh;
    overflow: hidden;
}
.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Add specific styling for each layer */
}

.welcome-section-grid {
display: grid;
grid-template-columns: 1fr 1fr; /* Two equal-width columns */
gap: 50px;
align-items: center;
padding: 10px;
}

.welcome-image-grid img {
max-width: 100%;
height: auto;
border-radius: 10px;
}

.welcome-content-grid h3 {
font-size: 2.5em;
margin-bottom: 0.5em;
}

/* Make it responsive for smaller screens */
@media (max-width: 768px) {
.welcome-section-grid {
    grid-template-columns: 1fr; /* A single column on smaller screens */
}
.welcome-content-grid {
    text-align: center;
    justify-content: center;
}
}

.toolip-text{
    visibility:hidden;
    opacity:0;
}

.toolip-container:hover
.toolip-text{
    visibility:visible;
    opacity:1;
    color: navy;
    font-style:italic;
    font-weight:small;
    position:top;

}

.toolip-container{
    position:top;
}

.h1topics{
    text-align: center;
    color: #0F0E5A;
    font-weight: large;

}


.card-calendar:hover {
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    color: #0F0E5A;
}

.container-calendar {
    padding: 2px 16px;
}

.agenda{
    margin-right: 15px;
}


.tableone {
border-collapse: collapse;
font-family: Arial;
font-size: 11pt;
}

.tableone td {
text-align: left;
padding: 7px;
width: 150px;
}

.tableone tr:nth-child(odd) {background-color: #D9E1F2;}
.tableone tr:nth-child(even) {background-color: #FFFFFF;}

.tableone th {
    text-align: center;
    padding: 7px;
    font-weight: bold;
    color: #FFFFFF;
    background-color: #4472C4;
}


/* MODIF OCT 15 */
/* pargraph home page */
.h2paragraph{
    margin-top:70px;
    color:#043E84;
}
.h2paragraph-text{
    text-align: justify;
    font-size: x-large;
    font-family: 'Montserrat','Raleway';
    text-indent: 10px;
}

.col1-filedset, .col2-filedset{
    width:50%;
    padding: 0px;
    display:inline-block;
    vertical-align: middle;
}

.containerfieldset{
    color:#043E84; 
    font-size: 15px;
    padding:0px;
    margin-left:0px;
    margin-right:0px;
    margin-bottom:5px;
    margin-top: 5px
    vertical-align:middle;
    font-family: 'Montserrat','Raleway';
    max-width: 100%;
    justify-content:center;
}

legend{
    color: darkgreen; 
    font-size: x-large;
    vertical-align:middle;
    font-family: "Cambria";
    padding:0px;
    margin:0px;
}
.institute{
    color: darkgreen; 
    font-size: large;
    vertical-align:middle;
    font-family: 'Montserrat','Raleway';
}

.col1field, .col2field{
    display:table-cell;;
    vertical-align:top;
    width:50%;
    padding:0px;
    margin:0px;
    max-width: 100%;
}


.fieldset-flex {
  display: flex;
  justify-content: space-between; /* Distributes space between items */
  gap: 7px; /* Adds space between columns */
  margin-top:10px;
  margin-bottom:10px;
}

.fieldset-flex > div {
  flex: 1; /* Makes each div take up equal available space */
}


/* committee organization */
.col1fieldco, .col2fieldco, .col3fieldco {
    display:inline-block;
    max-width: 100%;
    vertical-align:middle;
    padding:30px;
}

.sectioncommittee .containeroc{
    align-items:center;
    align-content: center;
    align-self:center;
    padding:0px;
    margin:0px;
}

.titlefieldset{
    color:navy;
    background-color: blanchedalmond;
    font-size:22px;
}


/*===== // Resonsive Vertical Timeline =====*/
.body-timeline {
  background: #e6e6e6;
  font-family: 'Montserrat','Raleway';
  font-weight: 400;
}

/*===== Vertical Timeline =====*/
#conference-timeline {
  position: relative;
  max-width: 920px;
  width: 100%;
  margin: 0 auto;
}
.timeline-start,
.timeline-end {
  display: table;
  font-family: 'Montserrat','Raleway';
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  background: #00b0bd;
  padding: 15px 23px;
  color: #fff;
  max-width: 55%;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}
.conference-center-line {
  position: absolute;
  width: 3px;
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -2px;
  background: #00b0bd;
  z-index: -1;
}
.conference-timeline-content {
  padding-top: 67px;
  padding-bottom: 67px;
}
.timeline-article {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  margin: 20px 0;
}
.timeline-article .content-left-container,
.timeline-article .content-right-container {
  max-width: 44%;
  width: 100%;
}
.timeline-article .timeline-author {
  display: block;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #242424;
  text-align: right;
}
.timeline-article .content-left,
.timeline-article .content-right {
  position: relative;
  width: auto;
  border: 1px solid #ddd;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,.03);
  padding: 27px 25px;
}
.timeline-article p {
  margin: 0 0 0 60px;
  padding: 0;
  font-weight: 400;
  color: #242424;
  font-size: 14px;
  line-height: 24px;
  position: relative;
}
.timeline-article p span.article-number {
  position: absolute;
  font-weight: 300;
  font-size: 44px;
  top: 10px;
  left: -60px;
  color: #00b0bd;
}
.timeline-article .content-left-container {
  float: left;
}
.timeline-article .content-right-container {
  float: right;
}
.timeline-article .content-left:before,
.timeline-article .content-right:before{
  position: absolute;
  top: 20px;
  font-size: 23px;
  font-family: "FontAwesome";
  color: #fff;
}
.timeline-article .content-left:before {
  content: "\f0da";
  right: -8px;
}
.timeline-article .content-right:before {
  content: "\f0d9";
  left: -8px;
}
.timeline-article .meta-date {
  position: absolute;
  top: 0;
  left: 50%;
  width: 62px;
  height: 62px;
  margin-left: -31px;
  color: #fff;
  border-radius: 100%;
  background: #00b0bd;
}


.timeline-article .meta-date .date,
.timeline-article .meta-date .month {
  display: block;
  text-align: center;
  font-weight: 900;
}
.timeline-article .meta-date .date {
  font-size: 30px;
  line-height: 40px;
}
.timeline-article .meta-date .month {
  font-size: 14px;
  line-height: 6px;
}

/*===== // Vertical Timeline =====*/

/*===== Resonsive Vertical Timeline =====*/
@media only screen and (max-width: 830px) {
  .timeline-start,
  .timeline-end {
    margin: 0;
  }
  .conference-center-line {
    margin-left: 0;
    left: 50px;
  }
  .timeline-article .meta-date {
    margin-left: 0;
    left: 20px;
  }
  .timeline-article .content-left-container,
  .timeline-article .content-right-container {
    max-width: 100%;
    width: auto;
    float: none;
    margin-left: 110px;
    min-height: 53px;
  }
  .timeline-article .content-left-container {
    margin-bottom: 20px;
  }
  .timeline-article .content-left,
  .timeline-article .content-right {
    padding: 10px 25px;
    min-height: 65px;
  }
  .timeline-article .content-left:before {
    content: "\f0d9";
    right: auto;
    left: -8px;
  }
  .timeline-article .content-right:before {
    display: none;
  }
}
@media only screen and (max-width: 400px) {
  .timeline-article p {
    margin: 0;
  }
  .timeline-article p span.article-number {
    display: none;
  }
  
}
/*===== // Resonsive Vertical Timeline =====*/


#topicsection{
    align-items:middle;
    align-content: center;
    padding:0px;
    position: relative;
    width: 100%;
}

#topicpanel{
    align-items:middle;
    align-content: center;
    padding:2px;
    position: relative;
    width: 800px;
    margin-top:35px;
    border: solid 2px;
    border-color: navy;

}

.topicpanel-title{
    text-align: center;
    font-size: x-large;
    font-family: 'Montserrat','Raleway';
    color:darkgreen;
}


.fw-medium:hover{
  color: darkred;
}

ul {
  list-style-type: none;
    text-align: justify;
    font-size: smal;
    font-family: 'Montserrat','Raleway';
    color:navy;
    padding:2px;
}

.col1fieldtp, .col2fieldtp{
    display:table-cell;;
    vertical-align:top;
    padding:5px;
    margin:10px;
    width:50%;
}

.custom-label-wrapper{
    font-weight: bold;
    color: navy;
    font-family: 'Raleway','Robo';
}

.navbar a {
 text-decoration: none;
    text-align: center;
    font-size: medium;
    font-family: 'Montserrat','Raleway';
    color:darkgreen;
}



.horizontal-scroll-gallery {
  display: flex;       /* Use Flexbox to align items horizontally */
  overflow-x: auto;    /* Enable horizontal scrolling */
  gap: 3rem;           /* Add space between images (adjust as needed) */
  padding: 1rem 0;     /* Add some vertical padding for aesthetics */
  white-space: nowrap; /* Prevent images from wrapping to the next line */
}
}
.gallery-item {
  /* Ensure images take up specific width and don't shrink excessively */
  width: 200px;         /* Adjust the width of each image */
  height: auto;
  flex-shrink: 0;       /* Prevent images from shrinking to fit the container */
  object-fit: cover;    /* Ensure images cover their assigned space nicely */
}

/* Optional: Hide scrollbar for cleaner look in some browsers */
.horizontal-scroll-gallery::-webkit-scrollbar {
  display: none;
}

.horizontal-scroll-gallery {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
}

.scroll-container {
  height: 200px; /* Adjust height as needed */
  position: relative;
  overflow: hidden;
}

.photobanner {
  position: absolute;
  top: 0;
  left: 0;
  white-space: nowrap; /* Keeps all images on one line */
  animation: bannermove 30s linear infinite; /* Adjust duration as needed */
}

.photobanner img {
  margin: 0 0.8em; /* Spacing between images */
  height: inherit; /* Ensures images fit the container height */
}

@keyframes bannermove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    /* Translate half the total width for a seamless loop with duplicated images */
    transform: translate(-50%, 0);
  }
}
