@font-face {
  font-family: 'Brandon Grotesque';
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/brandon-grotesque-regular.otf") format('truetype');
}
@font-face {
  font-family: 'Brandon Grotesque';
  font-weight: 700;
  font-style: normal;
  font-display: swap;
  src: url("../fonts/brandon-grotesque-bold.otf") format('truetype');
}
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4 {
  margin: 0;
  font-weight: 700;
}
h1,
.h1 {
  font-size: 7.5625rem;
  line-height: 7.5625rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 1399px) {
  h1,
  .h1 {
    font-size: 6rem;
    line-height: 6rem;
  }
}
@media only screen and (max-width: 1199px) {
  h1,
  .h1 {
    font-size: 4.5rem;
    line-height: 4.5rem;
  }
}
@media only screen and (max-width: 991px) {
  h1,
  .h1 {
    font-size: 4rem;
    line-height: 4rem;
  }
}
@media only screen and (max-width: 767px), only screen and (max-height: 767px) {
  h1,
  .h1 {
    font-size: 2.25rem;
    line-height: 2.25rem;
  }
}
h2,
.h2 {
  font-size: 4rem;
  line-height: 4.8125rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 1199px) {
  h2,
  .h2 {
    font-size: 3.25rem;
    line-height: 3.5rem;
  }
}
@media only screen and (max-width: 991px), only screen and (max-height: 767px) {
  h2,
  .h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }
}
h3,
.h3 {
  font-size: 2.3125rem;
  line-height: 3rem;
}
@media only screen and (max-width: 1199px) {
  h3,
  .h3 {
    font-size: 2rem;
    line-height: 2.5rem;
  }
}
@media only screen and (max-width: 991px) {
  h3,
  .h3 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}
@media only screen and (max-width: 767px), only screen and (max-height: 767px) {
  h3,
  .h3 {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
h4,
.h4 {
  font-size: 1.875rem;
  line-height: 2.6875rem;
}
@media (max-width: 767px) {
  h4,
  .h4 {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.text-big {
  font-size: 3.25rem;
  line-height: 3.5rem;
}
@media only screen and (max-width: 1199px) {
  .text-big {
    font-size: 2.3125rem;
    line-height: 3rem;
  }
}
@media only screen and (max-width: 991px) {
  .text-big {
    font-size: 1.75rem;
    line-height: 2rem;
  }
}
@media only screen and (max-width: 767px), only screen and (max-height: 767px) {
  .text-big {
    font-size: 1.25rem;
    line-height: 1.875rem;
  }
}
p,
a.btn-link,
.text {
  font-size: 1.5625rem;
  line-height: 2rem;
}
@media (max-width: 767px) {
  p,
  a.btn-link,
  .text {
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.text-upper {
  text-transform: uppercase;
}
label {
  font-size: 1.5rem;
  line-height: 1.75rem;
}
input[type="text"] {
  background: #000;
  border: 3px solid #f3d556;
  border-radius: 0;
  outline: none;
  font-size: 1.5rem;
  line-height: 2rem;
  color: #fff;
  padding: 25px 20px;
}
input[type="text"]:hover,
input[type="text"]:focus,
input[type="text"][readonly] {
  color: #fff;
  background: #000;
  border: 3px solid #f3d556;
  border-radius: 0;
  outline: none;
}
input[type="text"].green {
  border-color: #06f2ae !important;
}
.checkbox {
  position: relative;
}
.checkbox label {
  position: relative;
  margin-left: 2.3rem;
  font-size: 1.85rem;
  line-height: 2.3rem;
  white-space: nowrap;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.checkbox label:before {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  content: '';
  top: -webkit-calc(50% - 1rem);
  top: calc(50% - 1rem);
  left: -2.3rem;
  border: 3px solid #f3d556;
  background: #000;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 4px;
  -webkit-transition: all 0.3 cubic-bezier(1, -0.01, 0.71, 1.01);
  transition: all 0.3 cubic-bezier(1, -0.01, 0.71, 1.01);
}
.checkbox input {
  display: none;
}
.checkbox input:checked+label:before {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #f3d556;
}
.checkbox input:checked+label:after {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  position: absolute;
  top: -webkit-calc(50% - 12px);
  top: calc(50% - 12px);
  left: -27px;
  content: "";
  width: 11px;
  height: 19px;
  border: solid #000;
  border-width: 0 4px 4px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: all 0.3 cubic-bezier(1, -0.01, 0.71, 1.01);
  transition: all 0.3 cubic-bezier(1, -0.01, 0.71, 1.01);
}
a {
  font-style: italic;
  font-weight: normal;
  text-decoration: underline !important;
  color: #5b85d9;
}
a:hover {
  color: #436cbf;
}
.btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: 3px solid transparent;
  border-radius: 15px;
  background-color: #000;
  color: #fff;
  font-size: 1.5625rem;
  padding: 50px 20px;
  font-weight: normal;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  text-decoration: none !important;
}
.btn:disabled {
  cursor: not-allowed;
  opacity: 0.4 !important;
}
@media (max-width: 991px) {
  .btn {
    padding: 18px 27px !important;
    font-size: 1rem;
    line-height: 1.25rem;
  }
}
.btn--black {
  border: 1px solid #f3d556;
  background-color: #000;
  color: #fff;
  width: 100%;
}
.btn--black:hover {
  border: 1px solid #000;
  background-color: #f3d556;
  color: #000;
}
.btn--black[disabled] {
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
}
.btn--black-inverse {
  border: 1px solid #000;
  background-color: #f3d556;
  color: #000;
  width: 100%;
}
.btn--black-inverse:hover {
  border: 1px solid #000;
  background-color: #000;
  color: #fff;
}
.btn--black-inverse[disabled] {
  border: 1px solid #000;
  background-color: #f3d556;
  color: #000;
}
.btn--green {
  border: 1px solid #06f2ae;
  background-color: #06f2ae;
  color: #000;
  width: 100%;
}
.btn--green:hover {
  border: 1px solid #03cf94;
  background-color: #03cf94;
  color: #000;
}
.btn--green[disabled] {
  border: 1px solid #06f2ae;
  background-color: #06f2ae;
  color: #fff;
}
.btn--yellow {
  border: 3px solid #000;
  background-color: #f3d556;
  color: #000;
  width: 100%;
}
.btn--yellow:hover {
  border: 3px solid #000;
  background-color: #f2bd56;
  color: #000;
}
.btn--yellow[disabled] {
  border: 3px solid #000;
  background-color: #f3d556;
  color: #000;
}
.bootstrap-select {
  width: 100% !important;
}
.bootstrap-select .btn-select-dark {
  position: relative;
  background: #000;
  color: #fff;
  border: 3px solid #f3d556;
  box-shadow: none !important;
  outline: none !important;
  padding: 8px 15px 8px 20px;
  border-radius: 0;
  text-transform: none;
  font-weight: normal;
}
.bootstrap-select .btn-select-dark:hover {
  color: #fff;
}
.bootstrap-select .btn-select-dark:after {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #fff;
  -webkit-transition: all 0.1s cubic-bezier(0.17, 0.67, 0.83, 0.67);
  transition: all 0.1s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}
.bootstrap-select .btn-select-dark:before {
  content: '';
  position: absolute;
  top: 0;
  right: 50px;
  background: #f3d556;
  width: 3px;
  height: 60px;
}
.bootstrap-select .btn-select-dark:hover,
.bootstrap-select .btn-select-dark:focus,
.bootstrap-select .btn-select-dark:active {
  outline: none !important;
  border: 3px solid #f3d556;
}
@media (max-width: 991px) {
  .bootstrap-select .btn-select-dark {
    padding: 15px 15px 15px 20px !important;
  }
}
.bootstrap-select.show .btn-select-dark:after {
  -webkit-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.bootstrap-select .dropdown-menu {
  background: #000;
  color: #fff;
}
.bootstrap-select .dropdown-item.active,
.bootstrap-select .dropdown-item:active {
  background: #222;
  color: #fff;
}
.btn--success {
  border: 3px solid #000;
  background-color: #06f2ae;
  color: #000;
}
.btn--danger {
  border: 3px solid #f2517d;
  background-color: #f2517d;
}
.btn--white {
  border: 3px solid #000;
  background-color: #fff;
}
.btn--disabled {
  opacity: 0.35;
}
body {
  background-color: #f3d556;
  font-family: 'Brandon Grotesque';
  color: #000;
  scroll-behaviour: smooth;
}
section {
  position: relative;
}
.slide-full {
  height: 100%;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
@media only screen and (max-width: 991px) {
  .slide-full {
    overflow-y: visible;
  }
}
.slide-container {
  padding: 100px;
}
.card {
  border: 1px solid #000;
  background-color: #f3d556;
  padding: 40px;
}
.slide {
  width: 100%;
  height: 100vh;
}
.dotted_bg {
  background-image: radial-gradient(#000 20%, transparent 20%);
  background-position: 0 0;
  background-size: 25px 25px;
}
.dotted_bg--left {
  background-position: right top;
}
.dotted_bg--right {
  background-position: left top;
}
#slide-0 {
  display: none;
  position: absolute;
  height: 100%;
  overflow: hidden;
}
#slide-0 .dots {
  opacity: 0;
  position: absolute;
}
#slide-0 .dots.dots-left {
  top: -3500px;
  left: 0;
}
#slide-0 .dots.dots-right {
  bottom: -3500px;
  right: 0;
}
#slide-0 .cover-sharpes {
  opacity: 0;
  position: absolute;
  top: 1%;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}
#slide-0 .cover-sharpes.mobil {
  display: none;
  width: 130%;
  left: -10%;
}
#slide-0 .content-container {
  position: absolute;
  left: 17%;
  top: 10%;
  height: 100%;
  width: 66%;
  text-align: center;
  z-index: 2;
}
#slide-0 .content-container .logos {
  opacity: 0;
}
#slide-0 .content-container .logos img {
  max-width: 100%;
}
#slide-0 .content-container h1 {
  opacity: 0;
  margin: 4% 0;
}
#slide-0 .content-container h4 {
  opacity: 0;
}
#slide-0 .cover-bottom {
  position: absolute;
  left: 20%;
  bottom: -2000px;
  width: 60%;
  z-index: 0;
}
@media (min-width: 1500px) {
  #slide-0 .cover-bottom {
    left: 25%;
    width: 50%;
  }
}
@media (max-width: 991px) {
  #slide-0 .content-container {
    top: 14%;
    left: 10%;
    width: 80%;
  }
}
@media (max-width: 767px) {
  #slide-0 .dots,
  #slide-0 .cover-sharpes.desktop {
    display: none !important;
  }
  #slide-0 .cover-sharpes.mobil {
    display: block;
  }
  #slide-0 .content-container {
    top: 20%;
    left: 10%;
    width: 80%;
  }
  #slide-0 .cover-bottom {
    width: 180%;
    left: -40%;
  }
}
#slide-1 .content-container {
  position: absolute;
  left: 7%;
  top: 7%;
  height: 80%;
  width: 40%;
  text-align: left;
  z-index: 2;
}
#slide-1 .content-container h2 {
  opacity: 0;
  margin-bottom: 10%;
  text-transform: uppercase;
}
#slide-1 .content-container h2 span {
  font-weight: 500;
}
#slide-1 .content-container p {
  opacity: 0;
}
#slide-1 .content-container .btn {
  opacity: 0;
  margin-top: 10%;
  width: 70%;
}
#slide-1 .cover-top {
  display: none;
}
#slide-1 .cover-right {
  opacity: 0;
  position: absolute;
  right: -2000px;
  top: -20%;
  z-index: 0;
  height: 140%;
}
#slide-1 .cover-right-dots {
  opacity: 0;
  position: absolute;
  right: 0;
  top: -100vh;
  z-index: 0;
}
#slide-1 .cover-right-sharpes {
  opacity: 0;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 0;
  max-width: 680px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#slide-1 .cover-bottom {
  opacity: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  bottom: -1000px;
  z-index: 0;
}
@media (max-width: 767px) {
  #slide-1 {
    overflow-y: auto;
  }
  #slide-1 .cover-bottom,
  #slide-1 .cover-right,
  #slide-1 .cover-right-dots,
  #slide-1 .cover-right-sharpes {
    display: none !important;
  }
  #slide-1 .cover-top {
    display: block;
    position: relative;
    top: -500px;
    right: 10%;
    height: auto;
    width: 120%;
  }
  #slide-1 .content-container {
    position: relative;
    top: -27%;
    left: 10%;
    width: 80%;
    height: auto;
    padding-bottom: 10%;
    text-align: center;
  }
  #slide-1 .content-container .btn {
    width: 100%;
  }
}
#slide-2 .content-container {
  position: absolute;
  left: 7%;
  top: 7%;
  height: 90%;
  width: 35%;
  text-align: left;
  z-index: 2;
}
#slide-2 .content-container h2 {
  opacity: 0;
  margin-bottom: 10%;
  text-transform: uppercase;
}
#slide-2 .content-container h2 span {
  font-weight: 500;
}
#slide-2 .content-container p {
  opacity: 0;
  margin-top: 10%;
}
#slide-2 .content-container #my-goal {
  opacity: 0;
}
#slide-2 .content-container #my-goal .placeholder {
  width: 350px;
  padding: 24px 37px;
  margin-top: 20px;
  border-radius: 15px;
  font-size: 1.75rem;
  font-weight: 700;
  text-align: center;
  background-color: #f3c756;
  border: 1px solid #f2bd56;
  color: #f3d556;
  text-transform: uppercase;
}
#slide-2 .content-container #my-goal .goal {
  display: none;
  position: relative;
  text-transform: uppercase;
  border: 2px solid #000;
  margin-top: 20px;
  padding: 24px 37px;
  font-weight: bold;
  font-size: 1.75rem;
  border-radius: 10px;
  width: 350px;
}
#slide-2 .content-container #my-goal .goal .remove {
  content: '';
  position: absolute;
  top: -18px;
  right: -18px;
  cursor: pointer;
  padding: 0 !important;
  margin: 0;
  background: transparent;
}
#slide-2 .cover-right {
  opacity: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  height: 95%;
}
#slide-2 .goal-icons.mobil {
  display: none;
}
#slide-2 .goal-icons.desktop .goal-icon {
  opacity: 0;
  position: absolute;
  z-index: 1;
  -webkit-animation-name: scaleImg;
          animation-name: scaleImg;
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  cursor: pointer;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
#slide-2 .goal-icons.desktop .goal-icon[data-goal="1"] {
  top: 10%;
  right: 14%;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}
#slide-2 .goal-icons.desktop .goal-icon[data-goal="2"] {
  top: 43%;
  right: 7%;
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}
#slide-2 .goal-icons.desktop .goal-icon[data-goal="3"] {
  top: 68%;
  right: -2%;
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}
#slide-2 .goal-icons.desktop .goal-icon[data-goal="4"] {
  top: 70%;
  right: 28%;
  -webkit-animation-delay: 6s;
          animation-delay: 6s;
}
#slide-2 .goal-icons.desktop .goal-icon.selected {
  opacity: 0.3 !important;
  -webkit-animation: none;
          animation: none;
  cursor: default;
}
@-webkit-keyframes scaleImg {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaleImg {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#slide-2 .btn-next {
  opacity: 0;
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 340px;
  z-index: 0;
  padding: 50px;
}
@media (max-width: 1199px) {
  #slide-2 .goal-icons.desktop .goal-icon {
    width: 25%;
  }
  #slide-2 .goal-icons.desktop .goal-icon[data-goal="1"] {
    top: 10%;
    right: 5%;
  }
  #slide-2 .goal-icons.desktop .goal-icon[data-goal="2"] {
    top: 43%;
    right: 3%;
  }
  #slide-2 .goal-icons.desktop .goal-icon[data-goal="3"] {
    top: 66%;
    right: -4%;
  }
  #slide-2 .goal-icons.desktop .goal-icon[data-goal="4"] {
    top: 72%;
    right: 18%;
  }
  #slide-2 .content-container #my-goal .placeholder,
  #slide-2 .content-container #my-goal .goal {
    padding: 18px 27px;
    font-size: 1.5rem;
    width: 250px;
  }
  #slide-2 .cover-right {
    right: -15%;
  }
  #slide-2 .btn-next {
    width: 240px;
    padding: 30px;
  }
}
@media (max-width: 767px) {
  #slide-2 {
    padding-bottom: 75px;
    overflow-y: auto;
  }
  #slide-2 .cover-right {
    display: none !important;
  }
  #slide-2 .content-container {
    position: relative;
    top: 8%;
    left: 10%;
    width: 80%;
    height: auto;
    padding-bottom: 10%;
    text-align: center;
  }
  #slide-2 .content-container #my-goal .placeholder,
  #slide-2 .content-container #my-goal .goal {
    padding: 18px 27px;
    font-size: 1rem;
    width: 100%;
  }
  #slide-2 .goal-icons.desktop {
    display: none;
  }
  #slide-2 .goal-icons.mobil {
    display: block;
    height: 230px;
    max-width: 350px;
    margin: 0 auto;
    position: relative;
  }
  #slide-2 .goal-icons.mobil .goal-icon {
    opacity: 0;
    position: absolute;
  }
  #slide-2 .goal-icons.mobil .goal-icon[data-goal="1"] {
    top: 0;
    left: -5%;
  }
  #slide-2 .goal-icons.mobil .goal-icon[data-goal="2"] {
    top: 30%;
    right: 0;
  }
  #slide-2 .goal-icons.mobil .goal-icon[data-goal="3"] {
    top: 65%;
    right: -5%;
  }
  #slide-2 .goal-icons.mobil .goal-icon[data-goal="4"] {
    top: 60%;
    left: -5%;
  }
  #slide-2 .btn-next {
    position: relative;
    width: 80%;
    left: 10%;
    bottom: auto;
    top: 10%;
    padding: 18px 27px;
    font-size: 1rem;
  }
}
#slide-3 .content-container {
  position: relative;
  z-index: 1;
  margin: 5% 5% 0;
}
#slide-3 .content-container h2,
#slide-3 .content-container p {
  opacity: 0;
  margin-bottom: 3%;
}
#slide-3 .content-container .stars svg {
  opacity: 0;
  margin: 0 10px;
}
#slide-3 .content-container .stars svg.good path {
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  stroke: #000;
  fill: #06f2ae;
}
#slide-3 .content-container .stars svg.wrong path {
  -webkit-transition: all 0.7s ease-in-out;
  transition: all 0.7s ease-in-out;
  stroke: #000;
  fill: #f2517d;
}
@media (min-width: 991px) {
  #slide-3 .content-container .skills-container {
    opacity: 0;
    position: relative;
    height: 50vh;
    width: 50vw;
    z-index: 10;
  }
  #slide-3 .content-container .skills-container .arrow {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 100;
  }
  #slide-3 .content-container .skills-container .item {
    position: absolute;
    z-index: 1;
    width: 100%;
  }
  #slide-3 .content-container .skills-container .item button {
    display: block;
    text-align: left !important;
    padding: 26px 40px;
    width: 100%;
    font-size: 1.25rem;
    line-height: 1.5rem;
    white-space: nowrap;
    text-transform: uppercase;
    background: transparent;
  }
  #slide-3 .content-container .skills-container .item button:hover {
    background: #f3d556;
  }
  #slide-3 .content-container .skills-container .item button.good {
    background: #06f2ae;
  }
  #slide-3 .content-container .skills-container .item button.wrong {
    color: #fff;
    background: #f2517d;
  }
  #slide-3 .content-container .skills-container .item.hide-top,
  #slide-3 .content-container .skills-container .item.hide-bottom {
    opacity: 0;
    z-index: -10;
  }
  #slide-3 .content-container .skills-container .item.center {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    top: 50%;
    left: 60px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 20;
  }
  #slide-3 .content-container .skills-container .item.top-1 {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    top: 32%;
    left: 45px;
    -webkit-transform: translateY(-50%) scaleY(0.7) skewX(2deg);
            transform: translateY(-50%) scaleY(0.7) skewX(2deg);
    -webkit-filter: blur(1px);
            filter: blur(1px);
    z-index: 15;
  }
  #slide-3 .content-container .skills-container .item.top-2,
  #slide-3 .content-container .skills-container .item.hide-top {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    top: 18%;
    left: 20px;
    -webkit-transform: translateY(-50%) scaleY(0.5) skewX(5deg);
            transform: translateY(-50%) scaleY(0.5) skewX(5deg);
    -webkit-filter: blur(3px);
            filter: blur(3px);
    z-index: 10;
  }
  #slide-3 .content-container .skills-container .item.bottom-1 {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    top: 68%;
    left: 45px;
    -webkit-transform: translateY(-50%) scaleY(0.7) skewX(-2deg);
            transform: translateY(-50%) scaleY(0.7) skewX(-2deg);
    -webkit-filter: blur(1px);
            filter: blur(1px);
    z-index: 15;
  }
  #slide-3 .content-container .skills-container .item.bottom-2,
  #slide-3 .content-container .skills-container .item.hide-bottom {
    -webkit-transition: all 0.5s ease-in-out;
    transition: all 0.5s ease-in-out;
    top: 82%;
    left: 20px;
    -webkit-transform: translateY(-50%) scaleY(0.5) skewX(-5deg);
            transform: translateY(-50%) scaleY(0.5) skewX(-5deg);
    -webkit-filter: blur(3px);
            filter: blur(3px);
    z-index: 10;
  }
}
#slide-3 .cover-right {
  opacity: 0;
  position: fixed;
  top: 0;
  right: -1000px;
  height: 100%;
  z-index: 0;
}
#slide-3 .cover-arrow {
  opacity: 0;
  position: fixed;
  bottom: -500px;
  right: 3%;
  z-index: 0;
}
#slide-3 .cover-awards {
  opacity: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15%;
  z-index: 0;
}
#slide-3 .btn-next {
  position: absolute;
  bottom: 7%;
  right: 7%;
  max-width: 360px;
  z-index: 10;
}
@media (max-width: 1199px) {
  #slide-3 .content-container .skills-container {
    opacity: 0;
    width: 60vw;
  }
  #slide-3 .content-container .skills-container .item button {
    padding: 20px 30px;
  }
  #slide-3 .content-container .skills-container .item.top-1 {
    top: 31%;
  }
  #slide-3 .content-container .skills-container .item.top-2,
  #slide-3 .content-container .skills-container .item.hide-top {
    top: 17%;
  }
  #slide-3 .content-container .skills-container .item.bottom-1 {
    top: 69%;
  }
  #slide-3 .content-container .skills-container .item.bottom-2,
  #slide-3 .content-container .skills-container .item.hide-bottom {
    top: 83%;
  }
  #slide-3 .cover-arrow {
    bottom: 0;
    right: 3%;
    width: 400px;
  }
  #slide-3 .cover-awards {
    top: 50%;
    right: 15%;
    width: 250px;
  }
  #slide-3 .btn-next {
    width: 100%;
    max-width: 300px;
    padding: 30px;
  }
}
@media (max-width: 991px) {
  #slide-3 .content-container h2,
  #slide-3 .content-container p {
    margin-bottom: 5%;
    text-align: center;
  }
  #slide-3 .content-container .stars {
    text-align: center;
  }
  #slide-3 .content-container .stars svg {
    width: 30px;
    height: 30px;
  }
  #slide-3 .content-container .skills-container {
    margin-top: 5%;
    text-align: center;
    width: 100%;
  }
  #slide-3 .content-container .skills-container .arrow {
    display: none;
  }
  #slide-3 .content-container .skills-container ul {
    width: 100%;
    display: inline-block;
    max-width: 500px;
  }
  #slide-3 .content-container .skills-container ul li {
    margin-bottom: 10px;
  }
  #slide-3 .content-container .skills-container ul li button.good {
    background: #06f2ae;
  }
  #slide-3 .content-container .skills-container ul li button.wrong {
    color: #fff;
    background: #f2517d;
  }
  #slide-3 .cover-right,
  #slide-3 .cover-awards,
  #slide-3 .cover-arrow {
    display: none;
  }
  #slide-3 .btn-next {
    width: 100%;
    max-width: 300px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 30px auto 20px;
  }
}
#slide-4 .content-container {
  position: absolute;
  left: 7%;
  top: 10%;
  height: 80%;
  width: 40%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}
#slide-4 .content-container h2 {
  opacity: 0;
  margin-bottom: 15%;
}
#slide-4 .content-container button {
  opacity: 0;
}
#slide-4 .cover-right {
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
#slide-4 .cover-right.desktop {
  display: block;
  position: absolute;
  right: -1000px;
  bottom: 0;
  width: 50%;
  z-index: 0;
}
#slide-4 .cover-right.mobil {
  display: none;
}
@media (max-width: 991px) {
  #slide-4 .content-container {
    top: 5%;
    left: 5%;
    width: 90%;
    height: 90%;
    text-align: center;
    display: block;
  }
  #slide-4 .content-container>div {
    position: relative;
  }
  #slide-4 .content-container>div h2 {
    margin-bottom: 5%;
  }
  #slide-4 .content-container>div button {
    position: absolute;
    bottom: 10%;
    font-size: 1rem;
  }
  #slide-4 .cover-right.mobil {
    display: block;
    position: relative;
    width: 1000%;
    left: -450%;
  }
  #slide-4 .cover-right.mobil.animate-end {
    width: 114%;
    left: -7%;
    opacity: 1;
  }
  #slide-4 .cover-right.desktop {
    display: none;
  }
}
#slide-5 {
  background-image: url("../img/macintosh_big.png");
  background-position: center left;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
#slide-5 .form-container {
  opacity: 0;
  position: absolute;
  top: 13%;
  left: 13%;
  width: 45%;
}
#slide-5 .form-container h2 {
  text-transform: none;
  font-weight: normal;
}
#slide-5 .form-container .bootstrap-select {
  margin: 30px 0;
}
#slide-5 .form-container h2,
#slide-5 .form-container label,
#slide-5 .form-container small {
  color: #fff;
}
#slide-5 .form-container hr {
  border-bottom: 3px solid #f3d556;
  margin: 30px 0;
}
#slide-5 .form-container small {
  display: block;
  width: 100%;
  padding: 5px 0;
}
#slide-5 .form-container small.szja {
  position: relative;
  border-bottom: 3px solid #f3d556;
}
#slide-5 .form-container small.szja:after {
  content: '';
  position: absolute;
  bottom: -12px;
  right: -4px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 20px solid #f3d556;
}
#slide-5 .form-container small:last-child {
  padding-bottom: 0;
  margin-bottom: -15px;
}
#slide-5 .btn-next {
  opacity: 0;
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 340px;
  z-index: 1;
  padding: 50px;
}
@media (max-width: 1399px) {
  #slide-5 .form-container {
    width: 60%;
  }
}
@media (max-width: 991px) {
  #slide-5 {
    background-image: url("../img/macintosh_big_mobil.png");
    background-position: center;
    background-size: cover;
    padding-bottom: 50px;
  }
  #slide-5 .form-container {
    position: relative;
    top: 8%;
    left: 5%;
    width: 90%;
  }
  #slide-5 .btn-next {
    position: relative;
    top: 15%;
    bottom: unset;
    right: unset;
    left: 5%;
    width: 90%;
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  #slide-5 .form-container label {
    font-size: 1.25rem;
  }
  #slide-5 .form-container small {
    width: 100%;
    padding: 0 0 0 50%;
  }
  #slide-5 .form-container small.szja {
    position: relative;
    border-bottom: none;
  }
  #slide-5 .form-container small.szja:before {
    position: absolute;
    bottom: unset;
    right: unset;
    top: 20px;
    left: 25%;
    content: '';
    width: 3px;
    height: 100%;
    background: #f3d556;
  }
  #slide-5 .form-container small.szja:after {
    content: '';
    position: absolute;
    bottom: -120%;
    right: unset;
    left: -webkit-calc(25% - 8.5px);
    left: calc(25% - 8.5px);
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid #f3d556;
  }
  #slide-5 .form-container small:first-child {
    padding-top: 20px;
  }
  #slide-5 .form-container small:last-child {
    padding-bottom: 20px;
    margin-bottom: 0;
  }
}
#slide-6 .cover-right {
  opacity: 0;
  position: absolute;
  top: -500px;
  right: -500px;
  max-width: 40%;
}
#slide-6 .fluid-container {
  margin: 4% 16% 4% 8%;
}
#slide-6 .fluid-container h2,
#slide-6 .fluid-container p,
#slide-6 .fluid-container img,
#slide-6 .fluid-container a,
#slide-6 .fluid-container button {
  opacity: 0;
}
#slide-6 .fluid-container .cmt-5 {
  margin-top: 1%;
}
#slide-6 .fluid-container .cmt-10 {
  margin-top: 2%;
}
@media (max-width: 991px) {
  #slide-6 {
    text-align: center;
  }
  #slide-6 .cover-right {
    display: none;
  }
  #slide-6 .fluid-container {
    margin: 5% 5%;
  }
  #slide-6 .fluid-container h2 {
    margin-bottom: 30px;
  }
  #slide-6 .fluid-container p {
    text-align: left;
  }
  #slide-6 .fluid-container .cmt-5,
  #slide-6 .fluid-container .cmt-10 {
    margin-top: 0;
  }
  #slide-6 .fluid-container button,
  #slide-6 .fluid-container a {
    font-size: 1rem;
    padding: 20px 20px;
  }
}
#slide-7 .cover-right {
  opacity: 0;
  position: absolute;
  top: 0;
  right: -100vw;
  height: 100%;
  z-index: 0;
}
#slide-7 .cover-right-dots {
  opacity: 0;
  position: absolute;
  bottom: -100vh;
  right: 0;
  z-index: 0;
}
#slide-7 .cover-right-sharpes {
  opacity: 0;
  position: absolute;
  top: -3%;
  right: -24%;
  width: 70%;
  z-index: 0;
  height: auto;
}
#slide-7 .cover-top {
  display: none;
}
#slide-7 .content-container {
  position: absolute;
  left: 7%;
  top: 7%;
  height: 90%;
  width: 50%;
  text-align: left;
  z-index: 2;
}
#slide-7 .content-container h2 {
  opacity: 0;
  margin-bottom: 10%;
  text-transform: uppercase;
}
#slide-7 .content-container h2 span {
  font-weight: 500;
}
#slide-7 .content-container p {
  opacity: 0;
  margin-top: 10%;
}
#slide-7 .btn-next {
  opacity: 0;
  position: absolute;
  bottom: 10%;
  right: 8%;
  width: 340px;
  z-index: 1;
  padding: 50px;
}
@media (max-width: 991px) {
  #slide-7 {
    padding-bottom: 10%;
  }
  #slide-7 h2 {
    font-size: 1.625rem;
    line-height: 2rem;
  }
  #slide-7 .cover-right,
  #slide-7 .cover-right-sharpes,
  #slide-7 .cover-right-dots {
    display: none;
  }
  #slide-7 .cover-top {
    margin: 0 auto;
    display: block;
  }
  #slide-7 .content-container {
    position: relative;
    top: 5%;
    left: 5%;
    width: 90%;
    height: auto;
    text-align: center;
  }
  #slide-7 .btn-next {
    position: relative;
    top: 10%;
    bottom: unset;
    right: unset;
    left: 5%;
    width: 90%;
    margin-bottom: 50px;
  }
}
#slide-8 h2,
#slide-8 p,
#slide-8 .carousel,
#slide-8 button {
  opacity: 0;
}
#slide-8 .content-container {
  position: relative;
  z-index: 1;
  margin: 5% 5% 0;
}
#slide-8 .content-container h2,
#slide-8 .content-container p {
  margin-bottom: 2%;
}
#slide-8 .content-container p {
  width: 60%;
}
#slide-8 .carousel {
  position: relative;
  width: 100%;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  padding: 10px 0;
}
#slide-8 .carousel:after {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  transition: all 1s ease-in-out;
  background: url("../img/slide_8_answer_bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding: 0;
  z-index: 0;
  opacity: 0;
}
#slide-8 .carousel .answer {
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  position: absolute;
  left: 50%;
  bottom: 85%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #f2f2f2;
  border: 1px solid #000;
  border-radius: 10px;
  padding: 10px 20px;
  color: #000;
  z-index: 0;
  opacity: 0;
  text-align: center;
  min-width: 300px;
}
#slide-8 .carousel .line {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  white-space: nowrap;
}
#slide-8 .carousel .line>div {
  position: relative;
  white-space: nowrap;
  font-weight: normal;
  padding-left: 10px;
}
#slide-8 .carousel .line>div .question {
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
@-webkit-keyframes animate {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
@keyframes animate {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
}
@-webkit-keyframes animate_minus {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes animate_minus {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
            transform: translate3d(-100%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
#slide-8 .carousel:hover {
  padding: 63px 0 53px;
}
#slide-8 .carousel:hover:after {
  opacity: 1;
}
#slide-8 .carousel:hover .answer {
  opacity: 1;
  z-index: 1;
}
#slide-8 .carousel:hover .question {
  color: #fff;
}
#slide-8 .btn-next {
  position: absolute;
  bottom: 7%;
  right: 7%;
  max-width: 360px;
  z-index: 10;
}
@media (max-width: 991px) {
  #slide-8 .content-container {
    text-align: center;
  }
  #slide-8 .content-container h2,
  #slide-8 .content-container p {
    margin-bottom: 5%;
    width: 100%;
  }
  #slide-8 .carousel:hover {
    padding: 30px 0 20px;
  }
  #slide-8 .btn-next {
    width: 100%;
    max-width: 300px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 30px auto 20px;
  }
}
#slide-9 h2,
#slide-9 p,
#slide-9 .item {
  opacity: 0;
}
#slide-9 .cover {
  position: absolute;
  top: 0;
  right: -500px;
  z-index: 0;
}
#slide-9 .content-container {
  position: relative;
  z-index: 1;
  margin: 5% 5% 0;
}
#slide-9 .content-container h2,
#slide-9 .content-container p {
  margin-bottom: 2%;
}
#slide-9 .carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 10;
  padding: 0 -webkit-calc(5% - 20px);
  padding: 0 calc(5% - 20px);
}
#slide-9 .carousel .inner {
  position: relative;
  top: 0;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: table;
  border-collapse: separate;
  border-spacing: 20px;
}
#slide-9 .carousel .inner .item {
  display: table-cell;
  background: rgba(243,213,86,0.933);
  border: 3px solid #000;
  box-sizing: border-box;
  border-radius: 15px;
  padding: 20px;
  width: 35vw;
  text-transform: none;
  font-weight: normal;
}
#slide-9 .carousel .inner .item img {
  display: block;
  vertical-align: unset;
}
#slide-9 .carousel .nav {
  opacity: 0;
  display: block;
  margin: 0 auto;
  text-align: center;
}
#slide-9 .carousel .nav .right {
  -webkit-transform: rotate(180deg) scale(1);
          transform: rotate(180deg) scale(1);
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-left: 10px;
}
#slide-9 .carousel .nav .right:hover {
  -webkit-transform: rotate(180deg) scale(1.1);
          transform: rotate(180deg) scale(1.1);
}
#slide-9 .carousel .nav .left {
  -webkit-transform: scale(1);
          transform: scale(1);
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-right: 10px;
}
#slide-9 .carousel .nav .left:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#slide-9 .dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: url("../img/dot.png");
}
@media (max-width: 991px) {
  #slide-9 .cover {
    display: none;
  }
  #slide-9 .content-container {
    text-align: center;
  }
  #slide-9 .content-container h2,
  #slide-9 .content-container p {
    margin-bottom: 5%;
  }
  #slide-9 .carousel {
    padding-bottom: 50px;
  }
  #slide-9 .carousel .inner .item {
    padding: 15px;
    width: 65vw;
  }
  #slide-9 .carousel .inner .item img {
    max-height: 90px;
    width: 100%;
    max-width: 100%;
  }
}
#slide-10 h2,
#slide-10 p,
#slide-10 .item {
  opacity: 0;
}
#slide-10 .content-container {
  margin: 5% 5% 0;
}
#slide-10 .content-container h2 {
  margin-bottom: 2%;
}
#slide-10 .content-container p {
  width: 40%;
}
#slide-10 .carousel {
  position: relative;
  overflow: hidden;
  width: 100%;
  z-index: 10;
  padding: 0 -webkit-calc(5% - 20px);
  padding: 0 calc(5% - 20px);
}
#slide-10 .carousel .inner {
  position: relative;
  top: 0;
  left: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  display: table;
  border-collapse: separate;
  border-spacing: 20px;
}
#slide-10 .carousel .inner .item {
  display: table-cell;
  background: rgba(243,213,86,0.933);
  border: 3px solid #000;
  box-sizing: border-box;
  border-radius: 15px;
  padding: 30px;
  width: 70vw;
  text-transform: none;
  font-weight: normal;
}
#slide-10 .carousel .inner .item img {
  display: inline-block;
  vertical-align: unset;
}
#slide-10 .carousel .nav {
  opacity: 0;
  display: block;
  margin: 0 auto;
  text-align: center;
}
#slide-10 .carousel .nav .right {
  -webkit-transform: rotate(180deg) scale(1);
          transform: rotate(180deg) scale(1);
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-left: 10px;
}
#slide-10 .carousel .nav .right:hover {
  -webkit-transform: rotate(180deg) scale(1.1);
          transform: rotate(180deg) scale(1.1);
}
#slide-10 .carousel .nav .left {
  -webkit-transform: scale(1);
          transform: scale(1);
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  margin-right: 10px;
}
#slide-10 .carousel .nav .left:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
#slide-10 .dots {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: url("../img/dot.png");
}
@media (max-width: 991px) {
  #slide-10 .content-container {
    text-align: center;
  }
  #slide-10 .content-container h2 {
    margin-bottom: 5%;
  }
  #slide-10 .content-container p {
    width: 100%;
  }
  #slide-10 .carousel .inner .item {
    padding: 15px;
  }
  #slide-10 .carousel .inner .item img {
    height: 20px;
  }
}
#slide-11 h2,
#slide-11 p,
#slide-11 img,
#slide-11 button,
#slide-11 .answers,
#slide-11 .comment-box {
  opacity: 0;
}
#slide-11 .page {
  display: none;
}
#slide-11 .page-1 {
  display: block;
}
#slide-11:after {
  content: '';
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 30%;
  background: #000;
  background: -webkit-gradient(linear, left bottom, left top, from(#000), to(rgba(0,0,0,0)));
  background: linear-gradient(0deg, #000 0%, rgba(0,0,0,0) 100%);
  z-index: 0;
}
#slide-11 .boss {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 0;
}
#slide-11 .interview_man {
  display: none;
  position: absolute;
  left: -600px;
  bottom: 0;
  z-index: 0;
  width: 25%;
  max-width: 100%;
  z-index: 10;
}
#slide-11>div {
  position: relative;
  z-index: 1;
  border: 3px solid #000;
  border-radius: 15px;
  margin: 2%;
  padding: 2%;
  height: 92%;
  box-sizing: border-box;
}
#slide-11>div .left-side {
  position: absolute;
  left: 5%;
  top: 5%;
  width: 40%;
}
#slide-11>div .left-side .title {
  display: none;
}
#slide-11>div .right-side {
  position: absolute;
  right: 5%;
  top: 5%;
  width: 30%;
}
#slide-11>div .comment-box {
  position: absolute;
  top: 0;
  left: 0;
  text-align: left;
  margin-bottom: 30px;
  padding: 15px 30px;
  width: 100%;
  background: #fff;
  border: 3px solid #000;
  box-sizing: border-box;
  border-radius: 15px;
  color: #000;
  text-transform: none;
}
#slide-11>div .thought-box {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  border: 3px solid #000;
  box-sizing: border-box;
  border-radius: 96px;
  padding: 30px;
  color: #000;
  font-weight: bold;
}
#slide-11>div .thought-box .circle {
  position: absolute;
  background: #fff;
  border: 3px solid #000;
  border-radius: 100%;
}
#slide-11>div .thought-box .circle.small {
  left: -120px;
  top: 10px;
  width: 27px;
  height: 27px;
}
#slide-11>div .thought-box .circle.medium {
  left: -70px;
  top: 20px;
  width: 40px;
  height: 40px;
}
#slide-11>div .btn-next {
  position: absolute;
  right: 7%;
  bottom: 7%;
  width: 100%;
  max-width: 360px;
  z-index: 1;
}
#slide-11>div .status-bar {
  position: relative;
  border: 3px solid #000;
  box-sizing: border-box;
  border-radius: 22px;
  width: 100%;
  height: 20px;
  max-width: 500px;
  margin-top: 30px;
}
#slide-11>div .status-bar:after {
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  background: #06f2ae;
  border-radius: 22px;
  height: 14px;
  width: 0%;
}
#slide-11>div .status-bar.q-1:after {
  width: 25%;
}
#slide-11>div .status-bar.q-2:after {
  width: 50%;
}
#slide-11>div .status-bar.q-3:after {
  width: 75%;
}
#slide-11>div .status-bar.q-4:after {
  width: 100%;
}
#slide-11>div .answers {
  display: none;
  position: absolute;
  bottom: 5%;
  width: 70%;
  right: 10%;
  background: rgba(0,0,0,0.467);
  border-radius: 15px;
  padding: 30px;
  z-index: 100;
}
#slide-11>div .answers ul {
  margin: 0;
  padding: 0;
  background: url("../img/dot.png");
}
#slide-11>div .answers ul li {
  opacity: 0;
  text-align: left;
  margin-bottom: 15px;
  padding: 15px 50px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background: #fff;
  border: 3px solid #000;
  box-sizing: border-box;
  border-radius: 15px;
  color: #000;
  text-transform: none;
  cursor: pointer;
}
#slide-11>div .answers ul li:hover {
  background: #f2f2f2;
}
#slide-11>div .answers ul li.good {
  background: #06f2ae;
}
#slide-11>div .answers ul li.wrong {
  color: #fff;
  background: #f2517d;
}
@media (max-width: 767px) {
  #slide-11>div {
    background: url("../img/boss_mobil.png");
    background-position: bottom center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0;
    padding: 0 0 40px;
    height: 100%;
    border: none;
    text-align: center;
  }
  #slide-11>div:after {
    content: '';
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 30%;
    background: #000;
    background: -webkit-gradient(linear, left bottom, left top, from(#000), to(rgba(0,0,0,0)));
    background: linear-gradient(0deg, #000 0%, rgba(0,0,0,0) 100%);
    z-index: 0;
  }
  #slide-11>div .left-side {
    margin: 0 auto;
    top: 20px;
    left: unset;
    position: relative;
    width: 90%;
  }
  #slide-11>div .left-side img {
    width: 100%;
    max-width: 100px;
  }
  #slide-11>div .left-side .title {
    display: block;
  }
  #slide-11>div .left-side .status-bar {
    margin: 10px auto;
    width: 100%;
  }
  #slide-11>div .left-side .counter {
    margin-top: 15px;
    font-size: 1rem;
    line-height: 1.25rem;
  }
  #slide-11>div .right-side {
    margin: 0 auto;
    position: relative;
    top: 40px;
    right: unset;
    width: 90%;
  }
  #slide-11>div .comment-box {
    text-align: center;
  }
  #slide-11>div .thought-box {
    width: 90%;
    left: 5%;
    padding: 15px;
  }
  #slide-11>div .thought-box .circle.small {
    left: 50px;
    top: unset;
    bottom: -50px;
    width: 17px;
    height: 17px;
  }
  #slide-11>div .thought-box .circle.medium {
    left: 20px;
    top: unset;
    bottom: -40px;
    width: 30px;
    height: 30px;
  }
  #slide-11>div .answers {
    position: absolute;
    top: unset;
    bottom: 5%;
    right: unset;
    left: 5%;
    width: 90%;
    background: none;
    padding: 0;
    z-index: 20;
  }
  #slide-11>div .answers ul {
    background: none;
  }
  #slide-11>div .answers ul li {
    text-align: center;
    padding: 10px 20px;
    width: 100%;
  }
  #slide-11>div .btn-next {
    bottom: 5%;
    right: unset;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 90%;
  }
  #slide-11 .boss {
    display: none;
  }
  #slide-11 .interview_man {
    display: none;
  }
}
#slide-12>div {
  border: 3px solid #000;
  border-radius: 15px;
  margin: 2%;
  padding: 2%;
  height: 92%;
  box-sizing: border-box;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#slide-12>div h2,
#slide-12>div p,
#slide-12>div img,
#slide-12>div button {
  opacity: 0;
}
#slide-12>div .content-container {
  padding-right: 50px;
}
#slide-12>div .content-container h2 {
  margin-bottom: 3%;
}
#slide-12>div .awards {
  max-width: 360px;
  width: 100%;
}
@media (max-width: 767px) {
  #slide-12>div {
    text-align: center;
    height: -webkit-calc(100vh - 3%);
    height: calc(100vh - 3%);
    min-height: 540px;
  }
  #slide-12>div .content-container {
    padding-right: 15px;
  }
}
#slide-13 {
  overflow-y: auto !important;
}
#slide-13 h2,
#slide-13 p,
#slide-13 img,
#slide-13 button {
  opacity: 0;
}
#slide-13>div {
  padding: 3% 5%;
}
#slide-13 .cover {
  position: absolute;
  top: 3%;
  right: -1000px;
}
#slide-13 .header {
  width: 70%;
}
#slide-13 .header h2 {
  margin-bottom: 3%;
}
#slide-13 .header 9 {
  margin-bottom: 2%;
}
#slide-13 .btn-white {
  display: block;
  text-align: left;
  width: 100%;
  margin-bottom: 30px;
  padding: 15px 30px;
  width: 100%;
  background: #fff;
  border: 3px solid #000;
  box-sizing: border-box;
  border-radius: 15px;
  color: #000;
  font-size: 1.25rem;
  line-height: 1.5rem;
  text-transform: none;
}
#slide-13 .btn-white .success,
#slide-13 .btn-white .failed,
#slide-13 .btn-white .anwswer {
  display: none;
}
#slide-13 .btn-white .success,
#slide-13 .btn-white .failed {
  text-transform: uppercase;
  font-weight: bold;
  margin-bottom: 10px;
}
#slide-13 .btn-white:hover {
  background: #f2f2f2;
}
#slide-13 .btn-white.selected.success {
  background: #06f2ae;
}
#slide-13 .btn-white.selected.success .success {
  display: block;
}
#slide-13 .btn-white.selected.failed {
  color: #fff;
  background: #f2517d;
}
#slide-13 .btn-white.selected.failed .failed {
  display: block;
}
#slide-13 .btn-white.selected .anwswer {
  display: block;
}
#slide-13 .btn-white .anwswer {
  margin-top: 10px;
  background: #fff;
  border-radius: 9px;
  padding: 10px 15px;
  color: #000;
  font-size: 1rem;
  line-height: 1.25rem;
}
#slide-13 .btn-next {
  opacity: 0;
  margin-top: 20px;
  display: inline-block;
  width: 100%;
  max-width: 360px;
}
@media (max-width: 991px) {
  #slide-13>div {
    padding: 5% 10%;
  }
  #slide-13 .cover {
    width: 200px;
  }
}
@media (max-width: 767px) {
  #slide-13 {
    text-align: center;
  }
  #slide-13 h2 {
    font-size: 1.75rem;
    line-height: 2rem;
  }
  #slide-13 .header {
    width: 100%;
  }
  #slide-13 .cover {
    display: none;
  }
  #slide-13 .btn-white {
    margin-bottom: 15px;
  }
  #slide-13 .btn-next {
    margin-top: 20px;
    display: inline-block;
    width: 100%;
    max-width: inherit;
  }
}
#slide-14 {
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("../img/money.gif");
  background-color: #f3d556;
  background-blend-mode: multiply;
}
#slide-14 h2,
#slide-14 p,
#slide-14 img,
#slide-14 button {
  opacity: 0;
}
#slide-14>div {
  padding: 3% 5%;
}
#slide-14>div p {
  margin: 2% 0 5%;
}
#slide-14 .btn-next {
  position: absolute;
  bottom: 7%;
  right: 7%;
  max-width: 360px;
  z-index: 10;
}
#slide-14 .calendar-container {
  position: relative;
}
#slide-14 .calendar-container .calendar-15 {
  position: absolute;
  top: 138px;
  left: 312px;
  z-index: 10;
  -webkit-animation-name: scaleImg;
          animation-name: scaleImg;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}
@-webkit-keyframes scaleImg {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes scaleImg {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  70% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
#slide-14 .calendar.mobil {
  display: none;
}
@media (max-width: 991px) {
  #slide-14>div {
    padding: 5% 10%;
  }
}
@media (max-width: 767px) {
  #slide-14 {
    text-align: center;
  }
  #slide-14 .calendar.desktop {
    display: none;
  }
  #slide-14 .calendar.mobil {
    display: block;
  }
  #slide-14 .calendar-container {
    display: inline-block;
    position: relative;
  }
  #slide-14 .calendar-container .calendar-15 {
    top: 47%;
    left: -1%;
    width: 280px;
  }
  #slide-14 .btn-next {
    width: 100%;
    max-width: 300px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 30px auto 20px;
  }
}
@media (max-width: 400px) {
  #slide-14 .calendar-container .calendar-15 {
    top: 36%;
    left: -6%;
  }
}
#slide-15 {
  background-image: url("../img/slide15_cover_right.png");
  background-position: bottom right;
  background-size: auto 100%;
  background-repeat: no-repeat;
}
#slide-15 h2,
#slide-15 p,
#slide-15 img,
#slide-15 button {
  opacity: 0;
}
#slide-15>div {
  padding: 3% 5%;
}
#slide-15 .h1 {
  font-size: 6.35rem;
  line-height: 8.5rem;
}
#slide-15 .brain {
  position: absolute;
  right: 10%;
  top: 2%;
  width: 50%;
  z-index: 0;
}
#slide-15 .btn-next {
  position: absolute;
  bottom: 7%;
  right: 7%;
  max-width: 360px;
}
@media (max-width: 1399px) {
  #slide-15 .h1 {
    font-size: 5.35rem;
    line-height: 7.5rem;
  }
  #slide-15 .brain {
    right: 2%;
    top: -2%;
    width: 300px;
  }
}
@media (max-width: 1299px) {
  #slide-15 .h1 {
    font-size: 4.35rem;
    line-height: 6rem;
  }
  #slide-15 .brain {
    right: 10%;
    top: 4%;
    width: 230px;
  }
}
@media (max-width: 1199px) {
  #slide-15 .h1 {
    font-size: 3.35rem;
    line-height: 4.5rem;
  }
  #slide-15 .brain {
    right: 20%;
    top: 9%;
    width: 150px;
  }
  #slide-15 .btn-next {
    max-width: 260px;
  }
}
@media (max-width: 991px) {
  #slide-15>div {
    padding: 5% 10%;
  }
  #slide-15 .side-left {
    text-align: center;
    margin-bottom: 5%;
  }
  #slide-15 .brain {
    right: 10%;
    top: 0%;
    width: 150px;
  }
  #slide-15 .h1 {
    font-size: 3.35rem;
    line-height: 4rem;
  }
}
@media (max-width: 767px) {
  #slide-15 .brain {
    right: 0;
    top: 50%;
    width: 200px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  #slide-15 .btn-next {
    width: 100%;
    max-width: 300px;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    margin: 30px auto 20px;
  }
}
@media (max-width: 575px) {
  #slide-15 .h1 {
    font-size: 2rem;
    line-height: 2.25rem;
  }
  #slide-15 .brain {
    width: 120px;
  }
}
#slide-16 {
  background-position: center;
  background-size: 100%;
  background-repeat: no-repeat;
  background-image: url("../img/money.gif");
  background-color: #f3d556;
  background-blend-mode: multiply;
}
#slide-16 .dots {
  opacity: 0;
  position: absolute;
}
#slide-16 .dots.dots-left {
  left: 0;
  top: -3500px;
}
#slide-16 .dots.dots-right {
  right: 0;
  bottom: -3500px;
}
#slide-16 .content-container {
  position: absolute;
  left: 20%;
  top: 10%;
  height: 100%;
  width: 60%;
  text-align: center;
  z-index: 2;
}
#slide-16 .content-container h2,
#slide-16 .content-container h4,
#slide-16 .content-container p {
  opacity: 0;
  margin: 4% 0;
}
#slide-16 .cat-1 {
  opacity: 0;
  position: absolute;
  top: 25%;
  left: 5%;
  z-index: 3;
}
#slide-16 .cat-2 {
  opacity: 0;
  position: absolute;
  top: 30%;
  right: 6%;
  z-index: 3;
}
#slide-16 .cover-bottom {
  position: absolute;
  left: 20%;
  bottom: -1000px;
  width: 60%;
  z-index: 0;
}
#slide-16 .cover-bottom.sharpes {
  bottom: -10000px;
  left: 11%;
  width: 85%;
  height: auto;
}
#slide-16 .cover-bottom.mobil {
  display: none;
}
@media (min-width: 1500px) {
  #slide-16 .cover-bottom {
    left: 30%;
    width: 40%;
  }
  #slide-16 .cover-bottom.sharpes {
    left: 25%;
    width: 68%;
  }
}
@media (max-width: 1199px) {
  #slide-16 .dots.dots-left {
    left: -6%;
  }
  #slide-16 .dots.dots-right {
    right: -6%;
  }
  #slide-16 .cat-1 {
    left: 2%;
    width: 200px;
  }
  #slide-16 .cat-2 {
    right: 3%;
    width: 100px;
  }
}
@media (max-width: 767px) {
  #slide-16 .dots,
  #slide-16 .cat-1,
  #slide-16 .cat-2 {
    display: none !important;
  }
  #slide-16 .content-container {
    top: 3%;
    left: 10%;
    width: 80%;
    height: auto;
  }
  #slide-16 .cover-bottom {
    width: 100%;
    left: 0%;
  }
  #slide-16 .cover-bottom.mobil {
    display: block;
  }
  #slide-16 .cover-bottom.desktop {
    display: none;
  }
}
.slide {
  display: none;
  position: absolute;
  height: 100%;
  overflow: hidden;
}
@media (max-width: 991px) {
  .slide {
    overflow-y: auto;
  }
}

/*# sourceMappingURL=style.min.css.map */
