/*************************************************/
/* FONTS */
/*************************************************/
/*************************************************/
/* BOOTSTRAP OVERRIDE */
/* COLORS */
/*************************************************/
/* IMAGES */
/*************************************************/
/* ADMIN SCREENS */
/*************************************************/
/* HEADER */
/*************************************************/
/* SPACINGS */
.block-hero {
  align-items: center;
  position: relative;
  min-height: 700px;
}

.block-hero h2,
.block-hero h3,
.block-hero h4,
.block-hero p,
.block-hero ul,
.block-hero ol,
.block-hero li,
.block-hero div,
.block-hero a:not(.comp-button) {
  color: var(--bs-body-color);
}

@media (min-width: 1191px) {
  .block-hero {
    padding: 0;
    display: flex;
  }
}

.block-hero--has-breadcrumbs {
  padding: 100px 0;
}

.block-hero__breadcrumbs {
  width: 100%;
  position: absolute;
  text-transform: uppercase;
  top: 40px;
  z-index: 10;
  padding: 0 50px;
}

@media (max-width: 768px) {
  .block-hero__breadcrumbs {
    padding: 0 10px;
  }
}

.block-hero__breadcrumbs .comp-breadcrumb a {
  opacity: 0.5;
  text-decoration: none;
  font-weight: 500;
  transition: all 50ms;
}

.block-hero__breadcrumbs .comp-breadcrumb a:hover {
  opacity: 1;
}

.block-hero__breadcrumbs .comp-breadcrumb span {
  font-weight: bold;
}

.block-hero.secondary {
  min-height: 0;
}

.block-hero.carousel {
  background-color: var(--bs-blue);
}

@media (min-width: 1367px) {
  .block-hero.carousel {
    height: calc(100vh - 80px) !important;
  }
}

@media (min-width: 1191px) {
  .block-hero.carousel {
    height: calc(80vh - 80px);
  }
}

@media (max-width: 1190px) {
  .block-hero.carousel {
    min-height: 600px;
  }
}

.block-hero.carousel .hero-swiper {
  padding-bottom: 60px;
}

@media (min-width: 1191px) {
  .block-hero.carousel .hero-swiper {
    padding-bottom: 0;
  }
}

.block-hero.carousel .swiper-pagination.swiper-pagination-horizontal {
  bottom: 40px;
  text-align: center;
}

@media (min-width: 769px) {
  .block-hero.carousel .swiper-pagination.swiper-pagination-horizontal {
    padding: 0 calc(50vw - 100% / 2);
  }
}

@media (min-width: 1191px) {
  .block-hero.carousel .swiper-pagination.swiper-pagination-horizontal {
    text-align: left;
    left: 100px;
  }
}

@media (min-width: 1367px) {
  .block-hero.carousel .swiper-pagination.swiper-pagination-horizontal {
    padding: 0 calc(50vw - 1367px / 2);
    left: 0;
  }
}

@media (min-width: 2400px) {
  .block-hero.carousel .swiper-pagination.swiper-pagination-horizontal {
    padding: 0 calc(50vw - 1440px / 2);
  }
}

.block-hero.carousel .swiper-pagination.swiper-pagination-horizontal .swiper-pagination-bullet {
  overflow: hidden;
  color: transparent;
  border-radius: 2px;
  background-color: var(--bs-white);
  min-width: 90px;
  height: 2px;
  gap: 20px;
}

@media (min-width: 1191px) {
  .block-hero.carousel .swiper-pagination.swiper-pagination-horizontal .swiper-pagination-bullet {
    border-radius: 0;
    color: var(--bs-body-color);
    white-space: nowrap;
    padding: 5px;
    height: 50px;
    background: none;
    background-color: transparent;
    position: relative;
    text-align: center;
    line-height: 1em;
    min-width: 150px;
    margin: 0 12px;
  }

  .block-hero.carousel .swiper-pagination.swiper-pagination-horizontal .swiper-pagination-bullet:after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--bs-white);
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 2px;
  }
}

.block-hero.carousel .swiper-pagination.swiper-pagination-horizontal .swiper-pagination-bullet:first-child {
  margin-left: 0;
}

.block-hero.saas {
  background-color: var(--bs-red);
}

@media (max-width: 1190px) {
  .block-hero.saas {
    background-position: right bottom !important;
    background-size: 360px !important;
  }
}

@media (max-width: 1190px) {
  .block-hero.shapes {
    padding-top: 110vw;
    padding-bottom: 40px;
    background-position: right top !important;
    background-size: 80% !important;
  }
}

.block-hero.vertical-divider {
  display: block;
  overflow: hidden;
  background-color: var(--vertical-divider-hero-bg-color);
}

.block-hero--has-bg-image {
  background-repeat: no-repeat;
}

@media (max-width: 1366px) {
  .block-hero--has-bg-image.vertical-divider {
    display: flex;
    flex-direction: column;
  }
}

.block-hero--has-bg-image.vertical-divider:after {
  content: "";
  display: block;
  top: 0;
  left: 50%;
  width: 100%;
  height: 480px;
  background-size: cover;
  background-position: left center;
  background-repeat: no-repeat;
  margin-bottom: -6em;
  -webkit-clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
  clip-path: polygon(0 20%, 100% 0%, 100% 100%, 0% 100%);
  /*@include media-breakpoint-between(md, xl) {
    background-size: cover !important;
  }
  @include media-breakpoint-down(md) {
    background-position: center bottom !important;
    background-size: 100% !important;
    padding-bottom: 50vw;
  }*/
}

@media (min-width: 1367px) {
  .block-hero--has-bg-image.vertical-divider:after {
    background-size: cover 700px;
    -webkit-clip-path: polygon(360px 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(360px 0, 100% 0, 100% 100%, 0 100%);
    position: absolute;
    height: 100%;
    left: 30%;
    margin: 0;
    background-position: left center;
  }
}

@media (min-width: 2400px) {
  .block-hero--has-bg-image.vertical-divider:after {
    -webkit-clip-path: polygon(360px 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(360px 0, 100% 0, 100% 100%, 0 100%);
    left: 38%;
    background-size: auto 700px;
  }
}

.block-hero.block-hero--has-breadcrumbs .comp-hero-item__caption {
  padding-top: 2em;
}

@media (min-width: 1191px) {
  .block-hero.carousel .swiper-pagination.swiper-pagination-horizontal {
    bottom: 120px;
  }
}

@media (min-width: 1367px) {
  .block-hero.carousel .swiper-pagination.swiper-pagination-horizontal {
    bottom: 200px;
  }
}

@media screen and (min-width: 1366px) and (min-height: 980px) and (max-height: 1080px) {
  .block-hero.carousel .swiper-pagination.swiper-pagination-horizontal {
    bottom: calc(280px - 8%);
  }
}