.sliderHeader {
  width: 88%;
  height: 200px;
  left: 6%;

  position: relative;
  display: flex;

  /* border: 2px solid rebeccapurple; */

  margin-top: 200px;
  margin-bottom: 100px;
}

.sliderHeader .bigText {
  /* border: 2px solid tan; */
  width: 50%;
  margin-right: 10%;
}

.sliderHeader .bigText h2 {
  font-family: Inter SemiBold, sans-serif;
  font-weight: 600;
  line-height: 1.133;
  letter-spacing: -1.25px;
  background: linear-gradient(90deg, #38f5f7, #9cc7f1, #7597f9);
  background-clip: border-box;
  background-clip: text;
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;

  font-size: 76px;
}

.sliderHeader .smallText {
  /* border: 2px solid darkorange; */
  width: 40%;
  display: flex;

  align-items: end;
}

.sliderHeader .smallText p {
  color: #d6d6db;
  font-size: 20px;
  line-height: 32px;
}

.forwardSlider {
  width: 135%;

  position: relative;
  left: -8%;

  background-color: white;
  border: 2px solid grey;

  display: flex;

  flex-wrap: nowrap;

  align-items: center;
  justify-content: center;

  transition: all 0.2s linear;
}

.forwardSlider .sliderBlock {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-right: 1px solid grey;

  width: 264px;
  height: 220px;
}

.forwardSlider img,
.backwardSlider img {
  height: 140px;
  width: 200px;
}

.backwardSlider {
  width: 135%;

  position: relative;
  right: 29%;

  background-color: rgb(22, 23, 26);
  border: 2px solid grey;

  display: flex;

  flex-wrap: nowrap;

  align-items: center;
  justify-content: center;

  transition: all 0.2s linear;
}

.backwardSlider .sliderBlock {
  display: flex;
  align-items: center;
  justify-content: center;

  flex-direction: column;

  border-right: 1px solid grey;

  width: 264px;
  height: 220px;
}

.slider2Title {
  /* border: 2px solid darkmagenta; */

  width: 88%;
  margin-left: 6%;

  text-align: center;
}

.slider2Title h3 {
  margin-bottom: 50px;

  font-weight: 600;
  font-size: 76px;
  line-height: 1.133;
  letter-spacing: -1.25px;

  background-clip: text;
  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;
  color: transparent;

  background-image: linear-gradient(
    90deg,
    rgb(225, 255, 0),
    rgb(28, 197, 116),
    rgb(0, 189, 132)
  );
}

#brandForwardSlider img,
#brandBackwardSlider img {
  width: 100px;
  height: 100px;
}

.sliderBlock span {
  margin-top: 10px;

  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.backwardSlider span {
  color: white;
}

#brandBackwardSlider {
  margin-bottom: 100px;
}

.sliderFooter {
  width: 40%;

  margin-left: 6%;
}

.sliderFooter p {
  color: #d6d6db;
  font-size: 20px;
  line-height: 32px;

  margin-bottom: 30px;
}

.sliderFooter a{
font-size: 20px;
font-weight: 400;
line-height: 1.6;

background-image: linear-gradient(45deg, #6d6f78 100%, #6d6f78 0);
  background-position: 10% 0.95em;
  background-size: 100%;
  background-repeat: no-repeat;

  transition: all 0.4s ease;
}

.sliderFooter a:hover{
  background-image: linear-gradient(45deg, #103af0 100%, #103af0 0);
  background-position: 10% 0.6em;
}
