.sol-sec1 {
  float: left;
  background: var(--sol-sec1-bg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  color: #ffffff;
  text-align: center;
  padding: 100px 0px 153px 0px;

  display: flex;
  gap: 60px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.sol-type-btns {
  display: flex;
  flex-direction: row;
  gap: 20px;
}

.sol-type-btns a {
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;

  border-radius: 8px;
  padding: 18px 36px;
}

.active-sol {
  background-color: #19ba59;
}

.inactive-sol {
  background-color: #ffffff;
  color: #062732;
  border: 1px solid #062732;
}

.sol-sec1-title {
  padding-top: 20px;
  font-weight: 600;
  font-size: 72px;
  width: 60%;
}

.sol-sec1-desc {
  font-weight: 400;
  font-size: 30px;
  line-height: 42px;
  width: 60%;
}

.part1 {
  background-color: #eaf8ea;
  padding: 120px 0px;
  text-align: center;

  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.solution-info {
  float: left;
  width: 100%;
}

.sol-title {
  font-weight: 500;
  font-size: 60px;
}

.sol-desc {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  width: 75%;
}

.part2 {
  background-color: #ffffff;
  padding: 80px 30px 120px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.sol-subtitle {
  font-weight: 500;
  font-size: 40px;
  text-align: center;
}

.sol-subdesc {
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
  width: 72%;
  text-align: center;
  padding-bottom: 40px;
}

.sol-blocks .slider {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 360px;
  color: white;
  font-weight: 500;
  font-size: 30px;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: 0;
}

.slider::-webkit-scrollbar {
  display: none;
}

.sol-blocks {
  width: 100%;
  max-width: 1160px;
  position: relative;
}

.sol-blocks img {
  background-color: #ffffff;
  padding: 5px 5px;
  border: 2px solid #053539;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
}

.sol-blocks img:first-child {
  top: 190px;
  left: -70px;
}

.sol-blocks img:last-child {
  right: -70px;
  top: 190px;
}

.sol-blocks .sol-block-desc {
  width: 100%;
  font-weight: 400;
  font-size: 20px;
  line-height: 30px;
}

.slider .sol-block1,
.slider .sol-block2,
.slider .sol-block3,
.slider .sol-block4,
.slider .sol-block5 {
  scroll-snap-align: start;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  gap: 30px;
  height: 420px;
  border-radius: 10px;

  display: grid;
  grid-template-rows: auto 1fr;
  gap: 10px;
  padding: 200px 40px 44px 40px;
}

.sol-block-title {
  font-weight: 500;
  font-size: 30px;
}

.sol-block1 {
  background: var(--sol1-block1-bg);
}
.sol-block2 {
  background: var(--sol1-block2-bg);
}
.sol-block3 {
  background: var(--sol1-block3-bg);
}
.sol-block4 {
  background: var(--sol1-block4-bg);
}
.sol-block5 {
  background: var(--sol1-block5-bg);
}

.slider.no-transition {
  scroll-behavior: auto;
}

.slider.dragging .sol-block1,
.slider.dragging .sol-block2,
.slider.dragging .sol-block3,
.slider.dragging .sol-block4,
.slider.dragging .sol-block5 {
  cursor: grab;
  user-select: none;
}

.slider.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.slider-nav {
  display: none;
}

@media screen and (max-width: 1302px) {
  .sol-blocks img {
    display: none;
  }
}

@media screen and (max-width: 1302px) {
  .sol-blocks img {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .sol-sec1 {
    float: left;
    background: var(--sol-sec1-tab-bg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .sol-sec1-title,
  .sol-sec1-desc {
    width: 80%;
  }
  .sol-sec1,
  .part1 {
    gap: 30px;
  }

  .solution-info {
    width: 100%;
  }

  .sol-title {
    font-size: 48px;
  }
  .sol-blocks {
    max-width: 760px;
  }
  .sol-blocks img {
    display: none;
  }
  .slider-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }

  .slider-nav .dot {
    width: 14px;
    height: 14px;
    background: #bef5bf;
    border-radius: 50%;
    cursor: pointer;
    transition:
      background 0.3s ease,
      transform 0.3s ease;
  }

  .slider-nav .dot.active {
    background: #17b760;
    transform: scale(1.2);
  }
}

@media screen and (max-width: 402px) {
  .sol-type-btns {
    flex-direction: column;
  }

  .sol-sec1-title {
    padding-top: 40px;
  }

  .sol-title {
    font-size: 36px;
  }
  .sol-desc {
    font-size: 18px;
    width: 85%;
  }

  .part1 {
    gap: 20px;
    padding: 60px 0px;
  }
  .part2 {
    padding-bottom: 40px;
  }
  .sol-sec1 {
    padding: 60px 30px 75px 30px;
    gap: 20px;
  }

  .sol-sec1-title,
  .sol-subtitle {
    font-size: 30px;
    width: 80%;
  }
  .sol-sec1-desc,
  .sol-subdesc {
    font-size: 18px;
    line-height: 30px;
    width: 100%;
  }
  .sol-blocks {
    max-width: 332px;
  }
  .sol-blocks img {
    display: no;
  }
  .sol-blocks .slider {
    grid-auto-columns: 332px;
  }
  .slider .sol-block1,
  .slider .sol-block2,
  .slider .sol-block3,
  .slider .sol-block4,
  .slider .sol-block5 {
    height: 389px;
    padding: 180px 40px 70px 40px;
  }
  .sol-block-title {
    font-size: 24px;
  }
  .sol-block-desc {
    font-size: 18px;
  }
  .slider-nav {
    gap: 10px;
  }
  .slider-nav .dot {
    height: 10px;
    width: 10px;
  }
}
