/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* background: #c5c0b2 */
}

/* .site-logo {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 24px;
  line-height: 100px;
  text-transform: uppercase;
} */

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  line-height: 100px;
}

body {
  font-family: Arial, sans-serif;
  overflow-x: hidden;
}

section {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-top: 50px; */
  padding-left: 20%;
  padding-right: 20%;

}

.box_wrap {
  align-items: center;
  justify-content: center;
  padding: 5em 20% 0;

}

.body_box {
  padding-top: 50px;
}

.program_content {
  margin-top: 10px;
}

.images {
  display: flex;
  justify-content: center;
  gap: 10px;
}

.images img {
  width: 500px;
  max-width: 100%;
  padding-top: 50px;
}

.images-l img {
  width: 1000px;
  max-width: 100%;
  padding-top: 50px;
}

.videos_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* width: 800px; */
  /* max-width: 100%; */
  padding-top: 50px;
  /* padding-bottom: 50px; */

}

/* Horizontal scroll section */
.horizontal-scroll-container {
  display: flex;
  width: 100vw;
  /* 4 panels wide */
}

.horizontal-panel {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: white; */
  padding-left: 20%;
  padding-right: 20%;
}

.horizontal-panel_end {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: start;

}

.horizontal-panel_start {
  width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: end;

}






/* .panel1 { background: #b7b7b7; } */
.panel2 {
  background: #d4d4d462;
}

/* .panel3 { background: #b7b7b7; }
  .panel4 { background: #b7b7b7; } */


/* Font & Sizing */

h1 {
  padding-bottom: 0.5em;
}

a {
  text-decoration: none;
  color: black;
}