/*
* Usage:
* 1. Same values for all properties:
*   .f-button {
*       @include transition(
*           (background-color, border-color, color, box-shadow, transform),
*           $transition-duration: $transition-duration-long
*       );
*   }
*
* 2. Different values for specific properties:
*   .f-button {
*       @include transition((
*           background-color: $transition-duration-short null null,
*           border-color: null,
*           box-shadow: 0.315s ease-in null,
*           transform: null ease null
*       ));
*   }
* (!) All values for each property is required.
* (!) 'null' is used for setting default value.
*/
@-webkit-keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* Mixin to cut off the rest of one-line text with dots */
/* Firefox+ CSS styles go here */
.f-checkbox__label .f-field,
.f-radio__label .f-field {
  cursor: default;
}

/*
   1.0 Utility functions for RTLCSS
*/
/* Replace. Replaces the declaration value with {value}.
** Usage:
** letter-spacing: 1px rtl(normal);
*/
/* Append. Appends {value} to the end of the declaration value.
** Usage:
** transform: rotate(45deg) rtl-append(scaleX(-1));
*/
/* Prepend. Prepend {value} to the begining of the declaration value.
** Usage:
** transform: rotate(45deg) rtl-prepend(scaleX(-1));
*/
/* Prepend. Prepend {value} to the begining of the declaration value.
** Usage:
** transform: rotate(45deg) rtl-prepend(scaleX(-1));
*/
/* Ignore. Ignores processing of this declaration
** Usage:
** text-align: left rtl-ignore();
*/
.banner-image-wrapper {
  overflow: hidden;
}

.banner-image {
  max-height: 430px;
  max-width: 100%;
}
@media (min-width: 544px) {
  .banner-image .banner-image {
    width: 100%;
    height: auto;
  }
}

.banner-info-container {
  text-align: center;
}
.banner-info-container .banner-title {
  font-weight: 400;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 1.3px;
  color: #000;
  margin: 30px auto 19px;
  text-transform: uppercase;
}
@media (max-width: 768.98px) {
  .banner-info-container .banner-title {
    margin-bottom: 16px;
  }
}
.banner-info-container .banner-text {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  letter-spacing: normal;
  text-align: center;
  color: #231f20;
  max-width: 350px;
  margin: auto;
}
@media (max-width: 768.98px) {
  .banner-info-container .banner-text {
    max-width: 320px;
  }
}
.banner-info-container .banner-link {
  margin: 15px auto;
}
.banner-info-container .banner-link .b-category-banner__link {
  padding-bottom: 1px;
}

@media (max-width: 768.98px) {
  .content-section {
    text-align: center;
  }
  .content-section:first-child {
    margin-bottom: 32px;
  }
}
