:root {
  --white: #fff5f1;
  --red: #d90429;
  --black: #000000;

  --large: 3rem;
  --big: 2.6rem;
  --medium: 1.7rem;
  --small: 1.4rem;
}
.split {
  display: flex;
}
#welcome {
  margin-top: 0 !important;
}
.left {
  width: 40%;

  align-content: center;
  overflow: hidden;
}
#about .left {
  text-align: center;
}
.left img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.right {
  width: 60%;
}
.right img {
  width: 100%;
}
#about .right {
  align-content: center;
}
#handshake {
  width: 5rem;
  margin: 0 1rem 0 0;
}
#stack {
  font-size: 3rem;
  margin: 0 1rem 0 0;
}
.right div {
  display: flex;
  align-items: center;
}
#about .right {
  margin-left: 5%;
}
a i {
  margin-left: 0.5rem;
  font-size: var(--small);
}
.slider {
  margin-top: -3rem;
  height: 35rem;
  position: relative;
  width: 100%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.slider-track {
  display: flex;
  width: calc(10 * 25rem);
  animation: scroll 30s linear infinite;
}

.slide {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.158),
    rgba(255, 255, 255, 0.068)
  );
  width: 25rem;
  height: 25rem;
  border-radius: 100%;
  margin: 0;
}

.slider::before {
  content: "";
  position: absolute;
  left: 0;
  width: 10%;
  height: 100%;
  background: linear-gradient(to right, var(--white), rgba(255, 255, 255, 0));
  z-index: 1;
}

.slider::after {
  content: "";
  position: absolute;
  right: 0;
  width: 10%;
  height: 100%;
  background: linear-gradient(to left, var(--white), rgba(255, 255, 255, 0));
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-25rem * 5));
  }
}

#sliderPhotos {
  text-align: center;
}
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#carousel h2 {
  margin: 0 auto 0 auto;
  text-align: center;
}
#products .right {
  align-content: center;
}
#epalStack {
  border-radius: 1rem 0 0 1rem;
}
#buttons {
  margin-top: 2rem;
}
#buttons button {
  margin-right: 1rem;
}
#buttons i {
  margin-right: 0.5rem;
}

#welcome,
#products {
  padding-left: 2rem;
}
#about {
  padding-right: 2rem;
}
#mainPageLink {
  font-weight: 500;
}

button a {
  display: flex;
  align-items: center;

  color: var(--black);
}

#about,
#products {
  margin: 2.5rem 0 2.5rem 1rem;
}
p span{
  font-weight: 600;
}