/***************************************************************/
html, body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: "Trebuchet MS", Helvetica, sans-serif;
  color: #696969;
  letter-spacing: 0.15em;
  line-height: 1.6;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  width: 0.7vw;
}
html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #696969;
}

/***************************************************************/
#landing_heading {
  color: #282828;
  font-size: 5.3vw;
  font-weight: 900;
  text-shadow: 0.4vw 0.4vw #809FFF;
}

#landing_subheading {
  font-family: Consolas, "courier new";
  font-variant-numeric: slashed-zero;
  color: #282828;
  font-size: 1vw;
  font-weight: 700;
}

#red {
  font-family: "Times New Roman", Times, serif;
  color: #FE0000;
  text-shadow: 0.4vw 0.4vw #FFb0b0;
}

#heading {
  color: #282828;
  font-size: 3vw;
  font-weight: 900;
}

#subheading {
  color: #3366FD;
  font-size: 1.5vw;
  font-weight: 900;
}

#description {
  color: #282828;
  font-size: 1.2vw;
}

/***************************************************************/
/***************************************************************/
/* TABLET */
@media only screen and (min-width: 429px) and (max-width: 1024px) {
  #landing_heading {
    font-size: 8.9vw;
    line-height: 1.15;
    text-shadow: 0.6vw 0.6vw #809FFF;
  }

  #landing_subheading {
    font-size: 1.8vw;
    margin-top: 2%;
  }

  #heading {
    font-size: 6vw;
  }

  #subheading {
    font-size: 2.6vw;
  }

  #description {
    font-size: 2vw;
  }
}
/***************************************************************/
/* MOBILE */
@media only screen and (max-width: 428px) {
  #landing_heading {
    font-size: 13.5vw;
    line-height: 1.25;
    text-shadow: 1vw 1vw #809FFF;
  }

  #landing_subheading {
    font-size: 3vw;
    margin-top: 3%;
  }

  #heading {
    font-size: 7vw;
  }

  #subheading {
    font-size: 4vw;
  }

  #description {
    font-size: 3vw;
  }
}
/***************************************************************/
#upper_part {
  position: fixed;
  width: 100%;
  height: 8.5vh;
  background-color: #FFFFFF;
  z-index: 1000;
}

.menu_shadow {
  box-shadow: 0 0 30px #E8E8E8;
  -webkit-box-shadow: 0 0 30px #E8E8E8;
  -moz-box-shadow: 0 0 30px #E8E8E8;
}

#for_logo {
  height: 100%;
}

#logo {
  width: 11vw;
}

#for_menu {
  height: 100%;
}

.navbar-nav a {
  font-family: Consolas, "courier new";
  font-variant-numeric: slashed-zero;
  color: #282828 !important;
  font-size: 1vw;
  font-weight: 700;
  padding: 0.4vw 1.5vw;
  transition: opacity 0.2s ease-in-out;
}
.navbar-nav a:hover {
  opacity: 0.5;
  color: #282828 !important;
}

#nav_menu {
  margin-right: 3vw;
}

#nav_menu_special {
  margin-right: 0;
}

#for_languages {
  height: 100%;
}

#nav_languages {
  margin-right: 1vw;
}
#nav_languages a span {
  color: #3366FD;
}

/***************************************************************/
/***************************************************************/
/* MIXIN */
/***************************************************************/
/* TABLET */
@media only screen and (min-width: 429px) and (max-width: 1024px) {
  .collapsing {
    transition: none !important;
  }

  .menu_animation {
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
  }

  .nav_open .menu_animation {
    opacity: 1;
    visibility: visible;
  }

  .menu_animation .nav li {
    opacity: 0;
    transform: translateY(-40px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  .nav_open .menu_animation .nav li {
    opacity: 1;
    transform: translateY(0px);
    transition: transform 0.4s, opacity 0.4s;
  }

  .navbar {
    margin-top: 3vh !important;
  }

  .navbar-toggler, .navbar-toggler:focus, .navbar-toggler:active, .navbar-toggler-icon:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }

  .animated_icon {
    position: relative;
    width: 30px;
    height: 20px;
    margin: 0px;
    transform: rotate(0deg);
    transition: 0.4s ease-in-out;
    cursor: pointer;
  }

  .animated_icon span {
    position: absolute;
    width: 100%;
    height: 3px;
    display: block;
    background-color: #282828;
    border-radius: 2vw;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.2s ease-in-out;
  }

  .animated_icon span:nth-child(1) {
    top: 0px;
  }

  .animated_icon span:nth-child(2), .animated_icon span:nth-child(3) {
    top: 10px;
  }

  .animated_icon span:nth-child(4) {
    top: 20px;
  }

  .animated_icon.hamburger_open span:nth-child(1), .animated_icon.hamburger_open span:nth-child(4) {
    width: 0%;
    top: 11px;
    left: 50%;
  }

  .animated_icon.hamburger_open span:nth-child(2) {
    transform: rotate(45deg);
  }

  .animated_icon.hamburger_open span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .navbar-collapse ul {
    height: 100vh;
    margin-left: 15%;
  }

  .navbar-nav {
    width: 50vw;
    margin: 0 !important;
    margin-top: 4vh !important;
  }
  .navbar-nav a {
    font-size: 3.5vw;
    margin-bottom: 4vh;
  }
  .navbar-nav #nav_menu_special a, .navbar-nav #nav_languages a {
    margin-bottom: 0;
  }

  .nav-item {
    width: 50vw;
  }

  #auto_height {
    height: auto;
  }

  #upper_part {
    height: auto;
    margin-top: 0 !important;
    padding: 4% 0 4% 0;
  }

  #for_container {
    width: 98%;
  }

  .add_padding_bottom {
    padding-bottom: 8%;
  }

  #logo {
    width: 22vw;
    margin-left: 12%;
  }
}
/***************************************************************/
/* MOBILE */
@media only screen and (max-width: 428px) {
  .collapsing {
    transition: none !important;
  }

  .menu_animation {
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
  }

  .nav_open .menu_animation {
    opacity: 1;
    visibility: visible;
  }

  .menu_animation .nav li {
    opacity: 0;
    transform: translateY(-40px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  .nav_open .menu_animation .nav li {
    opacity: 1;
    transform: translateY(0px);
    transition: transform 0.4s, opacity 0.4s;
  }

  .navbar {
    margin-top: 3vh !important;
  }

  .navbar-toggler, .navbar-toggler:focus, .navbar-toggler:active, .navbar-toggler-icon:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }

  .animated_icon {
    position: relative;
    width: 30px;
    height: 20px;
    margin: 0px;
    transform: rotate(0deg);
    transition: 0.4s ease-in-out;
    cursor: pointer;
  }

  .animated_icon span {
    position: absolute;
    width: 100%;
    height: 3px;
    display: block;
    background-color: #282828;
    border-radius: 2vw;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: 0.2s ease-in-out;
  }

  .animated_icon span:nth-child(1) {
    top: 0px;
  }

  .animated_icon span:nth-child(2), .animated_icon span:nth-child(3) {
    top: 10px;
  }

  .animated_icon span:nth-child(4) {
    top: 20px;
  }

  .animated_icon.hamburger_open span:nth-child(1), .animated_icon.hamburger_open span:nth-child(4) {
    width: 0%;
    top: 11px;
    left: 50%;
  }

  .animated_icon.hamburger_open span:nth-child(2) {
    transform: rotate(45deg);
  }

  .animated_icon.hamburger_open span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .navbar-collapse ul {
    height: 100vh;
    margin-left: 15%;
  }

  .navbar-nav {
    width: 50vw;
    margin: 0 !important;
    margin-top: 4vh !important;
  }
  .navbar-nav a {
    font-size: 3.5vw;
    margin-bottom: 4vh;
  }
  .navbar-nav #nav_menu_special a, .navbar-nav #nav_languages a {
    margin-bottom: 0;
  }

  .nav-item {
    width: 50vw;
  }

  #auto_height {
    height: auto;
  }

  #upper_part {
    height: auto;
    margin-top: 0 !important;
    padding: 5% 0 5% 0;
  }

  #for_container {
    width: 100%;
  }

  .add_padding_bottom {
    padding-bottom: 8%;
  }

  #logo {
    width: 40vw;
    margin-left: 8%;
  }

  .navbar {
    margin-top: 2vh !important;
  }

  .navbar-nav a {
    font-size: 5vw;
  }
}
/***************************************************************/
#footer {
  position: relative;
  width: 100%;
  height: 60vh;
}

#for_footer {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: Consolas, "courier new";
  font-variant-numeric: slashed-zero;
  color: #FFFFFF;
  font-size: 1vw;
  font-weight: 700;
}
#for_footer::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: #809FFF;
  border-radius: 0vw;
  z-index: -100;
}

#upper_half {
  position: absolute;
  width: 100%;
  top: 20%;
}
#upper_half .col-xl-2 {
  width: auto;
  margin-right: 2%;
}
#upper_half .col-xl-2:last-child {
  margin-right: 0;
}

#for_social_media a {
  margin-right: 6%;
  transition: opacity 0.2s ease-in-out;
}
#for_social_media a .fa-linkedin-in, #for_social_media a .fa-twitter, #for_social_media a .fa-facebook-f, #for_social_media a .fa-instagram {
  color: #282828;
  font-size: 1.2vw;
}
#for_social_media a:hover {
  opacity: 0.5;
  color: #282828 !important;
}
#for_social_media a:last-child {
  margin-right: 0;
}

#lower_half {
  position: absolute;
  width: 100%;
  bottom: 15%;
}
#lower_half .link {
  color: #282828;
  font-weight: 700;
  transition: opacity 0.2s ease-in-out;
}
#lower_half .link:hover {
  opacity: 0.5;
  color: #282828 !important;
}

/***************************************************************/
/***************************************************************/
/* TABLET */
@media only screen and (min-width: 429px) and (max-width: 1024px) {
  #footer {
    height: 45vh;
  }

  #for_footer {
    font-size: 1.8vw;
  }

  #upper_half {
    top: 18%;
  }
  #upper_half .col-xl-2 {
    margin-right: 4%;
  }

  #for_social_media a {
    margin-right: 4%;
    margin-top: -2.5%;
  }
  #for_social_media a .fa-linkedin-in, #for_social_media a .fa-twitter, #for_social_media a .fa-facebook-f, #for_social_media a .fa-instagram {
    font-size: 2vw;
  }

  #lower_half {
    bottom: 13%;
  }

  .footer_link_legal {
    font-size: 1.5vw;
  }
}
/***************************************************************/
/* MOBILE */
@media only screen and (max-width: 428px) {
  #footer {
    height: 70vh;
  }

  #for_footer {
    font-size: 3vw;
  }

  #upper_half {
    width: 55vw;
    top: 13%;
  }
  #upper_half .col-xl-2 {
    width: inherit;
    margin-right: 0;
  }

  #for_social_media a {
    margin-top: -1.5%;
    margin-right: 10%;
  }
  #for_social_media a .fa-linkedin-in, #for_social_media a .fa-twitter, #for_social_media a .fa-facebook-f, #for_social_media a .fa-instagram {
    font-size: 3vw;
  }

  #lower_half {
    bottom: 10%;
  }

  .footer_link_legal {
    font-size: 2.5vw;
  }
}
/***************************************************************/
.make_space1 {
  margin-bottom: 7vh;
}

.make_space2 {
  margin-bottom: 5vh;
}

.make_space3 {
  margin-bottom: 3vh;
}

.make_space4 {
  margin-bottom: 1vh;
}

.white_space {
  width: 100%;
  height: 20vh;
  background-color: #FFFFFF;
}

/***************************************************************/
/***************************************************************/
/* TABLET */
@media only screen and (min-width: 429px) and (max-width: 1024px) {
  .make_space1 {
    margin-bottom: 4vh;
  }

  .make_space2 {
    margin-bottom: 3.6vh;
  }

  .make_space3 {
    margin-bottom: 1vh;
  }

  .make_space4 {
    margin-bottom: 0.5vh;
  }

  .white_space {
    height: 15vh;
  }
}
/***************************************************************/
/* MOBILE */
@media only screen and (max-width: 428px) {
  .make_space1 {
    margin-bottom: 4vh;
  }

  .make_space2 {
    margin-bottom: 3.6vh;
  }

  .make_space3 {
    margin-bottom: 1vh;
  }

  .make_space4 {
    margin-bottom: 0.5vh;
  }

  .white_space {
    height: 10vh;
  }
}
/***************************************************************/
.link {
  text-decoration: none;
}

.active {
  background-image: linear-gradient(#E8E8E8 0%, #E8E8E8 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.5em;
  background-position: 0 100%;
}

/***************************************************************/
.more {
  position: absolute;
  width: 15vw;
  height: 7vh;
  font-family: Consolas, "courier new";
  font-variant-numeric: slashed-zero;
  color: #FE0000;
  font-size: 1.2vw;
  font-weight: 700;
  overflow: hidden;
  border-radius: 2vw;
  padding: 0.6vw 1.5vw;
  box-shadow: #C0C0C0 0vw 1vw 2vw;
  background-color: #FFFFFF;
  z-index: 100;
  transition: all 0.2s ease-in-out;
}
.more:hover {
  color: #FE0000 !important;
}
.more:hover .arrow_after {
  transform: translateX(0%);
  opacity: 0;
}
.more:hover #more_text {
  transform: translateX(6%);
}

#more_text {
  width: 100%;
  transition: all 0.2s ease-in-out;
}

.fas {
  font-size: 1vw;
  transition: all 0.2s ease-in-out;
}

.arrow_after {
  margin-left: 0.5vw;
}

/***************************************************************/
/***************************************************************/
/* TABLET */
@media only screen and (min-width: 429px) and (max-width: 1024px) {
  .more {
    width: 30vw;
    height: 5vh;
    font-size: 2.5vw;
    border-radius: 5vw;
    box-shadow: #C0C0C0 0vw 1.5vw 3vw;
  }

  .fas {
    font-size: 2vw;
  }
}
/***************************************************************/
/* MOBILE */
@media only screen and (max-width: 428px) {
  .more {
    width: 36vw;
    height: 4vh;
    font-size: 3.2vw;
    border-radius: 5vw;
    box-shadow: #C0C0C0 0vw 2vw 4vw;
  }

  .fas {
    font-size: 2.6vw;
  }
}
/*
#for_cookies {
    position: fixed;
    width: 48%;
    height: 10%;
    bottom: 0;
    margin-bottom: 2%;
    box-shadow: #C0C0C0 0vw 1vw 2vw;
    border-radius: 2vw;
    overflow: hidden;
    background-color: white;
    letter-spacing: normal;
    z-index: +101;

    opacity: 0;
    animation: animation_for_cookies 1s forwards 3.5s;
}

@keyframes animation_for_cookies {

    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }

}

#cookies {
    position: relative;
    width: 100%;
    height: 100%;
}

#cookies_icon {
    font-size: $font_size_subheading_desktop;
    color: #A52A2A;
    margin-left: 5%;
}

#cookies_text {
    color: $light_gray;
    font-size: $font_size_cookies;
    margin-left: 2%;
}

#cookies_settings {
    position: absolute;
    width: 12%;
}

#cookies_accept {
    position: absolute;
    width: 12%;
    border: 0.12vw solid $dark_gray;
    border-radius: 2vw;
    padding: 0.3vw 0.75vw;
}

.cookies {

    color: $dark_gray;
    font-size: $font_size_cookies;
    font-weight: $bold_font;

    -webkit-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    -ms-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;

    &:hover {
        opacity: 0.5;
        color: $dark_gray !important;
    }

}

#move_left {
    margin-left: -1.5%;
}
*/
/***************************************************************/
/* CAREERS */
#careers {
  position: relative;
  width: 100%;
  height: 100vh;
  opacity: 0;
  -webkit-animation: fade_in_whole_page 1s forwards 0s;
          animation: fade_in_whole_page 1s forwards 0s;
}

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

@keyframes fade_in_whole_page {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#lower_part {
  position: absolute;
  width: 100%;
  height: 91.5vh;
  bottom: 0;
}

#for_content {
  margin-top: 7%;
}/*# sourceMappingURL=sass_style.css.map */