/*!****************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[4].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[4].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[4].use[3]!./src/blocks/inner-hero-banner/style.scss ***!
  \****************************************************************************************************************************************************************************************************************************************************************/
:root {
  --color-primary: var(--wp--preset--color--primary);
  --color-secondary: var(--wp--preset--color--secondary);
  --color-text: var(--wp--preset--color--text);
  --color-text-dark: var(--wp--preset--color--text-dark);
  --color-accent: var(--wp--preset--color--accent);
  --color-gray: var(--wp--preset--color--gray);
  --color-white: var(--wp--preset--color--white);
  --color-black: var(--wp--preset--color--black);
  --color-body-bg: #f3f7fb;
  --color-black-two: #141419;
  --color-error: #CE202A;
  --color-success: #28a745;
  --gradient-primary: var(--wp--preset--gradient--primary);
  --gradient-secondary: var(--wp--preset--gradient--secondary);
  --fontBase: var(--wp--preset--font-family--primary);
  --fontSecondary: var(--wp--preset--font-family--secondary);
}

/*********************
* BREAKPOINTS
*
* @example
* for max-width case
* @include breakpoint('smaller') {
*	@content;	
* }
*
* for min-width case
* @include breakpoint('smaller', true) {
*	@content;	
*}
*********************/

/*********************
	Flex 
*********************/

/*********************
	Flex Direction

@example
// If display: flex; is needed
@include flex-column(true);

// If display: flex; is not needed
@include flex-column();
*********************/

/*********************
	Flex Direction

@example
// Center Vertically and horizontally
@include flex-center();

// Center only horizontally
@include flex-center(hr);

// Center only vertically
@include flex-center(vr);

*********************/

/*********************
Flex Grid Width

@example

@include flex-grid-width(5, 30px);

Note: Do not forget to add column-gap in the parent element

*********************/

/*********************
	Flex Width

@example

@include flex-width(calc(100% / 3));
*********************/

/**
* Mixin to declare Font-face
*
*/

/**This is the block Style*/

.inner-hero-banner {
  position: relative;
  width: 100%;
  padding-top: 11px;
}

@media screen and (max-width: 767px) {
  .inner-hero-banner {
    padding-top: 4px;
  }
}

.inner-hero-banner_holder {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
}

.inner-hero-banner_holder::after, .inner-hero-banner_holder::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.182409) 60.67%, rgba(0, 0, 0, 0.28) 100%);
  z-index: 2;
  pointer-events: none;
}

.inner-hero-banner_holder::before {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.377217) 42.78%, rgba(0, 0, 0, 0.56) 63.51%, rgba(0, 0, 0, 0.7) 100%);
}

.inner-hero-banner .container {
  padding-inline: 10px;
  width: 100% !important;
}

.inner-hero-banner .swiper {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  inset: 0;
}

.inner-hero-banner .swiper-slide {
  background-size: cover;
  background-position: center;
}

@media screen and (max-width: 767px) {
  .inner-hero-banner .swiper-slide {
    opacity: 1 !important;
    transform: none !important;
  }
}

.inner-hero-banner .content-overlay {
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  position: relative;
  z-index: 3;
  padding: 40px 30px 10px;
}

@media screen and (max-width: 767px) {
  .inner-hero-banner .content-overlay {
    padding: 40px 15px 68px 20px;
    min-height: 544px;
    pointer-events: none;
  }
}

.inner-hero-banner .content-overlay_holder {
  width: min(1420px, 100%);
  margin: 0 auto;
}

.inner-hero-banner .hero-title {
  color: var(--color-white);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}

@media screen and (max-width: 767px) {
  .inner-hero-banner .hero-title {
    font-size: 40px;
    margin-bottom: 15px;
  }
}

.inner-hero-banner .divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin-bottom: 35px;
}

@media screen and (max-width: 767px) {
  .inner-hero-banner .divider {
    margin-bottom: 21px;
  }
}

.inner-hero-banner .info-row {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 40px;
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  .inner-hero-banner .info-row {
    gap: 19px;
  }
}

.inner-hero-banner .info-row > * {
  flex: 1;
}

@media screen and (max-width: 767px) {
  .inner-hero-banner .info-row > * {
    flex: 0 1 100%;
  }
}

.inner-hero-banner .mini-title {
  color: var(--color-white);
}

@media screen and (min-width: 768px) {
  .inner-hero-banner .mini-title {
    margin-bottom: 25px;
  }
}

@media screen and (min-width: 768px) {
  .inner-hero-banner .description {
    margin-bottom: 25px;
  }
}

.inner-hero-banner .description p {
  font-size: 24px;
  line-height: 1.149;
  letter-spacing: -0.01em;
  color: var(--color-white);
  font-weight: 200;
}

@media screen and (max-width: 767px) {
  .inner-hero-banner .description p {
    font-size: 18px;
  }
}

.inner-hero-banner .description p:not(:has(+ *)) {
  margin-bottom: 0;
}

.inner-hero-banner {
  /* Navigation Styles */
}

.inner-hero-banner .nav-controls {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 25px;
  align-self: flex-end;
  margin-right: -20px;
}

@media screen and (max-width: 1199px) {
  .inner-hero-banner .nav-controls {
    align-self: unset;
    flex: 0 1 100%;
  }
}

@media screen and (max-width: 767px) {
  .inner-hero-banner .nav-controls {
    display: none;
  }
}

.inner-hero-banner .swiper-pagination-fraction {
  position: static !important;
  width: auto !important;
  color: var(--color-white) !important;
  font-size: 14px;
  letter-spacing: -0.01em;
  line-height: 1;
  font-weight: 400;
  padding-left: 10px;
  padding-top: 0;
  font-family: var(--fontSecondary);
}

@media screen and (max-width: 767px) {
  .inner-hero-banner .swiper-pagination-fraction {
    display: none;
  }
}

.inner-hero-banner .swiper-pagination-fraction::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--color-accent);
  border-radius: 2px;
}

.inner-hero-banner .nav-buttons {
  display: flex;
  gap: 6px;
}

@media screen and (max-width: 767px) {
  .inner-hero-banner .nav-buttons {
    display: none;
  }
}

.inner-hero-banner .swiper-button-next,
.inner-hero-banner .swiper-button-prev {
  position: static;
  width: 63px;
  height: 42px;
  opacity: 1;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-white);
  transition: all 0.3s ease;
  margin: 0;
  transform: translate(0);
}

.inner-hero-banner .swiper-button-next:hover,
.inner-hero-banner .swiper-button-prev:hover {
  background-color: var(--color-secondary);
}

.inner-hero-banner .swiper-button-next.swiper-button-disabled,
.inner-hero-banner .swiper-button-prev.swiper-button-disabled {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(8px);
}

.inner-hero-banner .swiper-button-next svg,
.inner-hero-banner .swiper-button-prev svg {
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.inner-hero-banner .swiper-button-next::after,
.inner-hero-banner .swiper-button-prev::after {
  content: none;
}

.inner-hero-banner .swiper-button-prev svg {
  transform: rotate(-135deg);
}

.inner-hero-banner .mobile-pagination {
  position: absolute;
  bottom: 19px;
  padding-inline: 16px;
  width: 100%;
  text-align: left;
  z-index: 20;
  display: none;
  z-index: 4;
}

@media screen and (max-width: 767px) {
  .inner-hero-banner .mobile-pagination {
    display: block;
  }
}

.inner-hero-banner .mobile-pagination .swiper-pagination-bullet {
  border-radius: 2px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background-color: transparent;
  margin: 0 3px;
  opacity: 1;
}

.inner-hero-banner .mobile-pagination .swiper-pagination-bullet-active {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
}

.inner-hero-banner.full-width .content-overlay_holder {
  width: 100%;
}

.inner-hero-banner.narrow-width .content-overlay_holder {
  width: min(1230px, 100%);
}

/*# sourceMappingURL=style-index.css.map*/