@import "../__core_library/fontawesome/css/font-awesome.min.css";
.core-layout .container-fluid {
  padding-left: 0;
  padding-right: 0;
}
/*
//MUST BE DEFINED!!
@color-light:#fff;
@color-dark:#222;
@color-primary:red;
*/
/* functions */
/*
.gradient() {
    background: -webkit-linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,0.99) 99%, rgba(0,0,0,1) 100%);
    background: -o-linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,0.99) 99%, rgba(0,0,0,1) 100%);
    background: linear-gradient(rgba(0,0,0,0) 0%, rgba(0,0,0,0.99) 99%, rgba(0,0,0,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 );
}*/
/* helpers */
.core-input-block {
  width: 100%;
}
.core-inline-block {
  display: inline-block;
}
.core-relative {
  position: relative;
}
.core-absolute {
  position: absolute;
}
.core-section {
  position: relative;
  clear: both;
}
.core-overlay {
  position: absolute!important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.core-hidden {
  display: none;
}
.core-left {
  text-align: left;
}
.core-right {
  text-align: right;
}
.core-center {
  text-align: center;
}
.core-toggle ~ div {
  visibility: hidden;
  opacity: 0;
  height: 0;
  overflow: hidden;
  -webkit-transition:  all 600ms 0s ease;
  -moz-transition:  all 600ms 0s ease;
  -ms-transition:  all 600ms 0s ease;
  -o-transition:  all 600ms 0s ease;
  transition:  all 600ms 0s ease;
}
.core-toggle:checked ~ div {
  visibility: visible;
  opacity: 1;
  height: auto;
  overflow: hidden;
  -webkit-transition:  all 600ms 0s ease;
  -moz-transition:  all 600ms 0s ease;
  -ms-transition:  all 600ms 0s ease;
  -o-transition:  all 600ms 0s ease;
  transition:  all 600ms 0s ease;
}
/* flexs */
.core-flex {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.core-flex-vertical {
  flex-direction: column;
}
.core-flex-horizontal {
  flex-direction: row;
}
.core-flex-horizontalr {
  flex-direction: row-reverse;
}
.core-flex-verticalr {
  flex-direction: column-reverse;
}
.core-valign-center {
  align-items: center;
}
.core-halign-center {
  text-align: center;
}
/* heights */
.core-height-10 {
  min-height: 10vh;
}
.core-height-20 {
  min-height: 20vh;
}
.core-height-30 {
  min-height: 30vh;
}
.core-height-40 {
  min-height: 40vh;
}
.core-height-50 {
  min-height: 50vh;
}
.core-height-60 {
  min-height: 60vh;
}
.core-height-70 {
  min-height: 70vh;
}
.core-height-80 {
  min-height: 80vh;
}
.core-height-90 {
  min-height: 90vh;
}
.core-height-100 {
  min-height: 100vh;
}
.core-width-10 {
  width: 10%;
}
.core-width-20 {
  width: 20%;
}
.core-width-25 {
  width: 25%;
}
.core-width-30 {
  width: 30%;
}
.core-width-40 {
  width: 40%;
}
.core-width-50 {
  width: 50%;
}
.core-width-60 {
  width: 60%;
}
.core-width-70 {
  width: 70%;
}
.core-width-80 {
  width: 80%;
}
.core-width-90 {
  width: 90%;
}
.core-width-100 {
  width: 100%;
}
.core-height-full {
  height: 100%;
}
/* fading for overlay */
.core-fadeimg-0 img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(0))";
  /* IE 8 */
  filter: alpha(opacity=0);
  /* IE 5-7 */
  -moz-opacity: 0;
  /* Netscape */
  -khtml-opacity: 0;
  /* Safari 1.x */
  opacity: 0;
  /* Good browsers */
}
.core-fadeimg-10 img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(10))";
  /* IE 8 */
  filter: alpha(opacity=10);
  /* IE 5-7 */
  -moz-opacity: 0.1;
  /* Netscape */
  -khtml-opacity: 0.1;
  /* Safari 1.x */
  opacity: 0.1;
  /* Good browsers */
}
.core-fadeimg-20 img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(20))";
  /* IE 8 */
  filter: alpha(opacity=20);
  /* IE 5-7 */
  -moz-opacity: 0.2;
  /* Netscape */
  -khtml-opacity: 0.2;
  /* Safari 1.x */
  opacity: 0.2;
  /* Good browsers */
}
.core-fadeimg-30 img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(30))";
  /* IE 8 */
  filter: alpha(opacity=30);
  /* IE 5-7 */
  -moz-opacity: 0.3;
  /* Netscape */
  -khtml-opacity: 0.3;
  /* Safari 1.x */
  opacity: 0.3;
  /* Good browsers */
}
.core-fadeimg-40 img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(40))";
  /* IE 8 */
  filter: alpha(opacity=40);
  /* IE 5-7 */
  -moz-opacity: 0.4;
  /* Netscape */
  -khtml-opacity: 0.4;
  /* Safari 1.x */
  opacity: 0.4;
  /* Good browsers */
}
.core-fadeimg-50 img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(50))";
  /* IE 8 */
  filter: alpha(opacity=50);
  /* IE 5-7 */
  -moz-opacity: 0.5;
  /* Netscape */
  -khtml-opacity: 0.5;
  /* Safari 1.x */
  opacity: 0.5;
  /* Good browsers */
}
.core-fadeimg-60 img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(60))";
  /* IE 8 */
  filter: alpha(opacity=60);
  /* IE 5-7 */
  -moz-opacity: 0.6;
  /* Netscape */
  -khtml-opacity: 0.6;
  /* Safari 1.x */
  opacity: 0.6;
  /* Good browsers */
}
.core-fadeimg-70 img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(70))";
  /* IE 8 */
  filter: alpha(opacity=70);
  /* IE 5-7 */
  -moz-opacity: 0.7;
  /* Netscape */
  -khtml-opacity: 0.7;
  /* Safari 1.x */
  opacity: 0.7;
  /* Good browsers */
}
.core-fadeimg-80 img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(80))";
  /* IE 8 */
  filter: alpha(opacity=80);
  /* IE 5-7 */
  -moz-opacity: 0.8;
  /* Netscape */
  -khtml-opacity: 0.8;
  /* Safari 1.x */
  opacity: 0.8;
  /* Good browsers */
}
.core-fadeimg-90 img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(90))";
  /* IE 8 */
  filter: alpha(opacity=90);
  /* IE 5-7 */
  -moz-opacity: 0.9;
  /* Netscape */
  -khtml-opacity: 0.9;
  /* Safari 1.x */
  opacity: 0.9;
  /* Good browsers */
}
.core-fadeimg-100 img {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(100))";
  /* IE 8 */
  filter: alpha(opacity=100);
  /* IE 5-7 */
  -moz-opacity: 1;
  /* Netscape */
  -khtml-opacity: 1;
  /* Safari 1.x */
  opacity: 1;
  /* Good browsers */
}
/* fade */
.core-fade-10 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(10))";
  /* IE 8 */
  filter: alpha(opacity=10);
  /* IE 5-7 */
  -moz-opacity: 0.1;
  /* Netscape */
  -khtml-opacity: 0.1;
  /* Safari 1.x */
  opacity: 0.1;
  /* Good browsers */
}
.core-fade-20 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(20))";
  /* IE 8 */
  filter: alpha(opacity=20);
  /* IE 5-7 */
  -moz-opacity: 0.2;
  /* Netscape */
  -khtml-opacity: 0.2;
  /* Safari 1.x */
  opacity: 0.2;
  /* Good browsers */
}
.core-fade-30 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(30))";
  /* IE 8 */
  filter: alpha(opacity=30);
  /* IE 5-7 */
  -moz-opacity: 0.3;
  /* Netscape */
  -khtml-opacity: 0.3;
  /* Safari 1.x */
  opacity: 0.3;
  /* Good browsers */
}
.core-fade-40 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(40))";
  /* IE 8 */
  filter: alpha(opacity=40);
  /* IE 5-7 */
  -moz-opacity: 0.4;
  /* Netscape */
  -khtml-opacity: 0.4;
  /* Safari 1.x */
  opacity: 0.4;
  /* Good browsers */
}
.core-fade-50 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(50))";
  /* IE 8 */
  filter: alpha(opacity=50);
  /* IE 5-7 */
  -moz-opacity: 0.5;
  /* Netscape */
  -khtml-opacity: 0.5;
  /* Safari 1.x */
  opacity: 0.5;
  /* Good browsers */
}
.core-fade-60 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(60))";
  /* IE 8 */
  filter: alpha(opacity=60);
  /* IE 5-7 */
  -moz-opacity: 0.6;
  /* Netscape */
  -khtml-opacity: 0.6;
  /* Safari 1.x */
  opacity: 0.6;
  /* Good browsers */
}
.core-fade-70 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(70))";
  /* IE 8 */
  filter: alpha(opacity=70);
  /* IE 5-7 */
  -moz-opacity: 0.7;
  /* Netscape */
  -khtml-opacity: 0.7;
  /* Safari 1.x */
  opacity: 0.7;
  /* Good browsers */
}
.core-fade-80 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(80))";
  /* IE 8 */
  filter: alpha(opacity=80);
  /* IE 5-7 */
  -moz-opacity: 0.8;
  /* Netscape */
  -khtml-opacity: 0.8;
  /* Safari 1.x */
  opacity: 0.8;
  /* Good browsers */
}
.core-fade-90 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(90))";
  /* IE 8 */
  filter: alpha(opacity=90);
  /* IE 5-7 */
  -moz-opacity: 0.9;
  /* Netscape */
  -khtml-opacity: 0.9;
  /* Safari 1.x */
  opacity: 0.9;
  /* Good browsers */
}
.core-fade-100 {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=(100))";
  /* IE 8 */
  filter: alpha(opacity=100);
  /* IE 5-7 */
  -moz-opacity: 1;
  /* Netscape */
  -khtml-opacity: 1;
  /* Safari 1.x */
  opacity: 1;
  /* Good browsers */
}
/* margins + paddings */
.core-margin-w10 {
  margin-left: 10%;
  margin-right: 10%;
}
.core-margin-w20 {
  margin-left: 20%;
  margin-right: 20%;
}
.core-margin-w25 {
  margin-left: 25%;
  margin-right: 25%;
}
.core-margin-w30 {
  margin-left: 30%;
  margin-right: 30%;
}
.core-margin-h10 {
  margin-top: 10%;
  margin-bottom: 10%;
}
.core-margin-h20 {
  margin-top: 20%;
  margin-bottom: 20%;
}
.core-margin-h25 {
  margin-top: 25%;
  margin-bottom: 25%;
}
.core-margin-h30 {
  margin-top: 30%;
  margin-bottom: 30%;
}
.core-margin-left50 {
  margin-left: 50%;
}
.core-padding-default {
  padding: 40px;
}
.core-padding-2x {
  padding: 80px;
}
.core-padding-3x {
  padding: 120px;
}
.core-padding-vertical {
  padding: 40px 0px;
}
.core-padding-horizontal {
  padding: 0px 40px;
}
.core-padd {
  padding: 40px;
}
.core-paddv {
  padding: 40px 0px;
}
.core-paddh {
  padding: 0px 40px;
}
.core-paddh2x {
  padding: 0px 80px;
}
.core-margin-default {
  margin: 40px;
}
.core-padding-w10 {
  padding-left: 10%;
  padding-right: 10%;
}
.core-padding-w20 {
  padding-left: 20%;
  padding-right: 20%;
}
.core-padding-w25 {
  padding-left: 25%;
  padding-right: 25%;
}
.core-padding-w30 {
  padding-left: 30%;
  padding-right: 30%;
}
.core-padding-h10 {
  padding-top: 10%;
  padding-bottom: 10%;
}
.core-padding-h20 {
  padding-top: 20%;
  padding-bottom: 20%;
}
.core-padding-h25 {
  padding-top: 25%;
  padding-bottom: 25%;
}
.core-padding-h30 {
  padding-top: 30%;
  padding-bottom: 30%;
}
.core-fullheight {
  height: 100%;
  display: block;
}
.core-padding-left-l {
  padding-left: 80px;
}
.core-icon-l {
  font-size: 48px;
  width: 48px;
  height: 48px;
  text-align: center;
  line-height: 48px;
}
/* colorized paper for text */
.core-paper {
  position: relative;
}
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding-right: 0px;
  padding-left: 0px;
}
.row {
  margin-right: 0px;
  margin-left: 0px;
}
.core-caption-down {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
/* simple responsivity */
/*
@lg-break
@md-break
@sm-break
@xs-break
*/
/* vars */
/*
@spacing-xxs: 1px;
@spacing-xs: 2px;
@spacing-s: 4px;
@spacing-m: 8px;
@spacing-l: 16px;
@spacing-xl: 32px;
@spacing-xxl: 64px;
@spacing-xxxl: 128px;
*/
/**************************************************************************************/
/* functions */
/**************************************************************************************/
/* example for castSpacing

	.castSpacing(data-flex,spacing,@spacing-l);


*/
/**************************************************************************************/
/* grid */
/**************************************************************************************/
.core-container {
  margin: 0 auto;
}
*[data-flex*=' guttered'],
*[data-flex*='guttered'] {
  overflow: hidden;
}
.core-row {
  box-sizing: border-box;
  display: flex;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.core-row[data-flex*=' nowrap'],
.core-row[data-flex^='nowrap'] {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.core-row[data-flex*=' reverse'],
.core-row[data-flex^='reverse'] {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}
.core-row[data-flex*=' column'],
.core-row[data-flex^='column'],
.core-row[data-flex*=' vertical'],
.core-row[data-flex^='vertical'] {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  box-orient: vertical;
  /* fix to vertical with absolute items */
}
.core-row[data-flex*=' column'] .core-col,
.core-row[data-flex^='column'] .core-col,
.core-row[data-flex*=' vertical'] .core-col,
.core-row[data-flex^='vertical'] .core-col {
  width: 100%;
}
.core-row[data-flex*=' row'],
.core-row[data-flex^='row'] {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: horizontal;
  -moz-box-orient: horizontal;
  -ms-box-orient: horizontal;
  box-orient: horizontal;
}
.core-row[data-flex*=' column-reverse'],
.core-row[data-flex^='column-reverse'] {
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-box-orient: vertical;
  box-orient: vertical;
}
.core-row[data-flex*=' bottom'],
.core-row[data-flex^='bottom'] {
  -webkit-align-items: flex-end;
  -ms-flex-align: end;
  -ms-grid-row-align: flex-end;
  align-items: flex-end;
}
.core-row[data-flex*=' top'],
.core-row[data-flex^='top'] {
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  -ms-grid-row-align: flex-start;
  align-items: flex-start;
}
.core-row[data-flex*=' center'],
.core-row[data-flex^='center'] {
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.core-row .core-col[data-flex*=' center'],
.core-row[data-flex^='center'] {
  -webkit-align-items: center;
  -ms-flex-align: center;
  -ms-grid-row-align: center;
  align-items: center;
}
.core-row[data-flex*=' stretch'],
.core-row[data-flex^='stretch'] {
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  -ms-grid-row-align: stretch;
  align-items: stretch;
}
.core-row[data-flex*=' baseline'],
.core-row[data-flex^='baseline'] {
  -webkit-align-items: baseline;
  -ms-flex-align: baseline;
  -ms-grid-row-align: baseline;
  align-items: baseline;
}
.core-row[data-flex*=' selfcenter'],
.core-row[data-flex^='selfcenter'] {
  align-self: center;
}
.core-row[data-flex*=' auto'],
.core-row[data-flex^='auto'] {
  flex: auto;
}
.core-row[data-flex*=' end'],
.core-row[data-flex^='end'] {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-flex: 1;
  -ms-flex: auto;
  flex: auto;
}
.core-row[data-flex*=' hcenter'],
.core-row[data-flex^='hcenter'] {
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.core-row[data-flex*=' right'],
.core-row[data-flex^='right'] {
  -webkit-box-pack: flex-end;
  -moz-box-pack: flex-end;
  -ms-flex-pack: flex-end;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
}
.core-row[data-flex*=' gutter-sm'],
.core-row[data-flex^='gutter-sm'] {
  margin-right: -5px;
}
.core-row[data-flex*=' gutter-sm'] > *,
.core-row[data-flex^='gutter-sm'] > * {
  padding-right: 5px;
  padding-bottom: 5px;
}
.core-row[data-flex*=' gutter-md'],
.core-row[data-flex^='gutter-md'] {
  margin-right: -10px;
}
.core-row[data-flex*=' gutter-md'] > *,
.core-row[data-flex^='gutter-md'] > * {
  padding-right: 10px;
  padding-bottom: 10px;
}
.core-row[data-flex*=' gutter-lg'],
.core-row[data-flex^='gutter-lg'] {
  margin-right: -15px;
}
.core-row[data-flex*=' gutter-lg'] > *,
.core-row[data-flex^='gutter-lg'] > * {
  padding-right: 15px;
  padding-bottom: 15px;
}
.core-row[data-flex*=' gutter-xxs'],
.core-row[data-flex^='gutter-xxs'] {
  margin-right: -0.1rem;
}
.core-row[data-flex*=' gutter-xxs'] > *,
.core-row[data-flex^='gutter-xxs'] > * {
  padding-right: 0.1rem;
  padding-bottom: 0.1rem;
}
.core-row[data-flex*=' gutter-xs'],
.core-row[data-flex^='gutter-xs'] {
  margin-right: -0.2rem;
}
.core-row[data-flex*=' gutter-xs'] > *,
.core-row[data-flex^='gutter-xs'] > * {
  padding-right: 0.2rem;
  padding-bottom: 0.2rem;
}
.core-row[data-flex*=' gutter-s'],
.core-row[data-flex^='gutter-s'] {
  margin-right: -0.4rem;
}
.core-row[data-flex*=' gutter-s'] > *,
.core-row[data-flex^='gutter-s'] > * {
  padding-right: 0.4rem;
  padding-bottom: 0.4rem;
}
.core-row[data-flex*=' gutter-m'],
.core-row[data-flex^='gutter-m'] {
  margin-right: -0.8rem;
}
.core-row[data-flex*=' gutter-m'] > *,
.core-row[data-flex^='gutter-m'] > * {
  padding-right: 0.8rem;
  padding-bottom: 0.8rem;
}
.core-row[data-flex*=' gutter-l'],
.core-row[data-flex^='gutter-l'] {
  margin-right: -1.6rem;
}
.core-row[data-flex*=' gutter-l'] > *,
.core-row[data-flex^='gutter-l'] > * {
  padding-right: 1.6rem;
  padding-bottom: 1.6rem;
}
.core-row[data-flex*=' gutter-xl'],
.core-row[data-flex^='gutter-xl'] {
  margin-right: -3.2rem;
}
.core-row[data-flex*=' gutter-xl'] > *,
.core-row[data-flex^='gutter-xl'] > * {
  padding-right: 3.2rem;
  padding-bottom: 3.2rem;
}
.core-row[data-flex*=' gutter-xxl'],
.core-row[data-flex^='gutter-xxl'] {
  margin-right: -6.4rem;
}
.core-row[data-flex*=' gutter-xxl'] > *,
.core-row[data-flex^='gutter-xxl'] > * {
  padding-right: 6.4rem;
  padding-bottom: 6.4rem;
}
.core-row[data-flex*=' gutter-xxxl'],
.core-row[data-flex^='gutter-xxxl'] {
  margin-right: -12.8rem;
}
.core-row[data-flex*=' gutter-xxxl'] > *,
.core-row[data-flex^='gutter-xxxl'] > * {
  padding-right: 12.8rem;
  padding-bottom: 12.8rem;
}
.core-col {
  flex: 1;
}
.core-col[data-flex*=' 1/1'],
.core-col[data-flex^='1/1'] {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.core-col[data-flex*=' 1/2'],
.core-col[data-flex^='1/2'] {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.core-col[data-flex*=' 1/3'],
.core-col[data-flex^='1/3'] {
  -webkit-flex-basis: 33.3333%;
  -ms-flex-preferred-size: 33.3333%;
  flex-basis: 33.3333%;
  max-width: 33.3333%;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.core-col[data-flex*=' 2/3'],
.core-col[data-flex^='2/3'] {
  -webkit-flex-basis: 66.6666%;
  -ms-flex-preferred-size: 66.6666%;
  flex-basis: 66.6666%;
  max-width: 66.6666%;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.core-col[data-flex*=' 1/4'],
.core-col[data-flex^='1/4'] {
  -webkit-flex-basis: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.core-col[data-flex*=' 2/4'],
.core-col[data-flex^='2/4'] {
  -webkit-flex-basis: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.core-col[data-flex*=' 3/4'],
.core-col[data-flex^='3/4'] {
  -webkit-flex-basis: 75%;
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.core-col[data-flex*=' 1/5'],
.core-col[data-flex^='1/5'] {
  -webkit-flex-basis: 20%;
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  max-width: 20%;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.core-col[data-flex*=' 2/5'],
.core-col[data-flex^='2/5'] {
  -webkit-flex-basis: 40%;
  -ms-flex-preferred-size: 40%;
  flex-basis: 40%;
  max-width: 40%;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.core-col[data-flex*=' 3/5'],
.core-col[data-flex^='3/5'] {
  -webkit-flex-basis: 60%;
  -ms-flex-preferred-size: 60%;
  flex-basis: 60%;
  max-width: 60%;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.core-col[data-flex*=' 4/5'],
.core-col[data-flex^='4/5'] {
  -webkit-flex-basis: 80%;
  -ms-flex-preferred-size: 80%;
  flex-basis: 80%;
  max-width: 80%;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.core-col[data-flex*=' 1/6'],
.core-col[data-flex^='1/6'] {
  -webkit-flex-basis: 16.6666%;
  -ms-flex-preferred-size: 16.6666%;
  flex-basis: 16.6666%;
  max-width: 16.6666%;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.core-col[data-flex*=' 2/6'],
.core-col[data-flex^='2/6'] {
  -webkit-flex-basis: 33.3332%;
  -ms-flex-preferred-size: 33.3332%;
  flex-basis: 33.3332%;
  max-width: 33.3332%;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.core-col[data-flex*=' 3/6'],
.core-col[data-flex^='3/6'] {
  -webkit-flex-basis: 49.9998%;
  -ms-flex-preferred-size: 49.9998%;
  flex-basis: 49.9998%;
  max-width: 49.9998%;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.core-col[data-flex*=' 4/6'],
.core-col[data-flex^='4/6'] {
  -webkit-flex-basis: 66.6666%;
  -ms-flex-preferred-size: 66.6666%;
  flex-basis: 66.6666%;
  max-width: 66.6666%;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.core-col[data-flex*=' 5/6'],
.core-col[data-flex^='5/6'] {
  -webkit-flex-basis: 83.3333%;
  -ms-flex-preferred-size: 83.3333%;
  flex-basis: 83.3333%;
  max-width: 83.3333%;
  -webkit-flex-grow: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
}
.core-col[data-flex*=' auto'],
.core-col[data-flex^='auto'] {
  flex: auto;
}
.core-col img {
  max-width: 100%;
}
/* PADDINGS */
.core-padding {
  padding: 40px;
}
.core-padding-xxs {
  padding: 0.1rem;
}
.core-padding-xs {
  padding: 0.2rem;
}
.core-padding-s {
  padding: 0.4rem;
}
.core-padding-m {
  padding: 0.8rem;
}
.core-padding-l {
  padding: 1.6rem;
}
.core-padding-xl {
  padding: 3.2rem;
}
.core-padding-xxl {
  padding: 6.4rem;
}
.core-padding-xxxl {
  padding: 12.8rem;
}
/* MARGINS */
.core-margin {
  margin: 40px;
}
.core-margin-xxs {
  margin: 0.1rem;
}
.core-margin-xs {
  margin: 0.2rem;
}
.core-margin-s {
  margin: 0.4rem;
}
.core-margin-m {
  margin: 0.8rem;
}
.core-margin-l {
  margin: 1.6rem;
}
.core-margin-xl {
  margin: 3.2rem;
}
.core-margin-xxl {
  margin: 6.4rem;
}
.core-margin-xxxl {
  margin: 12.8rem;
}
/* make element dimensions to box */
.core-box {
  position: relative;
}
.core-box:after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.core-box > .core-v {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
/**************************************************************************************/
/* MEDIA QUERIES */
/**************************************************************************************/
/* Mini devices */
@media (min-width: 1px) and (max-width: 749px) {
  .core-padding-xl {
    padding: 1.6rem;
  }
  .core-padding-xxl {
    padding: 3.2rem;
  }
  .core-padding-xxxl {
    padding: 6.4rem;
  }
  .core-margin-xl {
    margin: 1.6rem;
  }
  .core-margin-xxl {
    margin: 3.2rem;
  }
  .core-margin-xxxl {
    margin: 6.4rem;
  }
}
/*
@xs-break: 767px;
@sm-break: 768px;
@md-break: 992px;
@lg-break: 1200px;
*/
/* Large devices */
@media (min-width: 1201px) {
  .core-container {
    width: 1170px;
  }
  .core-col {
    /* sm to lg */
  }
  .core-col[data-flex-lg*=' 1/1'],
  .core-col[data-flex-lg^='1/1'] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-lg*=' 1/2'],
  .core-col[data-flex-lg^='1/2'] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-lg*=' 1/3'],
  .core-col[data-flex-lg^='1/3'] {
    -webkit-flex-basis: 33.3333%;
    -ms-flex-preferred-size: 33.3333%;
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-lg*=' 2/3'],
  .core-col[data-flex-lg^='2/3'] {
    -webkit-flex-basis: 66.6666%;
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-lg*=' 1/4'],
  .core-col[data-flex-lg^='1/4'] {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-lg*=' 2/4'],
  .core-col[data-flex-lg^='2/4'] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-lg*=' 3/4'],
  .core-col[data-flex-lg^='3/4'] {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-lg*=' 1/5'],
  .core-col[data-flex-lg^='1/5'] {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-lg*=' 2/5'],
  .core-col[data-flex-lg^='2/5'] {
    -webkit-flex-basis: 40%;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-lg*=' 3/5'],
  .core-col[data-flex-lg^='3/5'] {
    -webkit-flex-basis: 60%;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-lg*=' 4/5'],
  .core-col[data-flex-lg^='4/5'] {
    -webkit-flex-basis: 80%;
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-lg*=' 1/6'],
  .core-col[data-flex-lg^='1/6'] {
    -webkit-flex-basis: 16.6666%;
    -ms-flex-preferred-size: 16.6666%;
    flex-basis: 16.6666%;
    max-width: 16.6666%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-lg*=' 2/6'],
  .core-col[data-flex-lg^='2/6'] {
    -webkit-flex-basis: 33.3332%;
    -ms-flex-preferred-size: 33.3332%;
    flex-basis: 33.3332%;
    max-width: 33.3332%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-lg*=' 3/6'],
  .core-col[data-flex-lg^='3/6'] {
    -webkit-flex-basis: 49.9998%;
    -ms-flex-preferred-size: 49.9998%;
    flex-basis: 49.9998%;
    max-width: 49.9998%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-lg*=' 4/6'],
  .core-col[data-flex-lg^='4/6'] {
    -webkit-flex-basis: 66.6666%;
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-lg*=' 5/6'],
  .core-col[data-flex-lg^='5/6'] {
    -webkit-flex-basis: 83.3333%;
    -ms-flex-preferred-size: 83.3333%;
    flex-basis: 83.3333%;
    max-width: 83.3333%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-lg*=' hidden'],
  .core-col[data-flex-lg^='hidden'] {
    display: none;
  }
  .core-col[data-flex-lg*=' none'],
  .core-col[data-flex-lg^='none'] {
    flex: none;
    display: block;
  }
}
/*
@xs-break: 767px;
@sm-break: 768px;
@md-break: 992px;
@lg-break: 1200px;
*/
@media (max-width: 1200px) {
  .core-container {
    width: 970px;
  }
  .core-col {
    /* sm to lg */
  }
  .core-col[data-flex-md*=' 1/1'],
  .core-col[data-flex-md^='1/1'] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-md*=' 1/2'],
  .core-col[data-flex-md^='1/2'] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-md*=' 1/3'],
  .core-col[data-flex-md^='1/3'] {
    -webkit-flex-basis: 33.3333%;
    -ms-flex-preferred-size: 33.3333%;
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-md*=' 2/3'],
  .core-col[data-flex-md^='2/3'] {
    -webkit-flex-basis: 66.6666%;
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-md*=' 1/4'],
  .core-col[data-flex-md^='1/4'] {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-md*=' 2/4'],
  .core-col[data-flex-md^='2/4'] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-md*=' 3/4'],
  .core-col[data-flex-md^='3/4'] {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-md*=' 1/5'],
  .core-col[data-flex-md^='1/5'] {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-md*=' 2/5'],
  .core-col[data-flex-md^='2/5'] {
    -webkit-flex-basis: 40%;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-md*=' 3/5'],
  .core-col[data-flex-md^='3/5'] {
    -webkit-flex-basis: 60%;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-md*=' 4/5'],
  .core-col[data-flex-md^='4/5'] {
    -webkit-flex-basis: 80%;
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-md*=' 1/6'],
  .core-col[data-flex-md^='1/6'] {
    -webkit-flex-basis: 16.6666%;
    -ms-flex-preferred-size: 16.6666%;
    flex-basis: 16.6666%;
    max-width: 16.6666%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-md*=' 2/6'],
  .core-col[data-flex-md^='2/6'] {
    -webkit-flex-basis: 33.3332%;
    -ms-flex-preferred-size: 33.3332%;
    flex-basis: 33.3332%;
    max-width: 33.3332%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-md*=' 3/6'],
  .core-col[data-flex-md^='3/6'] {
    -webkit-flex-basis: 49.9998%;
    -ms-flex-preferred-size: 49.9998%;
    flex-basis: 49.9998%;
    max-width: 49.9998%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-md*=' 4/6'],
  .core-col[data-flex-md^='4/6'] {
    -webkit-flex-basis: 66.6666%;
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-md*=' 5/6'],
  .core-col[data-flex-md^='5/6'] {
    -webkit-flex-basis: 83.3333%;
    -ms-flex-preferred-size: 83.3333%;
    flex-basis: 83.3333%;
    max-width: 83.3333%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-md*=' hidden'],
  .core-col[data-flex-md^='hidden'] {
    display: none;
  }
  .core-col[data-flex-md*=' none'],
  .core-col[data-flex-md^='none'] {
    flex: none;
    display: block;
  }
}
/*
@xs-break: 767px;
@sm-break: 768px;
@md-break: 992px;
@lg-break: 1200px;
*/
/* Medium devices */
@media (max-width: 992px) {
  .core-container {
    width: 750px;
  }
  .core-col {
    /* sm to lg */
  }
  .core-col[data-flex-sm*=' 1/1'],
  .core-col[data-flex-sm^='1/1'] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-sm*=' 1/2'],
  .core-col[data-flex-sm^='1/2'] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-sm*=' 1/3'],
  .core-col[data-flex-sm^='1/3'] {
    -webkit-flex-basis: 33.3333%;
    -ms-flex-preferred-size: 33.3333%;
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-sm*=' 2/3'],
  .core-col[data-flex-sm^='2/3'] {
    -webkit-flex-basis: 66.6666%;
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-sm*=' 1/4'],
  .core-col[data-flex-sm^='1/4'] {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-sm*=' 2/4'],
  .core-col[data-flex-sm^='2/4'] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-sm*=' 3/4'],
  .core-col[data-flex-sm^='3/4'] {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-sm*=' 1/5'],
  .core-col[data-flex-sm^='1/5'] {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-sm*=' 2/5'],
  .core-col[data-flex-sm^='2/5'] {
    -webkit-flex-basis: 40%;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-sm*=' 3/5'],
  .core-col[data-flex-sm^='3/5'] {
    -webkit-flex-basis: 60%;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-sm*=' 4/5'],
  .core-col[data-flex-sm^='4/5'] {
    -webkit-flex-basis: 80%;
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-sm*=' 1/6'],
  .core-col[data-flex-sm^='1/6'] {
    -webkit-flex-basis: 16.6666%;
    -ms-flex-preferred-size: 16.6666%;
    flex-basis: 16.6666%;
    max-width: 16.6666%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-sm*=' 2/6'],
  .core-col[data-flex-sm^='2/6'] {
    -webkit-flex-basis: 33.3332%;
    -ms-flex-preferred-size: 33.3332%;
    flex-basis: 33.3332%;
    max-width: 33.3332%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-sm*=' 3/6'],
  .core-col[data-flex-sm^='3/6'] {
    -webkit-flex-basis: 49.9998%;
    -ms-flex-preferred-size: 49.9998%;
    flex-basis: 49.9998%;
    max-width: 49.9998%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-sm*=' 4/6'],
  .core-col[data-flex-sm^='4/6'] {
    -webkit-flex-basis: 66.6666%;
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-sm*=' 5/6'],
  .core-col[data-flex-sm^='5/6'] {
    -webkit-flex-basis: 83.3333%;
    -ms-flex-preferred-size: 83.3333%;
    flex-basis: 83.3333%;
    max-width: 83.3333%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-sm*=' hidden'],
  .core-col[data-flex-sm^='hidden'] {
    display: none;
  }
  .core-col[data-flex-sm*=' none'],
  .core-col[data-flex-sm^='none'] {
    flex: none;
    display: block;
  }
}
/*
@xs-break: 767px;
@sm-break: 768px;
@md-break: 992px;
@lg-break: 1200px;
*/
@media (max-width: 768px) {
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile]) {
    /*.core-col:not(.core-nowrap) {*/
  }
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex*=' 1/1'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex^='1/1'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex*=' 1/2'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex^='1/2'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex*=' 1/3'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex^='1/3'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex*=' 2/3'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex^='2/3'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex*=' 1/4'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex^='1/4'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex*=' 2/4'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex^='2/4'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex*=' 3/4'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex^='3/4'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex*=' 1/5'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex^='1/5'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex*=' 2/5'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex^='2/5'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex*=' 3/5'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex^='3/5'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex*=' 4/5'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex^='4/5'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex*=' 1/6'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex^='1/6'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex*=' 2/6'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex^='2/6'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex*=' 3/6'],
  .core-col:not(.core-nowrap):not([data-flex-xs]):not([data-flex-mobile])[data-flex^='3/6'] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-container {
    width: 100%;
  }
  /*.core-col:not([data-fle-sm]) {*/
  .core-col[data-flex-xs*=' 1/1'],
  .core-col[data-flex-xs^='1/1'] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-xs*=' 1/2'],
  .core-col[data-flex-xs^='1/2'] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-xs*=' 1/3'],
  .core-col[data-flex-xs^='1/3'] {
    -webkit-flex-basis: 33.3333%;
    -ms-flex-preferred-size: 33.3333%;
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-xs*=' 2/3'],
  .core-col[data-flex-xs^='2/3'] {
    -webkit-flex-basis: 66.6666%;
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-xs*=' 1/4'],
  .core-col[data-flex-xs^='1/4'] {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-xs*=' 2/4'],
  .core-col[data-flex-xs^='2/4'] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-xs*=' 3/4'],
  .core-col[data-flex-xs^='3/4'] {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-xs*=' 1/5'],
  .core-col[data-flex-xs^='1/5'] {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-xs*=' 2/5'],
  .core-col[data-flex-xs^='2/5'] {
    -webkit-flex-basis: 40%;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-xs*=' 3/5'],
  .core-col[data-flex-xs^='3/5'] {
    -webkit-flex-basis: 60%;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-xs*=' 4/5'],
  .core-col[data-flex-xs^='4/5'] {
    -webkit-flex-basis: 80%;
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-xs*=' 1/6'],
  .core-col[data-flex-xs^='1/6'] {
    -webkit-flex-basis: 16.6666%;
    -ms-flex-preferred-size: 16.6666%;
    flex-basis: 16.6666%;
    max-width: 16.6666%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-xs*=' 2/6'],
  .core-col[data-flex-xs^='2/6'] {
    -webkit-flex-basis: 33.3332%;
    -ms-flex-preferred-size: 33.3332%;
    flex-basis: 33.3332%;
    max-width: 33.3332%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-xs*=' 3/6'],
  .core-col[data-flex-xs^='3/6'] {
    -webkit-flex-basis: 49.9998%;
    -ms-flex-preferred-size: 49.9998%;
    flex-basis: 49.9998%;
    max-width: 49.9998%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-xs*=' 4/6'],
  .core-col[data-flex-xs^='4/6'] {
    -webkit-flex-basis: 66.6666%;
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-xs*=' 5/6'],
  .core-col[data-flex-xs^='5/6'] {
    -webkit-flex-basis: 83.3333%;
    -ms-flex-preferred-size: 83.3333%;
    flex-basis: 83.3333%;
    max-width: 83.3333%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-xs*=' hidden'],
  .core-col[data-flex-xs^='hidden'] {
    display: none;
  }
  .core-col[data-flex-xs*=' none'],
  .core-col[data-flex-xs^='none'] {
    flex: none;
    display: block;
  }
}
@media (max-width: 479px) {
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex*=' 1/1'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex^='1/1'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex*=' 1/2'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex^='1/2'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex*=' 1/3'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex^='1/3'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex*=' 2/3'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex^='2/3'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex*=' 1/4'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex^='1/4'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex*=' 2/4'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex^='2/4'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex*=' 3/4'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex^='3/4'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex*=' 1/5'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex^='1/5'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex*=' 2/5'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex^='2/5'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex*=' 3/5'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex^='3/5'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex*=' 4/5'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex^='4/5'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex*=' 1/6'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex^='1/6'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex*=' 2/6'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex^='2/6'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex*=' 3/6'],
  .core-col:not(.core-nowrap):not([data-flex-mobile])[data-flex^='3/6'] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-container {
    width: 100%;
  }
  .core-col[data-flex-mobile*=' 1/1'],
  .core-col[data-flex-mobile^='1/1'] {
    -webkit-flex-basis: 100%;
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-mobile*=' 1/2'],
  .core-col[data-flex-mobile^='1/2'] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-mobile*=' 1/3'],
  .core-col[data-flex-mobile^='1/3'] {
    -webkit-flex-basis: 33.3333%;
    -ms-flex-preferred-size: 33.3333%;
    flex-basis: 33.3333%;
    max-width: 33.3333%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-mobile*=' 2/3'],
  .core-col[data-flex-mobile^='2/3'] {
    -webkit-flex-basis: 66.6666%;
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-mobile*=' 1/4'],
  .core-col[data-flex-mobile^='1/4'] {
    -webkit-flex-basis: 25%;
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-mobile*=' 2/4'],
  .core-col[data-flex-mobile^='2/4'] {
    -webkit-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-mobile*=' 3/4'],
  .core-col[data-flex-mobile^='3/4'] {
    -webkit-flex-basis: 75%;
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-mobile*=' 1/5'],
  .core-col[data-flex-mobile^='1/5'] {
    -webkit-flex-basis: 20%;
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-mobile*=' 2/5'],
  .core-col[data-flex-mobile^='2/5'] {
    -webkit-flex-basis: 40%;
    -ms-flex-preferred-size: 40%;
    flex-basis: 40%;
    max-width: 40%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-mobile*=' 3/5'],
  .core-col[data-flex-mobile^='3/5'] {
    -webkit-flex-basis: 60%;
    -ms-flex-preferred-size: 60%;
    flex-basis: 60%;
    max-width: 60%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-mobile*=' 4/5'],
  .core-col[data-flex-mobile^='4/5'] {
    -webkit-flex-basis: 80%;
    -ms-flex-preferred-size: 80%;
    flex-basis: 80%;
    max-width: 80%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-mobile*=' 1/6'],
  .core-col[data-flex-mobile^='1/6'] {
    -webkit-flex-basis: 16.6666%;
    -ms-flex-preferred-size: 16.6666%;
    flex-basis: 16.6666%;
    max-width: 16.6666%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-mobile*=' 2/6'],
  .core-col[data-flex-mobile^='2/6'] {
    -webkit-flex-basis: 33.3332%;
    -ms-flex-preferred-size: 33.3332%;
    flex-basis: 33.3332%;
    max-width: 33.3332%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-mobile*=' 3/6'],
  .core-col[data-flex-mobile^='3/6'] {
    -webkit-flex-basis: 49.9998%;
    -ms-flex-preferred-size: 49.9998%;
    flex-basis: 49.9998%;
    max-width: 49.9998%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-mobile*=' 4/6'],
  .core-col[data-flex-mobile^='4/6'] {
    -webkit-flex-basis: 66.6666%;
    -ms-flex-preferred-size: 66.6666%;
    flex-basis: 66.6666%;
    max-width: 66.6666%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-mobile*=' 5/6'],
  .core-col[data-flex-mobile^='5/6'] {
    -webkit-flex-basis: 83.3333%;
    -ms-flex-preferred-size: 83.3333%;
    flex-basis: 83.3333%;
    max-width: 83.3333%;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
  }
  .core-col[data-flex-mobile*=' hidden'],
  .core-col[data-flex-mobile^='hidden'] {
    display: none;
  }
  .core-col[data-flex-mobile*=' auto'],
  .core-col[data-flex-mobile^='auto'] {
    -webkit-flex-basis: auto;
    -ms-flex-preferred-size: auto;
    flex-basis: auto;
    max-width: auto;
    -webkit-flex-grow: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: unset;
  }
  .core-col[data-flex-mobile*=' none'],
  .core-col[data-flex-mobile^='none'] {
    flex: none;
    display: block;
  }
}
/** ASCPECT RATIO **/
*[data-ratio] {
  /* aspect ratio to work with pictureWrapper */
}
*[data-ratio]::before {
  content: "";
  width: 1px;
  margin-left: -1px;
  float: left;
  height: 0;
}
*[data-ratio]::after {
  /* to clear float */
  content: "";
  display: table;
  clear: both;
}
*[data-ratio] .pictureWrapper::before {
  content: "";
  width: 1px;
  margin-left: -1px;
  float: left;
  height: 0;
}
*[data-ratio] .pictureWrapper::after {
  /* to clear float */
  content: "";
  display: table;
  clear: both;
}
*[data-ratio^='1:1']::before {
  padding-top: 100%;
}
*[data-ratio^='1:1'] .pictureWrapper::before {
  padding-top: 100%;
}
*[data-ratio^='2:1']::before {
  padding-top: 50%;
}
*[data-ratio^='2:1'] .pictureWrapper::before {
  padding-top: 50%;
}
*[data-ratio^='1:2']::before {
  padding-top: 200%;
}
*[data-ratio^='1:2'] .pictureWrapper::before {
  padding-top: 200%;
}
*[data-ratio^='4:3']::before {
  padding-top: 75%;
}
*[data-ratio^='4:3'] .pictureWrapper::before {
  padding-top: 75%;
}
*[data-ratio^='3:4']::before {
  padding-top: 133.33333333%;
}
*[data-ratio^='3:4'] .pictureWrapper::before {
  padding-top: 133.33333333%;
}
*[data-ratio^='8:5']::before {
  padding-top: 62.5%;
}
*[data-ratio^='8:5'] .pictureWrapper::before {
  padding-top: 62.5%;
}
*[data-ratio^='5:8']::before {
  padding-top: 160%;
}
*[data-ratio^='5:8'] .pictureWrapper::before {
  padding-top: 160%;
}
*[data-ratio^='16:9']::before {
  padding-top: 56.25%;
}
*[data-ratio^='16:9'] .pictureWrapper::before {
  padding-top: 56.25%;
}
*[data-ratio^='9:16']::before {
  padding-top: 177.77777778%;
}
*[data-ratio^='9:16'] .pictureWrapper::before {
  padding-top: 177.77777778%;
}
*[data-ratio^='4:3']::before {
  padding-top: 75%;
}
*[data-ratio^='4:3'] .pictureWrapper::before {
  padding-top: 75%;
}
*[data-ratio^='3:4']::before {
  padding-top: 133.33333333%;
}
*[data-ratio^='3:4'] .pictureWrapper::before {
  padding-top: 133.33333333%;
}
@media (min-width: 1201px) {
  *[data-ratio-lg^='1:1']::before {
    padding-top: 100%;
  }
  *[data-ratio-lg^='1:1'] .pictureWrapper::before {
    padding-top: 100%;
  }
  *[data-ratio-lg^='2:1']::before {
    padding-top: 50%;
  }
  *[data-ratio-lg^='2:1'] .pictureWrapper::before {
    padding-top: 50%;
  }
  *[data-ratio-lg^='1:2']::before {
    padding-top: 200%;
  }
  *[data-ratio-lg^='1:2'] .pictureWrapper::before {
    padding-top: 200%;
  }
  *[data-ratio-lg^='4:3']::before {
    padding-top: 75%;
  }
  *[data-ratio-lg^='4:3'] .pictureWrapper::before {
    padding-top: 75%;
  }
  *[data-ratio-lg^='3:4']::before {
    padding-top: 133.33333333%;
  }
  *[data-ratio-lg^='3:4'] .pictureWrapper::before {
    padding-top: 133.33333333%;
  }
  *[data-ratio-lg^='8:5']::before {
    padding-top: 62.5%;
  }
  *[data-ratio-lg^='8:5'] .pictureWrapper::before {
    padding-top: 62.5%;
  }
  *[data-ratio-lg^='5:8']::before {
    padding-top: 160%;
  }
  *[data-ratio-lg^='5:8'] .pictureWrapper::before {
    padding-top: 160%;
  }
  *[data-ratio-lg^='16:9']::before {
    padding-top: 56.25%;
  }
  *[data-ratio-lg^='16:9'] .pictureWrapper::before {
    padding-top: 56.25%;
  }
  *[data-ratio-lg^='9:16']::before {
    padding-top: 177.77777778%;
  }
  *[data-ratio-lg^='9:16'] .pictureWrapper::before {
    padding-top: 177.77777778%;
  }
  *[data-ratio-lg^='4:3']::before {
    padding-top: 75%;
  }
  *[data-ratio-lg^='4:3'] .pictureWrapper::before {
    padding-top: 75%;
  }
  *[data-ratio-lg^='3:4']::before {
    padding-top: 133.33333333%;
  }
  *[data-ratio-lg^='3:4'] .pictureWrapper::before {
    padding-top: 133.33333333%;
  }
}
@media (max-width: 1200px) {
  *[data-ratio-md^='1:1']::before {
    padding-top: 100%;
  }
  *[data-ratio-md^='1:1'] .pictureWrapper::before {
    padding-top: 100%;
  }
  *[data-ratio-md^='2:1']::before {
    padding-top: 50%;
  }
  *[data-ratio-md^='2:1'] .pictureWrapper::before {
    padding-top: 50%;
  }
  *[data-ratio-md^='1:2']::before {
    padding-top: 200%;
  }
  *[data-ratio-md^='1:2'] .pictureWrapper::before {
    padding-top: 200%;
  }
  *[data-ratio-md^='4:3']::before {
    padding-top: 75%;
  }
  *[data-ratio-md^='4:3'] .pictureWrapper::before {
    padding-top: 75%;
  }
  *[data-ratio-md^='3:4']::before {
    padding-top: 133.33333333%;
  }
  *[data-ratio-md^='3:4'] .pictureWrapper::before {
    padding-top: 133.33333333%;
  }
  *[data-ratio-md^='8:5']::before {
    padding-top: 62.5%;
  }
  *[data-ratio-md^='8:5'] .pictureWrapper::before {
    padding-top: 62.5%;
  }
  *[data-ratio-md^='5:8']::before {
    padding-top: 160%;
  }
  *[data-ratio-md^='5:8'] .pictureWrapper::before {
    padding-top: 160%;
  }
  *[data-ratio-md^='16:9']::before {
    padding-top: 56.25%;
  }
  *[data-ratio-md^='16:9'] .pictureWrapper::before {
    padding-top: 56.25%;
  }
  *[data-ratio-md^='9:16']::before {
    padding-top: 177.77777778%;
  }
  *[data-ratio-md^='9:16'] .pictureWrapper::before {
    padding-top: 177.77777778%;
  }
  *[data-ratio-md^='4:3']::before {
    padding-top: 75%;
  }
  *[data-ratio-md^='4:3'] .pictureWrapper::before {
    padding-top: 75%;
  }
  *[data-ratio-md^='3:4']::before {
    padding-top: 133.33333333%;
  }
  *[data-ratio-md^='3:4'] .pictureWrapper::before {
    padding-top: 133.33333333%;
  }
}
@media (max-width: 992px) {
  *[data-ratio-sm^='1:1']::before {
    padding-top: 100%;
  }
  *[data-ratio-sm^='1:1'] .pictureWrapper::before {
    padding-top: 100%;
  }
  *[data-ratio-sm^='2:1']::before {
    padding-top: 50%;
  }
  *[data-ratio-sm^='2:1'] .pictureWrapper::before {
    padding-top: 50%;
  }
  *[data-ratio-sm^='1:2']::before {
    padding-top: 200%;
  }
  *[data-ratio-sm^='1:2'] .pictureWrapper::before {
    padding-top: 200%;
  }
  *[data-ratio-sm^='4:3']::before {
    padding-top: 75%;
  }
  *[data-ratio-sm^='4:3'] .pictureWrapper::before {
    padding-top: 75%;
  }
  *[data-ratio-sm^='3:4']::before {
    padding-top: 133.33333333%;
  }
  *[data-ratio-sm^='3:4'] .pictureWrapper::before {
    padding-top: 133.33333333%;
  }
  *[data-ratio-sm^='8:5']::before {
    padding-top: 62.5%;
  }
  *[data-ratio-sm^='8:5'] .pictureWrapper::before {
    padding-top: 62.5%;
  }
  *[data-ratio-sm^='5:8']::before {
    padding-top: 160%;
  }
  *[data-ratio-sm^='5:8'] .pictureWrapper::before {
    padding-top: 160%;
  }
  *[data-ratio-sm^='16:9']::before {
    padding-top: 56.25%;
  }
  *[data-ratio-sm^='16:9'] .pictureWrapper::before {
    padding-top: 56.25%;
  }
  *[data-ratio-sm^='9:16']::before {
    padding-top: 177.77777778%;
  }
  *[data-ratio-sm^='9:16'] .pictureWrapper::before {
    padding-top: 177.77777778%;
  }
  *[data-ratio-sm^='4:3']::before {
    padding-top: 75%;
  }
  *[data-ratio-sm^='4:3'] .pictureWrapper::before {
    padding-top: 75%;
  }
  *[data-ratio-sm^='3:4']::before {
    padding-top: 133.33333333%;
  }
  *[data-ratio-sm^='3:4'] .pictureWrapper::before {
    padding-top: 133.33333333%;
  }
}
@media (max-width: 768px) {
  *[data-ratio-xs^='1:1']::before {
    padding-top: 100%;
  }
  *[data-ratio-xs^='1:1'] .pictureWrapper::before {
    padding-top: 100%;
  }
  *[data-ratio-xs^='2:1']::before {
    padding-top: 50%;
  }
  *[data-ratio-xs^='2:1'] .pictureWrapper::before {
    padding-top: 50%;
  }
  *[data-ratio-xs^='1:2']::before {
    padding-top: 200%;
  }
  *[data-ratio-xs^='1:2'] .pictureWrapper::before {
    padding-top: 200%;
  }
  *[data-ratio-xs^='4:3']::before {
    padding-top: 75%;
  }
  *[data-ratio-xs^='4:3'] .pictureWrapper::before {
    padding-top: 75%;
  }
  *[data-ratio-xs^='3:4']::before {
    padding-top: 133.33333333%;
  }
  *[data-ratio-xs^='3:4'] .pictureWrapper::before {
    padding-top: 133.33333333%;
  }
  *[data-ratio-xs^='8:5']::before {
    padding-top: 62.5%;
  }
  *[data-ratio-xs^='8:5'] .pictureWrapper::before {
    padding-top: 62.5%;
  }
  *[data-ratio-xs^='5:8']::before {
    padding-top: 160%;
  }
  *[data-ratio-xs^='5:8'] .pictureWrapper::before {
    padding-top: 160%;
  }
  *[data-ratio-xs^='16:9']::before {
    padding-top: 56.25%;
  }
  *[data-ratio-xs^='16:9'] .pictureWrapper::before {
    padding-top: 56.25%;
  }
  *[data-ratio-xs^='9:16']::before {
    padding-top: 177.77777778%;
  }
  *[data-ratio-xs^='9:16'] .pictureWrapper::before {
    padding-top: 177.77777778%;
  }
  *[data-ratio-xs^='4:3']::before {
    padding-top: 75%;
  }
  *[data-ratio-xs^='4:3'] .pictureWrapper::before {
    padding-top: 75%;
  }
  *[data-ratio-xs^='3:4']::before {
    padding-top: 133.33333333%;
  }
  *[data-ratio-xs^='3:4'] .pictureWrapper::before {
    padding-top: 133.33333333%;
  }
}
/** OBJECT FIT **/
/* polyfill - https://raw.githubusercontent.com/jonathantneal/fitie/master/dist/fitie.js */
/* fix objectfit image and imageThumb components to work ok */
*[data-objectfit] .componentImageWrapper,
*[data-objectfit] a.componentImageThumb {
  position: initial;
}
*[data-objectfit] {
  position: relative;
}
.no-ie *[data-objectfit] img {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.ie *[data-objectfit] img {
  opacity: 0;
}
*[data-objectfit] .pictureWrapper {
  min-height: 100%;
}
*[data-objectfit^='cover'] .pictureWrapper,
*[data-objectfit^=' cover'] .pictureWrapper {
  background-size: cover;
}
*[data-objectfit^='contain'] .pictureWrapper,
*[data-objectfit^=' contain'] .pictureWrapper {
  background-size: contain;
}
*[data-objectfit^='scale-down'] .pictureWrapper,
*[data-objectfit^=' scale-down'] .pictureWrapper {
  background-size: auto;
}
/* fit type */
*[data-objectfit^='cover'] img,
*[data-objectfit*=' cover'] img {
  object-fit: cover;
}
*[data-objectfit^='contain'] img,
*[data-objectfit*=' contain'] img {
  object-fit: contain;
}
*[data-objectfit^='scale-down'] img,
*[data-objectfit*=' scale-down'] img {
  object-fit: scale-down;
}
/* position */
*[data-objectfit^='lefttop'] img,
*[data-objectfit*=' lefttop'] img {
  object-position: 0% 0%;
}
*[data-objectfit^='centertop'] img,
*[data-objectfit*=' centertop'] img {
  object-position: 50% 0%;
}
*[data-objectfit^='righttop'] img,
*[data-objectfit*=' righttop'] img {
  object-position: 100% 0%;
}
*[data-objectfit^='leftcenter'] img,
*[data-objectfit*=' leftcenter'] img {
  object-position: 0% 50%;
}
*[data-objectfit^='centercenter'] img,
*[data-objectfit*=' centercenter'] img {
  object-position: 50% 50%;
}
*[data-objectfit^='rightcenter'] img,
*[data-objectfit*=' rightcenter'] img {
  object-position: 100% 50%;
}
*[data-objectfit^='leftbottom'] img,
*[data-objectfit*=' leftbottom'] img {
  object-position: 0% 100%;
}
*[data-objectfit^='centerbottom'] img,
*[data-objectfit*=' centerbottom'] img {
  object-position: 50% 100%;
}
*[data-objectfit^='rightbottom'] img,
*[data-objectfit*=' rightbottom'] img {
  object-position: 100% 100%;
}
*[data-objectfit] {
  position: relative;
}
.no-ie *[data-objectfit] iframe {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
}
.ie *[data-objectfit] iframe {
  opacity: 0;
}
*[data-objectfit] .pictureWrapper {
  min-height: 100%;
}
*[data-objectfit^='cover'] .pictureWrapper,
*[data-objectfit^=' cover'] .pictureWrapper {
  background-size: cover;
}
*[data-objectfit^='contain'] .pictureWrapper,
*[data-objectfit^=' contain'] .pictureWrapper {
  background-size: contain;
}
*[data-objectfit^='scale-down'] .pictureWrapper,
*[data-objectfit^=' scale-down'] .pictureWrapper {
  background-size: auto;
}
/* fit type */
*[data-objectfit^='cover'] iframe,
*[data-objectfit*=' cover'] iframe {
  object-fit: cover;
}
*[data-objectfit^='contain'] iframe,
*[data-objectfit*=' contain'] iframe {
  object-fit: contain;
}
*[data-objectfit^='scale-down'] iframe,
*[data-objectfit*=' scale-down'] iframe {
  object-fit: scale-down;
}
/* position */
*[data-objectfit^='lefttop'] iframe,
*[data-objectfit*=' lefttop'] iframe {
  object-position: 0% 0%;
}
*[data-objectfit^='centertop'] iframe,
*[data-objectfit*=' centertop'] iframe {
  object-position: 50% 0%;
}
*[data-objectfit^='righttop'] iframe,
*[data-objectfit*=' righttop'] iframe {
  object-position: 100% 0%;
}
*[data-objectfit^='leftcenter'] iframe,
*[data-objectfit*=' leftcenter'] iframe {
  object-position: 0% 50%;
}
*[data-objectfit^='centercenter'] iframe,
*[data-objectfit*=' centercenter'] iframe {
  object-position: 50% 50%;
}
*[data-objectfit^='rightcenter'] iframe,
*[data-objectfit*=' rightcenter'] iframe {
  object-position: 100% 50%;
}
*[data-objectfit^='leftbottom'] iframe,
*[data-objectfit*=' leftbottom'] iframe {
  object-position: 0% 100%;
}
*[data-objectfit^='centerbottom'] iframe,
*[data-objectfit*=' centerbottom'] iframe {
  object-position: 50% 100%;
}
*[data-objectfit^='rightbottom'] iframe,
*[data-objectfit*=' rightbottom'] iframe {
  object-position: 100% 100%;
}
/*<div data-hide="xs sm" data-show="lg md" data-display-lg="0">*/
*[data-show] {
  display: none;
}
@media (min-width: 1201px) {
  *[data-hide^='lg'],
  *[data-hide*=' lg'] {
    display: none;
  }
  *[data-show^='lg'],
  *[data-show*=' lg'] {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  *[data-hide^='lg'],
  *[data-hide*=' lg'] {
    display: none;
  }
  *[data-show^='lg'],
  *[data-show*=' lg'] {
    display: block;
  }
}
@media (max-width: 1200px) {
  *[data-hide^='md'],
  *[data-hide*=' md'] {
    display: none;
  }
  *[data-show^='md'],
  *[data-show*=' md'] {
    display: block;
  }
}
@media (max-width: 992px) {
  *[data-hide^='sm'],
  *[data-hide*=' sm'] {
    display: none;
  }
  *[data-show^='sm'],
  *[data-show*=' sm'] {
    display: block;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  *[data-hide^='sm'],
  *[data-hide*=' sm'] {
    display: none;
  }
  *[data-show^='sm'],
  *[data-show*=' sm'] {
    display: block;
  }
}
@media (max-width: 767px) {
  *[data-hide^='xs'],
  *[data-hide*=' xs'] {
    display: none;
  }
  *[data-show^='xs'],
  *[data-show*=' xs'] {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  *[data-hide^='xs'],
  *[data-hide*=' xs'] {
    display: none;
  }
  *[data-show^='xs'],
  *[data-show*=' xs'] {
    display: block;
  }
}
@media (max-width: 479px) {
  *[data-hide^='mobile'],
  *[data-hide*=' mobile'] {
    display: none;
  }
  *[data-show^='mobile'],
  *[data-show*=' mobile'] {
    display: block;
  }
}
@font-face {
  font-family: 'Dahlia';
  src: url('fonts/Dahlia-Regular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/SpaceGrotesk-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  font-feature-settings: "ss04" 1;
}
@font-face {
  font-family: 'Space Grotesk';
  src: url('fonts/SpaceGrotesk-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  font-feature-settings: "ss04" 1;
}
/* BORDER VARIABLES */
/* TABLE VARIABLES */
/* NAV-TABS VARIABLES */
/* CORE SETTINGS & DEFAULT CSS VARIABLES */
:root {
  --fontDefault: 'Space Grotesk', sans-serif;
  --fontHeading: 'Space Grotesk', sans-serif;
  --fontDecoration: 'Dahlia', sans-serif;
  --remSize: 15px;
  --h1Size: 7rem;
  --h2Size: 3.6667rem;
  --h3Size: 1.9333rem;
  --borderRadiusDefault: 6px;
  --borderRadiusLarge: 20px;
  --primary: #FECA00;
  --secondary: #000000;
  --light: #ffffff;
  --greyWarm: #969779;
  --grey: #76766E;
  --greyDark: #222219;
  --dark: #000000;
  --white: #ffffff;
  --black: #000000;
  --blue-700: #1A2A6C;
  --blue-500: #2E4891;
  --grey-900: #323232;
  --grey-700: #76766E;
  --grey-500: #B2B2A8;
  --grey-300: #E3E4DF;
  --grey-100: #F4F4F1;
  --border: #000000;
  --navbarHeight: 80px;
  --swiper-theme-color: var(--grey-700);
  --swiper-pagination-bullet-inactive-color: var(--grey-700);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-width: 46px;
  --swiper-pagination-bullet-height: 4px;
  --swiper-pagination-bullet-border-radius: 10px;
  --swiper-pagination-bullet-horizontal-gap: 10px;
}
@media screen and (max-width: 1460px) {
  :root {
    --h1Size: 7rem;
  }
}
@media (max-width: 767px) {
  :root {
    --h1Size: 4.6rem;
    --h2Size: 2.15rem;
    --h3Size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  :root {
    --h1Size: 4.6rem;
    --h2Size: 2.15rem;
    --h3Size: 1.4rem;
  }
}
@media (max-width: 992px) {
  :root {
    --swiper-pagination-bullet-width: 30px;
    --swiper-pagination-bullet-horizontal-gap: 4px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  :root {
    --swiper-pagination-bullet-width: 30px;
    --swiper-pagination-bullet-horizontal-gap: 4px;
  }
}
html {
  font-size: var(--remSize);
  scroll-behavior: smooth;
}
body {
  font-family: var(--fontDefault);
  font-feature-settings: "ss04" 1;
  background-color: var(--primary);
  color: var(--black);
  line-height: 1.3;
}
body a {
  color: var(--black);
  text-decoration: none;
}
body a:hover {
  color: var(--black);
  text-decoration: underline;
}
body p {
  margin: 0 0 1.5rem 0;
}
body .large {
  font-size: 1.4375rem;
}
body .small {
  font-size: 90%;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--fontHeading);
  font-feature-settings: "ss04" 1;
  font-weight: 400;
  color: var(--black);
  margin: 0 0 1.5rem;
}
h1,
.h1 {
  font-family: var(--fontDecoration);
  font-size: var(--h1Size);
  line-height: 0.9;
}
h2,
.h2 {
  font-size: var(--h2Size);
  letter-spacing: -1.65px;
  line-height: 1.1;
  margin-top: 3rem;
}
h3,
.h3 {
  font-size: var(--h3Size);
}
h4,
.h4 {
  font-size: 1.5333rem;
  line-height: 1.3;
}
h5,
.h5 {
  font-size: 1.0667rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 2.3px;
}
@media (max-width: 767px) {
  h5,
  .h5 {
    font-size: 0.8rem;
    letter-spacing: 1.7px;
  }
}
@media screen and (max-width: 767px) {
  h5,
  .h5 {
    font-size: 0.8rem;
    letter-spacing: 1.7px;
  }
}
h6,
.h6 {
  font-size: 0.9rem;
}
dl,
ol,
ul {
  margin-bottom: 1.5rem;
}
img {
  max-width: 100%;
  height: auto;
}
.img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 100%;
}
.img-wrapper img {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
[data-anchor] {
  scroll-margin-top: 90px;
}
[id] {
  scroll-margin-top: 60px;
}
/* SECTIONS */
.section-wide {
  max-width: 1550px;
  margin: 5rem auto;
  padding: 4.4rem 0;
}
.section-wide-inside {
  max-width: 1550px;
  margin: 0 auto;
  padding: 4.4rem 0;
}
.section-dark {
  max-width: 1550px;
  margin: 0 auto;
  padding: 4.4rem;
  color: var(--white);
  background-color: var(--black);
  border-radius: var(--borderRadiusLarge);
}
@media (max-width: 767px) {
  .section-dark {
    padding: 1rem 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section-dark {
    padding: 1rem 0.5rem;
  }
}
.section-dark .section-title {
  color: var(--primary);
}
.section-dark a {
  color: var(--primary);
}
.section-dark a:hover {
  color: var(--primary);
}
.section-dark h1,
.section-dark .h1 {
  color: var(--white);
}
.section-dark h2,
.section-dark .h2 {
  color: var(--white);
}
.section-dark h3,
.section-dark .h3 {
  color: var(--primary);
}
.section-dark h4,
.section-dark .h4 {
  color: var(--white);
}
.section-dark h5,
.section-dark .h5 {
  color: var(--primary);
  text-transform: uppercase;
}
.section-title {
  margin-top: 0;
  margin-bottom: 4rem;
  font-size: 4.3333rem;
  letter-spacing: -1.95px;
  line-height: 1;
}
@media (max-width: 767px) {
  .section-title {
    font-size: 2.15rem;
  }
}
@media screen and (max-width: 767px) {
  .section-title {
    font-size: 2.15rem;
  }
}
.section-title-light {
  margin-bottom: 1.5rem;
  font-size: 3.6667rem;
  letter-spacing: -1.65px;
  line-height: 1;
}
/* BUTTONS */
.btn,
a.btn {
  color: var(--primary);
  background-color: var(--black);
  border-color: var(--border);
  border-width: 0px;
  border-style: solid;
  border-radius: var(--borderRadiusDefault);
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2.3px;
  text-transform: uppercase;
  padding: 0.8667rem 1rem;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
@media (max-width: 767px) {
  .btn,
  a.btn {
    font-size: 0.8rem;
    letter-spacing: 1.7px;
    padding: 0.7rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .btn,
  a.btn {
    font-size: 0.8rem;
    letter-spacing: 1.7px;
    padding: 0.7rem 1rem;
  }
}
.btn:hover,
a.btn:hover,
.btn:focus,
a.btn:focus,
.btn:active,
a.btn:active {
  color: var(--primary);
  background-color: var(--black);
  text-decoration: underline;
  box-shadow: none;
}
.btn::after,
a.btn::after {
  content: '';
  /* Nutné pro zobrazení pseudo-elementu */
  position: absolute;
  /* Absolutní pozicování vzhledem k tlačítku */
  top: 0;
  left: 0;
  width: 100%;
  /* Plná šířka tlačítka */
  height: 100%;
  /* Plná výška tlačítka */
  border-radius: var(--borderRadiusDefault);
  transition: transform 0.3s ease;
  /* Animace efektu */
  transform: scaleX(1);
  /* Počáteční škálování */
  transform-origin: center;
  /* Střed transformace */
  z-index: -1;
  /* Ujistěte se, že pseudo-element je pod textem */
}
.btn:hover::after,
a.btn:hover::after {
  transform: scaleX(1.05);
  /* Zvětší šířku pseudo-elementu o 5% */
}
.btn-default,
a.btn-primary,
.btn-default,
a.btn-primary {
  color: var(--primary);
  background-color: var(--black);
}
.btn-default::after,
a.btn-primary::after,
.btn-default::after,
a.btn-primary::after {
  background-color: var(--black);
}
.btn-primary:not(:disabled):not(.disabled):active,
a.btn-primary:not(:disabled):not(.disabled):active {
  color: var(--primary);
  background-color: var(--black);
}
.btn-arrow {
  font-weight: 600;
}
.btn-lg {
  padding: 1rem 1.55rem;
  font-size: 1.25rem;
}
.btn-light,
a.btn-light {
  color: var(--black);
  background-color: var(--primary);
}
.btn-light:not(:disabled):not(.disabled):active,
a.btn-light:not(:disabled):not(.disabled):active,
.btn-light:hover,
a.btn-light:hover,
.btn-light:focus,
a.btn-light:focus,
.btn-light:active,
a.btn-light:active {
  color: var(--black);
  background-color: var(--primary);
}
.btn-light::after,
a.btn-light::after {
  background-color: var(--primary);
}
.btn-text,
a.btn-text {
  padding: 0;
  line-height: 1.3;
  vertical-align: bottom;
  background-color: transparent;
}
.btn-select {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 18rem;
  padding: 0.15rem 1.5rem;
  font-size: 29px;
  font-weight: 400;
  text-align: left;
  text-transform: none;
  letter-spacing: -0.32px;
  border: 1px solid var(--black);
  border-radius: 54px;
  color: var(--black);
  background-color: var(--primary);
}
.btn-select:hover,
.btn-select:focus,
.btn-select:active {
  color: var(--black);
  background-color: var(--primary);
}
.btn-select::after {
  border: 0;
  background-color: transparent;
}
.btn-select svg {
  margin: 4px 0 0 0.8rem;
}
.btn-buy {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-left: 30px !important;
}
.btn-buy:hover::before {
  width: 21.731px;
  left: 0;
  background-size: 21.731px 2px, 8.278px 14.555px;
}
.btn-buy::before {
  position: absolute;
  left: 3px;
  transition: all 0.2s;
  content: "";
  width: 18.245px;
  height: 14.555px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.245' height='2' viewBox='0 0 16.245 2'%3E%3Cline id='Line_57' data-name='Line 57' x2='14.245' transform='translate(1 1)' fill='none' stroke='%23feca00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2'/%3E%3C/svg%3E%0A"), url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8.278' height='14.555' viewBox='0 0 8.278 14.555'%3E%3Cpath id='Path_120' data-name='Path 120' d='M1292.393,1195.4l5.863-5.863-5.863-5.863' transform='translate(-1290.978 -1182.26)' fill='none' stroke='%23feca00' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='2'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat, no-repeat;
  background-position: center center, center right;
  background-size: 16.245px 2px, 8.278px 14.555px;
}
/* WRAPPER */
#wrapper {
  margin-top: var(--navbarHeight);
  padding: 0 25px;
  overflow-x: hidden;
}
@media (max-width: 767px) {
  #wrapper {
    margin-top: calc(var(--navbarHeight) - 14px);
    padding: 0 15px;
  }
}
@media screen and (max-width: 767px) {
  #wrapper {
    margin-top: calc(var(--navbarHeight) - 14px);
    padding: 0 15px;
  }
}
/* CONTAINER */
.container-fluid {
  max-width: 1550px;
  padding-right: 0px;
  padding-left: 0px;
}
.container {
  margin: 0 auto;
  max-width: 1100px;
}
.container.container-small {
  max-width: 850px;
}
.container.container-large {
  max-width: 1550px;
}
/* Extra, extra large devices */
@media (min-width: 1460px) {
  .container {
    max-width: 1100px;
  }
}
/* grid padding, margin  */
.col-lg-1,
.col-lg-10,
.col-lg-11,
.col-lg-12,
.col-lg-2,
.col-lg-3,
.col-lg-4,
.col-lg-5,
.col-lg-6,
.col-lg-7,
.col-lg-8,
.col-lg-9,
.col-md-1,
.col-md-10,
.col-md-11,
.col-md-12,
.col-md-2,
.col-md-3,
.col-md-4,
.col-md-5,
.col-md-6,
.col-md-7,
.col-md-8,
.col-md-9,
.col-sm-1,
.col-sm-10,
.col-sm-11,
.col-sm-12,
.col-sm-2,
.col-sm-3,
.col-sm-4,
.col-sm-5,
.col-sm-6,
.col-sm-7,
.col-sm-8,
.col-sm-9,
.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
  padding-right: 10px;
  padding-left: 10px;
}
.row {
  margin-right: -10px;
  margin-left: -10px;
}
/* Bootstrap style grid support */
.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-right: -10px;
  margin-left: -10px;
}
.span6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 10px;
  padding-left: 10px;
  box-sizing: border-box;
}
/* Responsive behavior for span6 */
@media (max-width: 1200px) {
  .span6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }
}
@media (max-width: 992px) {
  .span6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .span6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 15px;
  }
}
@media (max-width: 767px) {
  .span6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 767px) {
  .span6 {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 10px;
  }
}
/* BREADCRUMB */
.breadcrumb {
  background: none;
  border: none;
  padding: 0;
  margin-bottom: 10px;
  font-size: 90%;
}
.breadcrumb .divider {
  padding: 0 4px;
}
/* TABS */
.tabs .nav-link {
  font-size: 1.8125rem;
  font-weight: bold;
  color: var(--black);
  text-decoration: underline;
}
.tabs .nav-link:first-child {
  padding-left: 0;
  padding-right: 2rem;
}
.tabs .nav-link.active,
.tabs .nav-link:active {
  color: var(--primary);
  background-color: transparent;
  text-decoration: none;
}
.tabs .nav-link.active span,
.tabs .nav-link:active span {
  background-color: var(--black);
}
.section-dark .tabs .nav-link {
  color: var(--primary);
}
.section-dark .tabs .nav-link.active,
.section-dark .tabs .nav-link:active {
  color: var(--black);
  background-color: transparent;
}
.section-dark .tabs .nav-link.active span,
.section-dark .tabs .nav-link:active span {
  background-color: var(--primary);
}
/* LISTS */
.componentHtmlInlineBlock ul,
.tab-content .tab-pane ul,
.componentHtmlInlineBlock .list-default,
.tab-content .tab-pane .list-default {
  list-style-type: none;
  padding-left: 0;
  line-height: 1.13;
}
.componentHtmlInlineBlock ul li,
.tab-content .tab-pane ul li,
.componentHtmlInlineBlock .list-default li,
.tab-content .tab-pane .list-default li {
  position: relative;
  margin-bottom: 1.25rem;
  padding-left: 1.8rem;
}
.componentHtmlInlineBlock ul li::before,
.tab-content .tab-pane ul li::before,
.componentHtmlInlineBlock .list-default li::before,
.tab-content .tab-pane .list-default li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 16px;
  height: 15px;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.245' height='14.555' viewBox='0 0 16.245 14.555'%3E%3Cg id='Group_132' data-name='Group 132' transform='translate(-164.377 -1543.222)'%3E%3Cline id='Line_57' data-name='Line 57' x2='14.245' transform='translate(165.377 1550.5)' fill='none' stroke='%23000' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath id='Path_120' data-name='Path 120' d='M1292.393,1195.4l5.863-5.863-5.863-5.863' transform='translate(-1118.634 360.963)' fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A") no-repeat center / contain;
  background-color: currentColor;
}
.componentHtmlInlineBlock .list-large,
.tab-content .tab-pane .list-large {
  font-size: 1.4375rem;
  line-height: 1;
}
.componentHtmlInlineBlock .list-large li,
.tab-content .tab-pane .list-large li {
  margin-bottom: 1.875rem;
  padding-left: 2.6667rem;
}
.componentHtmlInlineBlock .list-large li::before,
.tab-content .tab-pane .list-large li::before {
  top: 3px;
}
.social-list {
  font-weight: 700;
}
.list-people {
  font-size: 29px;
  letter-spacing: -0.32px;
}
@media (max-width: 767px) {
  .list-people {
    font-size: 25px;
  }
}
@media screen and (max-width: 767px) {
  .list-people {
    font-size: 25px;
  }
}
.list-people .list-group-item {
  position: relative;
  background-color: transparent;
  border: 0;
}
.list-people .list-group-item .list-group-link {
  position: relative;
  display: block;
  left: 0;
  padding-right: 2rem;
  color: var(--white);
  -webkit-transition:  all 300ms 0s ease;
  -moz-transition:  all 300ms 0s ease;
  -ms-transition:  all 300ms 0s ease;
  -o-transition:  all 300ms 0s ease;
  transition:  all 300ms 0s ease;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}
@media (max-width: 767px) {
  .list-people .list-group-item .list-group-link {
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .list-people .list-group-item .list-group-link {
    left: 0;
  }
}
.list-people .list-group-item .i-fa6-solid {
  position: absolute;
  left: -28px;
  top: 9px;
  opacity: 0;
  -webkit-transition:  all 300ms 0s ease;
  -moz-transition:  all 300ms 0s ease;
  -ms-transition:  all 300ms 0s ease;
  -o-transition:  all 300ms 0s ease;
  transition:  all 300ms 0s ease;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}
@media (max-width: 767px) {
  .list-people .list-group-item .i-fa6-solid {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .list-people .list-group-item .i-fa6-solid {
    opacity: 0;
  }
}
.list-people .list-group-item .list-group-role {
  margin-left: 2rem;
  margin-bottom: 0;
  padding-right: 8rem;
  opacity: 0;
  font-size: 1.0667rem;
  text-transform: none;
  -webkit-transition:  all 300ms 0s ease;
  -moz-transition:  all 300ms 0s ease;
  -ms-transition:  all 300ms 0s ease;
  -o-transition:  all 300ms 0s ease;
  transition:  all 300ms 0s ease;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}
@media (max-width: 767px) {
  .list-people .list-group-item .list-group-role {
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .list-people .list-group-item .list-group-role {
    opacity: 1;
  }
}
.list-people .list-group-item:hover .list-group-link {
  left: 2rem;
}
.list-people .list-group-item:hover .list-group-link .i-fa6-solid {
  -webkit-transition:  all 300ms 0s ease;
  -moz-transition:  all 300ms 0s ease;
  -ms-transition:  all 300ms 0s ease;
  -o-transition:  all 300ms 0s ease;
  transition:  all 300ms 0s ease;
  transition-property: all;
  transition-duration: 300ms;
  transition-timing-function: ease-in-out;
}
.list-people .list-group-item:hover .list-group-role {
  padding-right: 6rem;
}
.list-people .list-group-item:hover .list-group-role,
.list-people .list-group-item:hover .i-fa6-solid {
  opacity: 1;
}
/* COMPONENT IMAGES */
.componentImages {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}
.componentImages .row {
  margin-left: -5px;
  margin-right: -5px;
}
.componentImages .col-md-1,
.componentImages .col-md-2,
.componentImages .col-md-3,
.componentImages .col-md-4,
.componentImages .col-md-5,
.componentImages .col-md-6,
.componentImages .col-md-12 {
  padding: 0rem;
}
@media (max-width: 767px) {
  .componentImages .col-md-1,
  .componentImages .col-md-2,
  .componentImages .col-md-3,
  .componentImages .col-md-4,
  .componentImages .col-md-5,
  .componentImages .col-md-6,
  .componentImages .col-md-12 {
    width: 33.333%;
  }
}
@media screen and (max-width: 767px) {
  .componentImages .col-md-1,
  .componentImages .col-md-2,
  .componentImages .col-md-3,
  .componentImages .col-md-4,
  .componentImages .col-md-5,
  .componentImages .col-md-6,
  .componentImages .col-md-12 {
    width: 33.333%;
  }
}
/* PAGE CONTENT */
.page-content .perex-2 {
  margin-bottom: 5.5rem;
  font-size: 1.4375rem;
  line-height: 1.3;
}
.page-content .componentImageWrapper {
  margin: 1.7rem 0rem;
}
.page-content table,
.page-content .table {
  margin: 1.25rem 0rem;
}
.page-content table tbody tr:nth-of-type(odd),
.page-content .table tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}
.page-content table p:last-of-type,
.page-content .table p:last-of-type {
  margin-bottom: 0rem;
}
.perex-1 {
  font-family: var(--fontDecoration);
  font-size: 4.3333rem;
  line-height: 1;
  text-wrap: balance;
}
@media (max-width: 767px) {
  .perex-1 {
    font-size: 2.6667rem;
  }
}
@media screen and (max-width: 767px) {
  .perex-1 {
    font-size: 2.6667rem;
  }
}
/* ICONS */
.i-fa6-solid {
  -webkit-mask: var(--un-icon) no-repeat;
  mask: var(--un-icon) no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  background-color: currentColor;
  color: inherit;
  width: 29px;
  height: 29px;
  display: inline-block;
  margin: 0 0.5rem 0 0;
}
@media (max-width: 767px) {
  .i-fa6-solid {
    width: 19px;
    height: 19px;
  }
}
@media screen and (max-width: 767px) {
  .i-fa6-solid {
    width: 19px;
    height: 19px;
  }
}
.i-small {
  width: 16px;
  height: 16px;
}
.i-h20 {
  height: 20px;
}
.i-wh20 {
  /*width: 20px;*/
  height: 22px;
}
.social-list .i-fa6-solid {
  margin-right: 8px;
}
.i-fa6-solid-phone {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M164.9 24.6c-7.7-18.6-28-28.5-47.4-23.2l-88 24C12.1 30.2 0 46 0 64c0 247.4 200.6 448 448 448c18 0 33.8-12.1 38.6-29.5l24-88c5.3-19.4-4.6-39.7-23.2-47.4l-96-40c-16.3-6.8-35.2-2.1-46.3 11.6L304.7 368c-70.4-33.3-127.4-90.3-160.7-160.7l49.3-40.3c13.7-11.2 18.4-30 11.6-46.3l-40-96z'/%3E%3C/svg%3E");
}
.i-fa6-solid-envelope {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 512 512' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4l217.6 163.2c11.4 8.5 27 8.5 38.4 0l217.6-163.2c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48zM0 176v208c0 35.3 28.7 64 64 64h384c35.3 0 64-28.7 64-64V176L294.4 339.2a63.9 63.9 0 0 1-76.8 0z'/%3E%3C/svg%3E");
}
.i-fa6-solid-arrow-left {
  --un-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.245' height='14.555' viewBox='0 0 16.245 14.555'%3E%3Cg id='Component_9_3' data-name='Component 9 – 3' transform='translate(15.245 13.141) rotate(180)'%3E%3Cline id='Line_57' data-name='Line 57' x2='14.245' transform='translate(0 5.863)' fill='none' stroke='%23feca00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath id='Path_120' data-name='Path 120' d='M1292.393,1195.4l5.863-5.863-5.863-5.863' transform='translate(-1284.011 -1183.674)' fill='none' stroke='%23feca00' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.i-fa6-solid-arrow-right {
  --un-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16.245' height='14.555' viewBox='0 0 16.245 14.555'%3E%3Cg id='Component_9_2' data-name='Component 9 – 2' transform='translate(1 1.414)'%3E%3Cline id='Line_57' data-name='Line 57' x2='14.245' transform='translate(0 5.863)' fill='none' stroke='%23feca00' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2'/%3E%3Cpath id='Path_120' data-name='Path 120' d='M1292.393,1195.4l5.863-5.863-5.863-5.863' transform='translate(-1284.011 -1183.674)' fill='none' stroke='%23feca00' stroke-linecap='round' stroke-linejoin='round' stroke-miterlimit='10' stroke-width='2'/%3E%3C/g%3E%3C/svg%3E%0A");
}
.i-fa6-solid-arrow-up {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 384 512' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M214.6 41.4c-12.5-12.5-32.8-12.5-45.3 0l-160 160c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L160 141.2V448c0 17.7 14.3 32 32 32s32-14.3 32-32V141.2l105.4 105.4c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3l-160-160z'/%3E%3C/svg%3E");
}
.i-fa6-solid-arrow-down {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 384 512' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M169.4 470.6c12.5 12.5 32.8 12.5 45.3 0l160-160c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L224 370.8V64c0-17.7-14.3-32-32-32s-32 14.3-32 32v306.7L54.6 265.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3l160 160z'/%3E%3C/svg%3E");
}
.i-facebook {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 128 128' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M116.42 5.07H11.58a6.5 6.5 0 0 0-6.5 6.5v104.85a6.5 6.5 0 0 0 6.5 6.5H68V77.29H52.66V59.5H68V46.38c0-15.22 9.3-23.51 22.88-23.51a126 126 0 0 1 13.72.7v15.91h-9.39c-7.39 0-8.82 3.51-8.82 8.66V59.5H104l-2.29 17.79H86.39v45.64h30a6.51 6.51 0 0 0 6.5-6.5V11.58a6.5 6.5 0 0 0-6.47-6.51'/%3E%3C/svg%3E");
}
.i-youtube {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M18 3a5 5 0 0 1 5 5v8a5 5 0 0 1-5 5H6a5 5 0 0 1-5-5V8a5 5 0 0 1 5-5zM9 9v6a1 1 0 0 0 1.514.857l5-3a1 1 0 0 0 0-1.714l-5-3A1 1 0 0 0 9 9'/%3E%3C/svg%3E");
}
.i-instagram {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 24 24' width='1.2em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M8 12a4 4 0 1 1 8 0a4 4 0 0 1-8 0'/%3E%3Cpath fill='currentColor' d='M12.05 1c1.827 0 3.266 0 4.42.105c1.178.106 2.156.328 3.03.833A7 7 0 0 1 22.062 4.5c.505.874.727 1.852.833 3.03C23 8.684 23 10.123 23 11.95v.1c0 1.827 0 3.266-.105 4.42c-.106 1.178-.328 2.156-.833 3.03a7 7 0 0 1-2.562 2.562c-.874.505-1.852.727-3.03.833c-1.154.105-2.593.105-4.42.105h-.1c-1.827 0-3.266 0-4.42-.105c-1.178-.106-2.156-.328-3.03-.833A7 7 0 0 1 1.938 19.5c-.505-.874-.727-1.852-.833-3.03C1 15.316 1 13.877 1 12.05v-.1c0-1.827 0-3.266.105-4.42c.106-1.178.328-2.156.833-3.03A7 7 0 0 1 4.5 1.938c.874-.505 1.852-.727 3.03-.833C8.684 1 10.123 1 11.95 1zm6.2 3.75a1 1 0 0 0-1 1v.004a1 1 0 0 0 1 1h.004a1 1 0 0 0 1-1V5.75a1 1 0 0 0-1-1zM12 6a6 6 0 1 0 0 12a6 6 0 0 0 0-12'/%3E%3C/svg%3E");
}
.i-x {
  --un-icon: url("data:image/svg+xml;utf8,%3Csvg viewBox='0 0 448 512' width='1.06em' height='1.2em' xmlns='http://www.w3.org/2000/svg' %3E%3Cpath fill='currentColor' d='M64 32C28.7 32 0 60.7 0 96v320c0 35.3 28.7 64 64 64h320c35.3 0 64-28.7 64-64V96c0-35.3-28.7-64-64-64zm297.1 84L257.3 234.6L379.4 396h-95.6L209 298.1L123.3 396H75.8l111-126.9L69.7 116h98l67.7 89.5l78.2-89.5zm-37.8 251.6L153.4 142.9h-28.3l171.8 224.7h26.3z'/%3E%3C/svg%3E");
}
.i-tiktok {
  --un-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' fill-rule='evenodd' d='M5 1a4 4 0 0 0-4 4v14a4 4 0 0 0 4 4h14a4 4 0 0 0 4-4V5a4 4 0 0 0-4-4zm7.34 3.5h2.387c0 1.6 1.352 3.41 3.41 3.41v2.386c-1.417-.098-2.628-.33-3.41-1.023v6.136c0 1.705-1.348 4.091-4.431 4.091c-3.766 0-4.432-3.41-4.432-4.432s.6-4.432 4.772-4.432v2.387c-1.091-.231-2.386.681-2.386 2.045c0 1.705 1.023 2.046 2.046 2.046s2.045-1.023 2.045-2.046z' clip-rule='evenodd'/%3E%3C/svg%3E");
}
.i-play {
  --un-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13.038' height='15.211' viewBox='0 0 13.038 15.211'%3E%3Cpath d='M25.38-61.973a1.63,1.63,0,0,1-1.63-1.63V-75.555a1.63,1.63,0,0,1,1.63-1.629,1.63,1.63,0,0,1,.85.239l9.779,5.976a1.631,1.631,0,0,1,.78,1.39,1.63,1.63,0,0,1-.78,1.39L26.23-62.212A1.636,1.636,0,0,1,25.38-61.973Z' transform='translate(-23.75 77.184)'/%3E%3C/svg%3E");
}
/* ITEMS GRID */
.items-list .list-item {
  position: relative;
}
.items-list .list-item .item-link {
  height: 100%;
  display: block;
  text-decoration: none;
  transition: all 0.4s;
}
.items-list .list-item .item-link:hover .item-title,
.items-list .list-item .item-link:hover .item-more .item-more-text {
  text-decoration: underline;
}
.items-list .list-item .item-link:hover .item-img-wrapper img {
  transform: scale3d(1.02, 1.02, 1);
  transform-origin: bottom center;
}
.items-list .list-item .item-link::after {
  counter-reset: none;
}
.items-list .list-item .item-link .item-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 140%;
  border-radius: var(--borderRadiusLarge);
}
.items-list .list-item .item-link .item-img-wrapper img {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.4s;
}
.items-list .list-item .item-link .item-desc {
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 0 1.4rem 0 1.3rem;
  text-align: right;
  z-index: 1;
}
@media (max-width: 767px) {
}
@media screen and (max-width: 767px) {
}
.items-list .list-item .item-link .item-desc .item-desc-text .item-author {
  margin-bottom: 0;
  color: var(--white);
}
.items-list .list-item .item-link .item-desc .item-desc-text .item-title {
  color: var(--white);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  line-height: 1;
  margin-top: 0.5rem;
  padding-bottom: 2px;
}
.items-list .list-item .item-link .item-desc .item-desc-text .item-title:hover {
  text-decoration: underline;
}
@media screen and (max-width: 1460px) {
  .items-list .list-item .item-link .item-desc .item-desc-text .item-title {
    font-size: 1.35rem;
  }
}
@media (max-width: 992px) {
  .items-list .list-item .item-link .item-desc .item-desc-text .item-title {
    font-size: 1.55rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .items-list .list-item .item-link .item-desc .item-desc-text .item-title {
    font-size: 1.55rem;
  }
}
@media (max-width: 767px) {
  .items-list .list-item .item-link .item-desc .item-desc-text .item-title {
    font-size: 1.55rem;
  }
}
@media screen and (max-width: 767px) {
  .items-list .list-item .item-link .item-desc .item-desc-text .item-title {
    font-size: 1.55rem;
  }
}
.items-list .list-item .item-link .item-desc .item-desc-text .item-more {
  color: var(--primary);
}
.items-list .list-item .item-link .item-desc .item-desc-text .item-more .item-more-text {
  margin-left: 20px;
}
.items-list .list-item .item-link .item-desc .item-desc-text .item-date {
  color: #414141;
  font-size: 1.0667rem;
  font-weight: 800;
  line-height: 120%;
}
.items-list .list-item .item-link .item-desc .item-desc-text .item-place {
  margin-left: 10px;
  display: inline-flex;
  align-items: center;
}
.items-list .list-item .item-link .item-desc .item-desc-text .item-place .item-place-letter {
  padding: 4px 8px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: center;
  line-height: 1;
  color: var(--black);
  background-color: var(--white);
  border-radius: 12px;
  white-space: nowrap;
  transition: background-color 0.3s ease-in-out;
  position: relative;
  cursor: pointer;
}
.items-list .list-item .item-link .item-desc .item-desc-text .item-place .item-place-letter:hover {
  background-color: var(--primary);
}
.items-list .list-item .item-link .item-desc .item-desc-text .item-place .item-place-letter:hover::after {
  opacity: 1;
  visibility: visible;
}
.items-list .list-item .item-link .item-desc .item-desc-text .item-place .item-place-letter::after {
  content: attr(title);
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-12px);
  border: 1px solid var(--black);
  background-color: var(--white);
  color: var(--black);
  padding: 4px 8px;
  border-radius: 12px;
  font-weight: 700;
  letter-spacing: 1.34px;
  text-transform: uppercase;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  pointer-events: none;
}
.items-list.items-list-small .list-item .item-link {
  padding-bottom: 6.5rem;
}
.items-list.items-list-small .list-item .item-link .item-desc {
  padding: 0 1.5rem 0 0;
  min-width: calc(100% - 1.6rem);
  max-width: calc(100% - 1.6rem);
}
.items-list.items-list-small .list-item .item-link .item-desc .item-desc-text .item-title {
  font-size: 1.3rem;
}
@media screen and (max-width: 1460px) {
  .items-list.items-list-small .list-item .item-link .item-desc .item-desc-text .item-title {
    font-size: 1.15rem;
  }
}
.items-list.items-list-small .list-item .item-link .item-desc .item-desc-text .item-date {
  font-size: 1rem;
}
.items-list.items-list-small .list-item .item-link .item-desc .item-desc-text .item-place {
  font-size: 0.75rem;
}
.items-list.items-list-small .list-item .item-link .item-desc .item-desc-text .item-place .item-place-letter {
  padding: 3px 6px;
  font-size: 9px;
}
.items-list.lide-grid .list-item .item-link .item-img-wrapper {
  padding-top: 100%;
}
.items-list.lide-grid .item-title {
  margin-bottom: 0.5rem;
  font-size: 2.3333rem;
  letter-spacing: -1.05px;
}
.gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: linear-gradient(180deg, #00000000 0%, #000000 80%, #000000 100%);
  opacity: 0.8;
  border-radius: var(--borderRadiusLarge);
}
.text-wrapper .text.collapse:not(.show) {
  display: block;
  height: 200px;
  overflow: hidden;
}
/* OBJECTS THUMBNAILS */
.objects-thumbnails {
  margin-bottom: 2rem;
}
.objects-thumbnails .object-item {
  margin-bottom: 2.2rem;
}
.objects-thumbnails .object-item .item-number {
  color: var(--grey-500);
}
.objects-thumbnails .object-item .item-link {
  text-decoration: none;
}
/* TABLES */
.table {
  width: 100%;
  max-width: 100%;
  margin: 3rem 0;
  background: none;
  text-align: left;
  border-spacing: 0;
  font-size: 23px;
}
.table tbody tr th,
.table tbody tr td {
  padding: 0.8rem 1.2rem;
  vertical-align: middle;
  border-top: 0;
  border-bottom: 1px solid var(--border);
}
.table tbody tr td:first-child {
  padding-left: 0;
}
.table tbody tr td:last-child {
  padding-right: 0;
}
.table thead th {
  text-align: left;
  vertical-align: bottom;
  border-bottom: 2px solid var(--border);
}
.table thead th:first-child {
  padding-left: 0;
}
.table thead th:last-child {
  padding-right: 0;
}
.table.table-borderless th,
.table.table-borderless td {
  border: 0;
}
.table.table-team {
  font-size: 1rem;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.table.table-team tbody tr th,
.table.table-team tbody tr td {
  padding: 0.6rem 1.2rem;
  vertical-align: top;
}
.table.table-team tbody:first-child tr th,
.table.table-team tbody:first-child tr td {
  padding-left: 0;
}
.table.table-team a {
  color: var(--white);
  text-decoration: underline;
}
.table.table-team a:hover {
  text-decoration: none;
}
.section-dark .table tbody tr th,
.section-dark .table tbody tr td {
  color: var(--white);
  border-bottom-color: var(--white);
}
.section-dark .table thead th {
  color: var(--white);
  border-bottom: 2px solid var(--border);
}
/* ARTICLES */
.articles-grid {
  margin: 1.7rem 0 5rem;
}
.articles-grid .article-item {
  margin-bottom: 2rem;
}
.articles-grid .article-item .item-link {
  display: block;
}
.articles-grid .article-item .item-link .item-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 60%;
}
.articles-grid .article-item .item-link .item-img-wrapper img {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articles-grid .article-item .item-title {
  margin-top: 1rem;
  color: var(--blue-500);
}
.articles-grid .article-item .item-title a {
  text-decoration: none;
}
.articles-grid .article-item .item-date {
  margin-bottom: 0.6rem;
  color: var(--grey-900);
  font-size: 0.85rem;
  line-height: 1.6;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.articles-grid .article-item .item-desc {
  font-size: 0.9rem;
  font-weight: 600;
}
/* Component file styles */
.componentFile {
  padding: 12px 10px 12px 50px;
  position: relative;
  line-height: 100%;
}
.componentFile a {
  color: var(--primary);
  font-size: 18px;
  text-decoration: none;
}
.componentFile a:before {
  font-family: 'Line Awesome Free';
  left: 10px;
  position: absolute;
  top: 20px;
  font-size: 32px;
  color: var(--primary);
}
.componentFile:hover {
  color: var(--primary);
  text-decoration: none;
}
.componentFile:hover a:before {
  color: var(--primary);
}
.componentFile:hover a {
  color: var(--primary);
  font-weight: normal;
}
.componentFile a.file-docx:before,
.componentFile a.file-doc:before {
  content: "\f1c2";
}
.componentFile a.file-pdf:before {
  content: "\f1c1";
}
.componentFile a.file-zip:before {
  content: "\f1c6";
}
.componentFile a.file-jpg:before,
.componentFile a.file-png:before,
.componentFile a.file-gif:before {
  content: "\f1c5";
}
.componentFile a.file-xls:before,
.componentFile a.file-xlsx:before {
  content: "\f1c3";
}
.componentFile .file-name {
  display: block;
  text-decoration: underline;
  font-weight: bold;
}
.componentFile .file-size {
  font-size: 11px;
}
/* style blockquote element */
blockquote {
  border-left: 5px solid var(--blue-500);
  padding-left: 1rem;
  margin-left: 0;
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--grey-900);
}
.btn-core {
  display: inline-block;
  padding: 1rem 1rem;
  color: var(--black);
  background-color: var(--white);
  font-size: 0.83rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease-in-out;
}
.btn-core:hover {
  background-color: var(--grey-200);
  color: var(--black);
  transition: background-color 0.3s ease-in-out;
}
.content-wrapper-in .gallitem:not(.gallery-item) {
  margin: 5px;
}
/* SWIPER */
.section-swiper {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.section-swiper .swiper {
  height: 100%;
}
.section-swiper .swiper-slide {
  width: 392px;
}
@media (max-width: 767px) {
  .section-swiper .swiper-slide {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .section-swiper .swiper-slide {
    width: 100%;
  }
}
.section-swiper .swiper-repertoar .swiper-slide .list-item {
  margin-bottom: 0;
}
.section-swiper .swiper-repertoar .swiper-slide .list-item .item-link .item-desc {
  padding: 0 1.7rem 0;
}
.section-swiper .swiper-aktualne .swiper-slide .item-img-wrapper {
  position: absolute;
  padding-top: 0;
  width: 130px;
  height: 130px;
  top: 0;
  left: 1.7rem;
  z-index: 2;
}
.section-swiper .swiper-aktualne .swiper-slide .list-item {
  height: 100%;
  margin-bottom: 0;
  padding-top: 65px;
}
.section-swiper .swiper-aktualne .swiper-slide .list-item .item-link .item-desc {
  position: relative;
  height: 100%;
}
.section-swiper .swiper-aktualne .swiper-slide .list-item .item-link .item-desc::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: #101010;
  border-radius: 20px;
  z-index: -1;
}
.section-swiper .swiper-aktualne .swiper-slide .item-desc-text {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.section-swiper .swiper-aktualne .swiper-slide .item-date {
  margin-top: 2.6667rem;
}
.section-swiper .swiper-aktualne .swiper-slide .item-title {
  margin-top: 1.7rem !important;
  line-height: 1.1 !important;
  font-size: 1.5333rem;
  text-align: left;
}
.section-swiper .swiper-aktualne .swiper-slide .item-text {
  text-align: left;
  color: var(--white);
}
.section-swiper .swiper-aktualne .swiper-slide .item-more {
  margin-top: auto;
}
.section-swiper .swiper-inscenace .item-title {
  font-size: 22px;
  letter-spacing: -0.66px;
}
.section-swiper .swiper-navigation {
  position: relative;
}
.section-swiper .swiper-button-next,
.section-swiper .swiper-button-prev {
  position: relative;
  top: 0;
  padding: 1.6rem;
  border-radius: 100%;
  font-size: 1.4rem;
  color: var(--primary);
  background-color: var(--black);
  -webkit-transition:  all 1s 0s ease;
  -moz-transition:  all 1s 0s ease;
  -ms-transition:  all 1s 0s ease;
  -o-transition:  all 1s 0s ease;
  transition:  all 1s 0s ease;
  transition-property: all;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;
}
.section-swiper .swiper-button-next:hover,
.section-swiper .swiper-button-prev:hover,
.section-swiper .swiper-button-next:focus,
.section-swiper .swiper-button-prev:focus,
.section-swiper .swiper-button-next:active,
.section-swiper .swiper-button-prev:active {
  padding: 1.7333rem;
}
.section-swiper .swiper-button-next::after,
.section-swiper .swiper-button-prev::after {
  content: none;
}
.section-swiper .swiper-button-next {
  left: 0.6667rem;
}
.section-swiper .swiper-button-prev {
  left: 0;
}
.section-dark .section-swiper .swiper-button-next,
.section-dark .section-swiper .swiper-button-prev {
  color: var(--black);
  background-color: var(--primary);
}
/* TYPY PREDPLATNEHO */
.predplatne-typy .typy-grid {
  margin-top: 2rem;
}
.predplatne-typy .typ-item {
  padding-bottom: 5rem;
}
.predplatne-typy .item-title {
  margin-bottom: 0;
}
.predplatne-typy .item-desc {
  margin-bottom: 2rem;
}
.predplatne-typy .item-btn {
  margin-top: auto;
}
/* REPERTOAR, LIDE */
.repertoar .repertoar-grid:not(:has(h2)),
.lide .repertoar-grid:not(:has(h2)),
.repertoar .lide-grid:not(:has(h2)),
.lide .lide-grid:not(:has(h2)) {
  margin-top: -7rem;
}
@media (max-width: 767px) {
  .repertoar .repertoar-grid:not(:has(h2)),
  .lide .repertoar-grid:not(:has(h2)),
  .repertoar .lide-grid:not(:has(h2)),
  .lide .lide-grid:not(:has(h2)) {
    margin-top: -3rem;
  }
}
@media screen and (max-width: 767px) {
  .repertoar .repertoar-grid:not(:has(h2)),
  .lide .repertoar-grid:not(:has(h2)),
  .repertoar .lide-grid:not(:has(h2)),
  .lide .lide-grid:not(:has(h2)) {
    margin-top: -3rem;
  }
}
.componentHtmlInlineBlock a {
  text-decoration: underline;
}
.componentHtmlInlineBlock a:hover {
  font-weight: bold;
}
#wrapper .alert-info {
  color: #FECA00;
  background-color: #000;
  border-color: #FECA00;
}
#wrapper .alert-info a {
  color: #FECA00;
  text-decoration: underline;
}
.page-history {
  /* swiper vertical */
  /* .swiper-horizontal */
}
.page-history .gradient-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, #00000000 0%, #000000 80%, #000000 100%);
  opacity: 0.8;
  border-radius: var(--borderRadiusLarge);
}
.page-history .section-wide {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}
.page-history .img-wrapper {
  padding-top: 65%;
  border-radius: var(--borderRadiusLarge);
}
.page-history .swiper {
  width: 100%;
  height: auto;
}
.page-history .swiperVertical {
  height: 100vh;
}
.page-history .swiper-slide {
  font-size: 18px;
  display: flex;
}
.page-history .swiper-slide-horizontal {
  display: block !important;
}
.page-history .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--borderRadiusLarge);
}
.page-history .swiper-slide .swiper-inner {
  z-index: 1;
}
.page-history .swiper-navigation-h {
  height: 16px;
  position: absolute;
  bottom: 2rem;
  left: 3rem;
  z-index: 2;
}
.page-history .swiper-navigation-h .swiper-button-prev-home,
.page-history .swiper-navigation-h .swiper-button-next-home {
  color: var(--primary);
}
.page-history .swiper-navigation-h .swiper-button-next-home .i-fa6-solid {
  margin-left: 0.5rem;
  margin-right: 0;
}
@media (max-width: 992px) {
  .page-history .swiper-navigation-h {
    bottom: 1rem;
    left: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .page-history .swiper-navigation-h {
    bottom: 1rem;
    left: 1rem;
  }
}
.page-history .swiper-pagination-h {
  bottom: 0;
  position: relative;
  display: flex;
  align-items: center;
}
.page-history .swiper-pagination-h .swiper-pagination-bullet-active {
  width: 46px;
  position: relative;
  overflow: hidden;
}
.page-history .swiper-pagination-h .swiper-pagination-bullet-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background-color: white;
  animation: growBackground 4s linear forwards;
}
@keyframes growBackground {
  to {
    width: 100%;
  }
}
.page-history .swiper-vertical .swiper-slide.slide-vertical {
  padding: 250px 50px 50px;
}
.page-history .swiper-vertical .swiper-slide .item-img-wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 65%;
}
.page-history .swiper-vertical .swiper-slide .item-img-wrapper img {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-history .swiper-vertical .swiper-navigation-v {
  position: absolute;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
  right: 3rem;
  z-index: 2;
  gap: 10px;
}
.page-history .swiper-vertical .swiper-navigation-v .swiper-button-next-home,
.page-history .swiper-vertical .swiper-navigation-v .swiper-button-prev-home {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 47px;
  height: 47px;
  border-radius: 100%;
  font-size: 1.4rem;
  color: var(--black);
  background-color: var(--primary);
  -webkit-transition:  all 1s 0s ease;
  -moz-transition:  all 1s 0s ease;
  -ms-transition:  all 1s 0s ease;
  -o-transition:  all 1s 0s ease;
  transition:  all 1s 0s ease;
  transition-property: all;
  transition-duration: 0.25s;
  transition-timing-function: ease-in-out;
}
.page-history .swiper-vertical .swiper-navigation-v .swiper-button-next-home .i-fa6-solid,
.page-history .swiper-vertical .swiper-navigation-v .swiper-button-prev-home .i-fa6-solid {
  margin: 0;
}
.page-history .swiper-vertical .swiper-navigation-v .swiper-button-next-home:hover,
.page-history .swiper-vertical .swiper-navigation-v .swiper-button-prev-home:hover,
.page-history .swiper-vertical .swiper-navigation-v .swiper-button-next-home:focus,
.page-history .swiper-vertical .swiper-navigation-v .swiper-button-prev-home:focus,
.page-history .swiper-vertical .swiper-navigation-v .swiper-button-next-home:active,
.page-history .swiper-vertical .swiper-navigation-v .swiper-button-prev-home:active {
  color: var(--black);
  background-color: var(--primary);
}
.page-history .swiper-vertical .swiper-navigation-v .swiper-button-next-home::after,
.page-history .swiper-vertical .swiper-navigation-v .swiper-button-prev-home::after {
  content: none;
}
.page-history .swiper-vertical .swiper-pagination-v {
  position: relative;
  right: 0;
  top: 0;
  transform: none;
}
.page-history .swiper-vertical .swiper-pagination-v .swiper-pagination-bullets {
  right: 3rem;
}
.page-history .swiper-vertical .swiper-pagination-v .swiper-pagination-bullet {
  position: relative;
  width: auto;
  height: auto;
  margin: 12px 0;
  padding: 2px 16px;
  font-size: 23px;
  background-color: transparent;
  border-radius: 35px;
}
.page-history .swiper-vertical .swiper-pagination-v .swiper-pagination-bullet-active {
  background-color: var(--primary);
  color: #000;
}
.page-history .swiper-horizontal {
  padding-bottom: 3rem;
}
