/* ---------------------------------------- */
/* -- Basic ------------------------------- */
/* ---------------------------------------- */
::-moz-selection { background: #000; color: #fff; }
::selection { background: #000; color: #fff; }

html {
  background: #eee;
}
body {
  margin: 0;
  background: #fff;
  font-size: 20px;
  font-family: 'Helvetica';
  font-weight: 300;
}
.signet {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  max-height: 45px;
}

.signet img {
  width: 120px;
  height: auto;
}

img {
  width: 100%;
  height: auto;
}
.font-title {
  font-family: 'Baskerville';
  text-align: center;
  font-size: 6.666666667em;
}

/* ---------------------------------------- */
/* -- Index ------------------------------- */
/* ---------------------------------------- */

.index .main {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.index .left,
.index .right {
  height: 50%;
}

.index .left {
  background: #CECECE;
}
.index .right {
  background: #EBEBEB;
}

.index .title {
  font-family: 'Baskerville';
  font-size: 15vw;
  text-decoration: none;
  color: #000;
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s ease-in-out;
}

.index .title:hover {
  margin-top: 15px;
}

.index .center-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* ---------------------------------------- */
/* -- Cookie Box -------------------------- */
/* ---------------------------------------- */

.cookieconsent-com---nb-simple {
  max-width: 100% !important;
}

.cc-nb-main-container {
  background: #fff;
  font-family: 'Helvetica';
  border: 1px solid #000;
}

.cc-nb-buttons-container button,
.cc-cp-foot-save {
  background-color: #8C0014 !important;
}

.cc-nb-buttons-container button.cc-nb-changep {
  background-color: #fff !important;
  border: 1px solid #000;
}

.cookieconsent-com---palette-light .cc-pc-head {
  border-bottom: 1px solid #000 !important;
}

.cookieconsent-com---palette-light .cc-cp-foot {
  border-top-color: #000 !important;
}

.cookieconsent-com---palette-light .cc-cp-body-tabs-item {
    border-right-color: #000 !important;
    border-bottom-color: #000 !important;
}

.cc-cp-body-content-entry {
  border-left: 1px solid #000;
}

.cookieconsent-com---pc-dialog {
  border: 1px solid #000;
  margin: 100px auto;
}

.cc-pc-head-lang-select:focus {
  box-shadow: none !important;
}

/* ---------------------------------------- */
/* -- language changer -------------------- */
/* ---------------------------------------- */

.language-changer {
  position: absolute;
  top: 5em;
  padding-left: 1.833333333em;
  color: #999999;
  z-index: 1;
  font-size: 0.7em;
}

.language-changer a {
  color: #999999;
  text-decoration: none;
  padding: 0 .5em;
}

.language-changer strong {
  font-weight: 800;
} 


/* ---------------------------------------- */
/* -- responsive -------------------------- */
/* ---------------------------------------- */

@media screen and (min-width:768px) {
  .language-changer {
    top: 1.5em;
  }
}

@media screen and (min-width:1280px) {
  body {
    font-size: 30px;
  }
  
  .language-changer {
    font-size: 0.5em;
  }

  .index .main {
    display: flex;
  }

  .index .left,
  .index .right {
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }

  .index .title {
    font-size: 6.666666667em;
    justify-content: flex-start;
    position: absolute;
    width: fit-content;
  }

  .index .left .title {
    right: 11vw;
  }

  .index .right .title {
    left: 11vw;
  }
}

@media screen and (orientation:portrait) and (min-width: 1280px){
  .index .center-logo img {
    width: 150px;
  }
  .index .title {
    font-size: 8vw;
  }
}
@media screen and (orientation:portrait) and (min-width: 1500px){
  .index .center-logo img {
    width: 200px;
  }
}

@media screen and (orientation:landscape) and (max-width: 1920px) {
  .index .title {
    font-size: 10vw;
  }

  .index .center-logo img {
    width: 100px;
  }
}

@media screen and (orientation:landscape) and (min-width: 1024px){
  .index .center-logo img {
    width: 200px;
  }

  .cookieconsent-com---nb-simple {
    max-width: 35% !important;
  }
}


/* ---------------------------------------- */
/* -- Browser Optimazation ---------------- */
/* ---------------------------------------- */

@-moz-document url-prefix() {
  .index .left .title {
    left: 27%;
  }
}