@import url(/header.css);
@import url(/assets/css/footer.css);
/* hero section start */
.hero-section {
  background-color: #dceafc;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 100px 140px;
}
.hero-section .hero-text {
  padding-right: 70px;
}
.hero-section .hero-text h4 {
  color: #000000;
  font-size: 60px;
  font-weight: 700;
  line-height: 72.61px;
}

.hero-section .hero-image {
  max-height: 392px;
  width: 100%;
  max-width: 553px;
}
.hero-section .hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* hero section end */
/* about text container start */
.about-text {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 20px;
  background-color: #f2f4f7;
}
.about-text .text-item {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
  padding-right: 60px;
}
.text-item .text-bold {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  color: #5f6980;
}
.about-text .text-item .title {
  color: #242424;
  font-size: 24px;
  font-weight: 700;
  line-height: 24px;
}
.about-text .text-item p {
  color: #718096;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}
.text-item:nth-child(2) div {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 20px;
}
.text-item:nth-child(2) div ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.text-item:nth-child(2) div ul li,
.text-item:nth-child(4) div ul li,
.text-item:nth-child(5) div ul li {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 10px;
}

.text-item:nth-child(2) div ul li span::after,
.text-item:nth-child(4) div ul li span::after,
.text-item:nth-child(5) div ul li span::after {
  content: "•";
  color: #718096;
}
.text-item:nth-child(4) div ul,
.text-item:nth-child(5) div ul {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 6px;
}
/* about text container end */
/* slider section start */
.slider {
  padding: 80px 140px;
}
.slider .title {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 20px;
}
.slider .title h2 {
  color: #282828;
  font-weight: 600;
  font-size: 36px;
  line-height: 42px;
}
.slider .title p {
  color: #596780;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.swiper {
  margin-top: 50px;
}
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.swiper-slide .slider-text h4 {
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  color: #2d3748;
}
.swiper-slide .slider-text span {
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: #2d3748;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}
/* slider section end */

/* mobil devices */
@media (max-width: 1200px) {
  section,
  footer {
    padding: 36px 24px !important;
  }
}
@media (max-width: 1054px) {
  .hero-section .hero-text {
    padding-right: 10px;
  }
}
@media (max-width: 991px) {
  .hero-section {
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
}
@media (max-width: 768px) {
  .hero-section {
    flex-direction: column;
    align-items: start;
    justify-content: start;
  }
  .about-text .text-item {
    padding-right: 10px;
  }
}
@media (max-width: 576px) {
  .hero-section .hero-text h4 {
    font-size: 36px;
    font-weight: 600;
    line-height: 42px;
  }
}
@media (maax-width: 450px) {
  .about-text .text-item {
    padding-right: 0;
  }
}
