.front-page {
  padding-top: 77px;
  flex: 1 1;
  display: flex;
  flex-direction: column;
}
.front-page .hero {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  height: 350px;
}
@media only screen and (max-width: 575px) {
  .front-page .hero {
    height: 100%;
    max-height: 410px;
  }
}
.front-page .hero .hero-swiper {
  margin-bottom: 100px;
  top: 100px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.front-page .hero .hero-swiper .swiper-wrapper {
  width: 100%;
}
.front-page .hero .hero-swiper .swiper-wrapper .swiper-slide {
  width: 100%;
  height: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  text-align: center;
  margin-right: 50px !important;
}
.front-page .hero .hero-swiper .swiper-wrapper .swiper-slide .slide-title {
  font-size: 32px;
  font-weight: 600;
  line-height: 150%;
  max-width: 567px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 575px) {
  .front-page .hero .hero-swiper .swiper-wrapper .swiper-slide .slide-title {
    margin-bottom: 5px;
  }
}
.front-page .hero .hero-swiper .swiper-wrapper .swiper-slide .slide-description {
  max-width: 567px;
  font-size: 18px;
  line-height: 150%;
  margin-bottom: 25px;
}
@media only screen and (max-width: 575px) {
  .front-page .hero .hero-swiper .swiper-wrapper .swiper-slide .slide-description {
    margin-bottom: 30px;
  }
}
.front-page .hero .hero-swiper .swiper-wrapper .swiper-slide .slide-description p {
  margin-bottom: 10px;
}
.front-page .hero .hero-swiper .swiper-pagination {
  position: relative;
  z-index: 1;
}
.front-page .hero .hero-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 40px;
  height: 5px;
  background-color: #fff;
  opacity: 1;
  border-radius: 0;
}
.front-page .hero .hero-swiper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #67C2E4;
}
.front-page .hero .hero-about {
  background-color: #fff;
  border-radius: 50px;
}
.front-page .about-us-card {
  margin-bottom: 25px;
  padding: 50px;
  width: 100%;
  min-height: 500px;
  height: fit-content;
  display: flex;
  flex-direction: row;
  background-color: #fff;
  border-radius: 50px;
  gap: 20px;
}
@media only screen and (max-width: 992px) {
  .front-page .about-us-card {
    flex-direction: column;
    padding: 35px 24px 48px 24px;
  }
}
.front-page .about-us-card .mobile-title {
  display: none;
  width: 100%;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}
@media only screen and (max-width: 992px) {
  .front-page .about-us-card .mobile-title {
    display: flex;
  }
}
.front-page .about-us-card .mobile-title img, .front-page .about-us-card .mobile-title svg {
  width: 100%;
  height: 100%;
  max-width: 20px;
  max-height: 37px;
}
.front-page .about-us-card .mobile-title span {
  font-size: 35px;
  line-height: 150%;
  font-weight: 600;
}
.front-page .about-us-card .content {
  width: 50%;
  height: fit-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 992px) {
  .front-page .about-us-card .content {
    width: 100%;
    order: 2;
  }
}
.front-page .about-us-card .content .title {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 20px;
}
@media only screen and (max-width: 992px) {
  .front-page .about-us-card .content .title {
    display: none;
  }
}
.front-page .about-us-card .content .title img, .front-page .about-us-card .content .title svg {
  width: 100%;
  height: 100%;
  max-width: 20px;
  max-height: 37px;
}
.front-page .about-us-card .content .title span {
  font-size: 35px;
  line-height: 150%;
  font-weight: 600;
}
.front-page .about-us-card .content .description {
  font-size: 18px;
  line-height: 150%;
  color: #444F5C;
}
.front-page .about-us-card .content .description em {
  font-style: normal;
  color: #12A8D5;
}
.front-page .about-us-card .content .button-wrapper {
  width: 100%;
  display: flex;
}
@media only screen and (max-width: 575px) {
  .front-page .about-us-card .content .button-wrapper {
    justify-content: center;
  }
}
.front-page .about-us-card .image-wrapper {
  width: 50%;
  border-radius: 20px;
  position: relative;
}
@media only screen and (max-width: 992px) {
  .front-page .about-us-card .image-wrapper {
    width: 100%;
    height: 350px;
    order: 1;
  }
}
@media only screen and (max-width: 575px) {
  .front-page .about-us-card .image-wrapper {
    height: 250px;
  }
}
.front-page .about-us-card .image-wrapper img {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.front-page .offerings-wrapper {
  margin-bottom: 25px;
}
.front-page .offerings-wrapper .offerings-card {
  padding: 45px 65px;
  height: fit-content;
  width: 100%;
  min-height: 500px;
  display: flex;
  flex-direction: row;
  background-color: #fff;
  border-radius: 50px;
  justify-content: center;
  row-gap: 40px;
  column-gap: 3.85%;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  .front-page .offerings-wrapper .offerings-card {
    padding: 50px 40px;
  }
}
.front-page .offerings-wrapper .offerings-card .offering-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 20px;
  max-width: 270px;
}
.front-page .offerings-wrapper .offerings-card .offering-item .image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 122px;
  height: 122px;
  border: 2px solid #12A8D5;
  border-radius: 50%;
  overflow: hidden;
  background-color: #67C2E4;
}
.front-page .offerings-wrapper .offerings-card .offering-item .image-wrapper img, .front-page .offerings-wrapper .offerings-card .offering-item .image-wrapper svg {
  width: 100%;
  height: 100%;
  max-width: 82px;
  max-height: 82px;
}
.front-page .offerings-wrapper .offerings-card .offering-item .title {
  text-align: center;
  font-size: 20px;
  line-height: 150%;
  font-weight: 600;
}
.front-page .offerings-wrapper .offerings-card .offering-item .description {
  text-align: center;
  font-size: 18px;
  line-height: 150%;
  color: #444F5C;
}
.front-page .services-preview {
  display: flex;
  flex-direction: row;
  gap: 35px;
  margin-bottom: 25px;
}
@media only screen and (max-width: 767px) {
  .front-page .services-preview {
    flex-direction: column;
    gap: 25px;
  }
}
.front-page .services-preview .service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 20px;
  background-color: #fff;
  border-radius: 50px;
  padding: 35px 65px;
}
@media only screen and (max-width: 767px) {
  .front-page .services-preview .service-card {
    padding: 20px 18px 40px 18px;
  }
}
.front-page .services-preview .service-card .title {
  text-align: center;
  font-size: 20px;
  line-height: 150%;
  font-weight: 600;
}
.front-page .services-preview .service-card .services-list ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.front-page .services-preview .service-card .services-list ul li {
  text-align: center;
  font-size: 16px;
  line-height: 170%;
  color: #444F5C;
}
.front-page .services-preview .service-card .button-wrapper a {
  padding: 16px 27px;
}

/*# sourceMappingURL=page-home.css.map */
