/*
 * SETTINGS
 * variables
*/
/*
 * COLORS
 * for this example I use yelp colors
*/
/*
 * FONT VARIABLES
 * variables for:
 * font family use
 * font weight
 *
*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap");
/* font weight */
@font-face {
  font-family: 'antoniolight';
  src: url("../fonts/antonio-light-webfont.woff2") format("woff2"), url("../fonts/antonio-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'antonioregular';
  src: url("../fonts/antonio-regular-webfont.woff2") format("woff2"), url("../fonts/antonio-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

@font-face {
  font-family: 'antoniobold';
  src: url("../fonts/antonio-bold-webfont.woff2") format("woff2"), url("../fonts/antonio-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

/* 
 * SPACING
 * variables used for:
 * padding
 * margin
 * 
*/
/* PADDING */
/* MARGIN */
/* Disable Safari Autofill User Content */
input:focus::-webkit-textfield-decoration-container {
  visibility: hidden;
  pointer-events: none; }

/*
 * GENERIC
 * 3rd Party
*/
/* RESET */
*,
*:after,
*:before {
  box-sizing: border-box; }

html,
body,
h1, h2, h3, h4, h5, h6,
p, a, button {
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif; }

ul {
  padding: 0;
  margin: 0; }

a {
  text-decoration: none; }

.clearfix:after {
  content: "";
  display: table;
  clear: both; }

/*
 * TOOLS
 * Mixins and function (no actual CSS output)
*/
/* SHADOW */
/* 
 * BORDER RADIUS
*/
/* 
 * ELLIPSIS
 * shortcut for creating a ellipsis
*/
/* 
 * FONT
 * instead of px or %
 * em use for responsive size of text
*/
/* ANIMATIONS */

@keyframes border {
  0% {
    border: solid 1px #d7d7d7; }
  100% {
    border: solid 1px #18bdf0; } }

@keyframes slideFromRight {
  0% {
    right: -100%; }
  100% {
    right: 0; } }

@keyframes slideFromLeft {
  0% {
    left: -100%; }
  100% {
    left: 0; } }

@keyframes slideToRight {
  0% {
    right: 0; }
  100% {
    right: -100%; } }

@keyframes slideToLeft {
  0% {
    left: 0; }
  100% {
    left: -100%; } }

@keyframes slideFromTop {
  0% {
    top: -50px; }
  100% {
    top: 0px; } }

@keyframes slideFromBottom {
  0% {
    bottom: -50px; }
  100% {
    bottom: 0px; } }

@keyframes slideToTop {
  0% {
    top: 0px; }
  100% {
    top: -50px; } }

@keyframes slideToBottom {
  0% {
    bottom: 0px; }
  100% {
    bottom: -50px; } }

@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden; }
  100% {
    opacity: 1;
    visibility: visible; } }

@keyframes fadeOut {
  0% {
    opacity: 1;
    visibility: visible; }
  100% {
    opacity: 0;
    visibility: hidden; } }

@keyframes resizeToZero {
  0% {
    max-height: none;
    overflow: auto;
    display: block; }
  100% {
    max-height: 0;
    overflow: hidden;
    display: none; } }

@keyframes shrinkOut {
  0% {
    -ms-transform: scale(1);
    transform: scale(1); }
  100% {
    -ms-transform: scale(0);
    transform: scale(0); } }

.slideFromRight {
  animation: slideFromRight 800ms ease; }

.slideFromLeft {
  animation: slideFromLeft 800ms ease; }

.slideToRight {
  animation: slideToRight 800ms ease; }

.slideToLeft {
  animation: slideToLeft 800ms ease; }

.fadeOut {
  animation: fadeOut 800ms ease forwards; }

.resizeToZero {
  animation: resizeToZero 900ms ease forwards; }

.shrinkOut {
  animation: shrinkOut 900ms ease forwards; }

/*
 * ELEMENTS
 * HTML elements
*/
body {
  background-color: #ffffff;
  min-height: 100vh; }

/* BUTTONS */
button {
  outline: none; }
  button:hover {
    cursor: pointer; }

/* INPUT */
input, textarea {
  outline: none; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0;
  /* <-- Apparently some margin are still there even though it's hidden */ }

/* LIST */
ul {
  list-style-type: none; }

/*
 * TRUMPS
 * Overriding / !important
*/
/*
 * OBJECT
 * Layout Classes
 * .o-
*/
/* BUTTONS STYLE in class formed*/
.o-button {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  text-align: center;
  outline: none;
  border: none;
  padding: 10px 20px; }

.o-button {
  color: #ed2603;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  padding: 10px 30px 10px 0;
  position: relative; }
  .o-button:before {
    content: '';
    width: 15px;
    height: 15px;
    position: absolute;
    background-image: url("../images/i-arrow__double--arrows.svg");
    background-repeat: no-repeat;
    background-size: contain; }
  .o-button:before {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    right: 5px;
    transition: right 300ms ease; }
  .o-button:hover {
    cursor: pointer; }

.o-button--yellow {
  color: #fedf08; }
  .o-button--yellow:before {
    background-image: url("../images/i-arrow__double--arrows--yellow.svg"); }

.o-button__solid {
  display: block;
  width: 100%;
  padding: 14px 20px;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 11px;
  background-color: #ed2603;
  border: none;
  text-decoration: none;
  text-transform: uppercase; }

.o-button__solid--facebook {
  width: 250px;
  background-color: #475993;
  position: relative;
  padding-left: 40px; }
  .o-button__solid--facebook:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url("../images/i-facebook--white.svg");
    background-repeat: no-repeat;
    background-size: contain; }
  .o-button__solid--facebook:before {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    left: 10px; }

.o-button__solid--google {
  width: 250px;
  background-color: #dc4e41;
  position: relative;
  padding-left: 40px; }
  .o-button__solid--google:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url("../images/i-google.svg");
    background-repeat: no-repeat;
    background-size: contain; }
  .o-button__solid--google:before {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    left: 10px; }

.o-button__solid--gray {
  background-color: #8a8a8a; }

.o-button__solid--grayblack {
  background-color: #8a8a8a;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #000000;
  text-transform: capitalize;
  text-align: center; }

.o-button__solid--redyellow {
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #fedf08;
  text-transform: capitalize; }

.o-button__wrap {
  display: block;
  width: 100%; }

.o-button__wrap--facebook {
  background-color: #475993; }

.o-button__wrap--google {
  background-color: #dc4e41; }

.o-button__link {
  position: relative;
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 10px 12px;
  background-color: #ed2603;
  position: relative; }
  .o-button__link:after {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    background-image: url("../images/i-arrow__double--arrows--yellow.svg");
    background-repeat: no-repeat;
    background-size: contain; }
  .o-button__link:after {
    right: 10px;
    bottom: 10px; }
  .o-button__link:before {
    position: absolute;
    bottom: -1px;
    right: -1px;
    content: '';
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 0px solid transparent;
    border-bottom: 50px solid black; }
  .o-button__link:hover {
    cursor: pointer; }

.o-button__link--absolute, .c-event__card__detail .o-button__link, .c-event__album__info .o-button__link {
  min-height: initial;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0;
  padding: 0; }

/* LIST styles */
.o-list__bullet {
  list-style-type: disc; }

.o-list__decimal {
  list-style-type: decimal; }

.o-list__upperAlpha {
  list-style-type: upper-alpha; }

.o-list__lowerAlpha {
  list-style-type: lower-alpha; }

.o-list__upperRoman {
  list-style-type: upper-roman; }

.o-list__lowerRoman {
  list-style-type: lower-roman; }

.o-mainWrap {
  /* padding: 50px 20px;  */
}
  @media (min-width: 1000px) {
    .o-mainWrap {
      /* padding: 0 20px 70px 20px;  */
    } }

.o-imgWrap {
  display: block;
  width: 100%; }
  .o-imgWrap img {
    display: block;
    width: 100%; }

.c-popup--gallery .o-imgWrap {
  display: block;
  width: 100%; }
  .c-popup--gallery .o-imgWrap img {
    display: block;
    width: auto;
    height: auto; }

.c-popup--gallery .o-imgWrap--landscape img {
  width: 100%; }

.c-popup--gallery .o-imgWrap--portrait img {
  height: auto;
  width: auto;
  max-height: 85vh;
  max-width: 320px; }
  @media (min-width: 350px) {
    .c-popup--gallery .o-imgWrap--portrait img {
      max-width: 350px; } }
  @media (min-width: 1000px) {
    .c-popup--gallery .o-imgWrap--portrait img {
      max-width: 800px; } }

.o-overflowWrap {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden; }

h1 {
  position: relative;
  display: block;
  width: 100%;
  font-family: "antoniobold";
  color: #ed2603;
  font-size: 36px;
  text-align: center;
  margin-bottom: 20px;
  padding-top: 5px; }

.o-h1__oWrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%; }

.o-h1 {
  display: inline-block;
  width: auto;
  padding: 20px 30px 15px 30px; }
  @media (min-width: 1000px) {
    .o-h1 {
      padding: 20px 70px 15px 70px; } }
  .o-h1:before, .o-h1:after {
    content: '';
    width: 130px;
    height: 1px;
    background-color: #ed2603;
    position: absolute;
    top: 0;
    left: 0; }
    @media (min-width: 1000px) {
      .o-h1:before, .o-h1:after {
        width: 150px; } }
  .o-h1:after {
    top: initial;
    left: initial;
    bottom: 0;
    right: 0; }

h2 {
  display: block;
  width: 100%;
  font-family: "antoniobold";
  font-size: 30px;
  /* line-height: 35px; */
  color: #000000;
  text-align: left;
  text-transform: uppercase;
  margin: 0 0 15px 0;
  padding-top: 5px; }

h3, h4, h5 {
  font-family: "antonioregular"; }

h3 {
  font-size: 20px; }

h6 {
  font-family: "Open Sans", sans-serif;
  font-size: 18px;
  margin-bottom: 15px; }

textarea {
  display: block;
  width: 100%;
  font-size: 16px;
  font-family: "Open Sans", sans-serif;
  padding: 10px;
  color: #ed2603;
  resize: none;
  border: 1px solid #5F1181;
  background-color: #fff; }

.o-textarea--noResize {
  resize: none; }

.o-textarea--noBorder {
  border: none; }

.o-textarea__wrap {
  display: block;
  width: 100%;
  margin-bottom: 15px; }

p {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #0F0F0F;
  /* line-height: 22px; */
  text-align: left;
  margin-bottom: 15px; }

/*
 * SUB COMPONENTS
 * UI Classes
 * .c-
*/
.c-main {
  display: block;
  width: 100%;
  overflow: hidden;
  min-height: 100vh;
  background-image: url("../images/main__bg.jpg");
  background-size: cover;
  background-repeat: no-repeat; }

.c-main--corp {
  background-image: url("../images/corp__bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top; }
  .c-main--corp .c-banner__oWrap {
    background-image: url("../images/banner__bg.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom; }
  .c-main--corp .c-product__slider__oWrap {
    background-image: url("../images/product__slider__bg.jpg");
    background-size: cover;
    background-repeat: no-repeat; }
  .c-main--corp .c-corp__event {
    background-image: url("../images/corp__event__bg.jpg");
    background-size: cover;
    background-repeat: no-repeat; }

header {
  display: block;
  width: 100%; }

.c-hdr {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto auto;
  grid-template-areas: 'logo lang menu';
  padding: 10px;
  -ms-flex-align: center;
      align-items: center;
  grid-gap: 10px;
  background-color: #ed2603;
  background-image: url("../images/hdr__bg.jpg");
  background-size: cover;
  background-repeat: no-repeat; }
  @media (min-width: 1000px) {
    .c-hdr {
      padding: 20px 20px;
      grid-gap: 30px; } }
  @media (min-width: 1200px) {
    .c-hdr {
      grid-template-columns: auto 1fr auto auto;
      grid-template-areas: 'logo navigation login lang'; } }
  .c-hdr .c-hdr__logo {
    display: block;
    width: 100%;
    max-width: 140px; }
    @media (min-width: 1000px) {
      .c-hdr .c-hdr__logo {
        max-width: 180px; } }
    .c-hdr .c-hdr__logo img {
      display: block;
      width: 100%; }
  .c-hdr .c-hdr__nav__desktop {
    grid-area: navigation;
    display: none; }
    @media (min-width: 1200px) {
      .c-hdr .c-hdr__nav__desktop {
        display: inline-block; } }
    .c-hdr .c-hdr__nav__desktop li {
      position: relative;
      display: inline-block;
      width: 100%;
      text-align: center; }
      @media (min-width: 1000px) {
        .c-hdr .c-hdr__nav__desktop li {
          margin-right: 20px;
          width: auto;
          text-align: left; } }
      .c-hdr .c-hdr__nav__desktop li:last-child {
        margin-right: 0; }
      .c-hdr .c-hdr__nav__desktop li:hover > ul {
        display: block; }
      .c-hdr .c-hdr__nav__desktop li > ul {
        display: none;
        z-index: 4;
        position: absolute;
        min-width: 140px;
        bottom: initial;
        left: 0;
        margin-top: -2px; }
        .c-hdr .c-hdr__nav__desktop li > ul li {
          display: inline-block;
          width: 100%; }
          .c-hdr .c-hdr__nav__desktop li > ul li:first-child a {
            border-top: none; }
        .c-hdr .c-hdr__nav__desktop li > ul a {
          color: #000000;
          display: inline-block;
          width: 100%;
          font-size: 12px;
          font-weight: 600;
          background-color: #fedf08;
          text-transform: capitalize;
          padding: 10px 12px;
          border-top: 1px solid #fea408;
          transition: background-color 300ms ease; }
          .c-hdr .c-hdr__nav__desktop li > ul a:hover {
            color: #000000;
            background-color: #feb608; }
            .c-hdr .c-hdr__nav__desktop li > ul a:hover:before {
              content: none; }
    .c-hdr .c-hdr__nav__desktop a {
      position: relative;
      font-family: "Open Sans", sans-serif;
      color: #ffffff;
      padding: 10px 0;
      font-size: 14px;
      text-transform: uppercase;
      display: inline-block;
      width: auto; }
      .c-hdr .c-hdr__nav__desktop a:hover, .c-hdr .c-hdr__nav__desktop a.active {
        color: #fedf08;
        text-shadow: 0 0 0.65px #fedf08, 0 0 0.65px #fedf08; }
        .c-hdr .c-hdr__nav__desktop a:hover:before, .c-hdr .c-hdr__nav__desktop a.active:before {
          content: '';
          height: 2px;
          width: 100%;
          background-color: #fedf08;
          position: absolute;
          bottom: 0; }
  .c-hdr .c-hdr__logoWrap {
    grid-area: logo; }
  .c-hdr .c-hdr__login {
    grid-area: login;
    position: relative;
    display: none; }
    @media (min-width: 1200px) {
      .c-hdr .c-hdr__login {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -ms-flex-align: center;
            align-items: center;
        justify-self: end;
        padding-right: 30px;
        padding: 10px 30px 10px 10px; } }
    @media (min-width: 1000px) {
      .c-hdr .c-hdr__login:before {
        content: '';
        height: 20px;
        width: 1px;
        background-color: #ffffff;
        position: absolute;
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        right: 0; } }
    .c-hdr .c-hdr__login:hover .c-hdr__profile {
      display: block; }
    .c-hdr .c-hdr__login img {
      width: 27px;
      height: 27px; }
    .c-hdr .c-hdr__login span {
      display: none;
      font-size: 14px;
      text-transform: uppercase;
      color: #ffffff;
      margin-left: 10px; }
      @media (min-width: 1000px) {
        .c-hdr .c-hdr__login span {
          display: block; } }
    .c-hdr .c-hdr__login .c-hdr__profile {
      display: none;
      z-index: 4;
      position: absolute;
      min-width: 140px;
      bottom: -70px;
      left: 0; }
      .c-hdr .c-hdr__login .c-hdr__profile li {
        display: inline-block;
        width: 100%; }
        .c-hdr .c-hdr__login .c-hdr__profile li:first-child a {
          border-top: none; }
      .c-hdr .c-hdr__login .c-hdr__profile a {
        color: #000000;
        display: inline-block;
        width: 100%;
        font-size: 12px;
        font-weight: 600;
        background-color: #fedf08;
        text-transform: capitalize;
        padding: 10px 12px;
        border-top: 1px solid #fea408;
        transition: background-color 300ms ease; }
        .c-hdr .c-hdr__login .c-hdr__profile a:hover {
          color: #000000;
          background-color: #feb608; }
          .c-hdr .c-hdr__login .c-hdr__profile a:hover:before {
            content: none; }
  .c-hdr .c-hdr_login__logout__oWrap {
    display: none;
    z-index: 4;
    position: absolute;
    min-width: 100px;
    left: 0; }
    .c-hdr .c-hdr_login__logout__oWrap .c-hdr_login__logout {
      color: #000000;
      display: inline-block;
      width: 100%;
      font-size: 12px;
      font-weight: 600;
      background-color: #fedf08;
      text-transform: capitalize;
      text-align: center;
      line-height: 38px;
      vertical-align: middle;
      padding: 0 12px;
      transition: background-color 300ms ease; }
      .c-hdr .c-hdr_login__logout__oWrap .c-hdr_login__logout:hover {
        color: #000000;
        background-color: #feb608; }
        .c-hdr .c-hdr_login__logout__oWrap .c-hdr_login__logout:hover:before {
          content: none; }
  .c-hdr .c-lang__wrap {
    grid-area: lang;
    justify-self: end; }
  .c-hdr .c-lang .c-lang__main:after {
    background-image: url("../images/i-arrow__down--yellow.svg"); }
  .c-hdr .c-lang .c-lang__opt span {
    color: #ffffff;
    font-size: 14px; }
  .c-hdr .c-hdr__menu {
    grid-area: menu;
    width: 35px;
    height: 35px;
    position: relative; }
    .c-hdr .c-hdr__menu:before {
      content: '';
      width: 35px;
      height: 35px;
      position: absolute;
      background-image: url("../images/i-mobile__nav--blk.png");
      background-repeat: no-repeat;
      background-size: contain; }
    @media (min-width: 1200px) {
      .c-hdr .c-hdr__menu {
        display: none; } }
    .c-hdr .c-hdr__menu:before {
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
      height: 22px; }

.c-hdr__mobile__nav {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background-color: #000000;
  padding: 70px 20px 20px 20px; }
  @media (min-width: 1200px) {
    .c-hdr__mobile__nav {
      display: none !important; } }
  .c-hdr__mobile__nav ul {
    width: 100%;
    max-width: 300px;
    margin: 0 auto; }
  .c-hdr__mobile__nav li {
    display: inline-block;
    width: 100%;
    margin-bottom: 10px; }
    .c-hdr__mobile__nav li:last-child {
      margin-bottom: 0; }
    .c-hdr__mobile__nav li > ul li {
      margin-bottom: 0; }
    .c-hdr__mobile__nav li > ul a {
      font-size: 11px;
      color: #fedf08;
      padding: 0 5px; }
  .c-hdr__mobile__nav a {
    display: inline-block;
    width: 100%;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    padding: 0 5px; }
  .c-hdr__mobile__nav .c-hdr__mobile__user__oWrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
    margin-bottom: 10px; }
  .c-hdr__mobile__nav .c-hdr__mobile__user {
    display: inline-block;
    width: auto;
    padding-left: 22px;
    padding-right: 22px;
    position: relative; }
    .c-hdr__mobile__nav .c-hdr__mobile__user:before {
      content: '';
      width: 20px;
      height: 20px;
      position: absolute;
      background-image: url("../images/i-user--yellow.svg");
      background-repeat: no-repeat;
      background-size: contain; }
    .c-hdr__mobile__nav .c-hdr__mobile__user:before {
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
      left: 8px; }
  .c-hdr__mobile__nav .c-hdr__mobile__logout__oWrap {
    display: block;
    width: 100%;
    margin-top: 18px; }
  .c-hdr__mobile__nav .c-hdr__mobile__logout {
    color: #000000;
    background-color: #fedf08;
    font-weight: 600;
    display: block;
    padding: 8px;
    max-width: 122px;
    margin: 0 auto; }

.c-hdr__mobile__nav--show {
  display: block; }

.c-hdr__mobile__nav__close {
  display: block;
  width: 20px;
  height: 20px;
  position: relative;
  position: absolute;
  right: 20px;
  top: 20px; }
  .c-hdr__mobile__nav__close:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url("../images/i-close--white.svg");
    background-repeat: no-repeat;
    background-size: contain; }

.c-hdr__corp {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto auto;
  grid-template-areas: 'logo lang login';
  padding: 10px;
  -ms-flex-align: center;
      align-items: center;
  grid-gap: 10px;
  background-color: #ffffff; }
  @media (min-width: 1000px) {
    .c-hdr__corp {
      grid-template-areas: 'logo login lang';
      grid-gap: 30px;
      padding: 15px 20px; } }
  .c-hdr__corp .c-hdr__logo {
    display: block;
    width: 100%;
    max-width: 140px; }
    @media (min-width: 1000px) {
      .c-hdr__corp .c-hdr__logo {
        max-width: 250px; } }
    .c-hdr__corp .c-hdr__logo img {
      display: block;
      width: 100%; }
  .c-hdr__corp .c-hdr__logoWrap {
    grid-area: logo; }
  .c-hdr__corp .c-hdr__login {
    position: relative;
    grid-area: login;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: center;
        align-items: center;
    justify-self: end; }
    @media (min-width: 1000px) {
      .c-hdr__corp .c-hdr__login {
        padding-right: 30px; } }
    @media (min-width: 1000px) {
      .c-hdr__corp .c-hdr__login:before {
        content: '';
        height: 20px;
        width: 1px;
        background-color: #000000;
        position: absolute;
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
        right: 0; } }
    .c-hdr__corp .c-hdr__login img {
      width: 27px;
      height: 27px; }
    .c-hdr__corp .c-hdr__login span {
      display: none;
      font-size: 16px;
      text-transform: uppercase;
      color: #000000;
      margin-left: 10px; }
      @media (min-width: 1000px) {
        .c-hdr__corp .c-hdr__login span {
          display: block; } }
  .c-hdr__corp .c-lang__wrap {
    grid-area: lang;
    justify-self: end; }

footer {
  display: block;
  width: 100%; }

.c-ftr {
  position: relative;
  display: block;
  width: 100%; }

.c-ftr__upper {
  display: block;
  width: 100%;
  background-color: #ed2603;
  padding: 40px 20px; }
  .c-ftr__upper .o-imgWrap {
    max-width: 200px;
    margin: 0 auto;
    margin-bottom: 30px; }
  .c-ftr__upper a {
    color: #ffffff;
    font-family: "Open Sans", sans-serif;
    font-size: 16px;
    margin-bottom: 15px; }
    @media (min-width: 1000px) {
      .c-ftr__upper a {
        margin-bottom: 0; } }
  .c-ftr__upper .c-ftr__icon {
    padding-left: 30px;
    width: 100%;
    display: inline-block; }
    .c-ftr__upper .c-ftr__icon:before {
      top: 2px;
      left: 0; }
  .c-ftr__upper .c-ftr__icon--location {
    position: relative; }
    .c-ftr__upper .c-ftr__icon--location:before {
      content: '';
      width: 20px;
      height: 20px;
      position: absolute;
      background-image: url("../images/i-location--yellow.svg");
      background-repeat: no-repeat;
      background-size: contain; }
  .c-ftr__upper .c-ftr__icon--phone {
    position: relative; }
    .c-ftr__upper .c-ftr__icon--phone:before {
      content: '';
      width: 20px;
      height: 20px;
      position: absolute;
      background-image: url("../images/i-phone--yellow.svg");
      background-repeat: no-repeat;
      background-size: contain; }
  .c-ftr__upper .c-ftr__icon--email {
    position: relative; }
    .c-ftr__upper .c-ftr__icon--email:before {
      content: '';
      width: 20px;
      height: 20px;
      position: absolute;
      background-image: url("../images/i-email--yellow.svg");
      background-repeat: no-repeat;
      background-size: contain; }
  .c-ftr__upper .c-ftr__contact__oWrap {
    display: block;
    width: 100%; }
    @media (min-width: 500px) {
      .c-ftr__upper .c-ftr__contact__oWrap {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -ms-flex-pack: center;
            justify-content: center;
        width: auto; } }
  .c-ftr__upper .c-ftr__contact {
    display: block;
    width: 100%;
    max-width: 500px;
    margin-bottom: 15px; }
    @media (min-width: 500px) {
      .c-ftr__upper .c-ftr__contact {
        display: inline-block;
        width: auto; } }
    @media (min-width: 1000px) {
      .c-ftr__upper .c-ftr__contact {
        max-width: 100%;
        width: 100%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -ms-flex-pack: center;
            justify-content: center; } }
    @media (min-width: 1200px) {
      .c-ftr__upper .c-ftr__contact {
        margin-bottom: 0; } }
    @media (min-width: 1000px) {
      .c-ftr__upper .c-ftr__contact li {
        margin-right: 30px; } }
  .c-ftr__upper .c-ftr__soc {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: start;
        justify-content: flex-start; }
    @media (min-width: 500px) {
      .c-ftr__upper .c-ftr__soc {
        -ms-flex-pack: center;
            justify-content: center; } }
    @media (min-width: 1000px) {
      .c-ftr__upper .c-ftr__soc {
        width: auto; } }
    .c-ftr__upper .c-ftr__soc span {
      color: #ffffff; }
    .c-ftr__upper .c-ftr__soc li {
      margin-right: 15px; }
      .c-ftr__upper .c-ftr__soc li:last-child {
        margin-right: 0; }
    .c-ftr__upper .c-ftr__soc .c-ftr__soc__icon {
      display: inline-block;
      width: 25px;
      height: 25px;
      margin-bottom: 0; }
    .c-ftr__upper .c-ftr__soc .c-ftr__soc__icon--facebook {
      position: relative; }
      .c-ftr__upper .c-ftr__soc .c-ftr__soc__icon--facebook:before {
        content: '';
        width: 25px;
        height: 25px;
        position: absolute;
        background-image: url("../images/i-facebook--yellow.svg");
        background-repeat: no-repeat;
        background-size: contain; }
    .c-ftr__upper .c-ftr__soc .c-ftr__soc__icon--youtube {
      position: relative; }
      .c-ftr__upper .c-ftr__soc .c-ftr__soc__icon--youtube:before {
        content: '';
        width: 25px;
        height: 25px;
        position: absolute;
        background-image: url("../images/i-youtube--yellow.svg");
        background-repeat: no-repeat;
        background-size: contain; }

.c-ftr__upper__iWrap {
  display: block;
  width: 100%; }
  @media (min-width: 1000px) {
    .c-ftr__upper__iWrap {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

.c-ftr__lower {
  display: block;
  width: 100%;
  width: 100%;
  background-color: #000000;
  padding: 20px 20px; }
  @media (min-width: 1000px) {
    .c-ftr__lower {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-align: center;
          align-items: center;
      padding: 30px 20px; } }
  .c-ftr__lower .c-ftr__copyright {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 0;
    text-align: center;
    margin-bottom: 15px; }
    @media (min-width: 1000px) {
      .c-ftr__lower .c-ftr__copyright {
        width: auto;
        margin-bottom: 0;
        margin-right: 30px; } }
  .c-ftr__lower span {
    position: relative;
    color: #fedf08;
    font-weight: bold;
    padding-right: 10px;
    margin-right: 10px; }
    .c-ftr__lower span:before {
      content: '';
      width: 1px;
      height: 20px;
      background-color: #ffffff;
      position: absolute;
      position: absolute;
      top: 50%;
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
      right: 0; }
  .c-ftr__lower .c-ftr__up__oWrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    width: 100%; }
    @media (min-width: 1000px) {
      .c-ftr__lower .c-ftr__up__oWrap {
        width: auto;
        margin-left: 30px; } }
  .c-ftr__lower .c-ftr__up {
    display: inline-block;
    width: auto;
    font-size: 14px;
    text-transform: uppercase;
    color: #fedf08;
    position: relative;
    padding-left: 25px; }
    .c-ftr__lower .c-ftr__up:before {
      content: '';
      width: 15px;
      height: 15px;
      position: absolute;
      background-image: url("../images/i-arrow__up--yellow.svg");
      background-repeat: no-repeat;
      background-size: contain; }
    .c-ftr__lower .c-ftr__up:before {
      position: absolute;
      top: 50%;
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
      left: 0; }
    .c-ftr__lower .c-ftr__up:hover {
      cursor: pointer; }
    /*.c-ftr__lower .c-ftr__links ul li {*/
    /*  margin: 0 .5em;*/
    /*  float: left; }*/
    @media (min-width: 1000px) {
      .c-ftr__lower .c-ftr__links {
      margin-bottom: 0; } }
    .c-ftr__lower .c-ftr__links ul li {
      margin: 0 .5em;
      float: left; }
    .c-ftr__lower .c-ftr__links {
      margin-bottom: 1em;
      display: flex;
      justify-content: center;
      text-align: center; }
    .c-ftr__lower .c-ftr__links ul li a {
      color: #fff; }
    .c-ftr__lower .c-ftr__links ul li a:hover {
        color: #fedf08; }

.c-input input {
  display: block;
  width: 100%;
  color: #000000;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  height: 40px;
  background-color: #fff;
  border: none;
  padding: 5px 10px;
  outline: none;
  border: 1px solid #979797; }

.c-input label {
  display: block;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: capitalize;
  margin-bottom: 5px; }

.o-input__wrap {
  display: block;
  width: 100%;
  margin-bottom: 15px; }

.c-select select {
  display: block;
  width: 100%;
  color: #000000;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  text-transform: capitalize;
  height: 40px;
  background-color: transparent;
  border: none;
  padding: 5px 40px 5px 10px;
  outline: none;
  /*hide default style icon*/
  -moz-appearance: none;
  /* Firefox */
  -webkit-appearance: none;
  /* Safari and Chrome */
  appearance: none; }
  .c-select select:hover {
    cursor: pointer; }
  .c-select select option {
    outline: none; }

.c-select label {
  display: block;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 12px;
  text-transform: capitalize;
  margin-bottom: 5px; }

.c-select__wrap {
  display: block;
  width: 100%;
  border: 1px solid #979797;
  position: relative; }
  .c-select__wrap:before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    background-image: url("../images/i-arrow__down--yellow.svg");
    background-repeat: no-repeat;
    background-size: contain; }
  .c-select__wrap:before {
    z-index: 2;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    right: 10px; }
  .c-select__wrap:after {
    z-index: 1;
    content: '';
    width: 30px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    background-color: #ed2603; }

/* POPUP */
.c-popupMask {
  z-index: 99;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  display: none; }

.c-popupContainer {
  position: fixed;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  background: transparent;
  width: 100%;
  height: 56.25%;
  max-height: 100vh;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 100;
  display: none;
  padding-top: 28px;
  overflow-y: auto; }
  @media screen and (min-width: 500px) {
    .c-popupContainer {
      max-width: 800px; } }
  @media (min-width: 1000px) {
    .c-popupContainer {
      overflow-y: visible;
      padding-top: 0; } }
  .c-popupContainer > .c-popupClose {
    display: none;
    background-color: #ed2603;
    color: #ffffff;
    width: 70px;
    height: 28px;
    font-size: 14px;
    line-height: 28px;
    vertical-align: middle;
    text-align: center;
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer; }
    @media (min-width: 1000px) {
      .c-popupContainer > .c-popupClose {
        width: 80px;
        height: 35px;
        font-size: 14px;
        line-height: 35px; } }
    @media (min-width: 1000px) {
      .c-popupContainer > .c-popupClose {
        top: -35px; } }
        
/* 
      .c-popupClose {
        align-self: flex-end;
        background-color: #ed2603;
        color: #ffffff;
        width: 70px;
        height: 28px;
        font-size: 14px;
        line-height: 28px;
        vertical-align: middle;
        text-align: center;
        background-repeat: no-repeat;
        background-size: contain;
        position: relative;
        right: 0;
        top: 0;
        cursor: pointer; }
        @media (min-width: 1000px) {
          .c-popupClose {
            width: 80px;
            height: 35px;
            font-size: 14px;
            line-height: 35px; } }

            .js-popupClose {
             z-index: 99;
            } */

.c-popup {
  display: none; }

.c-popup__show {
  display: block; }

/*
* POPUP CUSTOMIZE
*/
.c-popup--gallery {
  position: relative; }
  .c-popup--gallery .o-imgWrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-align: center;
        align-items: center;
    width: 100%;
    background-color: #000000; }
    @media (min-width: 1000px) {
      .c-popup--gallery .o-imgWrap {
        min-height: 450px; } }

.c-popup__info {
  display: grid;
  grid-template-columns: 1fr;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  padding: 15px; }

.c-popup__gallery__title {
  color: #fedf08;
  font-family: "antoniobold";
  font-size: 18px;
  padding-top: 3px;
  text-transform: uppercase; }

.c-popup__gallery__date {
  display: block;
  width: 100%;
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  font-size: 12px; }

.c-popup__gallery__label {
  display: grid;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  background-color: #ffffff; }

.c-popup__gallery__label__iWrap {
  position: relative;
  height: 24px;
  width: 40px; }
  .c-popup__gallery__label__iWrap span {
    color: #ed2603;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    text-align: center;
    position: absolute;
    -ms-transform: rotate(90deg);
        transform: rotate(90deg);
    height: 24px;
    width: 40px; }

.c-popup__prev, .c-popup__next {
  display: block;
  background-color: #ed2603;
  width: 30px;
  height: 50px;
  text-decoration: none; }
  .c-popup__prev:before, .c-popup__next:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
  .c-popup__prev:hover, .c-popup__next:hover {
    cursor: pointer; }

.c-popup__prev {
  position: relative;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  left: 0; }
  .c-popup__prev:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url("../images/i-back.svg");
    background-repeat: no-repeat;
    background-size: contain; }
  @media (min-width: 1000px) {
    .c-popup__prev {
      left: -30px; } }

.c-popup__next {
  position: relative;
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
  right: 0; }
  .c-popup__next:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url("../images/i-next.svg");
    background-repeat: no-repeat;
    background-size: contain; }
  @media (min-width: 1000px) {
    .c-popup__next {
      right: -30px; } }

.c-popup__content {
  display: block;
  width: 100%;
  background-color: #fedf08;
  padding: 30px 20px; }
  @media (min-width: 1000px) {
    .c-popup__content {
      padding: 60px 40px; } }
  .c-popup__content p:last-child {
    margin-bottom: 0; }

/*
 * Container style
 */
.ps {
  overflow: hidden !important;
  overflow-anchor: none;
  -ms-overflow-style: none;
  touch-action: auto;
  -ms-touch-action: auto; }

/*
 * Scrollbar rail styles
 */
.ps__rail-x {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  height: 15px;
  /* there must be 'bottom' or 'top' for ps__rail-x */
  bottom: 0px;
  /* please don't change 'position' */
  position: absolute; }

.ps__rail-y {
  display: none;
  opacity: 0;
  transition: background-color .2s linear, opacity .2s linear;
  -webkit-transition: background-color .2s linear, opacity .2s linear;
  width: 15px;
  /* there must be 'right' or 'left' for ps__rail-y */
  right: 0;
  /* please don't change 'position' */
  position: absolute; }

.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
  display: block;
  background-color: transparent; }

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
  opacity: 0.6; }

.ps__rail-x:hover,
.ps__rail-y:hover,
.ps__rail-x:focus,
.ps__rail-y:focus {
  background-color: #eee;
  opacity: 0.9; }

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, height .2s ease-in-out;
  -webkit-transition: background-color .2s linear, height .2s ease-in-out;
  height: 6px;
  /* there must be 'bottom' for ps__thumb-x */
  bottom: 2px;
  /* please don't change 'position' */
  position: absolute; }

.ps__thumb-y {
  background-color: #aaa;
  border-radius: 6px;
  transition: background-color .2s linear, width .2s ease-in-out;
  -webkit-transition: background-color .2s linear, width .2s ease-in-out;
  width: 6px;
  /* there must be 'right' for ps__thumb-y */
  right: 2px;
  /* please don't change 'position' */
  position: absolute; }

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x {
  background-color: #999;
  height: 11px; }

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y {
  background-color: #999;
  width: 11px; }

/* MS supports */
@supports (-ms-overflow-style: none) {
  .ps {
    overflow: auto !important; } }

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .ps {
    overflow: auto !important; } }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0; }
  .slick-list:focus {
    outline: none; }
  .slick-list.dragging {
    cursor: pointer;
    cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto; }
  .slick-track:before, .slick-track:after {
    content: "";
    display: table; }
  .slick-track:after {
    clear: both; }
  .slick-loading .slick-track {
    visibility: hidden; }

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  outline: none;
  display: none; }
  [dir="rtl"] .slick-slide {
    float: right; }
  .slick-slide img {
    display: block; }
  .slick-slide.slick-loading img {
    display: none; }
  .slick-slide.dragging img {
    pointer-events: none; }
  .slick-initialized .slick-slide {
    display: block; }
  .slick-loading .slick-slide {
    visibility: hidden; }
  .slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

.c-slider .slick-dots {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 20px; }
  @media (min-width: 1000px) {
    .c-slider .slick-dots {
      -ms-flex-pack: end;
          justify-content: flex-end; } }
  .c-slider .slick-dots li {
    margin-right: 10px; }
  .c-slider .slick-dots .slick-active button {
    background-color: #ed2603;
    width: 15px;
    height: 15px; }
  .c-slider .slick-dots button {
    background-color: #c1c1c1;
    border: none;
    width: 10px;
    height: 10px;
    color: transparent;
    border-radius: 100%;
    vertical-align: middle; }

.c-slider--product {
  width: 60%;
  margin: 0 auto; }
  @media (min-width: 1000px) {
    .c-slider--product {
      width: 100%;
      max-width: 1200px; } }
  .c-slider--product .slick-list {
    overflow: visible !important; }
    @media (min-width: 1000px) {
      .c-slider--product .slick-list {
        overflow: hidden !important; } }
  .c-slider--product .c-slider__iWrap {
    padding: 0 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: end;
        align-items: flex-end;
    height: inherit; }
  .c-slider--product .c-slider__wrap {
    outline: none; }
  .c-slider--product .o-imgWrap {
    margin-bottom: 15px; }
  .c-slider--product label {
    display: block;
    width: 100%;
    font-weight: bold;
    color: #000000;
    font-size: 15px;
    text-align: center; }
  .c-slider--product .slick-dots {
    -ms-flex-pack: center;
        justify-content: center; }

.c-slider--event {
  width: 75%;
  margin: 0 auto; }
  @media (min-width: 1200px) {
    .c-slider--event {
      width: 60%; } }
  .c-slider--event .slick-list {
    overflow: visible !important; }
  .c-slider--event .c-slider__iWrap {
    z-index: 1;
    position: relative;
    -ms-transform: scale(1);
        transform: scale(1);
    transition: all 500ms ease-in;
    background-color: #ed2603;
    box-shadow: 0px 4px 8px #424242; }
    .c-slider--event .c-slider__iWrap:before {
      z-index: 1;
      position: absolute;
      background-color: rgba(0, 0, 0, 0.5);
      content: '';
      width: 100%;
      height: 100%; }
  .c-slider--event .slick-current {
    z-index: 2;
    -ms-transform: scale(1.1);
        transform: scale(1.1); }
    .c-slider--event .slick-current:before {
      content: none; }
  .c-slider--event .c-slider__wrap {
    display: block;
    width: 100%; }
    @media (min-width: 1000px) {
      .c-slider--event .c-slider__wrap {
        display: grid;
        grid-template-columns: 1fr 1fr; } }
  .c-slider--event .c-slider__info {
    display: block;
    width: 100%;
    padding: 30px 20px;
    background-color: #ed2603; }
    @media (min-width: 1000px) {
      .c-slider--event .c-slider__info {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        -ms-flex-align: center;
            align-items: center; } }
  .c-slider--event .c-slider__info__iWrap {
    display: block;
    width: 100%; }
  .c-slider--event .c-slider__title {
    font-family: "antonioregular";
    color: #fedf08;
    text-transform: uppercase;
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 10px; }
  .c-slider--event .c-slider__date {
    color: #ffffff;
    font-family: "antonioregular";
    font-size: 16px;
    margin-bottom: 20px; }
  .c-slider--event .c-slider__desc {
    display: block;
    width: 100%; }
    .c-slider--event .c-slider__desc p {
      color: #ffffff;
      font-size: 14px; }
  .c-slider--event .o-buttonWrap {
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -ms-flex-pack: end;
        justify-content: flex-end;
    margin-top: 40px; }
  .c-slider--event .slick-dots {
    -ms-flex-pack: center;
        justify-content: center;
    margin-top: 60px; }

.c-slider--endorser {
  position: relative;
  padding: 0 30px; }
  .c-slider--endorser .slick-arrow {
    border: none;
    background-color: #ed2603;
    color: transparent;
    width: 30px;
    height: 50px;
    top: 52px; }
    .c-slider--endorser .slick-arrow:before {
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); }
  .c-slider--endorser .slick-prev {
    position: relative;
    position: absolute;
    left: 0; }
    .c-slider--endorser .slick-prev:before {
      content: '';
      width: 20px;
      height: 20px;
      position: absolute;
      background-image: url("../images/i-back.svg");
      background-repeat: no-repeat;
      background-size: contain; }
  .c-slider--endorser .slick-next {
    position: relative;
    position: absolute;
    right: 0; }
    .c-slider--endorser .slick-next:before {
      content: '';
      width: 20px;
      height: 20px;
      position: absolute;
      background-image: url("../images/i-next.svg");
      background-repeat: no-repeat;
      background-size: contain; }
  .c-slider--endorser .slick-dots {
    -ms-flex-pack: center;
        justify-content: center; }
    .c-slider--endorser .slick-dots li button {
      background-color: #fedf08;
      width: 10px;
      height: 10px; }
    .c-slider--endorser .slick-dots .slick-active button {
      width: 10px;
      height: 10px; }

.pace {
  display: none; }

.c-preloader {
  display: none;
  z-index: 100;
  position: fixed;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
  width: 200%;
  height: 200%;
  background: rgba(255, 255, 255, 0.8); }
  .c-preloader .o-preloader-container, .c-preloader .o-preoader__text {
    z-index: 100;
    width: 200px;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
  .c-preloader .o-preoader__text {
    color: #ffffff;
    top: 70%;
    width: 300px;
    font-size: 18px;
    line-height: 28px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    opacity: 0; }
    @media (min-width: 400px) {
      .c-preloader .o-preoader__text {
        width: 350px; } }
  .c-preloader .img-wrap {
    width: 100%;
    height: auto; }
    .c-preloader .img-wrap img {
      display: block;
      width: 100%;
      height: auto; }
  .c-preloader .o-preloader__logo {
    height: 120px;
    width: auto;
    display: block;
    margin: 0 auto; }
  .c-preloader .o-preloader__loading {
    width: 40px;
    display: block;
    margin: 0 auto; }
  .c-preloader .o-preloader-bar {
    display: block;
    width: 0%;
    height: 3px;
    background-color: #e7c049;
    margin-top: 3px; }
  .c-preloader .o-preloader-percent {
    font-size: 12px;
    color: #000;
    display: block;
    width: 100%;
    text-align: center;
    margin: 3px 0px; }

.c-preloader--active {
  display: block; }

.c-cookie {
  z-index: 11;
  display: none;
  position: fixed;
  width: 100%;
  bottom: 0;
  padding: 20px 30px;
  background-color: rgba(0, 0, 0, 0.9); }
  .c-cookie:before, .c-cookie:after {
    content: "";
    display: table; }
  .c-cookie:after {
    clear: both; }
  @media (min-width: 1000px) {
    .c-cookie {
      max-width: 300px;
      right: 20px;
      bottom: 20px; } }
  .c-cookie h4 {
    font-family: "antonioregular";
    display: block;
    text-align: left;
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 18px; }
  .c-cookie p {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 0;
    font-style: italic; }
  .c-cookie a {
    color: #ffffff;
    font-size: 16px;
    width: auto;
    vertical-align: middle;
    margin-bottom: 15px;
    text-decoration: underline; }
  .c-cookie .o-cookie__link {
    vertical-align: middle;
    margin-right: 15px; }
  .c-cookie .o-buttonWrap {
    max-width: 122px;
    margin: 0 auto;
    margin-top: 15px; }
  .c-cookie .o-button {
    background-color: #ed2603;
    font-size: 16px;
    color: #ffffff;
    padding: 10px 22px;
    vertical-align: middle; }
    .c-cookie .o-button:before {
      content: none; }
  .c-cookie .o-cookie__content {
    display: block;
    margin: 0 auto;
    max-width: 700px; }
    .c-cookie .o-cookie__content:before, .c-cookie .o-cookie__content:after {
      content: "";
      display: table; }
    .c-cookie .o-cookie__content:after {
      clear: both; }
    @media (min-width: 1000px) {
      .c-cookie .o-cookie__content {
        max-width: 1000px; } }
  .c-cookie .o-cookie__leftWrap {
    display: block;
    margin-bottom: 15px; }
    @media (min-width: 1000px) {
      .c-cookie .o-cookie__leftWrap {
        display: inline-block;
        width: 100%;
        vertical-align: middle; } }
  .c-cookie .o-cookie__rightWrap {
    display: block;
    text-align: center; }
    @media (min-width: 1000px) {
      .c-cookie .o-cookie__rightWrap {
        display: inline-block;
        width: 100%;
        verical-align: middle; } }
  .c-cookie .o-cookie__close {
    display: block;
    width: 20px;
    height: 20px;
    background-color: transparent;
    position: relative;
    position: absolute;
    right: 20px;
    top: 20px; }
    .c-cookie .o-cookie__close:before {
      content: '';
      width: 20px;
      height: 20px;
      position: absolute;
      background-image: url("../images/i-close--white.svg");
      background-repeat: no-repeat;
      background-size: contain; }
    .c-cookie .o-cookie__close:hover {
      cursor: pointer; }

.c-error {
  display: block;
  width: 100%;
  color: #ed2603;
  font-size: 12px;
  margin-bottom: 5px;
  text-align: center; }
  .c-error:last-child {
    margin-bottom: 0; }

.c-error__oWrap {
  display: block;
  width: 100%;
  margin-top: 30px; }

.c-policy {
  display: block;
  width: 100%;
  min-height: 100vh; }
  .c-policy .o-mainWrap {
    padding: 50px 20px; }
    @media (min-width: 1000px) {
      .c-policy .o-mainWrap {
        padding: 70px 20px; } }
  .c-policy .o-h1__oWrap {
    margin-bottom: 15px; }
    @media (min-width: 1000px) {
      .c-policy .o-h1__oWrap {
        margin-bottom: 30px; } }
  .c-policy h1 {
    text-align: center;
    margin-bottom: 30px; }
  .c-policy h2 {
    text-align: center; }
  .c-policy span {
    text-decoration: underline; }
  .c-policy .c-policy__wrap {
    display: block;
    width: 100%;
    max-width: 500px;
    margin: 0 auto; }
    @media (min-width: 1000px) {
      .c-policy .c-policy__wrap {
        max-width: 1000px; } }

.c-wysywyg {
  display: block;
  width: 100%; }
  .c-wysywyg h1, .c-wysywyg h2, .c-wysywyg h3, .c-wysywyg h4, .c-wysywyg h5, .c-wysywyg h6 {
    color: #000000;
    margin-bottom: 10px; }
  .c-wysywyg h1 {
    font-family: "Open Sans", sans-serif;
    font-size: 25px;
    color: #000000;
    margin-bottom: 15px; }
  .c-wysywyg img {
    display: block;
    width: 100%;
    margin-bottom: 15px; }
  .c-wysywyg ul, .c-wysywyg ol {
    font-size: 16px;
    display: block;
    width: 100%;
    margin: 0; }
    .c-wysywyg ul li, .c-wysywyg ol li {
      font-size: 16px;
      margin-bottom: 5px; }
  .c-wysywyg ol {
    padding: 5px 0 15px 20px; }
  .c-wysywyg ul {
    padding: 5px 0 15px 0; }
    .c-wysywyg ul li {
      display: block;
      width: 100%;
      padding-left: 20px;
      position: relative; }
      .c-wysywyg ul li:before {
        content: '';
        width: 5px;
        height: 5px;
        background-color: #ed2603;
        border-radius: 100%;
        position: absolute;
        top: 9px;
        left: 0; }
  .c-wysywyg p {
    color: #000000; }
  .c-wysywyg .w-italic {
    font-style: italic;
    padding: 0 20px; }
  .c-wysywyg .w-bold {
    font-weight: bold; }

.c-iframe {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0; }
  .c-iframe iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute; }

/*
* ADDITIONAL COMPONENTS
*/
.c-lang {
  position: relative;
  display: block;
  width: 100%;
  min-width: 90px; }
  .c-lang .c-lang__opt {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: center;
        align-items: center;
    width: 100%; }
    .c-lang .c-lang__opt:hover {
      cursor: pointer; }
    .c-lang .c-lang__opt span {
      font-size: 15px;
      color: #ffffff;
      text-transform: uppercase; }
    .c-lang .c-lang__opt .c-lang__flag {
      width: 24px;
      height: auto;
      margin-right: 5px; }
  .c-lang .c-lang__main {
    position: relative;
    padding-right: 25px; }
    .c-lang .c-lang__main:after {
      content: '';
      width: 20px;
      height: 20px;
      position: absolute;
      background-image: url("../images/i-arrow__down--red.svg");
      background-repeat: no-repeat;
      background-size: contain; }
    .c-lang .c-lang__main:after {
      position: absolute;
      top: 50%;
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
      right: 0; }
    .c-lang .c-lang__main span {
      color: #000000; }
  .c-lang .c-lang__options {
    z-index: 3;
    display: none;
    position: absolute;
    width: 100%;
    padding: 8px 10px;
    background-color: #000000;
    left: -10px; }

.c-banner {
  display: block;
  width: 100%;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto; }
  @media (min-width: 1000px) {
    .c-banner {
      padding: 40px 20px; } }
  .c-banner .slick-dots {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    margin-top: 20px; }
    @media (min-width: 1000px) {
      .c-banner .slick-dots {
        -ms-flex-pack: end;
            justify-content: flex-end; } }
    .c-banner .slick-dots li {
      margin-right: 10px; }
    .c-banner .slick-dots .slick-active button {
      background-color: #ed2603;
      width: 15px;
      height: 15px; }
    .c-banner .slick-dots button {
      background-color: #c1c1c1;
      border: none;
      width: 10px;
      height: 10px;
      color: transparent;
      border-radius: 100%;
      vertical-align: middle; }

.c-banner__oWrap {
  display: block;
  width: 100%; }

.c-banner__iWrap {
  display: block;
  width: 100%; }

.c-banner__wrap {
  display: block;
  width: 100%; }
  @media (min-width: 1000px) {
    .c-banner__wrap {
      display: grid;
      grid-template-columns: 400px 1fr;
      -ms-flex-pack: center;
          justify-content: center;
      -ms-flex-align: center;
          align-items: center;
      grid-gap: 30px; } }

.c-banner__upper {
  display: block;
  width: 100%;
  margin-bottom: 15px; }
  @media (min-width: 1000px) {
    .c-banner__upper {
      margin-bottom: 0; } }
  .c-banner__upper .o-buttonWrap {
    margin-bottom: 15px; }

.c-banner__lower {
  display: block;
  width: 100%; }
  .c-banner__lower .o-imgWrap {
    max-width: 500px;
    margin: 0 auto; }
    @media (min-width: 1000px) {
      .c-banner__lower .o-imgWrap {
        max-width: 100%; } }

.c-banner__main {
  display: block;
  width: 100%; }
  .c-banner__main .c-banner--mobile, .c-banner__main .c-banner--desktop {
    display: block;
    width: 100%; }
    .c-banner__main .c-banner--mobile img, .c-banner__main .c-banner--desktop img {
      display: block;
      width: 100%; }
  @media (min-width: 1000px) {
    .c-banner__main .c-banner--mobile {
      display: none; } }
  .c-banner__main .c-banner--desktop {
    display: none; }
    @media (min-width: 1000px) {
      .c-banner__main .c-banner--desktop {
        display: block; } }

.c-banner__inner {
  position: relative;
  display: block;
  width: 100%;
  min-height: 180px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: grid;
  -ms-flex-align: center;
      align-items: center; }
  @media (min-width: 1000px) {
    .c-banner__inner {
      background-image: none !important; } }
  .c-banner__inner img {
    z-index: 1;
    position: relative;
    display: block;
    width: 100%; }
  .c-banner__inner .c-banner__inner__mobile {
    display: block; }
    @media (min-width: 1000px) {
      .c-banner__inner .c-banner__inner__mobile {
        display: none; } }
  .c-banner__inner .c-banner__inner__desktop {
    display: none; }
    @media (min-width: 1000px) {
      .c-banner__inner .c-banner__inner__desktop {
        display: block; } }
  .c-banner__inner h1 {
    color: #ffffff;
    margin-bottom: 0;
    text-align: center;
    width: 100%;
    padding-right: 20px;
    padding-left: 20px;
    text-transform: uppercase; }
    @media (min-width: 1000px) {
      .c-banner__inner h1 {
        z-index: 2;
        position: absolute;
        top: 50%;
        left: 50%;
        -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
        top: 35%; } }

@media (min-width: 1000px) {
  .c-banner__inner--detail h1 {
    position: relative;
    top: initial;
    left: initial;
    -ms-transform: none;
        transform: none; } }

.c-banner__inner--detail .c-banner__detail {
  display: block;
  width: 100%;
  text-align: center;
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600; }

.c-banner__inner--detail .c-banner__detail__wrap {
  display: block;
  width: 100%; }
  @media (min-width: 1000px) {
    .c-banner__inner--detail .c-banner__detail__wrap {
      z-index: 2;
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
      top: 35%; } }

.c-prevnext {
  display: grid;
  grid-template-columns: minmax(100px, 300px) minmax(100px, 300px);
  -ms-flex-pack: justify;
      justify-content: space-between;
  grid-template-areas: 'prevnext__prev prevnext__next';
  grid-gap: 10px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto; }

.c-prevnext__iWrap {
  display: grid;
  grid-template-rows: auto 1fr; }

.c-prevnext__iWrap--prev {
  grid-area: prevnext__prev; }

.c-prevnext__iWrap--next {
  grid-area: prevnext__next; }

.c-prevnext__btn {
  color: #ed2603;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  font-weight: bold; }

.c-prevnext__btn--prev {
  position: relative;
  padding: 10px 0 10px 20px;
  display: inline-block;
  width: auto;
  justify-self: end; }
  .c-prevnext__btn--prev:before {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    background-image: url("../images/i-arrow__left-double--red.svg");
    background-repeat: no-repeat;
    background-size: contain; }
  .c-prevnext__btn--prev:before {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    left: 0; }

.c-prevnext__btn--next {
  position: relative;
  padding: 10px 20px 10px 0;
  display: inline-block;
  width: auto;
  justify-self: start; }
  .c-prevnext__btn--next:before {
    content: '';
    width: 12px;
    height: 12px;
    position: absolute;
    background-image: url("../images/i-arrow__right-double--red.svg");
    background-repeat: no-repeat;
    background-size: contain; }
  .c-prevnext__btn--next:before {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    right: 0; }

.c-prevnext__infoTitle {
  color: #fedf08;
  font-family: "antonioregular";
  text-transform: uppercase;
  font-size: 16px; }

.c-prevnext__desc {
  color: #ffffff;
  font-size: 12px; }

.c-prevnext__info {
  background-color: #ed2603;
  padding: 12px 10px; }
  @media (min-width: 1000px) {
    .c-prevnext__info {
      padding: 20px; } }

.c-login {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-template-areas: 'loginform'
 'maindivider'
 'registerform';
  grid-gap: 40px;
  padding: 40px 20px;
  background-color: #ffffff;
  max-width: 400px;
  margin: 0 auto; }
  @media (min-width: 1000px) {
    .c-login {
      padding: 60px 20px;
      max-width: 750px;
      grid-template-columns: 1fr 1px 1fr;
      grid-template-areas: 'registerform maindivider loginform';
      grid-gap: 60px; } }
  .c-login h1 {
    color: #000000;
    text-transform: uppercase;
    font-family: "antonioregular";
    font-size: 30px;
    font-weight: bold; }
  .c-login .o-button__wrap {
    margin: 0 auto;
    margin-bottom: 10px; }
    .c-login .o-button__wrap:last-child {
      margin-bottom: 0; }
  .c-login .o-buttonWrap {
    margin-top: 30px;
    width: 100%; }
    .c-login .o-buttonWrap .o-button__solid {
      text-align: center;
      width: 100%; }
  .c-login .o-button__solid {
    display: block;
    margin: 0 auto; }
  .c-login .c-error__oWrap {
    margin-top: 0;
    margin-bottom: 15px; }

.c-login__login {
  grid-area: loginform;
  display: block;
  width: 100%; }

.c-login__register {
  grid-area: registerform;
  display: block;
  width: 100%; }

.c-login__upper, .c-login__lower {
  display: block;
  width: 100%; }

.c-login__form {
  display: block;
  width: 100%;
  margin-bottom: 20px; }

.c-login__close {
  display: block;
  width: 30px;
  height: 30px;
  position: relative;
  position: absolute;
  top: 10px;
  right: 10px; }
  .c-login__close:before {
    content: '';
    width: 30px;
    height: 30px;
    position: absolute;
    background-image: url("../images/i-close__circle--gray.svg");
    background-repeat: no-repeat;
    background-size: contain; }
  .c-login__close:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
  .c-login__close:hover {
    cursor: pointer; }

.c-login__divider__oWrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%;
  overflow: hidden; }

.c-login__divider {
  position: relative;
  color: #8a8a8a;
  font-size: 16px;
  text-transform: uppercase;
  padding: 8px 10px;
  margin: 15px 0; }
  .c-login__divider:before {
    content: '';
    height: 1px;
    width: 500px;
    background-color: #8a8a8a;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    left: -500px; }
  .c-login__divider:after {
    content: '';
    height: 1px;
    width: 500px;
    background-color: #8a8a8a;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    right: -500px; }

.c-login__iWrap {
  display: grid;
  grid-template-columns: 1fr;
  -ms-flex-pack: center;
      justify-content: center;
  grid-gap: 10px; }

.c-login__signup__link {
  color: #8a8a8a;
  text-transform: uppercase;
  font-size: 12px;
  text-align: center; }

.c-login__forgot__link {
  color: #8a8a8a;
  font-size: 10px;
  text-align: center; }

.c-login__main__divider {
  grid-area: maindivider;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #8a8a8a; }
  @media (min-width: 1000px) {
    .c-login__main__divider {
      width: 1px;
      height: 100%; } }

.c-login__form__iWrap {
  display: grid;
  grid-gap: 10px; }

.c-login__forgot {
  display: none;
  display: 100%; }
  .c-login__forgot .c-error__oWrap {
    margin-top: 15px; }

.c-about__section {
  position: relative;
  display: block;
  width: 100%;
  /*background-image: url("../images/bg__rooster--desktop.jpg");*/
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 400px;
  background-position: center;
  padding: 30px 20px;
  /*border-top: 5px solid #ed2603;*/ }
  @media (min-width: 1000px) {
    .c-about__section {
      background: none;
      padding: 0;
      min-height: 400px;
      margin-top: 0; } }
  .c-about__section .c-about__bg__img {
    display: none; }
    @media (min-width: 1000px) {
      .c-about__section .c-about__bg__img {
        z-index: 1;
        position: relative;
        display: block;
        width: 100%; } }

.c-about__section__info {
  display: block;
  width: 100%; }
  @media (min-width: 1000px) {
    .c-about__section__info {
      z-index: 2;
      position: absolute;
      top: 50%;
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
      max-width: 500px;
      right: 20px; } }
  @media (min-width: 1200px) {
    .c-about__section__info {
      right: 5%; } }

/*.c-about__section--main {*/
/*  background-image: url("../images/bg__rooster-main--desktop.png"); }*/
  @media (min-width: 1000px) {
    .c-about__section--main {
      background-image: none;
      border: none; } }

.c-award {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -ms-flex-pack: center;
      justify-content: center;
  min-height: 500px;
  background-image: url("../images/award__bg.jpg");
  background-size: cover;
  background-repeat: no-repeat; }
  @media (min-width: 1000px) {
    .c-award {
      -ms-flex-align: center;
          align-items: center; } }
  .c-award .c-award__iWrap {
    padding: 50px 20px; }
  .c-award h2 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 22px; }
    @media (min-width: 1000px) {
      .c-award h2 {
        font-size: 35px; } }
  .c-award .o-imgWrap {
    max-width: 122px;
    margin: 0 auto; }

.c-tab {
  display: block;
  width: 100%; }

.c-tab__iWrap {
  display: block;
  width: 100%;
  margin-bottom: 30px; }
  @media (min-width: 1000px) {
    .c-tab__iWrap {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-align: center;
          align-items: center;
      -ms-flex-pack: center;
          justify-content: center; } }

.c-tab__h1 {
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px; }
  @media (min-width: 1000px) {
    .c-tab__h1 {
      margin-bottom: 0;
      margin-right: 15px; } }

.c-tab__options {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center; }

.c-tab__option {
  position: relative;
  font-size: 16px;
  padding-right: 15px;
  margin-right: 10px;
  text-decoration: none;
  color: #000000; }
  .c-tab__option:hover, .c-tab__option.active {
    color: #ed2603;
    text-shadow: 0 0 0.65px #ed2603, 0 0 0.65px #ed2603;
    cursor: pointer; }
  .c-tab__option:before {
    content: '/';
    text-shadow: none;
    color: #000000;
    position: absolute;
    right: 0;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%); }
  .c-tab__option:last-child {
    padding-right: 0;
    margin-right: 0; }
    .c-tab__option:last-child:before {
      content: none; }

.c-info {
  display: block;
  width: 100%;
  padding: 40px 20px;
  max-width: 1200px;
  margin: 0 auto; }
  @media (min-width: 1000px) {
    .c-info {
      padding: 50px 20px; } }
  .c-info .o-h1__oWrap {
    margin-bottom: 20px; }

.c-info__oWrap {
  display: block;
  width: 100%; }

.c-info__cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 350px));
  -ms-flex-pack: center;
      justify-content: center;
  grid-gap: 30px; }

.c-info__card {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr;
  -ms-flex-align: end;
      align-items: end;
  padding: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  min-height: 450px; }
  .c-info__card:hover {
    cursor: pointer; }

.c-info__detail__iWrap {
  display: block;
  width: 100%;
  margin-bottom: 8px; }
  .c-info__detail__iWrap span {
    color: #ffffff;
    font-size: 14px; }

.c-info__detail {
  display: inline-block;
  width: 100%;
  background-color: #ed2603; }

.c-info__iWrap {
  display: block;
  width: 100%;
  padding: 15px 15px 0 15px; }

.c-info__title {
  color: #fedf08;
  font-family: "antoniobold";
  font-size: 16px;
  line-height: 20px;
  text-transform: uppercase;
  padding-top: 3px; }

.c-info__author {
  position: relative;
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #ffffff;
  font-size: 14px; }

.c-info__date {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  font-weight: 100;
  color: #ffffff;
  font-size: 14px; }

.c-info__desc {
  color: #ffffff;
  font-family: "Open Sans", sans-serif;
  font-size: 12px; }

.c-info__more {
  color: #fedf08;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  right: 50px;
  bottom: 7px; }

.c-info__play__wrap {
  display: none;
  z-index: 2;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; }

.c-info__play {
  display: none;
  z-index: 2;
  width: 60px;
  height: 60px;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .c-info__play:before {
    content: '';
    width: 60px;
    height: 60px;
    position: absolute;
    background-image: url("../images/i-play.png");
    background-repeat: no-repeat;
    background-size: contain; }

.c-info__card--video .c-info__play__wrap {
  display: block; }

.c-info__card--video .c-info__play {
  display: block; }

.c-info__card--video .c-info__iWrap {
  padding: 15px; }

.c-info__card--video .c-info__detail__iWrap {
  display: none; }

.c-info__card--video .c-info__desc {
  display: none; }

.c-info__card--video .o-button__link {
  display: none; }

.c-video {
  display: block;
  width: 100%; }
  .c-video .c-info {
    padding: 0; }

.c-video__player {
  position: relative;
  /* display: flex; */
  width: 100%;
  height: 100%;
  /* justify-content: center;
  align-items: center;
  flex-direction: column; */
}

.c-popup--video, .c-popupWrap {
  height: 100%;
}



  .c-video__player video {
    display: block;
    width: 100%;
    width: 100% !important;
    height: auto !important;
    outline: none; }

.responsive-iframe {
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/*
* FULLSCREEN HIDE CPNTROLS
*/
.c-video__icon {
  display: none;
  z-index: 2;
  position: absolute;
  width: 100px;
  height: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .c-video__icon:before {
    content: '';
    position: absolute;
    background-image: url("../images/i-play.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
  .c-video__icon:hover {
    cursor: pointer; }

.c-video__fullscreen {
  display: none;
  z-index: 2;
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: 10px;
  right: 10px; }
  @media (min-width: 1000px) {
    .c-video__fullscreen {
      width: 25px;
      height: 25px;
      bottom: 15px;
      right: 15px; } }
  .c-video__fullscreen:before {
    content: '';
    position: absolute;
    background-image: url("../images/i-fullscreen.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
  .c-video__fullscreen:hover {
    cursor: pointer; }

.c-video__wrap {
  position: relative;
  display: block;
  width: 100%; }
  .c-video__wrap:hover {
    cursor: pointer; }

.c-video__wrap--playing .c-video__icon:before {
  content: none; }

.c-page {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  padding: 20px 45px;
  max-width: 500px;
  margin: 0 auto;
  margin-top: 50px; }
  @media (min-width: 500px) {
    .c-page {
      padding: 20px 60px; } }
  .c-page .c-page__prev {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    left: 0; }
  .c-page .c-page__next {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    right: 0; }

.c-page__prev {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #ed2603;
  font-size: 11px;
  padding-left: 12px;
  position: relative; }
  .c-page__prev:before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    background-image: url("../images/i-arrow__left-double--red.svg");
    background-repeat: no-repeat;
    background-size: contain; }
  @media (min-width: 500px) {
    .c-page__prev {
      padding-left: 20px;
      font-size: 16px; } }
  .c-page__prev:before {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    left: 0; }

.c-page__next {
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  color: #ed2603;
  font-size: 11px;
  padding-right: 12px;
  position: relative; }
  .c-page__next:before {
    content: '';
    width: 10px;
    height: 10px;
    position: absolute;
    background-image: url("../images/i-arrow__right-double--red.svg");
    background-repeat: no-repeat;
    background-size: contain; }
  @media (min-width: 500px) {
    .c-page__next {
      padding-right: 20px;
      font-size: 16px; } }
  .c-page__next:before {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    right: 0; }

.c-page__link {
  display: inline-block;
  font-family: "Open Sans", sans-serif;
  color: #000000;
  background-color: transparent;
  font-size: 14px;
  text-align: center;
  vertical-align: middle;
  line-height: 40px;
  width: 40px;
  height: 40px;
  margin-right: 2px; }
  .c-page__link:hover, .c-page__link.active {
    background-color: #ed2603;
    color: #ffffff; }
  .c-page__link:last-child {
    margin-right: 0; }

.c-inner .c-banner__inner h1 {
  color: #fedf08; }

.c-inner .c-prevnext {
  margin-top: 30px; }

.c-inner__content {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto; }

.c-progress {
  z-index: 102;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.8); }

.c-progress__iWrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  height: 100%; }

.c-progress__wrap {
  display: inline-block;
  width: auto; }
  .c-progress__wrap img {
    display: block;
    width: 45px;
    height: 45px; }

/*
*PAGE COMPONENTS
*/
.c-corp {
  display: block;
  width: 100%; }

.c-corp__register {
  display: block;
  width: 100%; }
  @media (min-width: 1000px) {
    .c-corp__register {
      display: grid;
      grid-template-columns: 1fr 45%; } }

.c-corp__register__iWrap {
  display: block;
  width: 100%; }
  @media (min-width: 1000px) {
    .c-corp__register__iWrap {
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; } }

.c-corp__register__col--1 {
  position: relative;
  display: block;
  width: 100%;
  background-color: #ed2603;
  padding: 40px 20px; }
  @media (min-width: 1000px) {
    .c-corp__register__col--1 {
      height: 145px;
      padding: 0;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -ms-flex-pack: end;
          justify-content: flex-end;
      -ms-flex-align: center;
          align-items: center; } }
  @media (min-width: 1000px) {
    .c-corp__register__col--1:before {
      position: absolute;
      top: 0;
      right: -60px;
      content: '';
      width: 0;
      height: 0;
      border-top: 0px solid transparent;
      border-bottom: 145px solid transparent;
      border-left: 60px solid #ed2603; } }
  @media (min-width: 1000px) {
    .c-corp__register__col--1 .c-corp__register__iWrap {
      max-width: 400px; } }
  .c-corp__register__col--1 h2 {
    color: #ffffff;
    margin-bottom: 5px;
    text-align: center; }
    @media (min-width: 1000px) {
      .c-corp__register__col--1 h2 {
        display: inline-block;
        width: auto;
        text-align: left; } }
  .c-corp__register__col--1 p {
    color: #ffffff;
    font-family: "antonioregular";
    text-align: center; }
    @media (min-width: 1000px) {
      .c-corp__register__col--1 p {
        display: inline-block;
        width: auto;
        text-align: left; } }
    .c-corp__register__col--1 p:last-child {
      margin-bottom: 0; }

.c-corp__register__col--2 {
  display: block;
  width: 100%;
  background-color: #fedf08;
  padding: 40px 20px; }
  @media (min-width: 1000px) {
    .c-corp__register__col--2 {
      padding: 0;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      -ms-flex-pack: start;
          justify-content: flex-start;
      -ms-flex-align: center;
          align-items: center; } }
  @media (min-width: 1000px) {
    .c-corp__register__col--2 .c-corp__register__iWrap {
      max-width: 200px; } }
  .c-corp__register__col--2 h2 {
    font-size: 22px;
    margin-bottom: 0;
    text-align: center; }
    @media (min-width: 1000px) {
      .c-corp__register__col--2 h2 {
        text-align: right; } }
  .c-corp__register__col--2 .o-buttonWrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
    width: 100%; }
    @media (min-width: 1000px) {
      .c-corp__register__col--2 .o-buttonWrap {
        -ms-flex-pack: end;
            justify-content: flex-end; } }
    .c-corp__register__col--2 .o-buttonWrap .o-button {
      font-size: 12px;
      padding: 5px 25px 5px 0; }
      .c-corp__register__col--2 .o-buttonWrap .o-button:before {
        width: 12px;
        height: 12px; }

.c-corp__event {
  display: block;
  width: 100%;
  padding: 40px 0; }
  @media (min-width: 1000px) {
    .c-corp__event {
      padding: 50px 0; } }
  .c-corp__event .o-h1__oWrap {
    margin-bottom: 45px; }

.c-product {
  display: block;
  width: 100%; }
  .c-product .o-h1__oWrap {
    margin-bottom: 30px; }

@media (min-width: 1000px) {
  .c-product--corp .o-mainWrap {
    padding: 60px 20px 70px 20px; } }

.c-product__slider__oWrap {
  display: block;
  width: 100%;
  padding: 30px 0 35px 0; }
  .c-product__slider__oWrap .o-h1__oWrap {
    padding: 20px; }
  .c-product__slider__oWrap .o-buttonWrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-pack: center;
        justify-content: center;
    margin-top: 20px; }

.c-product__contents {
  display: block;
  width: 100%; }

.c-product__content {
  display: none; }

.c-product__content--show {
  display: block;
  width: 100%; }

.c-product__cards {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(250px, 350px));
  -ms-flex-pack: center;
      justify-content: center;
  grid-gap: 20px;
  max-width: 1200px;
  margin: 0 auto; }
  @media (min-width: 1000px) {
    .c-product__cards {
      grid-gap: 25px; } }

.c-product__cards--vet .c-product__card {
  display: none; }
  .c-product__cards--vet .c-product__card .o-imgWrap {
    max-width: 200px; }

.c-product__card {
  display: grid;
  width: 100%;
  min-height: 400px;
  grid-template-columns: 1fr;
  -ms-flex-align: end;
      align-items: end;
  background-color: transparent;
  border: 1px solid #cccccc;
  padding: 10px; }
  @media (min-width: 1000px) {
    .c-product__card {
      padding: 15px; } }
  .c-product__card .o-imgWrap {
    max-width: 140px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 20px;
    display: grid;
    -ms-flex-align: center;
        align-items: center; }
  .c-product__card .c-product__link__name {
    display: block;
    width: 100%;
    color: #fedf08;
    font-family: "antonioregular";
    font-size: 16px;
    text-transform: uppercase;
    padding-top: 3px;
    margin-bottom: 5px; }
  .c-product__card span {
    display: block;
    width: 100%;
    color: #fedf08;
    font-size: 9px;
    font-weight: bold; }

.c-product__card__iWrap {
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-rows: 1fr auto; }

.c-product__detail__name {
  font-family: "antoniobold";
  font-size: 30px;
  text-transform: uppercase;
  color: #ed2603;
  margin-bottom: 15px; }

.c-product__detail__info {
  display: block;
  width: 100%; }

.c-product__detail__link {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #000000; }
  .c-product__detail__link a {
    font-weight: bold;
    color: #ed2603; }

.c-product__vet .c-product__cards {
  display: none; }

.c-product__vet .c-product__cards--show {
  display: grid; }

.c-product__vet .c-product__card .o-imgWrap {
  max-width: 200px; }

.c-product__detail {
  display: grid;
  width: 100%;
  grid-template-columns: minmax(200px, 400px);
  -ms-flex-pack: center;
      justify-content: center;
  grid-gap: 30px;
  margin: 0 auto;
  margin-bottom: 30px; }
  @media (min-width: 1000px) {
    .c-product__detail {
      max-width: 1000px;
      grid-template-columns: 200px 1fr;
      -ms-flex-align: start;
          align-items: start;
      grid-gap: 70px; } }
  .c-product__detail .o-imgWrap {
    max-width: 200px;
    justify-self: center; }

.c-product__detail--main {
  padding: 40px 20px; }
  @media (min-width: 1000px) {
    .c-product__detail--main {
      z-index: 2;
      position: absolute;
      left: 50%;
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
      top: 0;
      padding: 60px 20px; } }
  .c-product__detail--main .c-product__detail__name {
    color: #ed2603; }
  .c-product__detail--main .c-wysywyg * {
    color: #ffffff; }
  @media (min-width: 1000px) {
    .c-product__detail--main .c-product__detail__name {
    color: #fedf08; } }

.c-product__inner__content {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 50px; }
  @media (min-width: 1000px) {
    .c-product__inner__content {
      margin-bottom: 60px; } }
  .c-product__inner__content .c-wysywyg {
    margin-bottom: 50px; }

.c-profile {
  display: block;
  width: 100%; }

.c-profile__form__oWrap {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
  opacity: 0.5; }
  @media (min-width: 1000px) {
    .c-profile__form__oWrap {
      padding: 50px 20px; } }

.c-profile__form__oWrap--active {
  opacity: 1; }

.c-profile__form {
  display: grid;
  grid-gap: 20px 40px;
  grid-template-columns: repeat(auto-fill, minmax(100px, 350px));
  -ms-flex-pack: center;
      justify-content: center;
  width: 100%; }
  @media (min-width: 1000px) {
    .c-profile__form {
      grid-gap: 30px 50px; } }

.c-profile__button {
  display: grid;
  width: 100%;
  padding: 0 20px;
  grid-gap: 10px;
  max-width: 200px;
  margin: 0 auto;
  margin-top: 30px; }
  @media (min-width: 500px) {
    .c-profile__button {
      grid-template-columns: 150px 150px;
      -ms-flex-pack: center;
          justify-content: center;
      grid-gap: 40px; } }
  @media (min-width: 1000px) {
    .c-profile__button {
      margin-top: 50px;
      grid-gap: 50px; } }

.c-profile__upload {
  position: relative;
  display: grid;
  width: 100%;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 80px 20px; }
  @media (min-width: 1000px) {
    .c-profile__upload {
      z-index: 2;
      position: absolute;
      top: 50%;
      left: 50%;
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%); } }

.c-profile__upload__circle {
  position: relative;
  border: 1px solid #fedf08;
  padding: 10px;
  border-radius: 100%;
  width: 200px;
  height: 200px; }
  @media (min-width: 1000px) {
    .c-profile__upload__circle {
      width: 220px;
      height: 220px; } }

.c-profile__preview {
  display: block;
  width: 150px;
  height: 150px;
  background-color: #e8e8e8;
  border-radius: 100%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  @media (min-width: 1000px) {
    .c-profile__preview {
      width: 180px;
      height: 180px; } }

.c-profile__default {
  z-index: 1;
  display: block;
  width: 140px;
  height: 140px;
  position: relative;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%); }
  .c-profile__default:before {
    content: '';
    width: 140px;
    height: 140px;
    position: absolute;
    background-image: url("../images/i-user__upload.svg");
    background-repeat: no-repeat;
    background-size: contain; }
  @media (min-width: 1000px) {
    .c-profile__default {
      width: 150px;
      height: 150px; } }
  .c-profile__default:before {
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    bottom: -15px; }
    @media (min-width: 1000px) {
      .c-profile__default:before {
        width: 150px;
        height: 150px; } }

.c-profile__upload__img {
  z-index: 2;
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center; }

.c-profile__upload__input__wrap {
  z-index: 5;
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  top: -50px;
  display: grid;
  grid-template-columns: auto;
  -ms-flex-pack: center;
      justify-content: center;
  grid-gap: 5px; }
  @media (min-width: 1000px) {
    .c-profile__upload__input__wrap {
      grid-template-columns: 90px auto;
      -ms-flex-align: center;
          align-items: center;
      position: absolute;
      top: 50%;
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
      left: -128px; } }
  .c-profile__upload__input__wrap label {
    font-size: 12px;
    color: #fedf08;
    font-weight: 600; }

.c-profile__upload__edit__wrap {
  z-index: 5;
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  bottom: -50px;
  display: grid;
  grid-template-columns: auto;
  -ms-flex-pack: center;
      justify-content: center;
  grid-gap: 5px; }
  @media (min-width: 1000px) {
    .c-profile__upload__edit__wrap {
      grid-template-columns: auto 100px;
      -ms-flex-align: center;
          align-items: center;
      grid-gap: 10px;
      position: absolute;
      top: 50%;
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
      left: initial;
      right: -143px; } }
  .c-profile__upload__edit__wrap label {
    font-size: 12px;
    color: #fedf08;
    font-weight: 600; }

.c-profile__upload__input {
  display: block;
  width: 45px;
  height: 45px;
  background-color: #fedf08;
  border-radius: 100%;
  overflow: hidden;
  justify-self: center;
  position: relative; }
  .c-profile__upload__input:before {
    content: '';
    width: 22px;
    height: 22px;
    position: absolute;
    background-image: url("../images/i-camera.svg");
    background-repeat: no-repeat;
    background-size: contain; }
  .c-profile__upload__input:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
  .c-profile__upload__input input {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0; }
    .c-profile__upload__input input:hover {
      cursor: pointer; }

.c-profile__upload__edit {
  display: block;
  width: 45px;
  height: 45px;
  background-color: #fedf08;
  border-radius: 100%;
  overflow: hidden;
  justify-self: center;
  position: relative; }
  .c-profile__upload__edit:before {
    content: '';
    width: 22px;
    height: 22px;
    position: absolute;
    background-image: url("../images/i-edit.svg");
    background-repeat: no-repeat;
    background-size: contain; }
  .c-profile__upload__edit:before {
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%); }
    .c-profile__upload__edit:before:hover {
      cursor: pointer; }
  .c-profile__upload__edit:hover {
    cursor: pointer; }

.c-event {
  display: block;
  width: 100%; }

.c-event__cards {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 20px;
  max-width: 400px;
  margin: 0 auto; }
  @media (min-width: 700px) {
    .c-event__cards {
      max-width: 500px; } }
  @media (min-width: 1000px) {
    .c-event__cards {
      grid-template-columns: 1fr 1fr;
      max-width: 1000px; } }
  @media (min-width: 1200px) {
    .c-event__cards {
      grid-template-columns: 1fr 1fr 1fr;
      max-width: 1200px; } }

.c-event__card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 100%; }
  @media (min-width: 700px) {
    .c-event__card {
      grid-template-columns: 130px 1fr; } }

.c-event__card__date {
  display: grid;
  grid-template-columns: 1fr;
  -ms-flex-align: center;
      align-items: center;
  width: 100%;
  background-color: #fedf08;
  padding: 15px 20px; }

.c-event__card__date--diffmonth .c-event__card__date__iWrap {
  position: initial;
  padding-top: 0; }

.c-event__card__date--diffmonth .c-event__card__to {
  position: relative;
  padding-top: 18px; }
  .c-event__card__date--diffmonth .c-event__card__to .c-event__card__month {
    display: block; }

.c-event__card__date--diffmonth .c-event__card__from {
  position: relative;
  padding-top: 18px; }
  .c-event__card__date--diffmonth .c-event__card__from .c-event__card__year {
    bottom: -18px;
    left: 27px; }

.c-event__card__date__iWrap {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  grid-gap: 0 20px;
  padding-top: 18px;
  padding-bottom: 18px; }

.c-event__card__date__iWrap--oneday {
  grid-template-columns: 1fr; }
  .c-event__card__date__iWrap--oneday .c-event__card__to {
    display: none; }
  .c-event__card__date__iWrap--oneday .c-event__card__year {
    grid-column: span 1; }

.c-event__card__date__iWrap--diffmonth {
  position: initial;
  padding-top: 0; }
  .c-event__card__date__iWrap--diffmonth .c-event__card__to {
    position: relative;
    padding-top: 18px; }
    .c-event__card__date__iWrap--diffmonth .c-event__card__to .c-event__card__month {
      display: block; }
  .c-event__card__date__iWrap--diffmonth .c-event__card__from {
    position: relative;
    padding-top: 18px; }
    .c-event__card__date__iWrap--diffmonth .c-event__card__from .c-event__card__year {
      bottom: -18px;
      left: 27px; }

.c-event__card__date__iWrap--diffyear {
  padding-bottom: 0; }
  .c-event__card__date__iWrap--diffyear .c-event__card__to .c-event__card__year {
    display: block; }
  .c-event__card__date__iWrap--diffyear .c-event__card__from .c-event__card__year {
    position: relative;
    left: initial;
    bottom: initial; }

.c-event__card__from .c-event__card__year {
  position: absolute;
  bottom: 0;
  left: 0; }

.c-event__card__to {
  -ms-flex-item-align: end;
      align-self: end; }
  .c-event__card__to .c-event__card__month {
    display: none; }
  .c-event__card__to .c-event__card__day {
    position: relative; }
    .c-event__card__to .c-event__card__day:before {
      content: '';
      width: 10px;
      height: 2px;
      background-color: #000000;
      position: absolute;
      position: absolute;
      top: 50%;
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
      left: -15px; }
  .c-event__card__to .c-event__card__year {
    display: none; }

.c-event__card__month, .c-event__card__day, .c-event__card__year {
  display: block;
  width: 100%;
  font-family: "Open Sans", sans-serif;
  color: #000000;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  text-align: center; }

.c-event__card__month {
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  top: 0; }

.c-event__card__day {
  font-family: "antoniobold";
  font-size: 35px;
  padding-top: 8px; }

.c-event__card__year {
  display: block;
  width: 100%; }

.c-event__card__detail {
  background-color: #ed2603;
  display: grid;
  grid-template-columns: 1fr;
  -ms-flex-align: center;
      align-items: center;
  width: 100%; }

.c-event__card__detail__iWrap {
  display: block;
  width: 100%;
  padding: 30px 20px 30px 20px; }

.c-event__card__title {
  display: block;
  width: 100%;
  color: #fedf08;
  font-family: "antonioregular";
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  margin-bottom: 10px; }

.c-event__card__info {
  display: block;
  width: 100%;
  color: #ffffff;
  font-size: 12px; }
  .c-event__card__info p {
    font-size: 12px;
    color: #ffffff; }

.c-event__albums {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(100px, 250px));
  -ms-flex-pack: center;
      justify-content: center;
  grid-gap: 30px 20px;
  max-width: 1200px;
  margin: 0 auto; }

.c-event__album {
  display: grid;
  grid-template-columns: 1fr;
  -ms-flex-align: end;
      align-items: end;
  width: 100%;
  min-height: 350px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center; }

.c-event__album__iWrap {
  display: block;
  width: 100%;
  padding: 10px 15px; }

.c-event__album__info {
  display: block;
  width: 100%;
  position: relative;
  background-color: #ed2603; }

.c-event__album__title {
  color: #fedf08;
  font-family: "antonioregular";
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  padding-top: 5px;
  margin-bottom: 3px; }

.c-event__album__count {
  display: block;
  width: 100%;
  color: #fedf08;
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  font-weight: 600; }

.c-event--gallery__inner .c-banner__inner h1 {
  color: #fedf08; }

.c-event__photo__desc {
  display: block;
  width: 100%;
  max-width: 1060px;
  margin: 0 auto;
  margin-bottom: 50px; }
  .c-event__photo__desc label {
    display: block;
    width: 100%;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 5px; }
  .c-event__photo__desc span {
    font-weight: 600; }

.c-event__photos {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(100px, 250px));
  -ms-flex-pack: center;
      justify-content: center;
  grid-gap: 20px;
  max-width: 1200px;
  margin: 0 auto; }

.c-event__photo {
  display: block;
  width: 250px;
  height: 250px;
  overflow: hidden; }
  .c-event__photo:hover {
    cursor: pointer; }
    @media (min-width: 1000px) {
      .c-event__photo:hover .c-event__photo__thumbnail {
        -ms-transform: scale(1.2);
            transform: scale(1.2); } }

.c-event__photo__thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 300ms ease; }

.c-guide .c-info {
  padding: 0; }

.c-endorser {
  display: block;
  width: 100%; }

.c-endorser__cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, 240px);
  -ms-flex-pack: center;
      justify-content: center;
  grid-gap: 20px;
  max-width: 1200px;
  margin: 0 auto; }
  @media (min-width: 1000px) {
    .c-endorser__cards {
      grid-gap: 30px 20px; } }

.c-endorser__card {
  position: relative;
  display: block;
  width: 240px;
  height: 290px;
  overflow: hidden; }
  .c-endorser__card:hover, .c-endorser__card.active {
    background-image: linear-gradient(to bottom, #c61111, #440505); }
    /* .c-endorser__card:hover .c-endorser__card__img, .c-endorser__card.active .c-endorser__card__img {
      width: 100%;
      height: 100%;
      border-radius: 0;
      background-image: none;
      border: 2px solid transparent; } */

.c-endorser__card__circle {
  position: absolute;
  z-index: 4;
  width: 172px;
  height: 172px;
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  top: 20px;
  border-radius: 100%;
  border: 2px solid #fedf08;
  position: relative;
  top: 20px; }
  .c-endorser__card__circle:before {
    content: '';
    width: 37px;
    height: 37px;
    position: absolute;
    background-image: url("../images/i-plus.svg");
    background-repeat: no-repeat;
    background-size: contain; }
  .c-endorser__card__circle:before {
    background-color: #fedf08;
    background-size: 11px;
    background-position: center;
    bottom: 15px;
    right: 0;
    border-radius: 100%; }

.c-endorser__card__img {
  z-index: 3;
  position: absolute;
  top: 20px;
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
      transform: translateX(-50%);
  border-radius: 100%;
  width: 172px;
  height: 172px;
  overflow: hidden;
  background-image: linear-gradient(to bottom, #c61111, #440505);
  border: 2px solid #fedf08; }
  .c-endorser__card__img img {
    display: block;
    width: 200px;
    position: absolute;
    top: 30px;
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%); }

.c-endorser__profile__detail {
  display: block;
  width: 100%;
  background-color: #000000;
  padding: 30px 20px; }

.c-endorser__card__name {
  display: block;
  width: 100%;
  /* color: #fedf08; */
  font-family: "antoniobold";
  font-size: 15px;
  line-height: 17px;
  text-transform: uppercase;
  padding-top: 5px; }

.c-endorser__card__link {
  display: block;
  width: 100%;
  color: #fedf08;
  font-family: "Open Sans", sans-serif;
  font-size: 10px;
  font-weight: 600; }

.c-endorser__card__oWrap {
  z-index: 5;
  position: absolute;
  bottom: 0;
  display: block;
  width: 100%;
  padding: 10px; }

.c-endorser__card__iWrap {
  display: block;
  width: 100%;
  /* background-color: #ed2603; */
  padding: 10px; }

.c-endorser__profile {
  z-index: 3;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  padding: 30px 20px;
  -ms-flex-pack: center;
      justify-content: center; }
  @media (min-width: 1000px) {
    .c-endorser__profile {
      margin-top: -235px; } }

.c-endorser__profile__img {
  position: relative;
  display: block;
  margin-top: 10px;
  border-radius: 100%;
  width: 200px;
  height: 200px;
  overflow: hidden;
  background-image: linear-gradient(to bottom, #c61111, #440505);
  border: 2px solid #fedf08;
  justify-self: center; }
  @media (min-width: 1000px) {
    .c-endorser__profile__img {
      width: 230px;
      height: 230px; } }
  .c-endorser__profile__img img {
    display: block;
    width: 170px;
    position: absolute;
    top: 20px;
    position: absolute;
    left: 50%;
    -ms-transform: translateX(-50%);
        transform: translateX(-50%); }
    @media (min-width: 1000px) {
      .c-endorser__profile__img img {
        width: 200px; } }

.c-endorser__profile__name {
  display: block;
  width: 100%;
  font-family: "antoniobold";
  padding-top: 5px;
  color: #fedf08;
  font-size: 30px;
  text-align: center;
  text-transform: uppercase; }
  @media (min-width: 1000px) {
    .c-endorser__profile__name {
      font-size: 35px; } }

.c-endorser__profile__position {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  color: #ffffff;
  text-align: center;
  margin-bottom: 5px; }

.c-endorser__profile__info {
  display: block;
  width: 100%;
  color: #ffffff;
  padding: 0 20px;
  margin-bottom: 50px; }
  @media (min-width: 1000px) {
    .c-endorser__profile__info {
      padding: 0;
      max-width: 1000px;
      margin: 0 auto;
      margin-bottom: 50px; } }

.c-endorser__profile__content {
  margin-bottom: 30px; }

.c-endorser__profile__mediaWrap {
  display: block;
  width: 100%; }
  .c-endorser__profile__mediaWrap label {
    display: block;
    width: 100%;
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    color: #000000;
    margin-bottom: 5px; }

.c-endorser__profile__media {
  display: block;
  width: 100%;
  color: #000000;
  font-family: "Open Sans", sans-serif;
  font-weight: 600;
  padding-left: 25px; }
  .c-endorser__profile__media:before {
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    left: 0; }

.c-endorser__profile__media--facebook {
  position: relative; }
  .c-endorser__profile__media--facebook:before {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    background-image: url("../images/i-facebook.svg");
    background-repeat: no-repeat;
    background-size: contain; }

.c-endorser__card__inner__wrap {
  display: block;
  width: 100%;
  padding: 40px 20px; }
  @media (min-width: 1000px) {
    .c-endorser__card__inner__wrap {
      padding: 70px 20px; } }
  .c-endorser__card__inner__wrap h2 {
    color: #ed2603;
    text-align: center;
    margin-bottom: 30px; }

.c-endorser__slider__oWrap {
  display: block;
  width: 100%;
  background-color: #000000;
  padding: 50px 20px; }
  @media (min-width: 1000px) {
    .c-endorser__slider__oWrap {
      padding: 70px 20px 60px 20px; } }
  .c-endorser__slider__oWrap h2 {
    color: #ffffff;
    text-align: center; }
    @media (min-width: 1000px) {
      .c-endorser__slider__oWrap h2 {
        text-align: left; } }

.c-endorser__slider {
  display: block;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto; }

.c-slider__photo {
  display: block;
  width: 170px;
  height: 170px;
  margin: 0 auto;
  overflow: hidden; }

.c-slider__photo__thumbnail {
  display: block;
  width: 170px;
  height: 170px;
  margin: 0 auto;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 300ms ease; }
  .c-slider__photo__thumbnail:hover {
    -ms-transform: scale(1.2);
        transform: scale(1.2);
    cursor: pointer; }

.c-endorser--inner .o-mainWrap {
  padding-left: 0;
  padding-right: 0; }

.stream-header {
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.s-header-c {
  margin: 1rem 0;
}

.c-stream__cards {
  grid-template-columns: repeat(auto-fill, minmax(250px,325px))!important;
  grid-gap: 0.5rem!important;
}

.o-stream-button__link {
  position: relative;
  display: block;
  width: 100%;
  min-height: 50px;
  padding: 10px 12px;
  background-color: #ed2603;
  position: relative; 
  display: flex;
  align-items: center;
}

.o-stream-button__link > div {
  margin: 0!important;
}

.c-stream__card {
  border: none;
  padding: 0rem;
  min-height: auto!important;
  margin-top: 1rem;
  position: relative;
}

.o-streamWrap {
  /* max-width: 300px; */
  /* margin: 0 auto; */
  /* margin-top: 20px; */
  /* margin-bottom: 20px; */
  display: grid;
  position: relative;
  /* -ms-flex-align: center; */
  /* align-items: center; */
}

.o-streamWrap > img {
  min-height: 150px;
}

.stream-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  cursor: pointer;
  max-width: 60px;
}

.c-streams {
  padding: 0;
}

@media (max-width: 575px) {
  .stream-upper {
    padding: 1rem;
  }

  .c-banner__inner > .stream-h1 {
    margin-bottom: 4rem;
  }

  .c-video__player {
    height: 50vh;
  }
}
/* */