/* Convert px to rem
** Usage:
** font-size: rem(23);
*/
/* A small function allowing skipping base64 encoding
** and simply pasting the SVG markup right in the CSS.
** @author Jakob Eriksen
** @link http://codepen.io/jakob-e/pen/doMoML
** @param {String} $svg - SVG image to encode
** @return {String} - Encoded SVG data uri
*/
/* Replace `$search` with `$replace` in `$string`
** @author Hugo Giraudel
** @link http://sassmeister.com/gist/1b4f2da5527830088e4d
** @param {String} $string - Initial string
** @param {String} $search - Substring to replace
** @param {String} $replace ('') - New value
** @return {String} - Updated string
*/
/* Replace substring 'fillColor' to real color from variables */
/* Convert px to rem
** Usage:
** font-size: rem(23);
*/
/* A small function allowing skipping base64 encoding
** and simply pasting the SVG markup right in the CSS.
** @author Jakob Eriksen
** @link http://codepen.io/jakob-e/pen/doMoML
** @param {String} $svg - SVG image to encode
** @return {String} - Encoded SVG data uri
*/
/* Replace `$search` with `$replace` in `$string`
** @author Hugo Giraudel
** @link http://sassmeister.com/gist/1b4f2da5527830088e4d
** @param {String} $string - Initial string
** @param {String} $search - Substring to replace
** @param {String} $replace ('') - New value
** @return {String} - Updated string
*/
/* Replace substring 'fillColor' to real color from variables */
/* Mixin for button animation,
    use: @include button-animation(); for .btn-primary-dark--white-bg button
*/
/* Mixin for arrow link animation,
    use: @include arrow-link-animation(); for .btn-tertiary-dark--white-bg button
*/
/* Mixin for link animation,
    use: @include link-animation(); for .btn-link-dark--white-bg button
*/
/* Mixin for button background animation,
    use: @include hoverBgEffect($primary-slate, $scale: 1.4, $speed: 0.4s);
*/
/**
 * Mixin for adding gradient line to the bottom.
 * @param {$side-colors} color.
 */
/**
 * Mixin for adding text underline.
 */
/**
 * Mixin for cropping the text.
 * @param {$line-clamp} number of visible lines.
 */
.b-tabbed-banner__top {
  position: relative;
}
@media (max-width: 991.98px) {
  .b-tabbed-banner__top {
    margin: 0 1.5rem;
  }
}
.b-tabbed-banner__header {
  font: 700 2.25rem/1.2 "Iqos", sans-serif;
  letter-spacing: 0.00625rem /*!rtl:0*/;
  text-align: center;
  padding: 1.25rem 0 6.25rem;
  margin: 0;
}
@media (min-width: 1024px) {
  .b-tabbed-banner__header {
    font-size: 2.625rem;
    line-height: 1.08;
    letter-spacing: -0.08rem /*!rtl:0*/;
    padding-top: 3.125rem;
  }
}
.b-tabbed-banner__nav-tabs {
  position: absolute;
  bottom: 1.25rem;
  left: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background: transparent;
}
@media (min-width: 1024px) {
  .b-tabbed-banner__nav-tabs {
    display: none;
  }
}
.b-tabbed-banner__nav-tabs.nav-tabs .nav-item {
  margin: 0 0.5rem;
}
.b-tabbed-banner__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (min-width: 1024px) {
  .b-tabbed-banner__items:not(.b-tabbed-banner__items--static):hover .b-tabbed-banner__item:not(:only-child) {
    width: 30%;
  }
}
.b-tabbed-banner__items::before {
  width: 0;
  content: "";
  padding-bottom: 38%;
}
.b-tabbed-banner__items:has(.position-static)::before {
  content: none;
  padding-bottom: unset;
}
@media (min-width: 1024px) {
  .b-tabbed-banner__items--static .b-tabbed-banner__item:not(:only-child) {
    -webkit-box-flex: 1;
        -ms-flex: 1 0;
            flex: 1 0;
    min-width: 50%;
  }
}
@media (min-width: 1024px) {
  .b-tabbed-banner__items--static .b-tabbed-banner-item__buttons-wrapper {
    opacity: 1 !important;
  }
}
.b-tabbed-banner__item {
  width: 100%;
}
@media (min-width: 1024px) {
  .b-tabbed-banner__item:not(:only-child) {
    width: 50%;
    -webkit-transition: width 0.4s cubic-bezier(0, 0, 0.5, 1);
    transition: width 0.4s cubic-bezier(0, 0, 0.5, 1);
  }
  .b-tabbed-banner .b-tabbed-banner__item:not(:only-child):hover, .b-tabbed-banner .b-tabbed-banner__item:not(:only-child):focus {
    width: 70% !important;
  }
  .b-tabbed-banner .b-tabbed-banner__item:not(:only-child):hover .b-tabbed-banner-item__buttons-wrapper, .b-tabbed-banner .b-tabbed-banner__item:not(:only-child):focus .b-tabbed-banner-item__buttons-wrapper {
    opacity: 1;
  }
}
@media (min-width: 1024px) and (min-width: 1024px) {
  .b-tabbed-banner__item:not(:only-child) .b-tabbed-banner-item__buttons-wrapper {
    opacity: 0;
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
  }
}
@media (min-width: 1024px) {
  .b-tabbed-banner__item.tab-pane {
    display: block;
    opacity: 1;
  }
}

.b-tabbed-banner-item {
  color: #fffdfb;
  position: relative;
}
@media (min-width: 1024px) {
  .b-tabbed-banner-item {
    height: 100%;
  }
}
.b-tabbed-banner-item__content {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 0 2rem;
}
@media (min-width: 1024px) {
  .b-tabbed-banner-item__content {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    padding-bottom: 3.75rem;
  }
}
.b-tabbed-banner-item__content.position-static {
  padding-bottom: 0;
}
@media (min-width: 1024px) {
  .b-tabbed-banner-item__content.position-static {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.b-tabbed-banner-item__header {
  font: 700 1.5rem/1.24 "Iqos", sans-serif;
  margin-bottom: 2rem;
  display: none;
}
@media (min-width: 1024px) {
  .b-tabbed-banner-item__header {
    display: block;
    font-size: 1.75rem;
    line-height: 1.24;
  }
}
.b-tabbed-banner-item__description, .b-tabbed-banner-item__header {
  max-width: 26.25rem;
  text-align: center;
}
@media (max-width: 991.98px) {
  .b-tabbed-banner-item__description {
    font-size: 1.75rem;
    line-height: 1.3;
    letter-spacing: 0.00625rem /*!rtl:0*/;
  }
}
.b-tabbed-banner-item__description--markup {
  font-size: 1rem;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  .b-tabbed-banner-item__description--markup {
    font-size: 1.125rem;
  }
}
.b-tabbed-banner-item__button {
  margin-top: 2.5rem;
}
.b-tabbed-banner-item__image {
  position: relative;
}
@media (min-width: 1024px) {
  .b-tabbed-banner-item__image {
    height: 100%;
  }
}
.b-tabbed-banner-item__image.m-gradient-overlay::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
@media (min-width: 1024px) {
  .b-tabbed-banner-item__image.m-gradient-overlay::before {
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.6)), color-stop(70%, rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 70%);
  }
}
.b-tabbed-banner-item__image img {
  width: 100%;
}
@media (min-width: 1024px) {
  .b-tabbed-banner-item__image img {
    position: absolute;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
