/*#region Banner*/
.banner-slider {
  width: 100%;
  height: 100%;
}
.banner-slider .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: calc(100vh - var(--header-height));
}
.banner-slider .swiper-slide::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.1;
  z-index: 0;
}
.banner-slider .swiper-slide img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
}
.banner-slider .banner-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.banner-slider .banner-headline {
  font-family: var(--font-family-accent-1);
  font-size: 72px;
  color: #ffffff;
  text-align: left;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.banner-slider .banner-sub-headline {
  font-family: var(--font-family-accent-2);
  font-size: var(--font-size-xl);
  color: #ffffff;
  text-align: left;
  margin-bottom: 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: #ffffff;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 24px;
}

/*#endregion Banner*/
/*#region Section*/
.section-wrap.home.about {
  padding-bottom: 60px;
}
.section-wrap.home.about .title {
  max-width: 600px;
}
.section-wrap.home.services {
  padding: 60px 0;
  background-color: transparent;
  background-image: url("../images/hero-bg-01.jpg");
}
.section-wrap.home.services .service-list .service-item {
  position: relative;
  width: 100%;
  background-color: #ffffff;
  text-align: left;
  border-radius: 4px 4px 4px 4px;
}
.section-wrap.home.services .service-list .service-item:hover {
  box-shadow: 4px 4px 14px 1px rgba(0, 0, 0, 0.15);
}
.section-wrap.home.services .service-list .service-item .service-item-content {
  padding: 25px 30px;
  border-bottom: 1px solid #dee2e6;
}
.section-wrap.home.services .service-list .service-item .service-item-content:hover .service-title {
  color: var(--blue-color-accent-1);
}
.section-wrap.home.services .service-list .service-item .service-img {
  position: relative;
  width: 100%;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border-radius: 4px 4px 4px 4px;
}
.section-wrap.home.services .service-list .service-item .service-img.img-1, .section-wrap.home.services .service-list .service-item .service-img.img-2 {
  height: 250px;
}
.section-wrap.home.services .service-list .service-item .service-img img {
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 4px 4px 4px 4px;
  -o-object-fit: cover;
     object-fit: cover;
}
.section-wrap.home.services .service-list .service-item .service-img::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: none;
  border-radius: 4px 4px 4px 4px;
  z-index: 1;
}
.section-wrap.home.services .service-list .service-item .service-img:hover::after {
  background-color: rgba(0, 0, 0, 0.1) !important;
}
.section-wrap.home.services .service-list .service-item .service-title {
  font-family: var(--font-family-accent-1);
  color: var(--black-color-accent-2);
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 16px;
  transition: none !important;
}
.section-wrap.home.services .service-list .service-item .service-excerpt {
  font-family: var(--font-family-accent-2);
  color: var(--black-color-accent-1);
  font-size: var(--font-size-sm);
  line-height: 1.5;
  font-weight: 400;
}
.section-wrap.home.services .service-list .service-item .service-item-footer {
  padding: 10px 30px 21px 30px;
}
.section-wrap.home.services .service-list .service-item .service-item-footer .service-item-link {
  font-family: var(--font-family-accent-1);
  font-size: var(--font-size-xs);
  font-weight: 600;
  color: var(--blue-color-accent-1);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-position: under;
  text-decoration-color: #dee0ff;
}
.section-wrap.home.services .service-list .service-item .service-item-footer .service-item-link:hover {
  color: var(--black-color-accent-2);
  text-decoration-color: #dee2e6;
}
.section-wrap.home.statistics {
  padding-top: 60px;
  padding-bottom: 25px;
}
.section-wrap.home.why-choose-us {
  padding-top: 60px;
}
.section-wrap.home.value-propositions {
  padding-bottom: 60px;
}
.section-wrap.home.testimonials {
  padding: 60px 0;
  background-color: transparent;
  background-image: url("../images/hero-bg-03.jpg");
}
.section-wrap.home.testimonials .swiper-navigation {
  display: flex;
}
.section-wrap.home.testimonials .swiper-navigation .swiper-button-next,
.section-wrap.home.testimonials .swiper-navigation .swiper-button-prev {
  position: relative;
  top: unset;
  left: unset;
  bottom: unset;
  right: unset;
  width: 40px;
  height: 40px;
  border-radius: 50rem;
  border: 0;
  background-color: #f7f8fa;
  color: var(--black-color-accent-1);
  flex-shrink: 0;
}
.section-wrap.home.testimonials .swiper-navigation .swiper-button-next::after,
.section-wrap.home.testimonials .swiper-navigation .swiper-button-prev::after {
  content: none;
}
.section-wrap.home.testimonials .swiper-navigation .swiper-button-prev {
  margin-right: 8px;
}
.section-wrap.home.testimonials .testimonial-container {
  width: calc(100% - (100% - 1296px) / 2);
  margin-left: auto;
}
.section-wrap.home.testimonials .testimonial-container .testimonial-slider {
  border-radius: 10px 0 0 10px;
}
.section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide {
  width: 40%;
}
.section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide .testimonial-item {
  position: relative;
  padding: 30px 30px;
  background-color: #ffffff;
  border-radius: 10px 10px 10px 10px;
  width: 100%;
  cursor: grab;
  background-image: linear-gradient(0deg, #e5edfb 0%, #ffffff 100%);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
}
.section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide .testimonial-item .testimonial-item-info {
  position: relative;
  display: flex;
  flex-shrink: 0;
  padding-bottom: 20px;
  margin-bottom: 16px;
  border-bottom: 1px solid #dee2e6;
}
.section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide .testimonial-item .testimonial-item-info .author-img {
  width: 95px;
  height: 95px;
  border-radius: 50rem;
  overflow: hidden;
  margin-right: 24px;
  flex-shrink: 0;
}
.section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide .testimonial-item .testimonial-item-info .author-name {
  font-family: var(--font-family-accent-1);
  font-size: 30px;
  color: var(--black-color-accent-2);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2px;
}
.section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide .testimonial-item .testimonial-item-info .author-location {
  display: block;
  font-size: var(--font-size-sm);
  margin-bottom: 8px;
  font-family: var(--font-family-accent-2);
  font-weight: 400;
  line-height: 1.5;
  color: var(--black-color-accent-1);
}
.section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide .testimonial-item .testimonial-item-info .author-rating {
  color: orangered;
}
.section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide .testimonial-item .testimonial-item-content {
  font-size: var(--font-size-md);
  line-height: 1.5;
  font-family: var(--font-family-accent-2);
  font-weight: 500;
  color: var(--black-color-accent-1);
}
.section-wrap.home.blog {
  padding-bottom: 60px;
}
.section-wrap.home.blog .post-list .swiper-pagination {
  position: relative;
  top: 0;
  margin-top: 20px;
  line-height: 1.5;
}
.section-wrap.home.blog .post-list .swiper-pagination .swiper-pagination-bullet {
  position: relative;
  margin: 0 6px !important;
}
.section-wrap.home.blog .post-list .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--blue-color-accent-1);
}
.section-wrap.home.blog .post-list .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  content: "";
  position: absolute;
  width: calc(100% + 8px);
  height: calc(100% + 8px);
  border: 1px solid var(--blue-color-accent-1);
  border-radius: 50rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/*#endregion Section*/
@media (max-width: 1399px) {
  .section-wrap.home.testimonials .testimonial-container {
    width: calc(100% - (100% - 1116px) / 2);
  }
  .section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide {
    width: 42%;
  }
}
@media (max-width: 1199px) {
  .section-wrap.home.services .service-list .service-item .service-img.img-1 {
    height: 300px;
  }
  .section-wrap.home.services .service-list .service-item .service-img:not(.img-1) {
    height: 250px;
  }
  .section-wrap.home.testimonials .testimonial-container {
    width: calc(100% - (100% - 936px) / 2);
  }
  .section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide {
    width: 60%;
  }
}
@media (max-width: 991px) {
  .banner-slider .swiper-slide {
    height: 400px;
  }
  .banner-slider .banner-content {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin-left: 40px;
    margin-bottom: 52px;
  }
  .banner-slider .banner-headline {
    font-size: 40px;
  }
  .banner-slider .banner-sub-headline {
    font-size: var(--font-size-md);
  }
  .section-wrap.home.about .title {
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .section-wrap.home.services .service-list .service-item .service-item-content {
    padding: 20px 20px;
  }
  .section-wrap.home.services .service-list .service-item .service-img.img-1 {
    height: 270px;
  }
  .section-wrap.home.services .service-list .service-item .service-img:not(.img-1) {
    height: 200px;
  }
  .section-wrap.home.services .service-list .service-item .service-item-footer {
    padding: 10px 20px 21px 20px;
  }
  .section-wrap.home.value-propositions {
    padding-bottom: 60px;
  }
  .section-wrap.home.value-propositions .value-proposition-item-wrap:not(:last-of-type) .value-proposition-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #dee2e6;
  }
  .section-wrap.home.testimonials .testimonial-container {
    width: calc(100% - 20px);
  }
  .section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide {
    width: 60%;
  }
  .section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide .testimonial-item {
    padding: 20px 20px;
  }
  .section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide .testimonial-item .testimonial-item-info .author-img {
    width: 90px;
    height: 90px;
    margin-right: 20px;
  }
  .section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide .testimonial-item .testimonial-item-info .author-name {
    font-size: var(--font-size-xl);
  }
  .section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide .testimonial-item .testimonial-item-content {
    font-size: var(--font-size-nm);
  }
}
@media (max-width: 767px) {
  .banner-slider .swiper-slide {
    height: 400px;
  }
  .banner-slider .banner-content {
    max-width: 600px;
    margin-left: 0;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 32px;
  }
  .banner-slider .banner-headline {
    font-size: 32px;
    max-width: 440px;
    margin-bottom: 16px;
  }
  .banner-slider .banner-sub-headline {
    font-size: var(--font-size-nm);
  }
  .section-wrap.home.about .title {
    max-width: 420px;
  }
  .section-wrap.home.services .service-list .service-item .service-img.img-1 {
    height: 250px;
  }
  .section-wrap.home.services .service-list .service-item .service-img:not(.img-1) {
    height: 250px;
  }
  .section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide {
    width: 75%;
  }
}
@media (max-width: 575px) {
  .banner-slider .swiper-slide {
    height: 500px;
  }
  .banner-slider .banner-content {
    padding-left: 0;
    padding-right: 0;
    margin-bottom: 30px;
  }
  .banner-slider .banner-headline {
    font-size: 32px;
    max-width: 440px;
    margin-bottom: 16px;
  }
  .banner-slider .banner-sub-headline {
    font-size: var(--font-size-nm);
  }
  .section-wrap.home.about .title {
    max-width: 350px;
  }
  .section-wrap.home.services .service-list .service-item .service-img.img-1 {
    height: 200px;
  }
  .section-wrap.home.services .service-list .service-item .service-img:not(.img-1) {
    height: 200px;
  }
  .section-wrap.home.testimonials .swiper-navigation .swiper-button-next,
  .section-wrap.home.testimonials .swiper-navigation .swiper-button-prev {
    width: 30px;
    height: 30px;
  }
  .section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide {
    width: 80%;
  }
  .section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide .testimonial-item .testimonial-item-info {
    flex-direction: column;
  }
  .section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide .testimonial-item .testimonial-item-info .author {
    margin-top: 16px;
  }
  .section-wrap.home.testimonials .testimonial-container .testimonial-slider .swiper-slide .testimonial-item .testimonial-item-content {
    font-size: var(--font-size-sm);
  }
}
@media (max-width: 450px) {
  .banner-slider .banner-headline {
    max-width: 300px;
  }
}
@media (max-width: 400px) {
  .section-wrap.home.about .title {
    max-width: 300px;
  }
}
@media (max-width: 375px) {
  .banner-slider .swiper-slide {
    height: 450px;
  }
  .banner-slider .banner-headline {
    font-size: var(--font-size-xxl);
  }
  .banner-slider .banner-sub-headline {
    font-size: var(--font-size-nm);
  }
  .section-wrap.home.services .service-list .service-item .service-img.img-1 {
    height: 170px;
  }
  .section-wrap.home.services .service-list .service-item .service-img:not(.img-1) {
    height: 170px;
  }
}
article.type-post .post-item {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 15px 15px;
  border: 1px solid #dee2e6;
  border-radius: 4px 4px 4px 4px;
  /* background: linear-gradient(180deg, #E7EEFF 0%, #F3F6FD 100%); */
}
article.type-post .post-item .post-thumbnail {
  position: relative;
  width: 100%;
  display: inline-block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 4px 4px 4px 4px;
  margin-bottom: 50px;
}
article.type-post .post-item .post-thumbnail::before {
  display: inline-block;
  padding-top: 56%;
  content: "";
  transition: none;
  border-radius: 4px 4px 4px 4px;
}
article.type-post .post-item .post-thumbnail::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  transition: none;
  border-radius: 4px 4px 4px 4px;
}
article.type-post .post-item .post-thumbnail img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  border-radius: 4px 4px 4px 4px;
}
article.type-post .post-item .post-date {
  position: absolute;
  background-color: #ffffff;
  bottom: -30px;
  left: 15px;
  padding: 10px 15px 12px;
  font-size: 36px;
  font-family: var(--font-family-accent-1);
  font-weight: 700;
  text-align: center;
  color: var(--blue-color-accent-1);
  line-height: 1.2;
  z-index: 1;
  border-radius: 4px 4px 4px 4px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}
article.type-post .post-item .post-date span {
  display: block;
  font-size: 12px;
  color: #232323;
  font-weight: 700;
  text-transform: uppercase;
  margin-top: 5px;
  font-family: var(--font-family-accent-1);
}
article.type-post .post-item .post-content {
  position: relative;
  width: 100%;
  padding: 0 15px;
}
article.type-post .post-item .post-content .post-title {
  font-family: var(--font-family-accent-1);
  line-height: 1.3;
  font-size: var(--font-size-md);
  font-weight: 600;
  margin-bottom: 20px;
  transition: none;
  display: -webkit-box;
  width: 100%;
  max-width: 100%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
article.type-post .post-item .post-content .post-title a:hover {
  color: var(--blue-color-accent-1);
}
article.type-post .post-item .post-content .post-excerpt {
  display: -webkit-box;
  width: 100%;
  max-width: 100%;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 20px;
  line-height: 1.4;
  font-family: var(--font-family-accent-2);
  font-size: var(--font-size-sm);
  color: var(--black-color-accent-1);
  font-weight: 400;
}
article.type-post .post-item .post-content .post-categories {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 12px;
  gap: 8px;
}
article.type-post .post-item .post-content .post-categories .category-link {
  display: block;
  font-size: 12px;
  color: #1351D8;
  /* background: rgb(19 81 216 / 10%);
  padding: 6px 12px 4px; */
  font-family: var(--font-family-accent-1);
  border-radius: 4px;
  font-weight: 600;
  line-height: 1.5;
  padding: 2px 6px;
  border: 1px solid;
  width: -moz-max-content;
  width: max-content;
}
article.type-post .post-item .post-content .post-categories .category-link:hover {
  color: var(--blue-color-accent-1);
}
article.type-post .post-item .post-content .read-more {
  font-family: var(--font-family-accent-1);
  font-size: var(--font-size-xs);
  font-weight: 600;
  line-height: 1.3;
  color: var(--black-color-accent-2);
  display: flex;
  align-items: center;
}
article.type-post .post-item .post-content .read-more:hover {
  color: var(--blue-color-accent-1);
}
article.type-post .post-item .post-link:hover .post-thumbnail::after {
  background-color: rgba(0, 0, 0, 0.1);
}

@media (max-width: 767px) {
  article.type-post .post-item {
    padding: 10px 10px;
  }
  article.type-post .post-item .post-thumbnail::before {
    padding-top: 40%;
  }
}
@media (max-width: 575px) {
  article.type-post .post-item .post-thumbnail::before {
    padding-top: 56%;
  }
}
.value-proposition-item .value-proposition-icon {
  position: relative;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.value-proposition-item .value-proposition-icon img {
  z-index: 1;
}
.value-proposition-item .value-proposition-title {
  font-family: var(--font-family-accent-1);
  color: var(--black-color-accent-2);
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-bottom: 16px;
}
.value-proposition-item .value-proposition-excerpt {
  font-family: var(--font-family-accent-2);
  color: var(--black-color-accent-1);
  font-size: var(--font-size-sm);
  line-height: 1.5;
  font-weight: 400;
}

@media (max-width: 991px) {
  .value-proposition-item .value-proposition-icon {
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=home.css.map */