html {
  scroll-behavior: smooth;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0px;
  font-family: Arial, sans-serif;
  background-color: #e6e6e6;
  color: #fff;
  overflow-x: hidden;
  overflow-y: auto;
}

#page::-webkit-scrollbar {
  text: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
#page {
  -ms-overflow-style: none;  /* IE and Edge */
  scrollbar-width: none;  /* Firefox */
  transition: margin-left 0.5s;
  background-color: #e6e6e6;
} 

a {
  text-decoration: none;
  color: #131412;  
}

h1 {
  margin-top: 0;
  margin-bottom: 0px;
  color: #4f62ad;
}

.navlogo {
  width: 10vw;
  overflow-x: hidden;
  position: fixed;
  top: 2vw;
  left: 0;
  display: block;
}

#thebar {
  transition: 1s;
}

.topest {
  position: fixed;
  max-width: 20vw;
  margin-left: 0;
  margin-top: 10vw;
}

.intro {
  margin-bottom: 10px;
  max-width: 20vw;
}

.sidebar {
  height: 100%;
  width: 0;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #e6e6e6;
  overflow-x: hidden;
  overflow-y: hidden;
  transition: 1s;
  padding-top: 0px;

}

.sidebar a {
  padding: 10px 10px;
  text-decoration: none;
  font-size: 30px;
  color: #131412;
  display: inline-block;
  transition: 0.3s;
  margin-top: 3vw;
}

.sidebar a:has(#theBar) {
  padding: 0;
  margin: 0;
  display: block;
}


.sidebar a:hover {
  color: #fff;
  font-size: 38px;
  
}

.sidebar .closebtn {
  position: relative;
  color: #131412;
  font-size: 50px;
  
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  color: #131412;
  border: none;
  position: fixed;
  top: 6vw;
  left: 2vw;	
}

.openbtn:has(.navlogo) {
  width: 20vw;
  overflow-x: hidden;
  position: fixed;
  top: 2vw;
  left: 0;
  display: block;
}

.tellEm {
  color: #131412;
  float: right;
  margin-right: 5vw;
}

.big {
  font-size: 33px;
  margin-top: -10px;
}

.section-scrolls {
  margin-top: 5vw;
  margin-left: 10vw;
}



.scroll-section {
  font-family: Arial, sans-serif;
  width: 100%;
  cursor: grab;
  overflow-x: scroll;
  overflow-y: hidden;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
  background: #e6e6e6;
  color: #131412;
  padding: 10px 0;
  
  margin-bottom: 20px;
  scrollbar-width: none;
}




.scroll-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  width: max-content;
  padding: 0 20px;
}



.card {

  width: 636px;
  height: 550px;
  border-radius: 10px;
  background: #e6e6e6;
}

.scroll-wrapper.dark .scroll-section {
  background: #131412;
}

.scroll-wrapper.dark .card {
  background: #131412;
  color: #e6e6e6;
}


.card h1 {
  margin-top: 0;
  color: #4f62ad;
  font-size: 55px;
  
}

.card h2 {
 margin-top: 0px;
}

.cardB h2 {
 margin-top: 0px;
}

.text-card {
 width: 500px;
}

.image-card img {
  width: 100%;
  height: 550px;
  object-fit: cover;
  display: block;
  border-radius: 8px;
  margin-bottom: 14px;
  -webkit-user-drag: none; /* Chrome, Safari, Edge */
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.image-card img:hover {
  width: 101%;
  transition: .5s;
}

.scroll-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.scroll-arrow {
  position: absolute;
  z-index: 10;
  top: 50%;
  background: transparent;
  transform: translateY(-50%);
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 10px 14px;
  color: #4f62ad;
}



.scroll-arrow.left  { left: 0; }
.scroll-arrow.right { right: 0; }

.scroll-arrow:hover { font-size: 27px; }