/*!************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[2].use[2]!./node_modules/sass-loader/dist/cjs.js!./scss/blocks/service-banner.scss ***!
  \************************************************************************************************************************************************************************************************/
.service-banner {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  padding: 138px 0 0;
}
@media screen and (max-width: 599px) {
  .service-banner {
    min-height: unset;
    padding: 0;
    display: block;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .service-banner {
    min-height: unset;
    padding: 138px 0 32px;
  }
}
.service-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
@media screen and (max-width: 599px) {
  .service-banner__bg {
    position: static;
    z-index: auto;
  }
}
.service-banner__bg img, .service-banner__bg source {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 599px) {
  .service-banner__bg img, .service-banner__bg source {
    position: static;
    height: auto;
    display: block;
  }
}
.service-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(0.16px);
          backdrop-filter: blur(0.16px);
  z-index: 1;
}
@media screen and (max-width: 599px) {
  .service-banner__overlay {
    display: none;
  }
}
.service-banner__content {
  position: relative;
  z-index: 2;
  max-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  .service-banner__content {
    padding: 16px 20px;
  }
}
.service-banner__content .breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  padding: 8px 16px;
  width: -moz-max-content;
  width: max-content;
  margin: 0 0 25vh;
}
@media screen and (max-width: 599px) {
  .service-banner__content .breadcrumbs {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .service-banner__content .breadcrumbs {
    display: none;
  }
}
.service-banner__content .breadcrumbs span {
  gap: 8px;
}
.service-banner__content .breadcrumbs span, .service-banner__content .breadcrumbs a {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  color: #525252;
  white-space: nowrap;
}
.service-banner__content .breadcrumbs .breadcrumb_last {
  color: rgb(63, 186, 194);
}
.service-banner__content .breadcrumbs img {
  max-width: 16px;
}
.service-banner__title {
  font-family: "Rubik", sans-serif;
  font-weight: 300;
  font-size: 72px;
  line-height: 80px;
  letter-spacing: -1.5%;
  text-transform: uppercase;
  margin: 0 0 24px;
}
@media screen and (max-width: 599px) {
  .service-banner__title {
    color: #1F1F1F;
    font-size: 37px;
    line-height: 100%;
    letter-spacing: -1.2%;
    margin: 0 0 16px;
  }
}
.service-banner__text {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 30px;
  color: #FAFAFA;
  margin: 0 0 24px;
  max-width: 1067px;
}
@media screen and (max-width: 599px) {
  .service-banner__text {
    color: #1F1F1F;
    font-size: 19px;
    line-height: 30px;
    max-width: unset;
    margin: 0 0 16px;
  }
}
.service-banner__btn {
  display: inline-block;
  text-decoration: none;
}
@media screen and (max-width: 599px) {
  .service-banner__btn {
    width: 100%;
    text-align: center;
  }
}
.service-banner .scroll-indicator {
  position: absolute;
  z-index: 2;
  bottom: 64px;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 599px) {
  .service-banner .scroll-indicator {
    display: none;
  }
}
@media screen and (min-width: 600px) and (max-width: 1023px) {
  .service-banner .scroll-indicator {
    display: none;
  }
}
.service-banner .scroll-arrows {
  display: block;
  width: 40px;
  height: 63px;
  overflow: visible;
}
.service-banner .arrow {
  opacity: 0;
  transform: translateY(-4px);
  animation: arrowFade 300ms ease-out forwards, arrowPulse 2s ease-in-out infinite;
}
.service-banner .arrow--1 {
  animation-delay: 0ms;
}
.service-banner .arrow--2 {
  animation-delay: 300ms;
}
.service-banner .arrow--3 {
  animation-delay: 600ms;
}
@keyframes arrowPulse {
  0%, 100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
