body {
  margin: 0;
  padding: 0;
  background-color: #000000;
  color: #fff;
  font-family: "Helvetica";
}
h1 {
  font-weight: normal !important;
}

/* cookies */

#cookies-box {
  max-width: 365px;
  padding: 30px;
  background-color: #424242;
  position: fixed;
  z-index: 1000;
  bottom: -20px;
  right: 20px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  font-family: "Helvetica";
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.1, 0.35, 1.18);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.1, 0.35, 1.18);
  transition: all 0.5s cubic-bezier(0.25, 0.1, 0.35, 1.18);
}
#cookies-box.fast {
  opacity: 0.95;
  visibility: visible;
  bottom: 20px;
  pointer-events: initial;
}
#cookies-box.fast:hover {
  opacity: 1;
}
#cookies-box p {
  font-size: 15px;
  color: #f4f4f4;
  line-height: 19px;
  margin: 0 0 25px 0;
  max-width: 300px;
}
#cookies-box a {
  text-decoration: underline;
  color: #f4f4f4;
}
button.accept {
  width: 100%;
  font-size: 18px;
  color: #f4f4f4;
  border: none;
  text-align: left;
  background-color: #242424;
  padding: 20px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Helvetica";
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.1);
  outline: none;
  background-image: url("../cookie.svg");
  background-repeat: no-repeat;
  background-position: 93% 50%;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
button.accept:hover,
button.accept:active {
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
button.accept .ck {
  opacity: 0.66;
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
button.accept img.ck {
  vertical-align: middle;
}
button.accept span {
  display: inline-block;
  vertical-align: middle;
}

button.accept:hover .ck,
button.accept:active .ck {
  opacity: 0.85;
}
button.close-cookie {
  width: 30px;
  height: 30px;
  background-color: transparent;
  padding: 0;
  position: absolute;
  right: -12px;
  top: -12px;
  overflow: visible;
  outline: none;
  border: none;
  cursor: pointer;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.15);
}

@media (max-width: 460px) {
  #cookies-box {
    width: calc(100% - 110px);
    right: 25px;
  }
  button.accept {
    font-size: 16px;
    padding: 15px;
  }
}

@media (max-width: 380px) {
  button.accept {
    background-size: 25px;
  }
}

.load-wrapper {
  width: 100%;
  height: 100%;
  background-color: #f4f4f4;
  position: fixed;
  overflow: hidden;
  z-index: 2000;
  left: 0;
  top: 0;
}

.fill-left {
  position: absolute;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.05);

  -webkit-animation: fill 2s linear;
  -webkit-animation-fill-mode: forwards;
  animation: fill 2s linear;
  animation-fill-mode: forwards;
}

@-webkit-keyframes fill {
  0% {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }
  100% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
}
@keyframes fill {
  0% {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    transform: translateX(0px);
  }

  100% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
}

::-moz-selection {
  background-color: #fe4e5b;
  color: #fff;
}

::selection {
  background-color: #fe4e5b;
  color: #fff;
}

.lhksh {
  margin-top: 30px;
  line-height: 25px;
}
/* .sidebar */

.sidebar {
  width: 25px;
  height: auto;
  position: absolute;
  right: 40px;
  top: 40px;
}

#gr-btn,
#en-btn {
  color: #979797;
  font-size: 16px;
  text-decoration: none;
  cursor: pointer;
}
.active {
  color: #fe4e5b !important;
}

.social {
  padding-top: 0;
  opacity: 1;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.social ul li {
  width: 100%;
  list-style-type: none;
  padding-bottom: 0px;
  padding-right: 10px;
  text-align: center;
  display: inline;
}
.social li img {
  opacity: 0.4;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.social li img:hover {
  opacity: 1;
}

.social-mob {
  display: none;
  width: 90%;
  margin-bottom: 40px;
}
.social-mob ul {
  padding-bottom: 50px;
}
.social-mob ul li {
  list-style-type: none;
  display: inline;
  padding-right: 10px;
}
.social-mob li img {
  opacity: 0.4;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}
.social-mob li img:hover {
  opacity: 1;
}
.hma {
  display: none !important;
}
.lng {
  font-family: "Helvetica";
}
.linkedin,
.linkedin img {
  width: 20px;
  height: auto;
}
.linkedin img {
  opacity: 0;
}

@media only screen and (max-width: 768px) {
  .social-thnx {
    width: 100%;
    right: auto;
    bottom: 20px;
    top: auto;
    margin-top: 0;
  }
  .social-thnx ul li {
    display: inline;
    padding-right: 10px;
  }
  .social-thnx img {
    margin-top: 0;
  }
}
@media only screen and (max-width: 570px) {
  .social,
  .sidebar {
    opacity: 0 !important;
    display: none;
  }
  .social-mob {
    display: block;
  }
  .lng {
    float: right;
    text-align: right;
    margin-top: 3px;
  }
  .lng-mob {
    display: block;
  }
}

.tx {
  position: absolute;
  z-index: 100;
  font-size: 30px;
  color: #fff;
  top: 40px;
  left: 40px;
  font-family: "Helvetica";
}

#logo {
  float: left;
  margin: 30px 0 30px 30px;
  font-size: 40px;
  color: #fff;
  width: 190px;
  text-align: left;
}

@media only screen and (max-width: 500px) {
  #logo {
    padding: 30px 0 30px 15px;
  }
}

.wrapper {
  width: 100%;
  max-width: 1100px;
  height: 100vh;
  margin-left: 150px;
  margin-top: 200px;
  padding: 0;
}

.section.jopen {
  margin-top: 128px;
}

.section h1 {
  margin: 0;
  margin-bottom: 64px;
  font-family: "Helvetica";
  font-weight: 400;
  font-size: 56px;
  line-height: 64px;
  text-decoration-line: underline;
  color: #ffffff;
}

.section {
  width: 100%;
  float: left;
}

.intro {
  max-width: 800px;
  font-size: 20px;
  color: #fff;
  line-height: 30px;
  padding-right: 30px;
  font-family: "Helvetica";
}

.jopen ul {
  list-style-type: none;
  padding: 0;
  width: 100%;
  margin: 0;
}
.jopen ul li {
  display: inline;
  background-color: #fff;
  width: 180px;
  height: 180px;
  margin-top: 20px;
  display: table;
  /* padding-top: 70px; */
  float: left;
  position: relative;
  margin-right: 20px;
  cursor: pointer;
  -webkit-box-shadow: -7px 7px 7px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -7px 7px 7px 0px rgba(0, 0, 0, 0.1);
  box-shadow: -7px 7px 7px 0px rgba(0, 0, 0, 0.1);
  -webkit-transition: all 0.15s ease;
  transition: all 0.15s ease;
}

.shadow {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  box-shadow: none;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}
.jopen ul li:hover {
  -webkit-box-shadow: -3px 3px 3px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: -3px 3px 3px 0px rgba(0, 0, 0, 0.1);
  box-shadow: -3px 3px 3px 0px rgba(0, 0, 0, 0.1);
}
.jopen ul li:active {
  box-shadow: none;
}

.job-info ul {
  margin: 0 0 32px 0;
  font-size: var(--textSize);
  line-height: 24px;
}

.job-info ul > li {
  margin-bottom: 10px;
}

.section.job-info {
  margin: 0 0 32px 0;
}

.jo {
  display: flex;
  flex-direction: column;
  background: transparent;
  justify-content: space-between;
  align-items: flex-start;
  height: 100%;
  padding: 16px 24px;
  box-sizing: border-box;
}

.gimme12 {
  margin-top: 128px;
}

.gimme12 p {
  color: #fff;
  font-size: 20px;
  margin-top: 0;
  margin-bottom: 10px;
  font-family: "Helvetica";
}
.photos {
  height: 330px;
  width: 520px;
  float: left;
  margin-right: 20px;
}
.photo {
  background-color: #fff;
  height: 330px;
  width: 520px;
  float: left;
  margin-bottom: 30px;
}
.tag {
  margin-top: 30px;
  color: #a0a0a0;
  font-size: 16px;
}

@media only screen and (max-width: 1130px) {
  .photos {
    margin-top: 20px;
  }
}
@media only screen and (max-width: 940px) {
  .intro {
    width: 80%;
  }
}

.job-wrapper {
  width: 100%;
  max-width: 750px;
  height: 100vh;
  margin-left: 150px;
  padding: 0;
  font-family: "Helvetica";
  --textSize: 20px;
  --textHeight: 24px;
}

.job-wrapper button.submit {
  margin-bottom: 42px;
}

.job-info {
  width: 100%;
}
.sec {
  margin-bottom: 128px;
}
.job-info p {
  font-size: var(--textSize);
  margin-top: 0;
  margin-bottom: 24px;
  line-height: var(--textHeight);
  color: inherit;
}
.back {
  position: absolute;
  left: 56px;
  top: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 56px;
  background: #fff;
  cursor: pointer;
}

.social {
  position: absolute;
  z-index: 100;
  top: 40px;
  right: 100px;
  display: none;
}

button.submit {
  padding: 15px 30px;
  color: #000;
  font-size: 20px;
  outline: none;
  border: none;
  background: #fff;
  cursor: pointer;
  font-family: "Helvetica";
  -webkit-box-shadow: 0px 20px 35px 0px rgba(128, 128, 128, 0.13);
  -moz-box-shadow: 0px 20px 35px 0px rgba(128, 128, 128, 0.13);
  box-shadow: 0px 20px 35px 0px rgba(128, 128, 128, 0.13);
}
.social {
  float: right;
  align-items: center;
}
.social-mob ul {
  padding: 0 0 20px 0;
}

.scl {
  position: relative;
  overflow: hidden;
  opacity: 0.5;
  float: left;
  margin-right: 15px;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}
.scl:hover {
  opacity: 1;
}
.hack {
  position: absolute;
  opacity: 0;
}

.privacy-policy:active,
.privacy-policy:focus,
.privacy-policy:visited,
.privacy-policy {
  color: #fe4e5b;
}

.twitter {
  margin-top: 2px;
}
.facebook,
.twitter {
  margin-right: 17px;
}
.google {
  margin-top: 1px;
}
.google img {
  height: 20px;
  width: auto;
}
.twitter img {
  height: 18px;
  width: auto;
}
.facebook img {
  height: 21px;
  width: auto;
}
.pinterest img {
  height: 21px;
  width: auto;
}

.cp {
  width: 100%;
  max-width: 1100px;
  height: 50px;
  clear: both;
  color: #fff;
  margin-top: 80px !important;
  font-family: "Helvetica";
}

.jopen ul li {
  min-width: 200px;
  min-height: 200px;
  background: transparent;
  border: 2px solid #fff;
}
.jopen ul li span {
  font-weight: 400;
  font-size: 56px;
  line-height: 64px;
  text-decoration-line: underline;
  color: #ffffff;
  text-transform: uppercase;
  font-family: "Helvetica";
}
.jopen .descr {
  font-weight: 400;
  font-size: 20px;
  line-height: 26px;
  color: #ffffff;
  font-family: "Helvetica";
}

@media only screen and (max-width: 1295px) {
  .wrapper,
  .job-wrapper {
    margin-left: 40px;
    max-width: 90%;
    width: 90%;
    --textSize: 17px;
    margin-top: 128px;
  }

  .back {
    position: relative;
    margin-right: 24px;
    top: 24px;
    left: 0;
  }
}
@media only screen and (max-width: 880px) {
  .intro {
    font-size: 16px;
    line-height: 25px;
  }

  .intro span {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .jopen h1,
  .job-info h1,
  .gimme12 h1 {
    font-size: 18px;
    line-height: 22px;
    margin-bottom: 18px;
    letter-spacing: unset;
  }
  .section {
    margin-top: 50px;
  }

  .job-wrapper .sec {
    margin-bottom: 64px;
  }

  .gimme12 p {
    font-size: 17px;
  }
  .job-info {
    width: 90%;
  }
}
@media only screen and (max-width: 625px) {
  .jopen ul li {
    width: 150px;
    height: 150px;
  }

  .jopen ul li span {
    font-size: 45px;
  }

  .back {
    min-height: 40px;
    min-width: 40px;
  }

  .jopen ul li {
    min-width: 120px;
    min-height: 120px;
  }
  .jopen ul li span {
    font-size: 32px;
    line-height: 40px;
  }
  .jopen .descr {
    font-size: 16px;
    line-height: 18px;
  }

  .back {
    position: static;
  }

  .section.jopen {
    margin-top: 48px;
  }
}
@media only screen and (max-width: 570px) {
  .cp {
    margin-bottom: 50px;
  }
}
@media only screen and (max-width: 480px) {
  /* .jopen ul li.child {margin-left:20px;} */
  /* 	.jopen ul li {margin-right:0;} */
  h1,
  .intro span {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .gimme12 p {
    font-size: 16px;
    margin-bottom: 0;
    line-height: 27px;
  }
  .wrapper {
    margin-left: 20px;
  }
  .job-wrapper {
    margin-left: 20px !important;
  }
  .tx,
  .sec {
    margin-bottom: 30px;
    left: 20px;
  }
}
@media only screen and (max-width: 390px) {
  .jopen ul li,
  .job-wrapper .jopen ul li {
    width: 120px;
    height: 120px;
  }
}
@media only screen and (max-width: 322px) {
  .jopen ul li,
  .job-wrapper .jopen ul li {
    width: 109px;
    height: 109px;
  }
}

.disabled {
  cursor: not-allowed;
  /* pointer-events: none; */
  opacity: 0.2;
  filter: grayscale(100%);
}
button[disabled] {
  cursor: not-allowed;
}
.disabled-message {
  color: #fe4e5b;
  padding: 16px 0;
}

.social-mob {
  display: none;
}
