/* @font-face {
  font-family: "Work Sans";
  src: url("GT-Work Sans-Light.woff") format("woff");
} */

* {
  font-family: "Work Sans", sans-serif;
  padding: 0;
  margin: 0;
}

.l-margin {
  width: calc(100vw - 100px);
  margin: 0 auto;
  position: relative;
}

.ghostly {
  /*        opacity: 0;*/
  /*
    animation-name: fadegh;
  animation-duration: 0.5s;
*/
}

@-webkit-keyframes fadegh {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadegh {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: none;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;

  background: transparent;

  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;

  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;

  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;

  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
}

/* Remove excess padding and border in Firefox 4+ */
button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/**********************nav*/
.nav {
  width: calc(100vw - 100px);
  padding: 0 50px;
  /* background-color: #025cbc; */
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 9999;
  overflow: hidden;
  border-bottom: 2px solid #025cbc;
}

.nav__link--logo {
  line-height: 0;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-line-pack: center;
  align-content: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #025cbc;
  text-decoration: none;
}

.nav__logo {
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-duration: 1s;
  -o-transition-duration: 1s;
  transition-duration: 1s;
  font-size: 10px;
  color: #025cbc;
}

.nav__logo:hover {
  -webkit-animation-name: rotate;
  animation-name: rotate;
  -webkit-animation-duration: 1.5s;
  animation-duration: 1.5s;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.nav__links {
  margin-right: 150px;
}

.nav__link {
  margin-left: 40px;
  font-size: 11px;
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: inline-block;
  padding: 5px;
}

.nav__link:hover {
  -webkit-transform: translate(0, -10px);
  -ms-transform: translate(0, -10px);
  transform: translate(0, -10px);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  /*    padding-bottom: 15px;*/
}

.nav__stain {
  position: absolute;
  right: -1px;
  top: -1px;
}

.nav__stain:hover .nav__map {
  -webkit-transform: translate(0, -10px);
  -ms-transform: translate(0, -10px);
  transform: translate(0, -10px);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

.nav__map {
  font-size: 16px;
  color: #fece00;
  font-weight: 700;
  position: relative;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}
.nav__soon {
  font-weight: 300;
  font-size: 11px;
  color: #f52f4b;
  position: relative;
  top: 7px;
  left: 30px;
}

.nav__stain-wrap {
  text-decoration: none;
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
}

.nav__stain-wrap__link {
  text-decoration: none;
}

.footer {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 150px 0;
}

.footer__toptext {
  font-size: 14px;
  color: #025cbc;
  font-weight: 700;
  margin-top: 15px;
}
.footer__bottomtext {
  font-size: 14px;
  color: #025cbc;
  font-weight: 300;
}

.footer__link {
  font-size: 14px;
  color: #025cbc;
  font-weight: 300;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: inline-block;
}

.footer__link:hover {
  -webkit-transform: translate(0, -3px);
  -ms-transform: translate(0, -3px);
  transform: translate(0, -3px);
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
}

/*cookies*/

.cc-theme-edgeless.cc-window {
  right: 15px;
  bottom: 15px;
}

.cc-floating.cc-theme-edgeless .cc-message {
  margin: 5px 15px !important;
}

.cc-message {
  font-family: "" Work Sans "", sans-serif !important;
  color: #000 !important;
  font-size: 12px;
}
.cc-floating .cc-compliance > .cc-btn {
  font-size: 12px;
  border-bottom: none;
}

.cc-link {
  margin-left: 5px;
  font-weight: normal;
}

.cc-theme-edgeless.cc-window {
  border: solid 2px #f52f4b;
}

.cc-deny {
  border: solid 2px #f52f4b !important;
  border-left: none !important;
  border-bottom: none !important;
  color: #f52f4b !important;
}

@media all and (max-width: 550px) {
  .cc-theme-edgeless.cc-window {
    right: 10px;
    bottom: 10px;
  }
  .cc-link {
    margin-left: 0;
    padding: 0 !important;
  }
}

/*end–cookies*/

@media all and (max-width: 1250px) {
  .l-margin {
    width: calc(100vw - 50px);
    margin: 0 25px;
  }
  .nav {
    width: calc(100vw - 50px);
    padding: 0 25px;
  }
  .pos__link {
    padding: 40px 25px;
    position: relative;
    right: 25px;
  }
  .pos__right {
    width: 41.66%;
    margin-left: 8.33%;
  }
}

@media (max-width: 850px) {
  .l-margin {
    width: calc(100vw - 20px);
    margin: 0 10px;
  }
  .nav__links {
    display: none;
  }
  .nav__stain-img {
    height: 70px;
  }
  .nav {
    width: calc(100vw - 20px);
    padding: 0 10px;
    height: 80px;
  }
  .nav__stain-wrap {
    right: 10px;
    -webkit-transform: translate(0%, -50%);
    -ms-transform: translate(0%, -50%);
    transform: translate(0%, -50%);
  }
}
