//* Reset */
* {
  margin: 0;
  pading:0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #FFFFFF;
  padding-top :0px;
  line-height: 1.5;
}
.container {
      display: flex;
      flex-direction: row;
      gap: 1rem;
	  padding-top :100px;
      padding: 1rem;
      height: 100%;
	  min-height : 800px;
	  border:none;
     
    }

    .main-content {
      flex-grow: 1;
      background: white;
      
      display: flex;
      flex-direction: column;
      overflow: hidden;
      padding: 1rem;
    }

/* Top Scrolling Banner */
.banner {
  width: 100%;
  height: 100px;
  background: #ffffff;
  overflow: hidden;
  position: relative;
  
  border-bottom: 1px solid #FFFFFF;
}
.banner-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000; /* Make sure it's above other content */
}

.scrolling-track {
  width: 200%;
  height: 100px;
}

.scrolling-images {
  display: flex;
  align-items: center;
  height: 100px;
  animation: scroll-left 20s linear infinite;
}

.scrolling-images img {
  height: 60px;
  margin: 0 1.5rem;
  object-fit: contain;
  filter: brightness(1);
  transition: transform 0.3s;
}

.scrolling-images img:hover {
  transform: scale(1.1);
  filter: brightness(1.2);
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-40%);
  }
}

/* Info Banner */
.info-banner {
  background: url('./images/Logo_en.6e39841b.png') left bottom no-repeat  ;
  background-size: contain;
  background-size  :165px 100px;  
  text-align: center;
  color:    #4c74ef;
  font-size: 1.7em;
  position: center;
  width: 700px;
  min-height: 100px;
  margin: 0 auto;
  padding: 100px 5px 0 1px;
}

.info-banner h2 {
  margin: 0;
  font-size: 2rem;
  font-weight: 600;
}

/* Main Content */
.content {
  padding: 2rem;
  text-align: center;
  }
  

  .info-banner h2 {
    font-size: 1.5rem;
  }  
}

iframe {
      flex-grow: 1;
      width: 100%;
      border: none;
      min-height: 400px;

@media (max-width: 768px) {
  .scrolling-images img {
    height: 20px;
    margin: 0 0.5rem;
  }
 .banner {
     animation: scroll-left 10s linear infinite;
  }

  .banner img {
    height: 40px;
    margin-right: 20px;
  }
  .info-banner {
    padding: 1.5rem 1rem;
  }

  .info-banner h2 {
    font-size: 1.2rem;
  }

  .content {
    padding: 1rem;
  }
}


