@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Maven+Pro:wght@400..900&family=Montserrat:wght@400;600;700&family=Roboto+Flex:opsz,wght@8..144,100..1000&display=swap");

.headline {
  margin-top: 50px;
  display: flex;
  width: 100%;
  padding: 12px 75px 0px 75px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 18px;
  animation: updown 1000ms;
}

h2 {
  color: #333;
  font-family: "Roboto Flex";
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

h2 > span {
  color: #00accd;
  font-family: "Roboto Flex";
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.line {
  width: 153px;
  height: 7px;
  background: #333;
}

.descriptionSol {
  color: #787272;
  width: 55%;
  text-align: center;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.descriptionSol > p {
  align-self: stretch;
}

/*     CARD======================*/
.slide-container {
  max-width: 1120px;
  width: 100%;
  padding: 40px 0px;
  margin-top: 50px;
  margin-bottom: 60px;
  z-index: 1;
}
.slide-content {
  margin: 0 50px;
  padding: 15px;
  overflow: hidden;
}
.card {
  height: 425px;
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
  box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.image-content,
.card-content {
  display: flex;
  flex-direction: column;

  padding: 10px 14px;
}
.image-content {
  display: flex;
  align-items: center;
  position: relative;
  row-gap: 5px;
  height: 215px;
  padding: 30px 0;
}
.image-content > .card-image3 {
  margin-top: 50px;
}
.image-content > .card-image2 {
  margin-top: 50px;
}
.image-content > .card-image4 {
  margin-top: 50px;
}
.card-image {
  position: relative;
  height: 150px;
  background-size: cover;
  width: 150px;
  background: #fff;
  padding: 3px;
}

.card-image2 .card-image3 .card-image4 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  width: 200px;
}
.card-image2 .card-image3 > .card-img {
  margin-top: 50px;
}
.card-image5, .card-img5{
  margin-top: 20px;
  width: 250px;
  height: 100px;
}
.card-image .card-img {
  height: 100%;
  width: 100%;
}
.card-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 330px;
  height: 208px;
}
.name {
  margin-right: 20px;
  color: #000;
  font-family: Inter;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  text-align: right;
}
.pdescription {
  color: #787272;
  font-family: "Inter";
  width: 250px;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  justify-content: center;
  text-align: center;

  padding: 5px 10px 0 10px;
}
.button {
  border: none;
  font-size: 16px;
  color: #00accd;
  padding: 8px 16px;
  background-color: white;
  margin: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  background: #dad9d9;
}

.swiper-navBtn {
  color: #6e93f7;
  transition: color 0.3s ease;
}
.swiper-navBtn:hover {
  color: #4070f4;
}
.swiper-navBtn::before,
.swiper-navBtn::after {
  font-size: 35px;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-prev {
  left: 0;
}
.swiper-pagination-bullet {
  background-color: #6e93f7;
  opacity: 1;
}
.swiper-pagination-bullet-active {
  background-color: #4070f4;
}

@media screen and (max-width: 768px) {
  .slide-content {
    margin: 0 10px;
  }
  .swiper-navBtn {
    display: none;
  }
}

@media (max-width: 1024px) {
  .headline {
    padding: 12px 40px 0px 40px;
  }

  h2 {
    font-size: 40px;
  }

  h2 > span {
    font-size: 40px;
  }
  .card-content {
    width: auto;
  }
}

@media (max-width: 768px) {
  .headline {
    padding: 12px 20px 0px 20px;
  }

  h2 {
    font-size: 35px;
  }

  h2 > span {
    font-size: 35px;
  }

  .line {
    width: 100px;
    height: 5px;
  }

  .descriptionSol {
    width: 80%;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  h2 {
    font-size: 28px;
  }

  h2 > span {
    font-size: 28px;
  }

  .line {
    width: 80px;
    height: 4px;
  }

  .descriptionSol {
    width: 100%;
    font-size: 14px;
  }
}
@keyframes updown {
  0% {
    transform: translateY(-500px);
  }
  100% {
    transform: translateY(0px);
  }
}
