body {
  margin: 0px 0px 0px 0px !important;
  padding: 0px 0px 0px 0px;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #3a3a3a;
  font-size: 16px;
  line-height: 1.2;
  text-align: left;
  -webkit-overflow-scrolling: touch;
  overflow-x: hidden;
}

body.mfp-active {
  overflow: hidden;
}

* {
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

::-moz-selection {
  background-color: #000000;
  color: #ffffff;
}

::selection {
  background-color: #000000;
  color: #ffffff;
}

section,
nav,
header,
footer,
article,
form {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  display: block;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

.clear {
  clear: both;
  font-size: 0;
  line-height: 0;
}

/* HEADER */

.header {
  width: 100%;
  position: fixed;
  z-index: 500;
  background-color: rgba(35, 24, 14, 0.75);
}

.header:after {
  margin: 0;
  padding: 0;
  display: block;
  font-size: 0;
  line-height: 0;
  content: '';
  visibility: hidden;
  clear: both;
}

.header .navigator {
  padding: 0.5rem 0rem;
  display: flex;
  width: min(100%, 1250px);
}

@media (max-width: 1300px) {
  .header .navigator {
    padding: 0.5rem 1rem;
  }
}

.header .logoContent {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.header .buttonContent {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-grow: 1;
  margin-left: 1rem;
}

.header .buttonContent a {
  display: none;
}

@media (min-width: 500px) {
  .header .buttonContent a {
    display: block;
  }
}

@media (min-width: 900px) {
  .header .buttonContent a {
    display: none;
  }
}

@media (min-width: 1110px) {
  .header .buttonContent a {
    display: block;
  }
}

.header .menuContent {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  order: 10;
}

@media (min-width: 900px) {
  .header .menuContent {
    order: initial;
  }
}

.header .socialContent {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 35px;
}

@media (min-width: 900px) {
  .header .socialContent {
    margin-left: 35px;
  }
}

.header .logo {
  font-size: 0;
  line-height: 0;
}

.header .logo img {
  height: 60px;
  filter: brightness(1000%);
}

.header .logo img:hover {
  height: 60px;
  filter: grayscale(0%);
}

.header .social {
  font-size: 0;
  line-height: 0;
  margin-left: 10px;
}

.header .social:first-child {
  margin-left: 0px;
}

.header .social img {
  height: 40px;
  filter: brightness(1000%);
}

.header .social img:hover {
  height: 40px;
  filter: grayscale(0%);
}

.menu {
  top: 0px;
  left: 0px;
  margin: 0px;
  padding: 0px;
  list-style: none;
  z-index: 600;
  position: absolute;
  background-color: #19140f;
  height: 100%;
  min-height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}

@media (min-width: 900px) {
  .menu {
    display: flex;
    height: auto;
    min-height: initial;
    width: auto;
    min-width: initial;
    position: relative;
    background-color: transparent;
  }
}

.menu .menuItem {
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1.2;
  white-space: nowrap;
  position: relative;
  margin: 0px 0px 0px 0px;
}

@media (min-width: 900px) {
  .menu .menuItem {
    font-size: 1.1rem;
    line-height: 1;
    margin: 0px 35px 0px 0px;
  }
}

.menu .menuItem .menuLink {
  color: #ffffff;
  display: inline-block;
}

.menu .menuItem:hover .menuLink {
  color: #e5c392;
  display: inline-block;
}

.menu li.language {
  font-size: 0;
  line-height: 0;
}

.header li.language a,
.header li.language a:hover {
  padding: 5px 0px 5px 0px;
  display: inline-block;
}

.header li.language img {
  width: 20px;
}

.header li.language span {
  display: none;
}

.header .menu-icon {
  cursor: pointer;
  display: inline-block;
  float: right;
  position: relative;
  user-select: none;
  height: 100%;
  z-index: 1000;
}

@media (min-width: 900px) {
  .header .menu-icon {
    display: none;
  }
}

.header .menu-icon .navicon {
  display: block;
  width: 40px;
  height: 3px;
  position: relative;
  transition: all .2s ease-out;
  background: #ffffff;
  top: 50%;
}

.header .menu-icon .navicon:before,
.header .menu-icon .navicon:after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  transition: all .2s ease-out;
  background: #ffffff;
}

.header .menu-icon .navicon:before {
  top: 14px;
}

.header .menu-icon .navicon:after {
  top: -14px;
}

.header .menu-btn {
  display: none;
}

.header .menu-btn:checked ~ .menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

@media (min-width: 900px) {
  .header .menu-btn:checked ~ .menu {
    flex-direction: row;
    justify-content: flex-end;
    gap: 0rem;
  }
}

.header .menu-btn:checked ~ .menu-icon .navicon {
  background: transparent;
}

.header .menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.header .menu-btn:checked ~ .menu-icon .navicon:before,
.header .menu-btn:checked ~ .menu-icon .navicon:after {
  top: 0px;
}

/* SPLASH */

.splashSection {
  width: 100%;
  height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  position: relative;
}

.splash {
  width: 100%;
  height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

.splashImage {
  width: 100%;
  height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

.splashContent {
  width: 100%;
  height: 100vh;
  min-height: calc(var(--vh, 1vh) * 100);
  position: absolute;
  top: 0px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column wrap;
  padding-top: 80px;
  padding-bottom: 0px;
}

@media (max-width: 768px) {
  .splashContent {
    justify-content: flex-end;
    padding-top: 0px;
    padding-bottom: 150px;
  }
}

.splashTextContent {
  width: 65%;
}

@media (max-width: 768px) {
  .splashTextContent {
    width: 80%;
  }
}

.splashText {
  margin: 0;
  padding: 0;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.1;
}

.splashText1 {
  margin: 0px 0px 0px 0px;
  padding: 0;
  font-family: 'Questrial', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #e5c392;
  font-size: 2.8rem;
  line-height: 1.1;
}

.splashText2 {
  margin: 0px 0px 0px 0px;
  padding: 0;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  font-size: 1.5rem;
  line-height: 1.1;
}

.splashText3 {
  margin: 0px 0px 0px 0px;
  padding: 0;
  font-family: 'Questrial', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #ffffff;
  font-size: 2.8rem;
  line-height: 1.1;
}

@media (max-width: 768px) {
  .splashText {
    font-size: 1.1rem;
    line-height: 1.1;
  }

  .splashText1,
  .splashText3 {
    font-size: 1.5rem;
    line-height: 1.1;
  }

  .splashText2 {
    font-size: 1.1rem;
    line-height: 1.2;
  }
}

/* FOOTER */

.footer {
  width: min(100%, 1250px);
  padding: 0px 20px 0px 20px;
}

@media (min-width: 1250px) {
  .footer  {
    padding: 0px 0px 0px 0px;
  }
}

.footer a {
  color: #ffffff;
}

.footer a:hover {
  color: #ff4b4b;
}

.footerMenuSection {
  display: grid;
  justify-items: left;
  grid-template-columns: 40% 30% 30%;
  grid-auto-rows: 1fr;
  grid-gap: 0px;
}

@media (max-width: 1000px) {
  .footerMenuSection {
    display: grid;
    justify-items: left;
    grid-template-columns: 50% 50%;
    grid-auto-rows: auto;
    grid-row-gap: 20px;
  }

  .footerMenuSection .footerColumn:nth-child(1) {
    grid-column: 1 / 3;
  }
}

@media (max-width: 800px) {
  .footerMenuSection {
    display: grid;
    justify-items: left;
    grid-template-columns: 100%;
    grid-auto-rows: auto;
    grid-row-gap: 20px;
  }

  .footerMenuSection .footerColumn:nth-child(1) {
    grid-column: 1;
  }
}

.footerColumn {
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #e5c392;
  font-size: 1.0rem;
  line-height: 1.2;
  text-align: left;
  width: 100%;
}

.footerMenu {
  line-height: 2.5;
}

.footerTitle {
  margin-bottom: 20px;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.2;
  text-align: left;
}

.footerLogo .logo {
  margin-bottom: 20px;
  font-size: 0;
  line-height: 0;
}

.footerLogo .logo img {
  width: 80px;
  filter: brightness(1000%);
}

.footerCardTitle {
  margin-top: 20px;
  margin-bottom: 20px;
  color: #ffffff;
}

.footerCardHolder {
  display: flex;
  justify-items: left;
  grid-gap: 20px;
}

.footerCardImage {
  font-size: 0;
  line-height: 0;
}

.footerCardImage img {
  height: 40px;
}

.footerLine {
  margin: 50px 0px 50px 0px;
  width: 100%;
  height: 1px;
  font-size: 0;
  line-height: 0;
  background-color: #996632;
}

.footerLegal {
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  font-size: 1.0rem;
  line-height: 1.2;
  text-align: left;
}

@media (max-width: 800px) {
  .footerLegal span {
    display: block;
  }
}

.chaincodeContent {
  display: table;
  width: 100%;
  border: 1px solid #2d2d2d;
  overflow-x: auto;
  margin-top: 10px;
}

.chaincodeBody {
  display: table-row-group;
}

.chaincodeRow {
  display: table-row;
}

.chaincodeCell {
  display: table-cell;
  min-width: 80px;
  max-width: 120px;
  padding: 3px 10px 3px 10px;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  font-size: 0.6rem;
  line-height: 1.6;
  text-align: left;
  border: 1px solid #2d2d2d;
}

.chaincodeHeadline {
  font-weight: 700;
  background-color: #2d2d2d;
}

.chaincodeTitle {
  font-weight: 700;
  text-align: left;
}

/* PARTNER LOGO */

.footerPartnerSection {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-flow: row wrap;
}

.footerPartnerContent {
  width: 50%;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-flow: column nowrap;
}

.footerPartnerContent:nth-child(3),
.footerPartnerContent:nth-child(4) {
  margin-top: 50px;
}

@media (min-width: 768px) {
  .footerPartnerContent {
    width: 20%;
  }
  .footerPartnerContent:nth-child(3),
  .footerPartnerContent:nth-child(4) {
    margin-top: 0px;
  }
}

.footerPartnerImage {
  font-size: 0;
  line-height: 0;
}

.footerPartnerImage img {
  width: 60%;
}

.footerContactTitle {
  margin: 20px 0px 0px 0px;
  padding: 0;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1.2;
  text-align: left;
}

/* MAP */

#map {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 440px;
}

#map iframe {
  height: 440px;
}

/* LAYOUT */

.layout {
  padding: 50px 0px 50px 0px;
  width: 100%;
}

.bg1 {
  background-color: #ffffff;
}

.bg2 {
  background-color: #f9f0d3;
}

.bg3 {
  background-color: #19140f;
}

.bg4 {
  background-color: #eae3d9;
}

.bgScroll {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

.bgPattern1 {
  background: linear-gradient(rgba(10, 10, 10, 0.95), rgba(60, 60, 60, 0.95)), url(/images/pattern.svg);
  background-size: auto, 140px 140px;
  background-repeat: repeat;
  background-attachment: fixed;
}

.bgPattern2 {
  background: linear-gradient(rgba(249, 240, 211, 0.95), rgba(249, 240, 211, 0.98)), url(/images/pattern.svg);
  background-size: auto, 140px 140px;
  background-repeat: repeat;
  background-attachment: fixed;
}

/* CONTENT */

.content {
  width: min(100%, 1250px);
  padding: 0px 20px 0px 20px;
}

@media (min-width: 1250px) {
  .content  {
    padding: 0px 0px 0px 0px;
  }
}

.contentColumn {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: 1fr;
  align-items: center;
}

@media (min-width: 768px) {
  .contentColumn {
    grid-template-columns: repeat(2, 1fr);
  }
}

.contentTop {
  align-items: flex-start;
}

@media (max-width: 768px) {
  .contentColumn .contentInfo {
    display: grid;
    order: 1;
  }
}

.contentForm {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: 1fr;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .contentForm {
    grid-gap: 50px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.contentFormSmallInput {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: 100%;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .contentFormSmallInput {
    grid-gap: 0px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.contentFlex {
  display: flex;
  grid-gap: 50px;
  flex-flow: row wrap;
  justify-content: center;
}

.flexColumn1 {
  width: 300px;
}

@media (max-width: 768px) {
  .flexColumn1 {
    width: 100%;
  }
}

.flexColumn2 {
  width: 500px;
}

@media (max-width: 768px) {
  .flexColumn2 {
    width: 100%;
  }
}

.flexImage {
  font-size: 0;
  line-height: 0;
}

.flexImage img {
  padding: 5px 5px 5px 5px;
  border: 3px solid #e5c392;
  width: 100%;
  transition: all 0.1s;
}

.flexImage img:hover {
  padding: 5px 5px 5px 5px;
  border: 3px solid #ffffff;
  width: 100%;
  transition: all 0.1s;
}

.contentImage {
  font-size: 0;
  line-height: 0;
}

.contentImage img {
  width: 100%;
}

.contentImageSlide {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.contentImageAnimation {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  min-height: 500px;
}

@media (max-width: 768px) {
  .contentImageAnimation {
    min-height: 250px;
  }
}

.contentScroll {
  width: min(100%, 1250px);
  padding: 150px 0px 150px 0px;
  display: grid;
  grid-template-columns: 100%;
}

@media (max-width: 1250px) {
  .contentScroll  {
    padding: 70px 20px 70px 20px;
  }
}

.scrollLeft {
  display: flex;
  justify-content: start;
}

.scrollRight {
  display: flex;
  justify-content: end;
}

.contentText {
  margin: 0px 0px 0px 0px;
  padding: 0px 0px 0px 0px;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.contentText a {
  color: #ff4b4b;
}

.contentText a:hover {
  color: #e5c392;
}

.contentText ul {
  margin: 0;
  padding: 0px 0px 0px 20px;
  list-style: square outside;
}

.size1 {
  font-size: 2.0rem;
  line-height: 1.2;
}

.size2 {
  font-size: 1.8rem;
  line-height: 1.2;
}

.size3 {
  font-size: 1.5rem;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .size1 {
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .size2 {
    font-size: 1.3rem;
    line-height: 1.2;
  }

  .size3 {
    font-size: 1.2rem;
    line-height: 1.2;
  }
}

.size4 {
  font-size: 1.2rem;
  line-height: 1.2;
}

.size5 {
  font-size: 1.0rem;
  line-height: 1.2;
}

.size6 {
  font-size: 0.8rem;
  line-height: 1.2;
}

.color1 {
  color: #ffffff;
}

.color2 {
  color: #374047;
}

.color3 {
  color: #e5c392;
}

.color4 {
  color: #666666;
}

.color5 {
  color: #ff4b4b;
}

.left {
  text-align: left;
}

.right {
  text-align: right;
}

.center {
  text-align: center;
}

@media (max-width: 768px) {
  .contentInfo .right {
    text-align: left;
  }
}

.colspan {
  grid-column: 1 / 3;
}

@media (max-width: 768px) {
  .colspan {
    grid-column: 1;
  }
}

.w40 {
  width: 40%;
}

.w60 {
  width: 60%;
}

.w90 {
  width: 90%;
}

@media (max-width: 1250px) {
  .w40,
  .w60,
  .w90  {
    width: 100%;
  }
}

.space10 {
  margin-bottom: 10px;
}

.space20 {
  margin-bottom: 20px;
}

.space30 {
  margin-bottom: 30px;
}

.space50 {
  margin-bottom: 50px;
}

.headerSpace {
  padding-top: 130px;
}

.heightFix1 {
  height: 130px;
}

@media (max-width: 768px) {
  .heightFix1 {
    height: auto;
  }
}

.heightFix2 {
  height: 80px;
}

@media (max-width: 768px) {
  .heightFix2 {
    height: auto;
  }
}

.heightFix3 {
  height: 150px;
}

@media (max-width: 768px) {
  .heightFix2 {
    height: auto;
  }
}

/* ICON */

.contentIcon {
  margin: 0;
  display: grid;
  grid-gap: 50px;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .contentIcon {
    grid-gap: 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.contentIconRow {
  margin: 0;
  display: grid;
  grid-gap: 0px;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: flex-start;
}

@media (max-width: 768px) {
  .contentIconRow {
    grid-gap: 40px;
    grid-template-columns: calc(30% - 20px) calc(70% - 20px);
    grid-template-rows: 1fr;
  }

  .contentIconRow .center {
    text-align: left;
  }

}

@media (max-width: 768px) {
  .blankIcon {
    display: none;
  }
}

.imageIcon {
  font-size: 0;
  line-height: 0;
}

.imageIcon img {
  width: 50%;
}

@media (max-width: 768px) {
  .imageIcon img {
    width: 100%;
  }
}

/* CHECKLIST */

.contentChecklist {
  margin: 0;
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  align-items: flex-start;
}

@media (max-width: 1000px) {
  .contentChecklist {
    grid-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
}

@media (max-width: 768px) {
  .contentChecklist {
    grid-gap: 20px;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
}

.contentChecklistRow {
  margin: 0;
  display: grid;
  grid-gap: 15px;
  grid-template-columns: 18px auto;
  align-items: flex-start;
}

.imageChecklist {
  font-size: 0;
  line-height: 0;
}

.imageChecklist img {
  width: 18px;
}

/* BUTTON */

.buttonHeader {
  margin: 0;
  padding: 15px 40px 15px 40px;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1;
  background-color: #ff4b4b;
  display: inline-block;
}

.buttonHeader:hover {
  background-color: #a63734;
  color: #ffffff;
}

.buttonSplashContent {
  display: grid;
  grid-gap: 50px;
  grid-template-columns: 300px 300px;
  grid-template-rows: 1fr;
  align-items: flex-start;
  justify-content: center;
}

@media (max-width: 768px) {
  .buttonSplashContent {
    grid-gap: 0px;
    grid-template-columns: 300px;
  }
}

.buttonSplash {
  margin: 20px 0px 0px 0px;
  padding: 20px 80px 20px 80px;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333333;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  background-color: #e5c392;
  display: inline-block;
  min-width: 250px;
}

.buttonSplash:hover {
  background-color: #ffffff;
  color: #333333;
}

@media (max-width: 768px) {
  .buttonSplash {
    padding: 15px 40px 15px 40px;
    font-size: 1.5rem;
    line-height: 1;
    min-width: 230px;
  }
}

.buttonInline {
  margin: 20px 0px 0px 0px;
  padding: 15px 60px 15px 60px;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333333 !important;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  background-color: #e5c392;
  display: inline-block;
}

.buttonInline:hover {
  background-color: #ffffff;
  color: #333333 !important;
}

@media (max-width: 768px) {
  .buttonInline {
    padding: 15px 40px 15px 40px;
    font-size: 1.5rem;
    line-height: 1;
    min-width: 230px;
  }
}

.buttonColor1 {
  margin: 0;
  padding: 15px 60px 15px 60px;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333333;
  font-size: 1.0rem;
  line-height: 1;
  text-align: center;
  background-color: #e5c392;
  display: inline-block;
}

.buttonColor1:hover {
  background-color: #ffffff;
  color: #333333;
}

.buttonColor2 {
  margin: 0;
  padding: 15px 60px 15px 60px;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #333333;
  font-size: 1.0rem;
  line-height: 1;
  text-align: center;
  background-color: #e5c392;
  display: inline-block;
}

.buttonColor2:hover {
  background-color: #ffffff;
  color: #333333;
}

.buttonForm {
  margin: 0;
  padding: 15px 60px 15px 60px;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #ffffff !important;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  background-color: #ff4b4b;
  display: inline-block;
}

.buttonForm:hover {
  background-color: #a63734;
  color: #ffffff !important;
}

/* TABLE */

.table {
  display: table;
  width: 100%;
  border: 8px solid #b5ada3;
  overflow-x: auto;
}

@media (max-width: 768px) {
  .table {
    display: table;
    width: 100%;
    border: 4px solid #b5ada3;
    overflow-x: auto;
  }
}

.tableBody {
  display: table-row-group;
}

.tableRow {
  display: table-row;
}

.tableCell {
  display: table-cell;
  min-width: 80px;
  max-width: 120px;
  padding: 3px 10px 3px 10px;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #374047;
  font-size: 1rem;
  line-height: 1.6;
  text-align: center;
  border: 1px solid #b5ada3;
  background-color: #ffffff;
}

@media (max-width: 768px) {
  .tableCell {
    min-width: 50px;
    max-width: 100px;
    padding: 3px 3px 3px 3px;
    font-size: 0.7rem;
    line-height: 1.6;
  }

  .tableRow .tableCell:nth-child(2) {
    max-width: 50px;
  }
}

.tableHeadline {
  font-weight: 700;
  background-color: #f8f6f2;
}

.tableTitle {
  font-weight: 700;
  text-align: left;
  white-space: nowrap;
}

.tableImage {
  font-size: 0;
  line-height: 0;
}

.tableImage img {
  width: 100%;
}

@media (max-width: 768px) {
  .tableImage img {
    width: 80%;
  }
}

.tableSize1 {
  display: none;
}

.tableSize2 {
  display: none;
}

@media (min-width: 768px) {
  .tableSize1 {
    display: none;
  }
  .tableSize2 {
    display: table;
  }
  .tableSize3 {
    display: none;
  }
}

@media (min-width: 1000px) {
  .tableSize1 {
    display: table;
  }
  .tableSize2 {
    display: none;
  }
  .tableSize3 {
    display: none;
  }
}

/* GALLERY SLIDER */

.gallerySlider {
  width: 100%;
  position: relative;
  font-size: 0;
  line-height: 0;
}

.gallerySliderContent {
  width: 100%;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
}

.sliderImage {
  width: 100%;
  height: 200px;
  overflow: hidden;
  font-size: 0;
  line-height: 0;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  cursor: pointer;
}

.galleryLink {
  display: none;
}

/* GALLERY */

.galleryMenu {
  margin: 0px 20px 50px 20px;
  padding: 0;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #3a3a3a;
  font-size: 16px;
  line-height: 1.2;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  grid-gap: 25px;
}

.galleryMenu div {
  display: inline;
  cursor: pointer;
}

.galleryMenu div:hover {
  cursor: pointer;
  color: #e5c392;
}

.gallerySection {
  display: grid;
  justify-content: space-between;
  grid-template-columns: repeat(2, calc(50% - 10px));
  grid-gap: 20px;
}

@media (min-width: 768px) {
  .gallerySection {
    display: grid;
    justify-content: space-between;
    grid-template-columns: repeat(4, calc(25% - 20px));
    grid-gap: 20px;
  }
}

.galleryImage:before {
  content: '';
  display: inline-block;
  padding-bottom: calc(100%/calc(16/9));
}

.galleryImage {
  width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  transition: all .3s;
  box-shadow: inset 0 0 0 3px #e5c392, inset 0 0 0 6px white;
}

.galleryImage:hover {
  transform: scale(1.3);
  box-shadow: inset 0 0 0 3px #19140f, inset 0 0 0 6px white;
  z-index: 1;
}

@media (max-width: 768px) {
  .galleryImage:hover {
    transform: scale(1.0);
    box-shadow: inset 0 0 0 3px #e5c392, inset 0 0 0 6px white;
  }
}

.galleryHide {
  display: none;
}

/* FORM */

.inputText {
  margin: 0;
  padding: 10px 10px 10px 10px;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #374047;
  font-size: 1rem;
  line-height: 1.2;
  text-align: left;
  border: 1px solid #b5ada3;
  background-color: #ffffff;
  width: 100%;
  height: 3rem;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.inputTextarea {
  margin: 0;
  padding: 10px 10px 10px 10px;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #374047;
  font-size: 1rem;
  line-height: 1.2;
  text-align: left;
  border: 1px solid #b5ada3;
  background-color: #ffffff;
  width: 100%;
  height: 8rem;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.inputArrow {
  background: transparent;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23374047' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 10px);
  background-position-y: 50%;
}

.checkboxGroup {
  margin: 0;
  padding: 0;
  display: block;
  font-size: 0;
  line-height: 0;
  float: left;
}

.checkboxGroup:last-child {
  margin-left: 30px;
}

.checkbox {
  display: none;
}

.checkboxText {
  margin: 10px 0px 0px 0px;
  padding: 0;
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #374047;
  font-size: 1rem;
  line-height: 1.2;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .checkboxText  {
    margin: 0px 0px 0px 0px;
  }
}

.checkboxText span {
  margin: 0px 10px 0px 0px;
  padding: 0;
  display: inline-block;
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  color: #555555;
  font-size: 1.5rem;
  line-height: 1;
}

.checkboxText span:before {
  content: '\e835';
}

.checkboxGroup :checked + .checkboxText {
  color: #374047;
}

.checkboxGroup :checked + .checkboxText span:before {
  color: #374047;
  content: '\e834';
}

.inputExtra {
  display: none;
}

.formError {
  display: block;
  color: #ff4b4b;
}