@font-face {
  font-family: Eurostile;
  src: url("../fonts/EurostileLTStd.otf");
}
@font-face {
  font-family: EurostileBold;
  src: url("../fonts/EurostileLTStd-Bold.otf");
}

/* apply a natural box layout model to all elements, but allowing components to change */
html {
  box-sizing: border-box;
  height: 100%;
  font-size: 125%;
  line-height: 100%;
}
*, *:before, *:after {
  box-sizing: inherit;
}

body {
  min-height: 100%;
  color: #262626;
  font-family: Eurostile, sans-serif;
  /*display: flex;
  flex-direction: column;
  justify-content: flex-start;*/
  padding-top: 62px;
}

body.no-scroll {
  overflow: hidden;
}

a {
  text-decoration: underline;
  border: none;
  outline: none;
}

.red {
  color: #be091c;
}

h2,
body.ginop21 h1 {
  font-size: 2.25rem;
  display: inline-block;
  background-color: #be091c;
  color: #fff;
  border-radius: .9rem;
  padding: .6rem .6rem;
  font-family: EurostileBold, sans-serif;
}

h3 {
  font-size: 1.2rem;
}

p {
  letter-spacing: 2px;
  word-spacing: 2px;
  line-height: 1.4rem;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover, a.hover {
  color: #be091c;
}

strong {
  font-family: EurostileBold, sans-serif;
}

.only-mobile {
  display: none;
}

#header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 62px;
  padding: 0 15px 0 0;
  line-height: 58px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  z-index: 10;
}

#header nav {
  flex-grow: 1;
}

#header .logo {
  padding-left: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-100%);
  transition: transform .2s linear;
}

#header .logo.show {
  transform: translateX(0px);
}

#header .logo img {
  height: 30px;
}

#header .logo.in {
  transform: translateX(0);
}

#header #menu {
  height: 100%;
  font-size: .8rem;
  display: flex;
  justify-content: flex-end;
}

#header #menu li {
  position: relative;
}

#header #menu li a {
  font-weight: bold;
  padding: .4em .75em;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: .6em;
  color: #595959;
}

#header #menu li img {
  vertical-align: middle;
}

#header #menu li a:hover,
#header #menu li a.active {
  border-color: #be091c;
  color: #be091c;
}

#header #menu > li:last-child:not(.only-mobile) {
  padding-right: 0;
}

#header #menu li > .submenu {
  display: none;
  position: absolute;
  transform: translateY(-3px) translateX(-50%);
  left: 50%;
  z-index: 1;
}

#header #menu li > .submenu > li {
  line-height: 1rem;
  padding: 10px 20px;
  box-shadow: 2px 2px 2px 0 rgba(0, 0, 0, 0.4);
  background-color: white;
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
  border-bottom: 1px solid #eee;
  text-align: center;
}

#header #menu li > .submenu > li > a {
  padding: 10px 0;
  border: none;
  border-radius: 0;
}

#header #menu li > .submenu > li > a:hover {
  border: none;
  border-radius: 0;
}

#header #menu .career-menu > .submenu > li > a {
  border: 2px solid transparent;
  border-radius: .6em;
  display: block;
  padding: 10px;
}

#header #menu .career-menu > .submenu > li > a:hover {
  border: 2px solid #be091c;
  border-radius: .6em;
}

#header #menu li:hover > .submenu {
  display: block;
}

#header #menu li.language-selector {
  width: 40px;
  text-align: center;
  cursor: pointer;
}

#header #menu li.language-selector .submenu {
  /*left: 0;*/
}

#header #menu li.language-selector .submenu li {
  padding: 10px;
}

#header #menu li.language-selector .submenu li.selected-language {
  font-family: EurostileBold, sans-serif;
}

#header #menu li.language-selector .submenu li.selected-language a {
  color: #be091c;
}

#header.open {
  align-items: start;
  justify-content: space-between;
}

#header nav {

}

#header.open #menu {
  transform: translateY(0);
}

#header.open #menu li > .submenu {
  display: block;
  position: relative;
  bottom: auto;
  z-index: auto;
  max-width: 100%;
  padding-left: 45px;
}

#header.open #menu li > .submenu li {
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  text-align: left;
}

#header #hamburger-menu {
  width: 45px;
  height: 40px;
  position: absolute;
  right: 10px;
  top: 10px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

#header #hamburger-menu .hamburger-menu-item {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #595959;
  border-radius: 2px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

/*body.open-positions #header:not(.open) #hamburger-menu .hamburger-menu-item {
    background: #FFF;
}*/

#header #hamburger-menu .hamburger-menu-item:nth-child(1) {
  top: 0;
}

#header #hamburger-menu .hamburger-menu-item:nth-child(2),
#header #hamburger-menu .hamburger-menu-item:nth-child(3) {
  top: 13px;
}

#header #hamburger-menu .hamburger-menu-item:nth-child(4) {
  top: 26px;
}

#header.open #hamburger-menu {
  padding-top: 10px;
}

#header.open #hamburger-menu .hamburger-menu-item:nth-child(1) {
  top: 13px;
  width: 0;
  left: 50%;
}

#header.open #hamburger-menu .hamburger-menu-item:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#header.open #hamburger-menu .hamburger-menu-item:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#header.open #hamburger-menu .hamburger-menu-item:nth-child(4) {
  top: 13px;
  width: 0;
  left: 50%;
}

#header #progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
}

#header #progress .bar {
  height: 100%;
  background-color: #be091c;
  width: 0;
}

#site {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

#site article {
  position: relative;
}

#site span.anchor {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #be091c;
  color: #fff;
  width: 86px;
  /*height: 91px;*/
  padding: .6rem .6rem;
  font-size: 2.3rem;
  line-height: 2.3rem;
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
  position: absolute;
  bottom: 0;
  right: 0;
}

#site #main {
  background-image: url('../images/main_bg.png');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  min-height: 83vh;
  font-size: 1.6rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 4vh;
  padding-left: 8vw;
}

#site #main .logo {
  width: 29vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

#site #main .logo img {
  width: 100%;
}

#site #main p {
  width: 700px;
  padding-top: 3vh;
  line-height: 1.2em;
}

#site #about {
  min-height: 100vh;
  padding-bottom: 9vh;
}

#site #about h2 {
  margin: 18.5vh 0 0 14.5vw;
}

#site #about h2 + p {
  margin-left: 14.5vw;
  padding-left: 3vw;
  padding-top: 6.4vh;
  width: 630px;
  line-height: 1.25rem;
  color: #262626;
}

#site #about #numbers {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

#site #about #numbers > div {
  width: 110px;
  min-width: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin: 13vh 5vw 0;
}

#site #about #numbers > div img {
  height: 80px;
  width: auto;
}

#site #about #numbers > div .number {
  margin-top: 50px;
  font-size: 2.5rem;
  padding-bottom: 20px;
  border-bottom: 4px solid #262626;
  margin-bottom: 20px;
  width: 100%;
  text-align: center;
}

#site #about .anchor {
  bottom: 9vh;
}

#site #services {
  height: calc(100vh - 62px);
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

#site #services h2 {
  position: absolute;
  top: 10vw;
  right: 15vw;
  z-index: 9;
}

#site #services #mask {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 8;
  background-image: url("../images/services_bg.png");
  background-size: cover;
  background-position: 0 0;
}

#site #services #tabs {
  position: absolute;
  z-index: 9;
  right: 13.5vw;
  top: 50%;
  transform: translateY(-50%);
}

#site #services #tabs .tab {
  margin-top: 10vh;
  color: #585858;
  cursor: pointer;
  text-transform: uppercase;
  line-height: 1.4rem;
}

#site #services #tabs .tab.active {
  color: #000;
  font-weight: bold;
}

#site #services #tabs .tab:first-child {
  margin-top: 0;
}

#site #services .bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-size: contain;
  background-position: 0 0;
}

#site #services .text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  padding-left: 50%;
  z-index: 9;
  transform: translate(0, -50%);
}

#site #services .text > div {
  max-width: 300px;
}

#site #services .text > div span {
  box-shadow: 7px 0 0 #fff, -7px 0 0 #fff;
  background-color: #fff;
  padding: 0.15rem 0;
  line-height: 1.85rem;
  box-decoration-break: clone;
}

#site #services .bg[data-content="1"] {
  background-image: url("../images/bg_services_1.png");
}

#site #services .bg[data-content="2"] {
  background-image: url("../images/bg_services_2.png");
}

#site #services .bg[data-content="3"] {
  background-image: url("../images/bg_services_3.png");
}

#site #services .bg.out {
  transform: translate(-100%, 0);
  z-index: 2;
}
#site #services .text.out {
  transform: translate(-100%, -50%);
}

@media (max-width: 576px) {
  #site #services .text {
    transform: translate(0, 0);
  }

  #site #services .text.out {
    transform: translate(-100%, 0);
  }
}

@media (max-width: 576px) {
  #site #services {
    height: 100vh;
  }

  #site #services #mask {
    background-image: url("../images/mobile/services_bg.png");
  }
}


#site #areas {
  min-height: 100vh;
  padding-bottom: 9vh;
}

#site #areas h2 {
  margin: 6vh 0 0 14.5vw;
}

#site #areas .wrapper {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 71vw;
  margin: 0 auto;
  justify-content: space-around;
}

@media (max-width: 1500px) {
  #site #areas .wrapper {
    width: 85vw;
  }

  #site #services .text {
    padding-left: 45%;
  }
}

#site #areas .wrapper .area {
  width: 25%;
  text-align: center;
  margin-top: 85px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  min-width: 265px;
  overflow: hidden;
  padding: 0 25px 5px;
}

#site #areas .wrapper .area > * {
  transform: translateX(-25vw);
  transition: .5s ease-out;
}

@media (max-width: 576px) {
  #site #areas .wrapper .area > * {
    transform: translateX(0);
  }
}

#site #areas .wrapper .area.in > * {
  transform: translateX(0);
}

#site #areas .wrapper .area img {
  width: 110px;
}

#site #areas .wrapper .area span {
  display: block;
  font-size: 0.8rem;
  color: #595959;
  max-width: 95%;
}

#site #areas .wrapper .area h4 {
  margin: 0;
  padding: 32px 0 18px 0;
  font-size: 1rem;
  max-width: 100%;
  height: 108px;
  display: flex;
  align-items: center;
}

#site #areas .anchor {
  bottom: 9vh;
}

#site #partners {
  min-height: 113vh;
  position: relative;
  background: url("/assets/images/partners_bg.png") no-repeat left top;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

#site #partners h2 {
  position: absolute;
  top: 14vh;
  right: 15vw;
}

#site #partners .wrapper {
  margin-left: 20%;
  position: relative;
  padding-top: 90px;
}

@media (max-width: 1367px) {
  #site #partners .wrapper {
    padding-top: 0;
  }
}

@media (max-width: 991px) {
  #site #partners h2 {
    position: relative;
    top: 10px;
    left: 10px;
  }

  #site #partners .wrapper {
    margin-left: 0;
    width: 100%;
    justify-content: center;
    padding-top: 0;
  }
}

#site #partners .wrapper > div {
  display: flex;
  flex-direction: row;
  position: relative;
  justify-content: center;
  flex-wrap: wrap;
}

#site #partners .wrapper > div > div {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 25%;
  margin: 20px 0;
}

@media (min-width: 577px) and (max-width: 1400px) {
  #site #partners .wrapper > div > div {
    margin: 5px 0;
  }
}

#site #partners .wrapper > div > div:first-child {
  margin-right: 20px;
}

#site #partners .wrapper > div > div img {
  max-width: 80%;
}

#site #clients {
  min-height: 110vh;
  padding-bottom: 9vh;
}

#site #clients .wrapper {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  width: 70vw;
  margin: 0 auto;
}

#site #clients .wrapper .client-wrapper {
  width: 310px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}

#site #clients .wrapper img {
  max-height: 110px;
  max-width: 250px;
  margin: 30px;
}

#site #clients h2 {
  margin: 9vh 0 0 14.5vw;
}

#site #clients .anchor {
  bottom: 9vh;
}

#site #career {
  min-height: 91vh;
  color: #595959;
  background: url("/assets/images/career_bg.png") no-repeat left top;
  background-size: cover;
  padding-bottom: 10vh;
}

#site #career h2 {
  margin: 0 0 0 14.5vw;
}

#site #career .wrapper {
  margin-top: 10vh;
}

@media (max-width: 576px) {
  #site #career .wrapper {
    margin-top: 14vh;
  }
}

#site #career .wrapper > div {
  display: flex;
  justify-content: flex-start;
}

#site #career .wrapper > div > div {
  max-width: 27vw;
  line-height: 1.3em;
}

#site #career .wrapper > div > div:first-child {
  margin-left: 17vw;
}

#site #career .wrapper > div > div:last-child {
  margin-left: 13vw;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

#site #career .wrapper > div > div:last-child > div {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin-top: 20px;
}

#site #career .wrapper > div > div:last-child > div:first-child {
  margin-top: 0;
}

#site #career .wrapper > div > div:last-child > div img {
  max-height: 90px;
  margin-right: 50px;
}

#site #career .wrapper .positions {
  margin-top: 6vh;
  margin-left: 26vw;
  display: inline-block;
  background-color: #fff;
  position: relative;
  box-shadow: #00000069 2px 2px 6px;
  border: 1px solid #fff;
  border-radius: 3px;
  height: 53px;
}

#site #career .wrapper .positions a {
  display: block;
}

#site #career .wrapper .positions:active {
  transform: translateY(4px);
}

#site #career .wrapper .positions span {
  position: relative;
  top: -19px;
  right: -10px;
  color: #be091c;
  font-size: 3rem;
  font-weight: bold;
  text-shadow: #00000069 2px 2px 6px;
}

#site #contact {
  min-height: 40vh;
  color: #595959;
}

#site #contact h2 {
  margin: 4vh 0 0 14.5vw;
}

#site #contact .wrapper {
  padding-left: 20vw;
  padding-top: 8vh;
  display: flex;
  flex-direction: row;
}

#site #contact .wrapper > div > div {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-start;
  margin-top: 15px;
}

#site #contact .wrapper > div > div:first-child {
  margin-top: 0;
}

#site #contact .wrapper > div img {
  width: 50px;
  height: 50px;
}

#site #contact .wrapper > div span {
  width: 12vw;
  margin: 0 7vw 0 1.5vw;
  font-size: 0.8rem;
}

#site #contact .wrapper > div span.hover {
  color: #be091c;
}

#site #contact .wrapper > div:last-child {
  display: flex;
  flex-direction: column;
}

/* CAREER PAGE */

#site #career-main {
  background-image: url(../images/career/career_main_bg.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  min-height: 131vh;
  font-size: 1.6rem;
  padding-bottom: 17vh;
  text-align: center;
}

#site #career-main h2 {
  display: inline-block;
  background-color: #be091c;
  position: relative;
  box-shadow: #00000069 2px 2px 6px;
  border: 1px solid #be091c;
  border-radius: 3px;
  height: 90px;
  margin-top: 40vh;
}

#site #career-main h2 > span {
  position: relative;
  top: -42px;
  right: -30px;
  color: #fff;
  font-size: 5rem;
  font-weight: bold;
  text-shadow: #00000069 2px 2px 6px;
}

@media (max-width: 1400px) {
  #site #career-main h2 {
    height: 75px;
  }

  #site #career-main h2 > span {
    font-size: 4rem;
    top: -35px;
  }
}
@media (max-width: 1199px) {
  #site #career-main h2 {
    height: 60px;
  }

  #site #career-main h2 > span {
    font-size: 3rem;
    top: -30px;
  }

  #site #career-main .wrapper,
  #site #career-positions .wrapper {
    width: auto !important;
  }
}

@media (max-width: 991px) {
  #site #career-main h2 {
    height: 40px;
  }

  #site #career-main h2 > span {
    font-size: 2rem;
    top: -42px;
    right: -20px;
  }
}
@media (max-width: 576px) {
  #site #career-main h2 {
    height: 30px;
    margin-top: 10vh !Important;
  }

  #site #career-main h2 > span {
    font-size: 2rem;
    top: -18px;
    right: -14px;
  }

  #site #career-main .wrapper {
    width: 85vw !important;
    margin: 0 auto;
    padding-right: 0;
    padding-bottom: 0;
    padding-top: 30vh !important;
    padding-left: 0 !important;
  }
}

#site #career-main .wrapper {
  text-align: left;
  padding-top: 60vh;
  padding-left: 17vw;
  font-size: 1rem;
  width: 955px;
  box-sizing: content-box;
}

#site #career-positions h2 {
  margin-left: 14.4vw;
}
@media (max-width: 576px) {
  #site #career-positions .h2wrapper {
    text-align: center;
  }

  #site #career-positions h2 {
    margin: 0 auto;
  }
}

#site #career-positions .wrapper {
  text-align: center;
  width: 1140px;
  margin: 0 auto;
  padding: 9vh 5vw 7.4vh 5vw;
}

#site #career-positions #positions .position {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 425px;
  padding: 100px 0;
}

#site #career-positions #positions .position .row {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: flex-start;
}

#site #career-positions #positions .position > .row {
  width: 72vw;
}

#site #career-positions #positions .position > .row:first-child {
  flex-wrap: wrap;
}

@media (max-width: 1199px) {
  #site #career-positions #positions .position > .row {
    width: 90vw;
  }

  #site #career-positions #positions .position > .row {
    flex-direction: column;
  }

  #site #career-positions #positions .position > .row > div:nth-child(1) {
    order: 1;
  }

  #site #career-positions #positions .position > .row > div:nth-child(2) {
    order: 3;
  }

  #site #career-positions #positions .position > .row > div:nth-child(3) {
    order: 2;
  }

  #site #career-positions #positions .position > .row > div:first-child img,
  #site #career-positions #positions .position > .row > div:first-child img + div {
    margin-left: 0 !Important;
  }

  #site #career-positions #positions .position > .row > div:first-child img + div {
    max-width: 90px !important;
    text-align: center !important;
  }

  #site #services .text {
    padding-left: 35%;
  }
}

@media (max-width: 767px) {
  #site #career-positions #positions .position > .row:first-child > div:nth-child(2) {
    width: auto !important;
  }
}


#site #career-positions #positions .position > .row:not(:first-child) {
  overflow: hidden;
  max-height: 0;
  transition: max-height .5s ease-in;
}

#site #career-positions #positions .position > .row:not(:first-child).open {
  max-height: 3000px;
}

#site #career-positions #positions .position > .row > div:first-child {
  width: 250px;
  flex-shrink: 0;
  text-align: center;
}

#site #career-positions #positions .position > .row > div:first-child img {
  margin-top: -125px;
  margin-left: 30px;
}

#site #career-positions #positions .position > .row > div:first-child img + div {
  padding-top: 25px;
  margin-left: 0;
  max-width: 160px;
  text-align: center;
}

#site #career-positions #positions .position > .row .row {
  padding-top: 40px;
}

#site #career-positions #positions .position > .row .row .title {
  padding-bottom: 25px;
}

#site #career-positions #positions .position > .row:first-child > div:nth-child(2)
  /*#site #career-positions #positions .position > .row .row > div:first-child*/ {
  /*width: 605px;*/
  padding-right: 85px;
}
#site #career-positions #positions .position > .row .row > div:first-child {
  margin-right: 85px;
}
#site #career-positions #positions .position > .row .row > div {
  width: 50%;
}
@media (max-width: 767px) {
  #site #career-positions #positions .position > .row .row {
    flex-direction: column;
    padding-top: 0;
  }

  #site #career-positions #positions .position > .row .row > div {
    width: 100%;
    margin-top: 30px;
  }
}

#site #career-positions #positions .position > .row:first-child > div:not(:first-child) {
  padding-top: 25px;
  color: #595959;
  flex: 1;
}

#site #career-positions #positions .position > .row .row .title {
  font-weight: bold;
  font-size: 1.1rem;
  color: #000;
}

@media (min-width: 1365px) {
  #site #career-positions #positions .position > .row .row .title {
    white-space: nowrap;
  }
}

#site #career-positions #positions .position > .row .row .title + div {
  color: #595959;
  font-size: 0.8rem;
}

#site #career-positions #positions .position.odd {
  background-color: #f2f2f2;
}

#site #career-positions #positions .position div.plus {
  background-color: #be091c;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  width: 50px;
  height: 50px;
  position: relative;
  top: 0;
  left: 0;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, .5);
  cursor: pointer;
  margin-top: 25px;
}

#site #career-positions #positions .position div.plus:after {
  background-color: #fff;
  width: 40px;
  height: 8px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  position: absolute;
  top: 21px;
  left: 5px;
  content: "";
  transition: transform .2s linear;
}
#site #career-positions #positions .position div.plus:before {
  background-color: #fff;
  width: 8px;
  height: 40px;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  position: absolute;
  top: 5px;
  left: 21px;
  content: "";
  transition: transform .2s linear;
}

#site #career-positions #positions .position div.plus.minus:before {
  /*display: none;*/
  transform: rotate(90deg);
}
#site #career-positions #positions .position div.plus.minus:after {

  transform: rotate(180deg);
}

#site #career-positions #positions .position div.apply {
  display: inline-block;
  background-color: #fff;
  position: relative;
  box-shadow: #00000069 2px 2px 6px;
  border: 1px solid #fff;
  border-radius: 3px;
  height: 30px;
  padding: 0 5px;
}

#site #career-positions #positions .position div.apply:active {
  transform: translateY(4px);
}

#site #career-positions #positions .position div.apply span {
  position: relative;
  top: -8px;
  right: -3px;
  color: #be091c;
  font-size: 30px;
}

body.de #site #career-positions #positions .position div.apply span {
  font-size: 26px;
}

@media (max-width: 576px) {
  body.de #site #career-positions #positions .position div.apply span {
    font-size: 22px;
  }

  #site #career-positions #positions .position div.apply {
    height: 22px;
  }
}

#site #career-info {
  padding-bottom: 50px;
}

#site #career-info .wrapper {
  padding-left: 17vw;
  position: relative;
}

#site #career-info .wrapper p[data-text="4"] {
  max-width: 30vw;
}

#site #career-info .wrapper a {
  display: block;
  margin-top: 25px;
  color: #be091c;
}

/* EOF CAREER PAGE */

/* ADATKEZELES */
#site #privacy {
  min-height: calc(100vh - 122px);
}
#site #privacy > div {
  padding: 50px 14vw 0;
}
@media (max-width: 767px) {
  #site #privacy > div {
    padding: 0 7vw;
    margin-top: 60px;
  }
}

#site #privacy > div h1 {
  text-align: center;
  padding-bottom: 50px;
}

#site #privacy > div ul {
  list-style-position: inside;
  margin-left: 20px;
}

/* EOF ADATKEZELES */

/* COURSES PAGE */

body.courses h2 {
  background-color: transparent;
  color: #262626;
  padding: 0;
  z-index: 1;
}

#site #courses-title1 {
  font-family: EurostileBold, sans-serif;
  padding: 0 0.6vw;
  background-color: #262626;
  border: 0 solid transparent;
  border-radius: 8px;
  margin-bottom: 1vw;
  display: inline-block;
  position: absolute;
  top: 65%;
  right: 5%;
  z-index: 10;
}

#site #courses-title1 span {
  position: relative;
  top: -0.1rem;
  font-size: 6rem;
  line-height: 5.5rem;
  color: #fff;
  display: inline;
}

@media (max-width: 1200px) {
  #site #courses-title1 span {
    font-size: 3rem;
    line-height: 2.8rem;
  }
}

@media (max-width: 576px) {
  #site #courses-title1 {
    display: none;
    height: auto;
  }
}


#site #courses-main .splide__slide .splide-title {
  display: none;
  position: absolute;
  top: 10vw;
  left: 64vw;
  max-width: 36vw;
  height: auto;
}

#site #courses-main .splide__slide .splide-title .splide-title-inner {
  position: relative;
  padding: 0 0.6vw;
  background-color: #262626;
  border: 0 solid transparent;
  border-radius: 8px;
  margin-bottom: 1vw;
  display: inline-block;
}

#site #courses-main .splide__slide .splide-title span {
  position: relative;
  top: -0.3rem;
  font-family: EurostileBold, sans-serif;
  font-size: 3rem;
  line-height: 2.2rem;
  color: white;
  display: inline;
}

@media (max-width: 576px) {
  #site #courses-main .splide__slide .splide-title {
    display: none;
    height: 0;
  }
}

#site #courses-info {
  padding: 3vw 10vw 0 10vw;
  position: relative;
}

@media (max-width: 576px) {
  #site #courses-info {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}

#site #courses-title2 {
  background-color: transparent;
  color: #262626;
  font-size: 3rem;
  font-family: EurostileBold, sans-serif;
  padding-top: 0;
}

@media (max-width: 576px) {
  #site #courses-title2 {
    display: block;
    height: auto;
    text-align: center;
    font-size: 2.3rem;
    line-height: 2.5rem;
    background-color: #f2f2f2;
    padding-top: 8vw;
  }
}

#site #courses-info #courses-tabs {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 6vw 2vw 0 2vw;
  overflow: hidden;
}

#site #courses-info #courses-tabs .courses-tab-link {
  text-align: center;
  min-width: 25vw;
}

#site #courses-info #courses-tabs .courses-tab-link:nth-child(1),
#site #courses-info #courses-tabs .courses-tab-link:nth-child(2) {
  border-right: 1px #262626 solid;
}

#site #courses-info #courses-tabs .courses-tab-link img,
#site #courses-info #courses-tabs .courses-tab-link .tab-title {
  cursor: pointer;
}

#site #courses-info #courses-tabs .courses-tab-link .tab-img-container {
  width: 100%;
  height: 17vw;
  margin-bottom: 1vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#site #courses-info #courses-tabs .courses-tab-link img {
  width: 17vw;
  transition: none;
}

#site #courses-info #courses-tabs .courses-tab-link.inactive img {
  width: 13vw;
  height: 13vw;
  transition: transform .2s;
}

#site #courses-info #courses-tabs .courses-tab-link.inactive img:hover {
  transform: scale(1.3);
}

#site #courses-info #courses-tabs .courses-tab-link .tab-title {
  font-size: 1.3rem;
  line-height: 1.5rem;
  font-family: EurostileBold, sans-serif;
  height: auto;
  display: block;
}

#site #courses-info #courses-tab-title {
  display: none;
  height: 0;
  font-size: 1.5rem;
  line-height: 1.8rem;
  font-family: EurostileBold, sans-serif;
}

@media (max-width: 576px) {
  #site #courses-info #courses-tabs {
    padding-left: 0;
    padding-right: 0;
    background-color: #f2f2f2;
    justify-content: space-around;
  }

  #site #courses-info #courses-tabs .courses-tab-link {
    padding-bottom: 3vw;
    border-right: none !important;
    border-bottom: 3vw solid #262626;
    width: 33%;
  }

  #site #courses-info #courses-tabs .courses-tab-link.inactive {
    border-bottom: none;
  }

  #site #courses-info #courses-tab-title {
    display: block;
    height: auto;
    margin-top: 5vw;
    padding-left: 5vw;
  }

  #site #courses-info #courses-tabs .courses-tab-link .tab-img-container {
    height: 23vw;
  }

  #site #courses-info #courses-tabs .courses-tab-link.inactive img,
  #site #courses-info #courses-tabs .courses-tab-link img {
    width: 23vw;
    height: 23vw;
  }

  #site #courses-info #courses-tabs .courses-tab-link.inactive img {
    transition: none;
  }

  #site #courses-info #courses-tabs .courses-tab-link.inactive img:hover {
    transform: none;
  }

  #site #courses-info #courses-tabs .courses-tab-link .tab-title {
    display: none;
    height: 0;
  }
}

#site #courses-info #courses-tab-contents {
  margin-top: 10vw;
}

#site #courses-info #courses-tab-contents .courses-tab-content {
  display: none;
}

#site #courses-info #courses-tab-contents .courses-tab-content:first-child {
  display: block;
}

#site #courses-info #courses-tab-contents .courses-tab-content .video {
  position: relative;
}

#site #courses-info #courses-tab-contents .courses-tab-content .video .video-bg {
  position: absolute;
  width: 90%;
  height: 100%;
  top: -8%;
  background-color: #f2f2f2;
}

#site #courses-info #courses-tab-contents .courses-tab-content .video-inner {
  position: relative;
  max-width: 90%;
  margin-left: 5%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
#site #courses-info #courses-tab-contents .courses-tab-content .video-inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#site #courses-info #courses-tab-contents .courses-tab-content .title {
  font-size: 2rem;
  font-family: EurostileBold, sans-serif;
}

#site #courses-info #courses-tab-contents .courses-tab-content .courses-tab-content-item {
  margin-top: 8vw;
}

#site #courses-info #courses-tab-contents .courses-tab-content .courses-tab-content-content {
  margin-top: 5vw;
}

#site #courses-info #courses-tab-contents .courses-tab-content .img-list {
  list-style: none;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

#site #courses-info #courses-tab-contents .courses-tab-content .img-list-item {
  text-align: center;
}

#site #courses-info #courses-tab-contents .courses-tab-content .img-list-item div {
  margin-top: 1vw;
  font-family: EurostileBold, sans-serif;
}

#site #courses-info #courses-tab-contents .courses-tab-content .give {
  position: relative;
}

#site #courses-info #courses-tab-contents .courses-tab-content .give .give-bg {
  position: absolute;
  width: 95%;
  height: 100%;
  top: 4vw;
  left: -10vw;
  background-color: #f2f2f2;
}

#site #courses-info #courses-tab-contents .courses-tab-content .give .give-list {
  column-count: 2;
  padding-left: 11vw;
  position: relative;
}

#site #courses-info #courses-tab-contents .courses-tab-content .give .give-item {
  padding-bottom: 2vw;
  font-family: EurostileBold, sans-serif;
}

#site #courses-info #courses-tab-contents .courses-tab-content .mean {
  position: relative;
  margin-bottom: 4vw;
}

#site #courses-info #courses-tab-contents .courses-tab-content .mean .title {
  position: relative;
  display: block;
}

#site #courses-info #courses-tab-contents .courses-tab-content .mean .mean-bg {
  position: absolute;
  width: 95%;
  height: 70%;
  top: 8vw;
  left: -10vw;
  background-color: #f2f2f2;
}

#site #courses-info #courses-tab-contents .courses-tab-content .mean .mean-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  padding-left: 11vw;
}

#site #courses-info #courses-tab-contents .courses-tab-content .mean .mean-list {
  height: auto;
}

#site #courses-info #courses-tab-contents .courses-tab-content .mean .mean-item {
  margin-top: 1vw;
  font-family: EurostileBold, sans-serif;
}

#site #courses-info #courses-tab-contents .courses-tab-content .mean .mean-content .item2 {
  height: auto;
  font-family: EurostileBold, sans-serif;
  padding-top: 3.3vw;
  font-size: 1.3rem;
}

@media (max-width: 576px) {
  #site #courses-info #courses-tab-contents .courses-tab-content .video-bg {
    display: none;
  }

  #site #courses-info #courses-tab-contents .courses-tab-content .video-inner {
    max-width: 100%;
    margin-left: 0;
  }

  #site #courses-info #courses-tab-contents .courses-tab-content .title {
    font-size: 1.8rem;
    font-family: EurostileBold, sans-serif;
    display: block;
  }

  #site #courses-info #courses-tab-contents .courses-tab-content .img-list {
    flex-direction: column;
    justify-content: space-around;
  }

  #site #courses-info #courses-tab-contents .courses-tab-content .img-list-item {
    padding-bottom: 12vw;
  }

  #site #courses-info #courses-tab-contents .courses-tab-content .img-list-item:last-child {
    padding-bottom: 3vw;
  }

  #site #courses-info #courses-tab-contents .courses-tab-content .img-list-item img {
    width: 42vw;
    height: 42vw;
    padding-bottom: 0;
  }

  #site #courses-info #courses-tab-contents .courses-tab-content .give,
  #site #courses-info #courses-tab-contents .courses-tab-content .mean {
    background-color: #f2f2f2;
    padding-top: 5vw;
    padding-bottom: 5vw;
  }

  #site #courses-info #courses-tab-contents .courses-tab-content .give .give-bg,
  #site #courses-info #courses-tab-contents .courses-tab-content .mean .mean-bg {
    display: none;
  }

  #site #courses-info #courses-tab-contents .courses-tab-content .give .give-list {
    column-count: 1;
    padding-left: 25vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  #site #courses-info #courses-tab-contents .courses-tab-content .give .give-list .give-item,
  #site #courses-info #courses-tab-contents .courses-tab-content .mean .mean-list .mean-item {
    width: 56vw;
    padding-bottom: 2vw;
  }

  #site #courses-info #courses-tab-contents .courses-tab-content .mean .mean-content {
    flex-direction: column;
    padding-left: 0;
  }

  #site #courses-info #courses-tab-contents .courses-tab-content .mean .mean-list {
    padding-left: 25vw;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  #site #courses-info #courses-tab-contents .courses-tab-content .mean .mean-content .item2 {
    padding-left: 10vw;
    padding-right: 10vw;
  }

}

#site #courses-apply {
  padding: 3vw 10vw;
}

#site #courses-apply #courses-form .form-wrapper {
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 37% 63%;
  padding: 3vw 9vw 0 9vw;
}

#site #courses-apply #courses-form .form-column:first-child {
  grid-column: 2;
  grid-row: 1;
}

#site #courses-apply #courses-form .form-column:nth-child(2) {
  grid-column: 1;
  grid-row: 1;
}

#site #courses-apply #courses-form .form-column:nth-child(3) {
  grid-column: 2;
  grid-row: 2;
}

#site #courses-apply #courses-form .form-column:nth-child(3) .form-item {
  max-width: 65%;
}

#site #courses-apply .form-item {
  padding-bottom: 1vw;
}

#site #courses-apply .form-column:first-child .form-item {
  display: flex;
}

#site #courses-apply #courses-form .form-item input[type=text],
#site #courses-apply #courses-form .form-item input[type=email],
#site #courses-apply #courses-form .form-item input[type=tel] {
  display: block;
  border: 0 transparent solid;
  border-radius: 10px;
  margin: 5px 0;
  background-color: #f2f2f2;
  font-size: 100%;
  padding: 0 10px;
  line-height: 150%;
}

#site #courses-apply .form-column:first-child .form-item label {
  padding-left: 10px;
}

#site #courses-apply #courses-form .form-item input[type=radio] {
  transform: scale(1.5);
}

#site #courses-apply #courses-form .form-submit {
  text-align: center;
}

#site #courses-apply #courses-form .form-submit input[type=submit] {
  border: 3px solid #be091c;
  border-radius: 10px;
  background-color: transparent;
  color: #be091c;
  font-family: EurostileBold, sans-serif;
  font-size: 2.25rem;
  line-height: 2.5rem;
  padding: 7px 3vw 10px;
  cursor: pointer;
}

#site #courses-apply #courses-form .form-submit input[type=submit]:hover {
  background-color: #be091c;
  color: white;
}

@media (max-width: 1600px) {
  #site #courses-apply #courses-form .form-wrapper {
    padding: 3vw 2vw 0 2vw;
  }
}

@media (max-width: 1280px) {
  #site #courses-apply #courses-form .form-wrapper {
    padding: 3vw 0 0 0;
  }
}

@media (max-width: 1100px) {
  #site #courses-apply #courses-form .form-wrapper {
    grid-template-columns: 60% 40%
  }
}

@media (max-width: 960px) {

  #site #courses-apply #courses-form .form-wrapper {
    display: block;
    grid-template-columns: unset;
    grid-template-rows: unset;
  }

  #site #courses-apply #courses-form .form-column:first-child {
    order: unset;
    grid-row: unset;
    grid-column: unset;
    padding: 0.5rem 0;
  }

  #site #courses-apply #courses-form .form-column:nth-child(2) {
    order: unset;
    grid-row: unset;
    grid-column: unset;
    padding: 0.5rem 0;
  }

  #site #courses-apply #courses-form .form-column:nth-child(3) {
    order: unset;
    grid-row: unset;
    grid-column: unset;
    padding: 0.5rem 0;
  }

  #site #courses-apply #courses-form .form-column:nth-child(3) .form-item {
    max-width: 100%;
  }

  #site #courses-apply .form-column:first-child .form-item label {
    padding-bottom: 3vw;
  }

  #site #courses-apply #courses-form .form-item input[type=text],
  #site #courses-apply #courses-form .form-item input[type=email],
  #site #courses-apply #courses-form .form-item input[type=tel] {
    width: 100%;
  }

  #site #courses-apply #courses-form .form-submit {
    margin: 1rem 0;
  }

  #site #courses-apply #courses-form .form-submit input[type=submit] {
    font-size: 1.5rem;
    line-height: 1.8rem;
    padding: 5px 10vw;

  }
}

#courses-apply-message {
  display: none;
  position: fixed;
  left: 0;
  background-color: rgba(255, 255, 255, 0.8);
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 10;
}

#courses-apply-message-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100%;
}

#courses-apply-message-box {
  border: 2px solid #262626;
  box-shadow: 5px 5px 5px 0 rgba(0, 0, 0, 0.6);
  border-radius: 10px;
  background-color: #fff;
  min-width: 40vw;
  min-height: 50%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

#courses-apply-message-box .message-box-close {
  text-align: right;
  padding: 1vw;
  flex: 1 auto;
}

#courses-apply-message-box .message-box-close span {
  font-family: Eurostile, sans-serif;
  font-size: 3rem;
  cursor: pointer;
}

#courses-apply-message-box-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 3 auto;
}

#courses-apply-message-box-message {
  flex: 1 auto;
  font-family: EurostileBold, sans-serif;
  width: 100%;
  padding: 0 10%;
  text-align: center;
}

#courses-apply-message-box-message div:first-child {
  font-size: 2.25rem;
  padding-bottom: 3vw;
}

#courses-apply-message-box-message div:nth-child(2) {
  font-size: 1.75rem;
}

@media (max-width: 576px) {
  #courses-apply-message-box {
    width: 90vw;
    min-height: 30%;
  }

  #courses-apply-message-box-message div:first-child {
    font-size: 1.75rem;
    padding-bottom: 1.5rem;
  }

  #courses-apply-message-box-message div:nth-child(2) {
    font-size: 1.4rem;
  }
}

body.courses #site #contact {
  background-color: #f2f2f2;
}

body.courses #site #contact .wrapper-outer {
  padding: 3vw 0;
  background-color: #fff;
}

body.courses #site #contact .wrapper {
  padding: 0;
  max-width: 26vw;
  margin: 0 auto;
}

body.courses #footer {
  background-color: #f2f2f2;
}


/* EOF COURSES PAGE */

#footer {
  height: 60px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  color: #595959;
  font-size: .55rem;
}

#footer > span {
  margin-right: 20px;
}

/** 576px / 768px / 992px / 1200px / 1800px */

@media (max-width: 1799px) and (min-width: 1200px) {
  html {
    /*font-size: 112.5%;*/
  }

  #site #clients .wrapper {
    width: 92vw;
  }

  #site #clients .wrapper li {
    min-width: 25%;
  }

  #site #clients h2 {
    margin-left: 11vw;
  }
}

@media (max-width: 1199px) {
  html {
    /*font-size: 100%;*/
  }

}

/* tablet */
@media (max-width: 767px) {
  #site #main p {
    width: auto;
  }

  #site #about h2 + p {
    width: auto
  }

  #site #about #numbers > div {
    min-width: 50%;
    width: 50%;
    margin: 3vh 0;
    padding: 0 20px;
  }
}
/* mobile */

@media (max-width: 576px) {
  #site #main p {
    font-size: 1.2rem;
    padding-right: 8vw;
  }

  #header #menu li {
    line-height: 52px;
  }
}

@media (max-width: 576px) {
  html {
    font-size: 100%;
  }

  body {
    padding-top: 0;
  }

  h2 {
    margin: 0 auto;
    text-align: center;
    font-size: 2rem;
  }

  .only-mobile {
    display: inherit;
  }

  #header {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    overflow: visible;
    background-color: transparent;
  }

  #header .logo {
    display: none;
  }

  #header nav {
    /*display: none;*/
    flex-grow: 0;
  }

  #header #menu {
    display: block;
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    padding: 15vw 0 0 10vw;
    font-size: 1rem;
    background-color: #fff;
    transition: transform 0.25s ease-in;
    transform: translateY(-100%);
  }

  #header.open #hamburger-menu {
    position: fixed;
  }

  #header #menu li.language-selector {
    width: 100%;
  }

  #header #menu li.language-selector ul.submenu {
    padding: 10px 0 0 0;
  }

  #header #menu li.language-selector ul.submenu li {
    display: inline-block;
    width: 17vw;
    text-align: center;
  }

  #header #menu li.language-selector ul.submenu li:nth-child(2) {
    border-left: 1px solid #595959;
    border-right: 1px solid #595959;
  }

  #header #progress {
    display: none;
  }

  #site #main {
    background-size: auto;
    padding-top: 47vh;
  }

  #site #main .logo {
    width: 75vw;
  }

  #site #about {
    padding-bottom: 0;
  }

  #site #about h2 {
    margin: 5vh 0 0 50vw;
    transform: translateX(-50%);
  }

  #site #about h2 + p {
    margin: 0 auto;
    padding: 10vw 0;
    width: 75vw;
  }

  #site #about #numbers {
    flex-direction: column;
  }

  #site #about #numbers > div {
    width: 40%;
    margin: 0;
    padding-bottom: 80px;
  }

  #site span.anchor {
    display: none;
  }


  #site #areas {
    padding-bottom: 0;
  }

  #site #areas h2 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 5vw;
    margin: 0;
  }

  #site #areas .wrapper {
    margin-top: 30vw;
    flex-direction: column;
  }

  #site #areas .wrapper .area {
    margin: 0 0 66px 0;
    width: auto;
  }

  #site #areas .wrapper .area h4 {
    height: auto;
  }

  #site #areas .wrapper .area span {
    max-width: 80%;
  }

  #site #partners h2 {
    top: 0;
    left: 0;
  }

  #site #partners .wrapper {
    flex-direction: column;
    margin-top: 20px;
    padding-bottom: 20px;
  }

  #site #partners .wrapper > div > div {
    width: 100%;
  }

  #site #partners .wrapper > div > div img {
    max-width: 40vw;
  }

  #site #clients {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #site #clients h2 {
    margin: 10vw 0 0 0;
  }

  #site #clients .wrapper img {
    max-width: 53vw;
    margin: 0;
  }

  #site #clients .wrapper .client-wrapper {
    margin-top: 30px;
  }

  #site #career h2 {
    position: absolute;
    left: 50vw;
    transform: translateX(-50%);
    margin-left: 0 !important;
  }

  #site #career .wrapper > div {
    flex-direction: column;
  }

  #site #career .wrapper > div > div {
    width: 80vw;
    max-width: 80vw;
    margin: 0 auto;
  }

  #site #career .wrapper > div > div:first-child,
  #site #career .wrapper > div > div:last-child {
    margin-left: auto;
  }

  #site #career .wrapper > div > div:last-child {
    text-align: center;
  }

  #site #career .wrapper > div > div:last-child > div {
    flex-direction: column;
    margin-top: 15vw;
  }

  #site #career .wrapper > div > div:last-child > div:first-child {
    margin-top: 15vw;
  }

  #site #career .wrapper > div > div:last-child > div img {
    margin-right: 0;
  }

  #site #career .wrapper .positions {
    background-color: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
    margin: 21vw 0 5vw 0;
    padding: 0;
    width: 100%;
    text-align: center;
  }

  #site #career .wrapper .positions span {
    top: 0;
    right: 0;
    font-size: 2.5rem;
  }

  #site #contact {

  }

  #site #contact h2 {
    margin: 0 0 0 50vw;
    transform: translateX(-50%);
  }

  #site #contact .wrapper {
    padding-left: 0;
    padding-top: 10vw;
    width: 80vw;
    margin: 0 auto;
    flex-direction: column;
  }

  #site #contact .wrapper > div span {
    margin: 0 0 0 30px;
    min-width: 30vw;
    max-width: 80vw;
  }

  body.courses #site #contact .wrapper {
    max-width: 60vw;
  }

  #site #contact .wrapper > div:last-child {
    flex-direction: row;
    justify-content: center;
  }

  #site #contact .wrapper > div > div {
    justify-content: center;
    padding: 0 12px;
  }

  #site #contact .wrapper > div:last-child > div,
  #site #contact .wrapper > div:last-child > div:first-child {
    margin-top: 25px;
  }

  #footer {
    flex-direction: column;
    text-align: center;
    margin: 20px 0 15px 0;
  }

  #footer span {
    padding: 5px 0;
    font-size: 0.8rem;
  }

  #site #main {
    background-image: url(../images/mobile/main_bg.png);
  }

  #site #partners {
    background-image: url(/assets/images/mobile/partners_bg.png);
  }

  #site #career {
    background-image: url(/assets/images/mobile/career_bg.png);
  }


  #site #career-main {
    background-image: url(../images/career/career_main_bg_m.png);
  }

  #site #career-positions #positions .position > .row {
    width: 85vw;
  }

  #site #career-positions #positions .position > .row > div:first-child {
    width: 140px;
  }

  #site #career-positions #positions .position > .row:first-child > div:not(:first-child) {
    padding-top: 30px;
    min-width: 100%;
    text-align: center;
  }

  #site #career-positions #positions .position > .row:first-child > div:not(:first-child).job-title {
    min-width: auto;
    order: 2;
    padding-top: 100px;
  }

  #site #career-positions #positions .position > .row {
    flex-direction: row;
  }

  #site #career-positions #positions .position > .row:first-child > div:nth-child(2) {
    padding-right: 0;
  }

  #site #career-positions #positions .position > .row:nth-child(3) > div:first-child {
    width: 0;
  }

  #site #career-positions #positions .position > .row:not(:first-child).open {
    max-height: none;
  }

  #site #career-positions #positions .position .mobile-buttons {
    width: 85vw;
    display: flex;
    flex-direction: row;
    margin-top: 25px;
    align-items: center;
    justify-content: space-between;
  }

  #site #career-positions #positions .position .mobile-buttons > div:first-child {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #site #career-positions #positions .position .mobile-buttons .plus {
    margin-top: 0;
  }

  #site #career-info .wrapper {
    padding: 0;
    width: 90vw;
    text-align: center;
    margin: 0 auto;
  }

  #site #career-info .wrapper p[data-text="4"] {
    max-width: 100%;
  }

  #site #career-main .title-wrapper {
    height: 30px;
  }

  #site #career-main .title-wrapper:nth-child(2) {
    margin-top: 30vh;
  }

  #site #career-main .title-wrapper:nth-child(3) {
    margin-top: 5px;
  }

  #site #career-main h2 {
    margin-top: 0 !important;
  }

  #site #services h2 {
    position: relative;
    top: 0;
    margin: 0;
    transform: translateX(-50%);
    left: 50%;
  }

  #site #services #tabs {
    left: 15px;
    top: 60%;
  }

  #site #services #tabs .tab {
    margin-top: 0;
    width: 100%;

    position: absolute;
    top: -10px;
    left: 0;
    font-weight: bold;
    color: #000;
  }

  #site #services #tabs .tab:not(.active) {
    /*display: none;*/
    transform: translateX(-100%);
  }

  #site #services .text {
    padding-left: 15px;
    top: 60%;
    margin-top: 15px;
  }
}

@media (max-width: 370px) {
  #site #contact .wrapper > div span {
    margin: 0 0 0 15px;
    min-width: 40vw;
    max-width: 80vw;
  }
}

@media (min-width: 577px) and (max-width: 992px) {
  .only-desktop {
    display: none !Important;
  }

  #site #contact .wrapper > div span {
    width: 20vw;
  }

  #site #career-positions #positions .position .mobile-buttons {
    width: 85vw;
    display: flex;
    flex-direction: row;
    margin-top: 25px;
    align-items: center;
    justify-content: space-between;
  }

  #site #career-positions #positions .position .mobile-buttons > div:first-child {
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #site #career-positions #positions .position .mobile-buttons .plus {
    margin-top: 0;
  }
}

/* GINOP 21 LINK */

#ginop21-logo {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 20;
  line-height: 0;
  width: 12.775rem;
  height: 11.275rem;
  /*width: 13rem;
  height: 13rem;*/
}

#ginop21-logo img {
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
}

#ginop21-placeholder {
  height: 11.275rem;
}

@media (max-width: 576px) {
  #ginop21-logo {
    width: 9.58125rem;
    height: 8.45625rem;
  }

  #ginop21-placeholder {
    height: 8.45625rem;
  }
}

/* END OF GINOP 21 LINK */

/* GINOP 21 PAGE */

body.ginop21 #site #ginop21-header {
  background-image: url(../images/ginop21/ginop21-header-bg.png);
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: 100%;
  min-height: 60vh;
  padding-bottom: 5vh;
  text-align: center;
}

body.ginop21 #site #ginop21-main h1,
body.ginop21 #site #ginop21-main .wrapper {
  margin: 0 14.4vw;
}

body.ginop21 #site #ginop21-main h1 {
  margin-bottom: 3vw;
}

body.ginop21 #site #ginop21-main .wrapper {
  padding: 0 2vw;
}

body.ginop21 #site #ginop21-main p {
  padding: 1vw 0;
}

body.ginop21 #site #ginop21-main ul {
  padding-left: 2vw;
  margin-bottom: 1vw;
}
body.ginop21 #site #ginop21-main li {
  padding-top: 1vw;
  letter-spacing: 2px;
  word-spacing: 2px;
  line-height: 1.4rem;
}

@media (max-width: 576px) {
  body.ginop21 #site #ginop21-header {
    display: none;
  }

  body.ginop21 #site #ginop21-main {
    margin-top: 5vw;
  }
  body.ginop21 #site #ginop21-main h1 {
    text-align: center;
    margin: 0 0 0 50vw;
    transform: translateX(-50%);
  }
  body.ginop21 #site #ginop21-main .wrapper {
    margin: 2vw;
  }
  body.ginop21 #site #ginop21-main li {
    padding-top: 2vw;
  }
  body.ginop21 #site #ginop21-main ul {
    padding-left: 5vw;
    margin-bottom: 2vw;
  }
  body.ginop21 #contact {
    margin-top: 5vw;
  }
}

/* END OF GINOP 21 PAGE */

/* Visszaeles bejelentes PAGE */

#site #visszaeles-bejelentes {
  min-height: calc(100vh - 122px);
}
#site #visszaeles-bejelentes > div {
  padding: 50px 14vw 0;
}
@media (max-width: 767px) {
  #site #v > div {
    padding: 0 7vw;
    margin-top: 60px;
  }
}

#site #visszaeles-bejelentes > div h1 {
  text-align: center;
  padding-bottom: 50px;
}

#site #visszaeles-bejelentes > div .center {
  text-align: center;
}

#site #visszaeles-bejelentes .links {
  text-align: center;
}

#site #visszaeles-bejelentes .links a {
  /*background-color: #be091c;
  color: #fff;
  border-radius: 0.9rem;
  padding: 0.3rem 0.9rem;*/
  text-decoration: underline;
}

/* END OF Visszaeles bejelentes PAGE */